Commit f87d014c by xmy

Merge remote-tracking branch 'origin/test' into test

parents 6ad34f8f 637556b8
...@@ -13,7 +13,8 @@ class OrderEnum ...@@ -13,7 +13,8 @@ class OrderEnum
const STATUS_CANCEL = 0; //已取消 const STATUS_CANCEL = 0; //已取消
const STATUS_UNPAID = 10; //待支付 const STATUS_UNPAID = 10; //待支付
const STATUS_PAID = 20; //已支付 const STATUS_PAID = 20; //已支付
const STATUS_WAIT_DLV = 21; //待取货 const STATUS_TAKE_ORDER = 21; //卖家已接单
const STATUS_WAIT_DLV = 22; //待取货
const STATUS_DELIVERY = 30; //已发货|配送中|已预约 const STATUS_DELIVERY = 30; //已发货|配送中|已预约
const STATUS_ARRIVED = 31; //已送达 const STATUS_ARRIVED = 31; //已送达
const STATUS_DELIVERED = 40; //已收获|已核销 const STATUS_DELIVERED = 40; //已收获|已核销
...@@ -27,6 +28,8 @@ class OrderEnum ...@@ -27,6 +28,8 @@ class OrderEnum
//支付后的所有状态数组 //支付后的所有状态数组
const PAID_STATUS = [ const PAID_STATUS = [
self::STATUS_PAID, self::STATUS_PAID,
self::STATUS_TAKE_ORDER,
self::STATUS_WAIT_DLV,
self::STATUS_DELIVERY, self::STATUS_DELIVERY,
self::STATUS_ARRIVED, self::STATUS_ARRIVED,
self::STATUS_REFUND, self::STATUS_REFUND,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment