Commit 639aed0e by liuyang

Merge branch 'dev' of http://git.pseer.com/platform/hp-smart into dev-ly

parents 9710629d 3ba118ce
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
PROJ_TYPE as "projType", <!-- 项目类型 --> PROJ_TYPE as "projType", <!-- 项目类型 -->
PROJ_CODE as "projCode", <!-- 项目编码 --> PROJ_CODE as "projCode", <!-- 项目编码 -->
PROJ_NAME as "projName", <!-- 项目名称 --> PROJ_NAME as "projName", <!-- 项目名称 -->
PRDT_NAME as "prdtName", <!-- 产品名称 -->
PLAN_INFO_NO as "planInfoNo", <!-- 生产计划单号 --> PLAN_INFO_NO as "planInfoNo", <!-- 生产计划单号 -->
PLAN_COMPLETION_DATE as "planCompletionDate", <!-- 计划完成日期 --> PLAN_COMPLETION_DATE as "planCompletionDate", <!-- 计划完成日期 -->
STATUS as "status", <!-- 状态 0-计划中,1-生产中 --> STATUS as "status", <!-- 状态 0-计划中,1-生产中 -->
...@@ -55,6 +56,7 @@ ...@@ -55,6 +56,7 @@
PROJ_TYPE as "projType", <!-- 项目类型 --> PROJ_TYPE as "projType", <!-- 项目类型 -->
PROJ_CODE as "projCode", <!-- 项目编码 --> PROJ_CODE as "projCode", <!-- 项目编码 -->
PROJ_NAME as "projName", <!-- 项目名称 --> PROJ_NAME as "projName", <!-- 项目名称 -->
PRDT_NAME as "prdtName", <!-- 产品名称 -->
PLAN_INFO_NO as "planInfoNo", <!-- 生产计划单号 --> PLAN_INFO_NO as "planInfoNo", <!-- 生产计划单号 -->
PLAN_COMPLETION_DATE as "planCompletionDate", <!-- 计划完成日期 --> PLAN_COMPLETION_DATE as "planCompletionDate", <!-- 计划完成日期 -->
STATUS as "status", <!-- 状态 0-计划中,1-生产中 --> STATUS as "status", <!-- 状态 0-计划中,1-生产中 -->
......
...@@ -127,15 +127,15 @@ function save() { ...@@ -127,15 +127,15 @@ function save() {
return; return;
} }
if (isBlank(rows[i]['custCode'])) { if (isBlank(rows[i]['custCode'])) {
message("勾选的第" + (i + 1) + "行供应商不能为空"); message("勾选的第" + (i + 1) + "行\"供应商\"不能为空");
return; return;
} }
if (!isPositiveInteger(rows[i]['planAmount'])) { if (isBlank(rows[i]['planAmount'])) {
message("勾选的第" + (index + 1) + "行\"计划数量\"必须是大于0的整数"); message("勾选的第" + (i + 1) + "行\"计划数量\"不能为空");
return; return;
} }
if(!isPositiveNumber(rows[i]['planWeight'])){ if(isBlank(rows[i]['planWeight'])){
message("选中的第"+(index+1)+"行\"计划重量\"必须是大于0的数"); message("选中的第"+(i+1)+"行\"计划重量\"不能为空");
return ; return ;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment