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