fix(so): 修复销售订单修改API中的数值处理逻辑
This commit is contained in:
		
							parent
							
								
									d715da0077
								
							
						
					
					
						commit
						3dd0144e6b
					
				|  | @ -1637,7 +1637,6 @@ public class APISaleOrderMaitainImpl implements IAPISaleOrderMaitain { | |||
|          * 累计安排生产订单主数量 narrangemonum | ||||
|          * 累计发货主数量 ntotalsendnum | ||||
|          * 累计排产主数量 vbdef12 | ||||
|          * ʵÌåµÄÔöɾ¸Ä status VOStatus.NEW VOStatus.UPDATED | ||||
|          */ | ||||
|         if (newVO == null || oldVO == null) return; | ||||
| 
 | ||||
|  | @ -1674,12 +1673,12 @@ public class APISaleOrderMaitainImpl implements IAPISaleOrderMaitain { | |||
|             UFDouble newNorigtaxmny = newBody.getNorigtaxmny(); | ||||
|             UFDouble oldNorigtaxmny = oldBody.getNorigtaxmny(); | ||||
| 
 | ||||
|             UFDouble ntotalinvoicenum = getUFDouble_NullAsOne(newBody.getNtotalinvoicenum()); | ||||
|             UFDouble ntotalarmny = getUFDouble_NullAsOne(newBody.getNtotalarmny()); | ||||
|             UFDouble ntotaloutnum = getUFDouble_NullAsOne(newBody.getNtotaloutnum()); | ||||
|             UFDouble narrangemonum = getUFDouble_NullAsOne(newBody.getNarrangemonum()); | ||||
|             UFDouble ntotalsendnum = getUFDouble_NullAsOne(newBody.getNtotalsendnum()); | ||||
|             UFDouble vbdef12 = getUFDouble_NullAsOne(newBody.getVbdef12()); | ||||
|             UFDouble ntotalinvoicenum = BFPubTools.getUFDouble_NullAsZero(newBody.getNtotalinvoicenum()); | ||||
|             UFDouble ntotalarmny = BFPubTools.getUFDouble_NullAsZero(newBody.getNtotalarmny()); | ||||
|             UFDouble ntotaloutnum = BFPubTools.getUFDouble_NullAsZero(newBody.getNtotaloutnum()); | ||||
|             UFDouble narrangemonum = BFPubTools.getUFDouble_NullAsZero(newBody.getNarrangemonum()); | ||||
|             UFDouble ntotalsendnum = BFPubTools.getUFDouble_NullAsZero(newBody.getNtotalsendnum()); | ||||
|             UFDouble vbdef12 = BFPubTools.getUFDouble_NullAsZero(newBody.getVbdef12()); | ||||
|             String crowno = newBody.getCrowno(); | ||||
| 
 | ||||
|             // 1. 修改行校验 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue