| | |
| | | public static final String USER_AGREEMENT ="USER_AGREEMENT" ; |
| | | public static final String PRIVACY_AGREEMENT ="PRIVACY_AGREEMENT" ; |
| | | |
| | | public static final String STORE_RISK_COMMITMENT = "STORE_RISK_COMMITMENT"; |
| | | public static final String STORE_COOPERATION_AGREEMENT = "STORE_COOPERATION_AGREEMENT"; |
| | | public static final String STORE_LUGGAGE_STORAGE_NOTICE = "STORE_LUGGAGE_STORAGE_NOTICE"; |
| | | public static final String STORE_PRIVACY_POLICY = "STORE_PRIVACY_POLICY"; |
| | | public static final String OWNER_LUGGAGE_STORAGE_NOTICE = "OWNER_LUGGAGE_STORAGE_NOTICE"; |
| | | public static final String OWNER_SERVICE_AGREEMENT = "OWNER_SERVICE_AGREEMENT"; |
| | | public static final String OWNER_RISK_COMMITMENT = "OWNER_RISK_COMMITMENT"; |
| | | public static final String ERRAND_RISK_COMMITMENT = "ERRAND_RISK_COMMITMENT"; |
| | | public static final String ERRAND_SERVICE_AGREEMENT = "ERRAND_SERVICE_AGREEMENT"; |
| | | public static final String ERRAND_LUGGAGE_STORAGE_NOTICE = "ERRAND_LUGGAGE_STORAGE_NOTICE"; |
| | | public static final String USER_SERVICE_AGREEMENT = "USER_SERVICE_AGREEMENT"; |
| | | public static final String USER_PRIVACY_POLICY = "USER_PRIVACY_POLICY"; |
| | | public static final String DRIVER_PRIVACY_POLICY = "DRIVER_PRIVACY_POLICY"; |
| | | public static final String PRICE_DESCRIPTION = "PRICE_DESCRIPTION"; |
| | | public static final String PROHIBITED_ITEMS = "PROHIBITED_ITEMS"; |
| | | |
| | | public static final String ACCESS_ID="ACCESS_ID"; |
| | | public static final String BUCKETNAME = "BUCKETNAME"; |
| | | |
| | |
| | | public static final Integer FOUR = 4; |
| | | public static final Integer SIX = 6; |
| | | public static final Integer FIVE = 5; |
| | | public static final Integer SEVEN = 7; |
| | | public static final String INENTITY_FILES = "INENTITY_FILES"; |
| | | public static final String MEMBER_FILES = "MEMBER_FILES"; |
| | | public static final String CATEGORY_FILES = "CATEGORY_FILES"; |
| | |
| | | public static final String OP_AUTO_CONFIRM_RECEIPT = "AUTO_CONFIRM_RECEIPT"; |
| | | public static final String OP_NO_GRAB_NOTIFY_TIME = "NO_GRAB_NOTIFY_TIME"; |
| | | public static final String OP_NO_GRAB_NOTIFY_USERS = "NO_GRAB_NOTIFY_USERS"; |
| | | public static final String OP_DEFAULT_DELIVERY_RANGE = "DEFAULT_DELIVERY_RANGE"; |
| | | public static boolean WORKORDER_SHE_EMAIL_SENDING = false; |
| | | public static boolean DEALING_COMPANY_SYNC = false ; |
| | | public static boolean DEALING_MEMBER_SYNC = false ; |
| | |
| | | @Getter |
| | | @AllArgsConstructor |
| | | public enum OrderLogType { |
| | | createOrder(1, "创建订单", "会员创建寄存订单,订单编号【{param}】"), |
| | | payOrder(1, "订单支付", "会员支付成功,支付金额【{param}】元"), |
| | | urgent(2, "平台加急", "平台加急,奖励金【{param}】元"), |
| | | assignDriver(3, "平台指派", "平台指派司机【{param}】接单,奖励金【{param1}】元"), |
| | | memberCancel(4, "会员取消订单", "{param}"), |
| | |
| | | if(Constants.equalsInteger(type,Constants.ZERO)){ |
| | | return "待取件"; |
| | | }else{ |
| | | return Constants.equalsInteger(type,Constants.ONE)?"已到店":"已送达"; |
| | | return "已送达"; |
| | | } |
| | | } |
| | | return c.getValue(); |
| | |
| | | waitDeliver(2, "待配送", new int[]{OrderStatus.accepted.status}), |
| | | waitReceive(3, "待收货", new int[]{ OrderStatus.delivering.status, OrderStatus.arrived.status}), |
| | | finished(4, "已完成", new int[]{OrderStatus.finished.status}), |
| | | refund(5, "退款", new int[]{OrderStatus.cancelled.status}), |
| | | refund(5, "取消", new int[]{OrderStatus.cancelled.status}), |
| | | home(6, "首页查询", new int[]{OrderStatus.waitPay.status, OrderStatus.waitDeposit.status, OrderStatus.deposited.status |
| | | , OrderStatus.accepted.status, OrderStatus.delivering.status, OrderStatus.arrived.status}) |
| | | , OrderStatus.accepted.status, OrderStatus.delivering.status, OrderStatus.arrived.status}), |
| | | shopHome(7, "门店首页查询", new int[]{OrderStatus.waitDeposit.status, OrderStatus.deposited.status |
| | | , OrderStatus.delivering.status, OrderStatus.arrived.status}) |
| | | ; |
| | | private final int key; |
| | | private final String desc; |