Commit d8989c37 by LJM

【理货】、【一键理货】操作时,D/C 必填并且必须为四位数字

parent c629ca53
Showing with 11 additions and 0 deletions
......@@ -765,6 +765,17 @@ export default {
return false;
}
}
//【理货】、【一键理货】操作时,D/C 必填并且必须为四位数字
if (this.warehouse_id == 9) {
if (this.formParams.date_code.length != 4) {
uni.showModal({
itle: '提示',
content: 'D/C必须为四位数字',
showCancel: false
});
return false;
}
}
var wait_tally_qty = Number(this.detail.wait_tally_qty);
......
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 sign in to comment