add 回显税率
This commit is contained in:
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import com.jero.mail.entity.PayMailBill;
|
||||
import com.jero.mail.entity.PayMailBillProject;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
@@ -34,6 +35,7 @@ public class PayMailBillVO extends PayMailBill {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
@@ -7,6 +7,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
@@ -56,6 +57,7 @@ public class PayMailBillProject implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
+1
@@ -502,6 +502,7 @@ public class PayMeetingSituation implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
+1
@@ -339,6 +339,7 @@ public class PayMemberProjectSubitem implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
+1
@@ -332,6 +332,7 @@ public class TbCertificatePayment implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
+1
@@ -315,6 +315,7 @@ public class TbMemberProjectSubitem implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
+2
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
@@ -108,6 +109,7 @@ public class PayConfirmPaymentRecord implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
@@ -119,6 +119,7 @@ public class PayPaymentRecord implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
@@ -306,6 +306,7 @@ public class PayCommonProject implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
+1
@@ -442,6 +442,7 @@ public class PayWorkingGroupSubItem implements Serializable {
|
||||
/**税率*/
|
||||
@ApiModelProperty(value = "税率")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||
@Dict(dicCode = "rate")
|
||||
private BigDecimal taxRate;
|
||||
|
||||
/**税额*/
|
||||
|
||||
+4
-1
@@ -38,7 +38,10 @@
|
||||
pcp.update_by,
|
||||
pcp.update_time,
|
||||
pcp.invoice_amount,
|
||||
pcp.payment_status
|
||||
pcp.payment_status,
|
||||
pcp.tax,
|
||||
pcp.tax_rate,
|
||||
pcp.no_tax_amount
|
||||
FROM pay_common_project pcp
|
||||
left join sys_user su on pcp.principal_id = su.id
|
||||
LEFT JOIN pay_payment_record ppr ON ppr.project_id = pcp.id
|
||||
|
||||
+4
-1
@@ -40,7 +40,10 @@
|
||||
pwgs.remarks,
|
||||
pwgs.create_by AS createBy,
|
||||
pwgs.create_time AS createTime,
|
||||
pwgs.update_by AS updateBy
|
||||
pwgs.update_by AS updateBy,
|
||||
pwgs.tax,
|
||||
pwgs.tax_rate,
|
||||
pwgs.no_tax_amount
|
||||
FROM pay_working_group_subitem pwgs
|
||||
LEFT JOIN pay_payment_record ppr ON ppr.project_id = pwgs.id
|
||||
<where>
|
||||
|
||||
Reference in New Issue
Block a user