@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | 'label' => 'Комментарий', |
| 67 | 67 | ], |
| 68 | 68 | ] |
| 69 | - ],], |
|
| 69 | + ], ], |
|
| 70 | 70 | ] |
| 71 | 71 | ]; |
| 72 | 72 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | public function diff($amount, $comment = '') { |
| 88 | - $amount = (float)$amount; |
|
| 88 | + $amount = (float) $amount; |
|
| 89 | 89 | $query = \App::$cur->db->newQuery(); |
| 90 | 90 | $string = 'UPDATE ' . \App::$cur->db->table_prefix . $this->table() . ' SET `' . $this->colPrefix() . 'amount`=`' . $this->colPrefix() . 'amount`+' . $amount . ' where `' . $this->index() . '` = ' . $this->id; |
| 91 | 91 | $query->query($string); |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | public function showAmount() { |
| 106 | 106 | switch ($this->currency->round_type) { |
| 107 | 107 | case 'floor': |
| 108 | - $dif = (float)('1' . str_repeat('0', $this->currency->round_precision)); |
|
| 108 | + $dif = (float) ('1' . str_repeat('0', $this->currency->round_precision)); |
|
| 109 | 109 | return floor($this->amount * $dif) / $dif; |
| 110 | 110 | default: |
| 111 | 111 | return $this->amount; |