mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-01 02:38:43 +08:00 
			
		
		
		
	trade:优化下单逻辑的实现
This commit is contained in:
		| @@ -58,8 +58,9 @@ public interface ErrorCodeConstants { | ||||
|  | ||||
|     // ========== Price 相关 1011003000 ============ | ||||
|     ErrorCode PRICE_CALCULATE_PAY_PRICE_ILLEGAL = new ErrorCode(1011003000, "支付价格计算异常,原因:价格小于等于 0"); | ||||
|     ErrorCode PRICE_CALCULATE_DELIVERY_PRICE_USER_ADDR_IS_EMPTY = new ErrorCode(1011003001, "计算快递运费异常,收件人地址编号为空"); | ||||
|     ErrorCode PRICE_CALCULATE_DELIVERY_PRICE_USER_ADDRESS_IS_EMPTY = new ErrorCode(1011003001, "计算快递运费异常,收件人地址编号为空"); | ||||
|     ErrorCode PRICE_CALCULATE_DELIVERY_PRICE_TEMPLATE_NOT_FOUND = new ErrorCode(1011003002, "计算快递运费异常,找不到对应的运费模板"); | ||||
|     ErrorCode PRICE_CALCULATE_DELIVERY_PRICE_PICK_UP_STORE_IS_EMPTY = new ErrorCode(1011003003, "计算快递运费异常,自提点为空"); | ||||
|  | ||||
|     // ========== 物流 Express 模块 1011004000 ========== | ||||
|     ErrorCode EXPRESS_NOT_EXISTS = new ErrorCode(1011004000, "快递公司不存在"); | ||||
|   | ||||
| @@ -15,7 +15,6 @@ import java.util.Arrays; | ||||
| @AllArgsConstructor | ||||
| public enum DeliveryTypeEnum implements IntArrayValuable { | ||||
|  | ||||
|     NULL(0, "无需物流"), | ||||
|     EXPRESS(1, "快递发货"), | ||||
|     PICK_UP(2, "用户自提"),; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV