| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace addons\WechatVideoShop\common\enums;
- class WechatVideoShopGoodsStatusEnums
- {
- const EDIT_STATUS_NORMAL = 0;
- const EDIT_STATUS_EDIT = 1;
- const EDIT_STATUS_AUDIT_PROCESSING = 2;
- const EDIT_STATUS_AUDIT_FAIL = 3;
- const EDIT_STATUS_AUDIT_SUCCESS = 4;
- const EDIT_STATUS_ASYNC_SUBMIT_PROCESSING = 7;
- const EDIT_STATUS_ASYNC_SUBMIT_FAIL = 8;
- const EDIT_STATUS_REMARKS = [
- // self::EDIT_STATUS_NORMAL => '初始值',
- self::EDIT_STATUS_EDIT => '编辑中',
- self::EDIT_STATUS_AUDIT_PROCESSING => '审核中',
- self::EDIT_STATUS_AUDIT_FAIL => '审核失败',
- self::EDIT_STATUS_AUDIT_SUCCESS => '审核成功',
- self::EDIT_STATUS_ASYNC_SUBMIT_PROCESSING => '商品异步提交,上传中',
- self::EDIT_STATUS_ASYNC_SUBMIT_FAIL => '商品异步提交,上传失败(请重新提交)',
- ];
- const STATUS_NORMAL = 0;
- const STATUS_SALE = 5;
- const STATUS_RECYCLE = 6;
- const STATUS_SELF_DOWN = 11;
- const STATUS_VIOLATION_DOWN = 13;
- const STATUS_INSUFFICIENT_MARGIN_DOWN = 14;
- const STATUS_BRAND_EXPIRED_DOWN = 15;
- const STATUS_GOODS_DISABLED_DOWN = 20;
- const STATUS_REMARKS = [
- // self::STATUS_NORMAL => '初始值',
- self::STATUS_SALE => '上架',
- self::STATUS_RECYCLE => '回收站',
- self::STATUS_SELF_DOWN => '自主下架',
- self::STATUS_VIOLATION_DOWN => '违规下架/风控系统下架',
- self::STATUS_INSUFFICIENT_MARGIN_DOWN => '保证金不足下架',
- self::STATUS_BRAND_EXPIRED_DOWN => '品牌过期下架',
- self::STATUS_GOODS_DISABLED_DOWN => '商品被封禁',
- ];
- }
|