|
@@ -9,14 +9,14 @@ import java.util.Objects;
|
|
*/
|
|
*/
|
|
public enum PinkOrderStatusEnum {
|
|
public enum PinkOrderStatusEnum {
|
|
|
|
|
|
- GROUP_ORDER_TO_PAY(1, I18nUtil.get("group.order.to.pay")),
|
|
|
|
- GROUP_ORDER_CANCELLATION(2, I18nUtil.get("group.order.cancellation")),
|
|
|
|
- GROUP_ORDER_PAID(3, I18nUtil.get("group.order.paid")),
|
|
|
|
|
|
+ GROUP_ORDER_TO_PAY(1, I18nUtil.get("group.order.to.pay")), //待支付
|
|
|
|
+ GROUP_ORDER_CANCELLATION(2, I18nUtil.get("group.order.cancellation")), //已取消
|
|
|
|
+ GROUP_ORDER_PAID(3, I18nUtil.get("group.order.paid")), //已支付
|
|
GROUP_ORDER_REFUND(4, I18nUtil.get("group.order.refund")), //拼团超时失败 和 拼团成功后用户主动发起退款都会进到这个状态
|
|
GROUP_ORDER_REFUND(4, I18nUtil.get("group.order.refund")), //拼团超时失败 和 拼团成功后用户主动发起退款都会进到这个状态
|
|
- GROUP_ORDER_TO_SHIP(5, I18nUtil.get("group.order.to.ship")),
|
|
|
|
- GROUP_ORDER_CLOSED(6, I18nUtil.get("group.order.closed")),
|
|
|
|
- GROUP_ORDER_TO_RECEIVE(7, I18nUtil.get("group.order.to.receive")),
|
|
|
|
- GROUP_ORDER_COMPLETED(8, I18nUtil.get("group.order.completed"))
|
|
|
|
|
|
+ GROUP_ORDER_TO_SHIP(5, I18nUtil.get("group.order.to.ship")), //待发货
|
|
|
|
+ GROUP_ORDER_CLOSED(6, I18nUtil.get("group.order.closed")), //已关闭
|
|
|
|
+ GROUP_ORDER_TO_RECEIVE(7, I18nUtil.get("group.order.to.receive")), //待收货
|
|
|
|
+ GROUP_ORDER_COMPLETED(8, I18nUtil.get("group.order.completed")) //已完成
|
|
|
|
|
|
;
|
|
;
|
|
|
|
|