update 全所统计导出增加项目年份

This commit is contained in:
lijiarao
2023-07-24 14:12:55 +08:00
parent 4512a44674
commit f28a2ffbc8
2 changed files with 9 additions and 2 deletions
@@ -456,7 +456,8 @@
packText,
pack,
invoiceNoTaxAmount as billMoney,
confirmNoTaxAmount as confirmAmount
confirmNoTaxAmount as confirmAmount,
year
from
<if test="allProjectStatisticsSearch.paymentYear == null or allProjectStatisticsSearch.paymentYear == ''">
v_statistical v
@@ -2435,7 +2436,8 @@
allMoney,
paidNoTaxAmount AS comeAllMoney,
invoiceNoTaxAmount AS billMoney,
confirmNoTaxAmount AS confirmAmount
confirmNoTaxAmount AS confirmAmount,
year
FROM v_statistical v
left join pay_mail_bill_project pmbp on v.projectId = pmbp.project_id
left join pay_mail_bill pmb on pmb.id = pmbp.bill_id
@@ -68,6 +68,11 @@ public class AllProjectStatistics {
@ApiModelProperty(value = "到账时间")
private String paymentDate;
@Excel(name = "项目年份", width = 15)
@ApiModelProperty(value = "项目年份")
private String year;
public AllProjectStatistics(String allMoney, String confirmAmount, String billMoney, String comeAllMoney, String paymentDate) {
this.allMoney=allMoney;
this.confirmAmount=confirmAmount;