Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Jul 22, 2020
1 parent 4633aab commit b96a229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Jobs/Purchase/CreateBillItemsAndTotals.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function handle()
'bill_id' => $this->bill->id,
'code' => 'tax',
'name' => $tax['name'],
'amount' => round(abs($total['amount']), $precision),
'amount' => round(abs($tax['amount']), $precision),
'sort_order' => $sort_order,
]);

Expand Down

0 comments on commit b96a229

Please sign in to comment.