|
|
@@ -2,6 +2,7 @@ package com.uas.platform.b2b.erp.model;
|
|
|
|
|
|
import com.uas.platform.b2b.model.PurchaseApCheck;
|
|
|
import com.uas.platform.b2b.model.PurchaseApCheckItem;
|
|
|
+import com.uas.platform.b2b.support.DecimalUtils;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
import java.util.*;
|
|
|
@@ -172,9 +173,8 @@ public class APCheck{
|
|
|
this.ac_remark = apCheck.getRemark();
|
|
|
this.ac_commitdate = apCheck.getCommitDate();
|
|
|
this.ac_status = apCheck.getStatus();
|
|
|
- this.ac_checkamount = apCheck.getCheckAmount();
|
|
|
+ this.ac_checkamount = DecimalUtils.decimalPoint(apCheck.getCheckAmount(), 2);
|
|
|
this.ac_currency = apCheck.getCurrency();
|
|
|
-// this.ac_rate = apCheck.getTaxrate();
|
|
|
this.ac_rate = apCheck.getRate();
|
|
|
this.ac_paymentname = apCheck.getPayments();
|
|
|
this.ac_custuu = apCheck.getCustUu();
|