Skip to content

Commit

Permalink
typo in bill item job
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Mar 15, 2020
1 parent 36aabd1 commit 5625e83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Jobs/Purchase/CreateBillItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ public function handle()
$tax_amount = $tax->rate * (double) $this->request['quantity'];

$item_taxes[] = [
'company_id' => $this->invoice->company_id,
'invoice_id' => $this->invoice->id,
'company_id' => $this->bill->company_id,
'bill_id' => $this->bill->id,
'tax_id' => $tax_id,
'name' => $tax->name,
'amount' => $tax_amount,
Expand Down

0 comments on commit 5625e83

Please sign in to comment.