oms-Billing/Models/Tax/TaxCombination.php
2023-06-17 03:13:20 +02:00

92 lines
1.7 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package Modules\Billing\Models\Tax
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\Billing\Models\Tax;
use Modules\Attribute\Models\AttributeValue;
use Modules\Attribute\Models\NullAttributeValue;
/**
* Billing class.
*
* @package Modules\Billing\Models\Tax
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
class TaxCombination implements \JsonSerializable
{
/**
* Article ID.
*
* @var int
* @since 1.0.0
*/
public int $id = 0;
public ?AttributeValue $clientCode = null;
public ?AttributeValue $supplierCode = null;
public AttributeValue $itemCode;
public string $taxCode = '';
// @todo: consider to add the tax code object directly, it is annoying to make a manuall mapper call which is often required afterwards.
public int $taxType = BillTaxType::SALES;
public string $account = '';
public string $refundAccount = '';
public string $discountAccount = '';
public ?int $minPrice = null;
public ?int $maxPrice = null;
public ?\DateTime $start = null;
public ?\DateTime $end = null;
/**
* Constructor
*
* @since 1.0.0
*/
public function __construct()
{
$this->itemCode = new NullAttributeValue();
}
/**
* {@inheritdoc}
*/
public function toArray() : array
{
return [
'id' => $this->id,
];
}
/**
* {@inheritdoc}
*/
public function jsonSerialize() : mixed
{
return $this->toArray();
}
}