fix(wms): 添加钢卷未判级状态检查
- 在发货前验证钢卷质量状态是否为空 - 对于未判级的钢卷阻止发货操作并抛出异常 - 确保只有经过质量判定的钢卷可以进行发货流程
This commit is contained in:
@@ -2860,6 +2860,9 @@ public class WmsMaterialCoilServiceImpl implements IWmsMaterialCoilService {
|
||||
if (wmsMaterialCoilVo != null && Objects.equals(wmsMaterialCoilVo.getQualityStatus(), "O")) {
|
||||
throw new RuntimeException("当前钢卷为质检未通过,请勿发货!");
|
||||
}
|
||||
if (wmsMaterialCoilVo != null && StringUtils.isBlank(wmsMaterialCoilVo.getQualityStatus())) {
|
||||
throw new RuntimeException("该钢卷未判级,请勿发货!");
|
||||
}
|
||||
// 如果当前钢卷为历史数据应该抛异常
|
||||
if (wmsMaterialCoilVo != null && wmsMaterialCoilVo.getDataType() == 0) {
|
||||
throw new RuntimeException("当前数据为历史数据,请勿发货!");
|
||||
|
||||
Reference in New Issue
Block a user