소스 검색

问题处理

yzc 1 년 전
부모
커밋
ece5e40211
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      hx-sale/src/main/java/com/fjhx/sale/service/contract/impl/ContractServiceImpl.java

+ 4 - 1
hx-sale/src/main/java/com/fjhx/sale/service/contract/impl/ContractServiceImpl.java

@@ -678,7 +678,10 @@ public class ContractServiceImpl extends ServiceImpl<ContractMapper, Contract>
                 //计数毛利
 
                 //退税金额
-                BigDecimal refundableAmount = contractBudgetVo.getRefundableAmount();
+                ContractBudgetVo cb1 = new ContractBudgetVo();
+                cb1.setEhsdSumAmount(grossProfitInfo.getPurchaseAmount());
+                handleRefundTax(cb1);
+                BigDecimal refundableAmount = cb1.getRefundableAmount();
                 //总收入
                 BigDecimal incomeAmount = grossProfitInfo.getContractRmbAmount().add(refundableAmount);