diff --git a/Models/StockMovementType.php b/Models/StockMovementType.php index 8ef235d..8e077f6 100755 --- a/Models/StockMovementType.php +++ b/Models/StockMovementType.php @@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum; */ abstract class StockMovementType extends Enum { - public const MERGE = 1; + public const MERGE = 1; - public const SPLIT = 2; + public const SPLIT = 2; public const INCREASE = 4; @@ -37,21 +37,21 @@ abstract class StockMovementType extends Enum public const TRANSFER = 16; // @todo: subtypes, maybe creates as database subtypes during install. - public const DESTROY = 1; // 8 + public const DESTROY = 1; // 8 - public const RETURN = 1; // 8 + public const RETURN = 1; // 8 - public const INVENTORY_PLUS = 1; // 4 + public const INVENTORY_PLUS = 1; // 4 - public const INVENTORY_MINUS = 1; // 8 + public const INVENTORY_MINUS = 1; // 8 - public const PURCHASE = 1; // 4 + public const PURCHASE = 1; // 4 - public const SALE = 1; // 4 + public const SALE = 1; // 4 public const MANUFACTURE_CREATE = 1; // 4 - public const MANUFACTURE_USE = 1; // 8 + public const MANUFACTURE_USE = 1; // 8 - public const MANUAL = 1; // 1-16 + public const MANUAL = 1; // 1-16 }