akaunting/app/Jobs/Expense/CreateBillItem.php

180 lines
5.6 KiB
PHP
Raw Normal View History

<?php
namespace App\Jobs\Expense;
2019-11-16 10:21:14 +03:00
use App\Abstracts\Job;
use App\Models\Expense\BillItem;
use App\Models\Expense\BillItemTax;
use App\Models\Setting\Tax;
2019-11-16 10:21:14 +03:00
use Illuminate\Support\Str;
2019-11-16 10:21:14 +03:00
class CreateBillItem extends Job
{
protected $data;
protected $bill;
protected $discount;
/**
* Create a new job instance.
*
* @param $data
* @param $bill
* @param $discount
*/
public function __construct($data, $bill, $discount = null)
{
$this->data = $data;
$this->bill = $bill;
$this->discount = $discount;
}
/**
* Execute the job.
*
* @return BillItem
*/
public function handle()
{
$item_id = !empty($this->data['item_id']) ? $this->data['item_id'] : 0;
$item_amount = (double) $this->data['price'] * (double) $this->data['quantity'];
$item_discount_amount = $item_amount;
// Apply discount to tax
if ($this->discount) {
$item_discount_amount = $item_amount - ($item_amount * ($this->discount / 100));
}
$tax_amount = 0;
$item_taxes = [];
$item_tax_total = 0;
if (!empty($this->data['tax_id'])) {
2018-11-07 12:07:38 +03:00
$inclusives = $compounds = $taxes = [];
foreach ((array) $this->data['tax_id'] as $tax_id) {
$tax = Tax::find($tax_id);
switch ($tax->type) {
2018-12-05 20:49:44 +05:30
case 'inclusive':
2018-11-07 12:07:38 +03:00
$inclusives[] = $tax;
break;
case 'compound':
$compounds[] = $tax;
break;
2019-11-16 10:21:14 +03:00
case 'fixed':
$fixed_taxes[] = $tax;
$tax_amount = $tax->rate;
$item_taxes[] = [
'company_id' => $this->invoice->company_id,
'invoice_id' => $this->invoice->id,
'tax_id' => $tax_id,
'name' => $tax->name,
'amount' => $tax_amount,
];
$item_tax_total += $tax_amount;
break;
case 'normal':
default:
$taxes[] = $tax;
$tax_amount = ($item_discount_amount / 100) * $tax->rate;
$item_taxes[] = [
'company_id' => $this->bill->company_id,
'bill_id' => $this->bill->id,
'tax_id' => $tax_id,
'name' => $tax->name,
'amount' => $tax_amount,
];
$item_tax_total += $tax_amount;
break;
}
}
2018-11-07 12:07:38 +03:00
if ($inclusives) {
$item_amount = $item_discount_amount + $item_tax_total;
2019-11-16 10:21:14 +03:00
$item_base_rate = $item_amount / (1 + collect($inclusives)->sum('rate') / 100);
foreach ($inclusives as $inclusive) {
$item_tax_total += $tax_amount = $item_base_rate * ($inclusive->rate / 100);
$item_taxes[] = [
'company_id' => $this->bill->company_id,
'bill_id' => $this->bill->id,
'tax_id' => $inclusive->id,
'name' => $inclusive->name,
'amount' => $tax_amount,
];
}
$item_amount = ($item_amount - $item_tax_total) / (1 - $this->discount / 100);
}
if ($compounds) {
foreach ($compounds as $compound) {
$tax_amount = (($item_discount_amount + $item_tax_total) / 100) * $compound->rate;
$item_tax_total += $tax_amount;
$item_taxes[] = [
'company_id' => $this->bill->company_id,
'bill_id' => $this->bill->id,
'tax_id' => $compound->id,
'name' => $compound->name,
'amount' => $tax_amount,
];
}
}
}
$bill_item = BillItem::create([
'company_id' => $this->bill->company_id,
'bill_id' => $this->bill->id,
'item_id' => $item_id,
2019-11-16 10:21:14 +03:00
'name' => Str::limit($this->data['name'], 180, ''),
'quantity' => (double) $this->data['quantity'],
'price' => (double) $this->data['price'],
'tax' => $item_tax_total,
'total' => $item_amount,
]);
$bill_item->item_taxes = false;
$bill_item->inclusives = false;
$bill_item->compounds = false;
// set item_taxes for
if (!empty($this->data['tax_id'])) {
$bill_item->item_taxes = $item_taxes;
2018-11-07 12:09:14 +03:00
$bill_item->inclusives = $inclusives;
$bill_item->compounds = $compounds;
}
if ($item_taxes) {
foreach ($item_taxes as $item_tax) {
$item_tax['bill_item_id'] = $bill_item->id;
BillItemTax::create($item_tax);
// Set taxes
if (isset($taxes) && array_key_exists($item_tax['tax_id'], $taxes)) {
$taxes[$item_tax['tax_id']]['amount'] += $item_tax['amount'];
} else {
$taxes[$item_tax['tax_id']] = [
'name' => $item_tax['name'],
'amount' => $item_tax['amount']
];
}
}
}
return $bill_item;
}
}