截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GoodsEnum.php 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\enum;
  20. class GoodsEnum
  21. {
  22. // 商品类型
  23. const TYPE_ACTUAL = 0; // 实物商品
  24. const TYPE_VIRTUAL = 1; // 虚拟商品
  25. /**
  26. * 运费类型
  27. */
  28. const EXPRESS_TYPE_FREE = 1; //包邮
  29. const EXPRESS_TYPE_UNIFIED = 2; //统一运费
  30. const EXPRESS_TYPE_TEMPLATE = 3; //运费模板
  31. /**
  32. * 销售状态
  33. */
  34. const STATUS_SOLD_OUT = 0; //仓库中
  35. const STATUS_SHELVES = 1; //上架中
  36. /**
  37. * 删除状态
  38. */
  39. const DEL_NORMAL = 0; // 正常
  40. const DEL_TRUE = 1; // 已删除
  41. const DEL_RECYCLE = 2; // 回收站
  42. /**
  43. * 审核状态
  44. */
  45. const AUDIT_STATUS_STAY = 0; //待审核
  46. const AUDIT_STATUS_OK = 1; //审核通过
  47. const AUDIT_STATUS_REFUSE = 2; //审核失败
  48. /**
  49. * 商品类型
  50. */
  51. const SALES = 1; // 销售中
  52. const WAREHOUSE = 2; // 仓库中
  53. const WARNING = 3; // 库存预警
  54. const RECYCLE_BIN = 4; // 回收站
  55. const WAIT_AUDIT = 5; // 待审核
  56. const UNPASS_AUDIT = 6; // 未通过审核
  57. /**
  58. * 配送方式
  59. */
  60. const DELIVERY_EXPRESS = 1;// 快递发货
  61. const DELIVERY_VIRTUAL = 2;// 虚拟发货
  62. const DELIVERY_SELF = 3;// 线下自提
  63. // 买家付款后
  64. const AFTER_PAY_AUTO_DELIVERY = 1;// 自动发货
  65. const AFTER_PAY_SELF_DELIVERY = 2;// 手动发货
  66. // 卖家发货后
  67. const AFTER_DELIVERY_AUTO_COMFIRM = 1;// 自动完成订单
  68. const AFTER_DELIVERY_SELF_COMFIRM = 2;// 买家确认订单
  69. /**
  70. * @notes 商品类型
  71. * @param bool $type
  72. * @return string|string[]
  73. * @author 段誉
  74. * @date 2022/4/20 18:38
  75. */
  76. public static function getTypeDesc($type = true)
  77. {
  78. $desc = [
  79. self::TYPE_ACTUAL => '实物商品',
  80. self::TYPE_VIRTUAL => '虚拟商品',
  81. ];
  82. if ($type === true) {
  83. return $desc;
  84. }
  85. return $desc[$type] ?? '';
  86. }
  87. /**
  88. * @notes 配送方式
  89. * @param bool $type
  90. * @return string|string[]
  91. * @author ljj
  92. * @date 2023/6/28 5:07 下午
  93. */
  94. public static function getDeliveryTypeDesc($type = true)
  95. {
  96. $desc = [
  97. self::DELIVERY_EXPRESS => '快递发货',
  98. self::DELIVERY_VIRTUAL => '虚拟发货',
  99. self::DELIVERY_SELF => '线下自提',
  100. ];
  101. if ($type === true) {
  102. return $desc;
  103. }
  104. return $desc[$type] ?? '';
  105. }
  106. static function getDeliveryLists($delivery_types) : array
  107. {
  108. $result = [];
  109. $delivery_types = array_unique($delivery_types);
  110. $lists = self::getDeliveryTypeDesc();
  111. foreach ($delivery_types as $delivery_type) {
  112. if (isset($lists[$delivery_type])) {
  113. $result[] = [
  114. 'delivery_type' => $delivery_type,
  115. 'delivery_type_text' => $lists[$delivery_type],
  116. ];
  117. }
  118. }
  119. return $result;
  120. }
  121. }