mirror of
https://github.com/Karaka-Management/oms-WarehouseManagement.git
synced 2026-01-11 15:18:41 +00:00
39 lines
726 B
PHP
39 lines
726 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.1
|
|
*
|
|
* @category TBD
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
declare(strict_types = 1);
|
|
namespace Modules\Warehousing\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Arrival status enum.
|
|
*
|
|
* @category Warehousing
|
|
* @package Modules
|
|
* @license OMS License 1.0
|
|
* @link http://website.orange-management.de
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class ArrivalStatus extends Enum
|
|
{
|
|
/* public */ const NONE = 0;
|
|
|
|
/* public */ const PENDING = 1;
|
|
|
|
/* public */ const CHECKING = 2;
|
|
|
|
/* public */ const SORTING = 3;
|
|
|
|
/* public */ const FINISHED = 4;
|
|
}
|