应收账单添加 税额 无税费用;
This commit is contained in:
+4
-1
@@ -252,5 +252,8 @@ public class ReconciliationDTO extends BaseVOEntity{
|
|||||||
|
|
||||||
@ApiModelProperty(value = "财务审核意见")
|
@ApiModelProperty(value = "财务审核意见")
|
||||||
private String financeReviewOpinion;
|
private String financeReviewOpinion;
|
||||||
|
@ApiModelProperty(value = "无税费用")
|
||||||
|
private BigDecimal taxFreeFee;
|
||||||
|
@ApiModelProperty(value = "税额")
|
||||||
|
private BigDecimal taxAmount;
|
||||||
}
|
}
|
||||||
+5
@@ -255,4 +255,9 @@ public class Reconciliation extends BaseVOEntity{
|
|||||||
@ApiModelProperty(value = "财务审核意见")
|
@ApiModelProperty(value = "财务审核意见")
|
||||||
private String financeReviewOpinion;
|
private String financeReviewOpinion;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "无税费用")
|
||||||
|
private BigDecimal taxFreeFee;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "税额")
|
||||||
|
private BigDecimal taxAmount;
|
||||||
}
|
}
|
||||||
+4
@@ -263,4 +263,8 @@ public class ReconciliationPO extends BaseVOEntity{
|
|||||||
@ApiModelProperty(value = "财务审核意见")
|
@ApiModelProperty(value = "财务审核意见")
|
||||||
private String financeReviewOpinion;
|
private String financeReviewOpinion;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "无税费用")
|
||||||
|
private BigDecimal taxFreeFee;
|
||||||
|
@ApiModelProperty(value = "税额")
|
||||||
|
private BigDecimal taxAmount;
|
||||||
}
|
}
|
||||||
+5
@@ -292,4 +292,9 @@ public class ReconciliationDO extends BaseVOEntity{
|
|||||||
|
|
||||||
@ApiModelProperty(value = "账单科目明细")
|
@ApiModelProperty(value = "账单科目明细")
|
||||||
public List<ReconciliationAccountDTO> reconciliationAccountDTOList;
|
public List<ReconciliationAccountDTO> reconciliationAccountDTOList;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "无税费用")
|
||||||
|
private BigDecimal taxFreeFee;
|
||||||
|
@ApiModelProperty(value = "税额")
|
||||||
|
private BigDecimal taxAmount;
|
||||||
}
|
}
|
||||||
@@ -279,7 +279,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
sk_synchronous_status,
|
sk_synchronous_status,
|
||||||
sk_synchronous_time,
|
sk_synchronous_time,
|
||||||
sk_nc_id,
|
sk_nc_id,
|
||||||
account_information
|
account_information,
|
||||||
|
tax_amount,
|
||||||
|
tax_free_fee
|
||||||
) VALUES (
|
) VALUES (
|
||||||
#{verificationMoney},
|
#{verificationMoney},
|
||||||
#{settlementCount},
|
#{settlementCount},
|
||||||
@@ -352,7 +354,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<if test="skSynchronousStatus != null">#{skSynchronousStatus}</if>,
|
<if test="skSynchronousStatus != null">#{skSynchronousStatus}</if>,
|
||||||
#{skSynchronousTime},
|
#{skSynchronousTime},
|
||||||
#{skNcId},
|
#{skNcId},
|
||||||
#{accountInformation}
|
#{accountInformation},
|
||||||
|
#{taxAmount},
|
||||||
|
#{taxFreeFee}
|
||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
</mapper>
|
</mapper>
|
||||||
Reference in New Issue
Block a user