mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
生产单excel导入问题修复:移除房间名称、柜体名称必填校验
This commit is contained in:
+4
-3
@@ -574,9 +574,10 @@ public final class DefaultOrderImportExcelListener extends AnalysisEventListener
|
||||
isEmptyAndPositiveNumberSize(vo.getGoodsHeight(), Double.class, 5, 3, "板材宽度");
|
||||
isNotEmptyAndBack(vo.getGoodsThickness(), "板材厚度");
|
||||
isEmptyAndPositiveNumberSize(vo.getGoodsThickness(), Double.class, 5, 3, "板材厚度");
|
||||
// 房间、柜体、板名称 不可以为空
|
||||
isEmpty(vo.getRoomsName(), "房间名称", 64);
|
||||
isEmpty(vo.getCabinetsName(), "柜体名称", 64);
|
||||
// 房间、柜体校验长度
|
||||
isEmptyAndSize(vo.getRoomsName(), 64, "房间名称");
|
||||
isEmptyAndSize(vo.getCabinetsName(), 64, "柜体名称");
|
||||
// 板名称 不可以为空
|
||||
isEmpty(vo.getName(), "板材名称", 64);
|
||||
//成品长、成品宽、拆单长、拆单宽、厚、左封边、右封边、上封边、下封边 不能为空
|
||||
isNotEmptyAndBack(vo.getHeight(), "成品长度");
|
||||
|
||||
Reference in New Issue
Block a user