diff options
author | Camil Staps | 2016-07-28 09:05:20 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-28 09:07:39 +0200 |
commit | a9c5778232079a09000c519a414563a1e04e112d (patch) | |
tree | 55dfead4b6911f05f092fe366bd2fbd2b492e6fd /nav.php | |
parent | Made database settings definitions (diff) |
Split Calculatable in trait and interface
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); |