invoiceninja/app/Helpers/Invoice/InvoiceCalc.php
2019-04-08 22:43:20 +10:00

236 lines
3.6 KiB
PHP

<?php
namespace App\Helpers\Invoice;
use App\Helpers\Invoice\InvoiceItemCalc;
use App\Models\Invoice;
use App\Utils\Traits\NumberFormatter;
/**
* Class for invoice calculations.
*/
class InvoiceCalc
{
use NumberFormatter;
protected $invoice;
protected $settings;
private $balance;
private $paid_to_date;
private $amount;
private $sub_total;
private $line_items;
private $invoice_total;
private $tax_map;
private $total_taxes;
private $total_discount;
/**
* Constructs the object with Invoice and Settings object
*
* @param \App\Models\Invoice $invoice The invoice
* @param \stdClass $settings The settings
*/
public function __construct(Invoice $invoice, \stdClass $settings)
{
$this->invoice = $invoice;
$this->settings = $settings;
}
/**
* Builds the invoice values
*/
public function build()
{
$this->calcLineItems()->calcTaxes();
}
/**
* Calculates the Invoice Level taxes.
*/
private function calcTaxes()
{
}
/**
* Calculates the line items.
*
* @return self The line items.
*/
private function calcLineItems()
{
$new_line_items = [];
foreach($this->invoice->line_items as $item) {
$item_calc = new InvoiceItemCalc($item);
$item_calc->process();
$new_line_items[] = $item_calc->getLineItem();
//set collection of itemised taxes
$this->tax_map->merge($item_calc->getGroupedTaxes());
//set running total of taxes
$this->total_taxes += $item_calc->getTotalTaxes();
//set running total of discounts
$this->total_discount += $item_calc->getTotalDiscounts();
//set running subtotal
$this->sub_total += $item_calc->getLineTotal();
}
$this->invoice->line_items = $new_line_items;
return $this;
}
/**
* Getters and Setters
*/
/**
* Gets the sub total.
*
* @return float The sub total.
*/
private function getSubTotal()
{
return $this->subtotal;
}
/**
* Sets the sub total.
*
* @param float $value The value
*
* @return self $this
*/
private function setSubTotal($value)
{
$this->sub_total = $value;
return $this;
}
/**
* Gets the tax map.
*
* @return Collection The tax map.
*/
private function getTaxMap()
{
return $this->tax_map;
}
/**
* Sets the tax map.
*
* @param Collection $value Collection of mapped taxes
*
* @return self $this
*/
private function setTaxMap($value)
{
$htis->tax_map = $value;
return $this;
}
/**
* Gets the total discount.
*
* @return float The total discount.
*/
private function getTotalDiscount()
{
return $this->total_discount;
}
/**
* Sets the total discount.
*
* @param float $value The value
*
* @return self $this
*/
private function setTotalDiscount($value)
{
$this->total_discount = $value;
return $this;
}
/**
* Gets the total taxes.
*
* @return float The total taxes.
*/
private function getTotalTaxes()
{
return $this->total_taxes;
}
/**
* Sets the total taxes.
*
* @param float $value The value
*
* @return self ( $this )
*/
private function setTotalTaxes($value)
{
$this->total_taxes = $value;
return $this;
}
/*
private function setDiscount($amount, $discount, $is_amount_discount)
{
if($is_amount_discount)
return $amount - $this->formatValue($discount);
else
return $amount - $this->formatValue($amount * $discount / 100);
}
private function getInvoiceTotal()
{
return $this->invoice_total;
}
private function setInvoiceTotal($invoice_total)
{
$this->invoice_total = $invoice_total;
}
*/
}