库存盘点相关代码

This commit is contained in:
yinjinlu-pc\尹金路
2023-08-22 20:22:03 +08:00
parent d09046142a
commit 38c38ec849
3 changed files with 46 additions and 0 deletions

View File

@@ -233,4 +233,16 @@ public class UserConstants
public static final String MESSAGE_STATUS_READ = "READ";//已读
public static final String MESSAGE_STATUS_PROCEED = "PROCEED";//已处理
/**
* 库存盘点方式
*/
public static final String WM_STOCK_TAKING_TYPE_BLIND = "BLIND"; //盲盘
public static final String WM_STOCK_TAKING_TYPE_OPEN = "OPEN"; //明盘
/**
* 库存盘点结果
*/
public static final String WM_STOCK_TAKING_STATUS_LOSS = "LOSS";// 盘亏
public static final String WM_STOCK_TAKING_STATUS_PROFIT = "PROFIT"; //盘盈
public static final String WM_STOCK_TAKING_STATUS_NORMAL = "NORMAL"; //正常
}