mirror of
https://github.com/Karaka-Management/oms-WarehouseManagement.git
synced 2026-01-11 15:18:41 +00:00
39 lines
696 B
PHP
39 lines
696 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\Warehousing\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\WarehouseManagement\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Packaging status enum.
|
|
*
|
|
* @package Modules\Warehousing\Models
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class PackagingStatus extends Enum
|
|
{
|
|
public const PENDING = 0;
|
|
|
|
public const PACKING = 1;
|
|
|
|
public const PACKED = 2;
|
|
|
|
public const SUSPENDED = 3;
|
|
|
|
public const CANCELED = 4;
|
|
}
|