新增排单-是否混单判断更改,未排单-板材查询参数更改,优化生产,保存优化结果异常提示补全,

This commit is contained in:
liuzhaotian
2025-01-16 17:22:00 +08:00
parent 9b156e51bb
commit 166ebf430a
14 changed files with 91 additions and 74 deletions
@@ -237,6 +237,17 @@ public class SystemConfigApiImpl implements SystemConfigApi {
return success(schemeDTOS);
}
@Override
public CommonResult<Boolean> getMultiColorConfigStatus() {
List<SystemConfigDO> systemConfigDOS = systemConfigMapper.selectSystemConfigList(SystemConfigTypeEnum.MULTI_COLOR_ORDER_PLAN.getType(), CommonStatusEnum.ENABLE.getStatus());
return success(CollUtil.isNotEmpty(systemConfigDOS));
}
private void checkValueIsNotEmpty(List<?> value,String error) {