销售提交erp

This commit is contained in:
潘荣晟
2026-01-26 02:44:15 +08:00
parent ea02e5af4e
commit 7e2473051b
7 changed files with 101 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
package com.zt.plat.module.contractorder.enums;
/**
* ERP相关常量类
*/
public class ErpConstants {
public static final String PO_WAREHOUSE_TYPE = "into";
public static final String PO_WAREHOUSE_MMSITYPE = "PUR";
public static final String SALE_WAREHOUSE_TYPE = "out";
public static final String SALE_WAREHOUSE_MMSITYPE = "SALE";
}

View File

@@ -19,4 +19,5 @@ public interface ErrorCodeConstants {
ErrorCode Sales_ORD_DTL_NOT_EXISTS = new ErrorCode(1_008_001_040, "销售订单明细不存在");
ErrorCode ORDER_DONT_SUBMIT = new ErrorCode(1_008_000_050, "该订单不支持审批");
ErrorCode MTRL_CODE_NOT_EXISTS = new ErrorCode(1_008_000_150, "中铜物料不存在");
ErrorCode WAREHOUSE_CODE_OR_FACTORY_CODE_NOT_EXISTS = new ErrorCode(1_008_000_151, "{}");
}