修复其他免税编辑功能
This commit is contained in:
parent
d096597a0a
commit
5946ea6985
|
|
@ -83,6 +83,7 @@ public class EndowmentInsuranceListDTO {
|
||||||
|
|
||||||
@ExcelProperty(index = 6)
|
@ExcelProperty(index = 6)
|
||||||
@TableTitle(title = "申报扣除月份", dataIndex = "deductionMonth", key = "deductionMonth")
|
@TableTitle(title = "申报扣除月份", dataIndex = "deductionMonth", key = "deductionMonth")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM", timezone = "GMT+8")
|
||||||
private Date deductionMonth;
|
private Date deductionMonth;
|
||||||
|
|
||||||
@ExcelProperty(index = 7)
|
@ExcelProperty(index = 7)
|
||||||
|
|
|
||||||
|
|
@ -503,7 +503,7 @@
|
||||||
</if>
|
</if>
|
||||||
</foreach>
|
</foreach>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="free_income =case" suffix="end,">
|
<trim prefix="derate_deduction =case" suffix="end,">
|
||||||
<foreach collection="collection" item="item" index="index">
|
<foreach collection="collection" item="item" index="index">
|
||||||
<if test="item.derateDeduction!=null">
|
<if test="item.derateDeduction!=null">
|
||||||
when id=#{item.id} then #{item.derateDeduction}
|
when id=#{item.id} then #{item.derateDeduction}
|
||||||
|
|
|
||||||
|
|
@ -2520,6 +2520,7 @@ public class OtherDeductionServiceImpl extends Service implements OtherDeduction
|
||||||
.taxYearMonth(deductionPO.getDeclareMonth())
|
.taxYearMonth(deductionPO.getDeclareMonth())
|
||||||
.employeeId(deductionPO.getEmployeeId())
|
.employeeId(deductionPO.getEmployeeId())
|
||||||
.taxAgentId(deductionPO.getTaxAgentId())
|
.taxAgentId(deductionPO.getTaxAgentId())
|
||||||
|
.deductionMonth(param.getDeductionMonth())
|
||||||
.accountNumber(param.getAccountNumber())
|
.accountNumber(param.getAccountNumber())
|
||||||
.checkCode(param.getCheckCode())
|
.checkCode(param.getCheckCode())
|
||||||
.yearPremium(param.getYearPremium())
|
.yearPremium(param.getYearPremium())
|
||||||
|
|
@ -2541,6 +2542,7 @@ public class OtherDeductionServiceImpl extends Service implements OtherDeduction
|
||||||
}
|
}
|
||||||
|
|
||||||
po.setUpdateTime(now);
|
po.setUpdateTime(now);
|
||||||
|
po.setDeductionMonth(param.getDeductionMonth());
|
||||||
po.setAccountNumber(param.getAccountNumber());
|
po.setAccountNumber(param.getAccountNumber());
|
||||||
po.setCheckCode(param.getCheckCode());
|
po.setCheckCode(param.getCheckCode());
|
||||||
po.setYearPremium(param.getYearPremium());
|
po.setYearPremium(param.getYearPremium());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue