update 全所统计导出增加项目年份
This commit is contained in:
+4
-2
@@ -456,7 +456,8 @@
|
|||||||
packText,
|
packText,
|
||||||
pack,
|
pack,
|
||||||
invoiceNoTaxAmount as billMoney,
|
invoiceNoTaxAmount as billMoney,
|
||||||
confirmNoTaxAmount as confirmAmount
|
confirmNoTaxAmount as confirmAmount,
|
||||||
|
year
|
||||||
from
|
from
|
||||||
<if test="allProjectStatisticsSearch.paymentYear == null or allProjectStatisticsSearch.paymentYear == ''">
|
<if test="allProjectStatisticsSearch.paymentYear == null or allProjectStatisticsSearch.paymentYear == ''">
|
||||||
v_statistical v
|
v_statistical v
|
||||||
@@ -2435,7 +2436,8 @@
|
|||||||
allMoney,
|
allMoney,
|
||||||
paidNoTaxAmount AS comeAllMoney,
|
paidNoTaxAmount AS comeAllMoney,
|
||||||
invoiceNoTaxAmount AS billMoney,
|
invoiceNoTaxAmount AS billMoney,
|
||||||
confirmNoTaxAmount AS confirmAmount
|
confirmNoTaxAmount AS confirmAmount,
|
||||||
|
year
|
||||||
FROM v_statistical v
|
FROM v_statistical v
|
||||||
left join pay_mail_bill_project pmbp on v.projectId = pmbp.project_id
|
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
|
left join pay_mail_bill pmb on pmb.id = pmbp.bill_id
|
||||||
|
|||||||
+5
@@ -68,6 +68,11 @@ public class AllProjectStatistics {
|
|||||||
@ApiModelProperty(value = "到账时间")
|
@ApiModelProperty(value = "到账时间")
|
||||||
private String paymentDate;
|
private String paymentDate;
|
||||||
|
|
||||||
|
@Excel(name = "项目年份", width = 15)
|
||||||
|
@ApiModelProperty(value = "项目年份")
|
||||||
|
private String year;
|
||||||
|
|
||||||
|
|
||||||
public AllProjectStatistics(String allMoney, String confirmAmount, String billMoney, String comeAllMoney, String paymentDate) {
|
public AllProjectStatistics(String allMoney, String confirmAmount, String billMoney, String comeAllMoney, String paymentDate) {
|
||||||
this.allMoney=allMoney;
|
this.allMoney=allMoney;
|
||||||
this.confirmAmount=confirmAmount;
|
this.confirmAmount=confirmAmount;
|
||||||
|
|||||||
Reference in New Issue
Block a user