wks 1 год назад
Родитель
Сommit
1083ed553d

+ 6 - 0
src/main/java/com/ydtech/modules/order/entity/vo/InsOrdersEditingVo.java

@@ -251,6 +251,9 @@ public class InsOrdersEditingVo extends InsOrders implements Serializable {
             this.syExportFee = null;
             this.noExportFee = null;
             this.sumExportFee = null;
+            this.jqExportRadio = null;
+            this.syExportRadio = null;
+            this.noExportRadio = null;
         }
 
         public void feeDivideBy10() {
@@ -258,6 +261,9 @@ public class InsOrdersEditingVo extends InsOrders implements Serializable {
             this.syExportFee = BigDecimalUtils.nullToZero(this.syExportFee).divide(new BigDecimal(10));
             this.noExportFee = BigDecimalUtils.nullToZero(this.noExportFee).divide(new BigDecimal(10));
             this.sumExportFee = BigDecimalUtils.nullToZero(this.sumExportFee).divide(new BigDecimal(10));
+            this.jqExportRadio = BigDecimalUtils.nullToZero(this.jqExportRadio).divide(new BigDecimal(10));
+            this.syExportRadio = BigDecimalUtils.nullToZero(this.syExportRadio).divide(new BigDecimal(10));
+            this.noExportRadio = BigDecimalUtils.nullToZero(this.noExportRadio).divide(new BigDecimal(10));
         }
 
         public InsAreaCompanyEditingDto(InsAreaCompanyQueryDto insAreaCompany) {

+ 3 - 0
src/main/java/com/ydtech/modules/order/service/impl/InsOrdersServiceImpl.java

@@ -948,6 +948,9 @@ public class InsOrdersServiceImpl extends ServiceImpl<InsOrdersMapper, InsOrders
                             item.setSyExportFee(null);
                             item.setNoExportFee(null);
                             item.setSumExportFee(null);
+                            item.setJqExportRadio(null);
+                            item.setSyExportRadio(null);
+                            item.setNoExportRadio(null);
                         }
                 );
             } else {