diff options
author | Camil Staps | 2016-07-27 21:36:56 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-27 21:36:56 +0200 |
commit | ae7e885619c0a3112765d9e32df2b3dd68a35d6a (patch) | |
tree | a25eb564998b9b68027f2758b6f90d7be22dd7b1 /nav.php | |
parent | Offer: use Model (diff) |
Move SUBTOTAL, VAT and TOTAL to Calculatable
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(offer::SUBTOTAL) + 'price' => Constants::invoice_valuta . $offer->calculate(Calculatable::SUBTOTAL) ); } krsort($list, SORT_STRING); |