oms-WarehouseManagement/Models/StockDistribution.php
Dennis Eichhorn 2ae4d7fe62
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled
fix version and bugs
2024-05-21 00:09:19 +02:00

47 lines
827 B
PHP

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules\Warehousing\Models
* @copyright Dennis Eichhorn
* @license OMS License 2.2
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\WarehouseManagement\Models;
/**
* Warehouse class.
*
* @package Modules\Warehousing\Models
* @license OMS License 2.2
* @link https://jingga.app
* @since 1.0.0
*/
class StockDistribution
{
/**
* ID.
*
* @var int
* @since 1.0.0
*/
public int $id = 0;
public int $quantity = 0;
public ?int $lot = null;
public int $item = 0;
public int $stock = 0;
public int $stockType = 0;
// @remark We don't care about the location because that is just an internal thing and not all companies really care about that.
}