Commit a003b6f7 by liuyang

优化销售开票选择任务添加金额校验

parent 19c66045
......@@ -434,8 +434,8 @@ function billFunc() {
message("勾选的数据中有已经开票的票据!");
flag = false;
}
if (row.billNumber == " ") {
message("勾选的数据中发票号为空");
if (isBlank(row.billNumber)) {
message("选中的第"+(index+1)+"行数据中发票号为空!");
flag = false;
}
})
......
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