Browse Source

回写优化

zthwr 1 year ago
parent
commit
175a9313a3
1 changed files with 30 additions and 0 deletions
  1. 30 0
      mmpac/ic/srt/client/nc/ui/ic/pub/bill/GeneralButtonManager.java

+ 30 - 0
mmpac/ic/srt/client/nc/ui/ic/pub/bill/GeneralButtonManager.java

@@ -867,6 +867,12 @@ public class GeneralButtonManager implements IButtonManager,BillActionListener {
 					UFDouble ninnum = generalBillItemVO[j].getNinnum();
 					String sql = "select execnum from mmpac_order_in where 	pk_order_in = '"+cfirstbillbid+"'";
 					Object execnum = (Object) iuap.executeQuery(sql, new ColumnProcessor());
+					
+					if(null==execnum) {
+						continue;
+					}
+					
+					
 					UFDouble result  = new UFDouble(execnum.toString()).sub(ninnum);
 					
 					StringBuffer update = new StringBuffer();
@@ -886,6 +892,11 @@ public class GeneralButtonManager implements IButtonManager,BillActionListener {
 					UFDouble noutnum = generalBillItemVO[j].getNoutnum();
 					String sql = "select execnum from mmpac_order_issue where pk_order_issue = '"+cfirstbillbid+"'";
 					Object execnum = (Object) iuap.executeQuery(sql, new ColumnProcessor());
+					
+					if(null==execnum) {
+						continue;
+					}
+					
 					UFDouble result  = new UFDouble(execnum.toString()).sub(noutnum);
 					StringBuffer update = new StringBuffer();
 					update.append(" update mmpac_order_issue set");
@@ -904,6 +915,12 @@ public class GeneralButtonManager implements IButtonManager,BillActionListener {
 					UFDouble noutnum = generalBillItemVO[j].getNoutnum();
 					String sql = "select bdef8 from mmpac_order_in where 	pk_order_in = '"+cfirstbillbid+"'";
 					Object bdef8 = (Object) iuap.executeQuery(sql, new ColumnProcessor());
+					
+					
+					if(null==bdef8) {
+						continue;
+					}
+					
 					UFDouble result  = new UFDouble(bdef8.toString()).sub(noutnum);
 					
 					StringBuffer update = new StringBuffer();
@@ -923,6 +940,12 @@ public class GeneralButtonManager implements IButtonManager,BillActionListener {
 					UFDouble noutnum = generalBillItemVO[j].getNoutnum();
 					String sql = "select execnum from mmpac_order_otherout where pk_order_otherout = '"+cfirstbillbid+"'";
 					Object execnum = (Object) iuap.executeQuery(sql, new ColumnProcessor());
+					
+					
+					if(null==execnum) {
+						continue;
+					}
+					
 					UFDouble result  = new UFDouble(execnum.toString()).sub(noutnum);
 					StringBuffer update = new StringBuffer();
 					update.append(" update mmpac_order_otherout set");
@@ -942,6 +965,13 @@ public class GeneralButtonManager implements IButtonManager,BillActionListener {
 					UFDouble ninnum = generalBillItemVO[j].getNinnum();
 					String sql = "select execnum from mmpac_order_otherin where pk_order_otherin = '"+cfirstbillbid+"'";
 					Object execnum = (Object) iuap.executeQuery(sql, new ColumnProcessor());
+					
+					
+					if(null==execnum) {
+						continue;
+					}
+					
+					
 					UFDouble result  = new UFDouble(execnum.toString()).sub(ninnum);
 					
 					StringBuffer update = new StringBuffer();