diff options
author | Camil Staps | 2016-07-27 21:40:10 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-27 21:40:10 +0200 |
commit | 69ffbcac4474404c413aceaecc96117691fd801a (patch) | |
tree | 65d1cd4997f23812fe9704f571fff2d5b5c9daf6 /nav.php | |
parent | Move SUBTOTAL, VAT and TOTAL to Calculatable (diff) |
Traits cannot have constants
Diffstat (limited to 'nav.php')
-rw-r--r-- | nav.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ 'id' => $offer->id, 'contactClientName' => $offer->getContact()->getClient()->name, 'percentage' => $percentage, - 'price' => Constants::invoice_valuta . $offer->calculate(Calculatable::SUBTOTAL) + 'price' => Constants::invoice_valuta . $offer->calculate(CALCULATABLE_SUBTOTAL) ); } krsort($list, SORT_STRING); |