mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-01-11 15:18:42 +00:00
195 lines
3.9 KiB
PHP
Executable File
195 lines
3.9 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package Modules\Billing\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Billing\Models;
|
|
|
|
use phpOMS\Localization\Money;
|
|
use phpOMS\Stdlib\Base\FloatInt;
|
|
|
|
/**
|
|
* Bill class.
|
|
*
|
|
* @package Modules\Billing\Models
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
class BillElement implements \JsonSerializable
|
|
{
|
|
/**
|
|
* ID.
|
|
*
|
|
* @var int
|
|
* @since 1.0.0
|
|
*/
|
|
protected int $id = 0;
|
|
|
|
public int $order = 0;
|
|
|
|
public ?int $item = null;
|
|
|
|
public string $itemNumber = '';
|
|
|
|
public string $itemName = '';
|
|
|
|
public string $itemDescription = '';
|
|
|
|
public int $quantity = 0;
|
|
|
|
public Money $singleSalesPriceNet;
|
|
|
|
public Money $singleSalesPriceGross;
|
|
|
|
public Money $totalSalesPriceNet;
|
|
|
|
public Money $totalSalesPriceGross;
|
|
|
|
public ?FloatInt $singleDiscountP = null;
|
|
|
|
public ?FloatInt $totalDiscountP = null;
|
|
|
|
public ?FloatInt $singleDiscountR = null;
|
|
|
|
public ?FloatInt $discountQ = null;
|
|
|
|
public Money $singleListPriceNet;
|
|
|
|
public Money $singleListPriceGross;
|
|
|
|
public Money $totalListPriceNet;
|
|
|
|
public Money $totalListPriceGross;
|
|
|
|
public Money $singlePurchasePriceNet;
|
|
|
|
public Money $singlePurchasePriceGross;
|
|
|
|
public Money $totalPurchasePriceNet;
|
|
|
|
public Money $totalPurchasePriceGross;
|
|
|
|
public Money $singleProfitNet;
|
|
|
|
public Money $singleProfitGross;
|
|
|
|
public Money $totalProfitNet;
|
|
|
|
public Money $totalProfitGross;
|
|
|
|
public ?FloatInt $taxP = null;
|
|
|
|
public ?FloatInt $taxR = null;
|
|
|
|
/**
|
|
* Event assigned to this element.
|
|
*
|
|
* @var int
|
|
* @since 1.0.0
|
|
*/
|
|
public int $event = 0;
|
|
|
|
/**
|
|
* Promotion assigned to this element.
|
|
*
|
|
* @var int
|
|
* @since 1.0.0
|
|
*/
|
|
public int $promotion = 0;
|
|
|
|
public int | Bill $bill = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->singleListPriceNet = new Money();
|
|
$this->singleListPriceGross = new Money();
|
|
|
|
$this->totalListPriceNet = new Money();
|
|
$this->totalListPriceGross = new Money();
|
|
|
|
$this->singleSalesPriceNet = new Money();
|
|
$this->singleSalesPriceGross = new Money();
|
|
|
|
$this->totalSalesPriceNet = new Money();
|
|
$this->totalSalesPriceGross = new Money();
|
|
|
|
$this->singlePurchasePriceNet = new Money();
|
|
$this->singlePurchasePriceGross = new Money();
|
|
|
|
$this->totalPurchasePriceNet = new Money();
|
|
$this->totalPurchasePriceGross = new Money();
|
|
|
|
$this->singleProfitNet = new Money();
|
|
$this->singleProfitGross = new Money();
|
|
|
|
$this->totalProfitNet = new Money();
|
|
$this->totalProfitGross = new Money();
|
|
}
|
|
|
|
/**
|
|
* Get id.
|
|
*
|
|
* @return int Model id
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function getId() : int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Set item.
|
|
*
|
|
* @param int $item Item
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function setItem(int $item) : void
|
|
{
|
|
$this->item = $item;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function toArray() : array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'order' => $this->order,
|
|
'item' => $this->item,
|
|
'itemNumber' => $this->itemNumber,
|
|
'itemName' => $this->itemName,
|
|
'itemDescription' => $this->itemDescription,
|
|
'quantity' => $this->quantity,
|
|
'bill' => $this->bill,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function jsonSerialize()
|
|
{
|
|
return $this->toArray();
|
|
}
|
|
}
|