DS7_JinGang
ddlucky 2 years ago
parent 9f2ab594ee
commit 8b118143a8

@ -4789,11 +4789,11 @@ Ext.extend(Shipping.MsOpSeaiEdit, Ext.Panel, {
var condition = "";
if (MBLNO && CUSTOMNO) {
condition = "(MBLNO='" + MBLNO + "' or CUSTOMNO='" + CUSTOMNO + "')";
condition = "( (isnull(MBLNO,'')<>'' and MBLNO='" + MBLNO + "') and (isnull(CUSTOMNO,'')<>'' and CUSTOMNO='" + CUSTOMNO + "'))";
} else if (CUSTOMNO) {
condition = "( CUSTOMNO='" + CUSTOMNO + "')";
condition = "(isnull(CUSTOMNO,'')<>'' and CUSTOMNO='" + CUSTOMNO + "'))";
} else if (MBLNO) {
condition = "( MBLNO='" + MBLNO + "')";
condition = "(isnull(MBLNO,'')<>'' and MBLNO='" + MBLNO + "')";
} else return;
Ext.Ajax.request({

Loading…
Cancel
Save