|
@@ -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);
|
|
|
|