1、修改bug
This commit is contained in:
@@ -17,4 +17,5 @@ public interface ErrorCodeConstants {
|
||||
ErrorCode PURCHASE_ORDER_STATUS_ERROR = new ErrorCode(1_008_001_020, "非法的订单状态");
|
||||
ErrorCode Sales_ORDER_NOT_EXISTS = new ErrorCode(1_008_000_030, "销售订单不存在");
|
||||
ErrorCode Sales_ORD_DTL_NOT_EXISTS = new ErrorCode(1_008_001_040, "销售订单明细不存在");
|
||||
ErrorCode ORDER_DONT_SUBMIT = new ErrorCode(1_008_000_050, "该订单不支持审批");
|
||||
}
|
||||
|
||||
@@ -13,7 +13,8 @@ public enum OrderStatusEnum {
|
||||
// 执行中状态
|
||||
IN_PROGRESS("IN_PROGRESS", "执行中"),
|
||||
// 关闭状态
|
||||
CLOSED("CLOSE", "关闭");
|
||||
CLOSED("CLOSE", "关闭"),
|
||||
REJECTED("REJECT", "驳回");
|
||||
|
||||
/** 状态编码 */
|
||||
private final String code;
|
||||
|
||||
Reference in New Issue
Block a user