|
@@ -40,7 +40,7 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
private String projectName; // 项目名称
|
|
private String projectName; // 项目名称
|
|
private String reportNumber; // 报告号
|
|
private String reportNumber; // 报告号
|
|
private Double money; // 价税合计
|
|
private Double money; // 价税合计
|
|
- private String moneyStr; // 价税合计(String)
|
|
|
|
|
|
+ private Double moneyStr; // 价税合计(String)
|
|
private String invoiceType; // 发票类型
|
|
private String invoiceType; // 发票类型
|
|
private String invoiceTypeStr; // 发票类型Str
|
|
private String invoiceTypeStr; // 发票类型Str
|
|
private String chargeType; // 收款类型
|
|
private String chargeType; // 收款类型
|
|
@@ -85,7 +85,7 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
private Integer notifyFlag; //代办判定条件
|
|
private Integer notifyFlag; //代办判定条件
|
|
private String notifyId; //代办判定条件
|
|
private String notifyId; //代办判定条件
|
|
private String widNumber; //发票号
|
|
private String widNumber; //发票号
|
|
- private String widTotalMoney; //发票金额
|
|
|
|
|
|
+ private Double widTotalMoney; //发票金额
|
|
private Area area = new Area(); // 对账地区
|
|
private Area area = new Area(); // 对账地区
|
|
|
|
|
|
|
|
|
|
@@ -303,12 +303,12 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
this.money = money;
|
|
this.money = money;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="开票总金额(元)", align=2, sort=7, fieldType=Double.class)
|
|
|
|
- public String getMoneyStr() {
|
|
|
|
|
|
+ @ExcelField(title="开票总金额(元)", align=2, sort=7)
|
|
|
|
+ public Double getMoneyStr() {
|
|
return moneyStr;
|
|
return moneyStr;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMoneyStr(String moneyStr) {
|
|
|
|
|
|
+ public void setMoneyStr(Double moneyStr) {
|
|
this.moneyStr = moneyStr;
|
|
this.moneyStr = moneyStr;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -607,12 +607,12 @@ public class WorkInvoiceExport extends ActEntity<WorkInvoiceExport> {
|
|
this.widNumber = widNumber;
|
|
this.widNumber = widNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="发票金额(元)", align=2, sort=10, fieldType=Double.class)
|
|
|
|
- public String getWidTotalMoney() {
|
|
|
|
|
|
+ @ExcelField(title="发票金额(元)", align=2, sort=10)
|
|
|
|
+ public Double getWidTotalMoney() {
|
|
return widTotalMoney;
|
|
return widTotalMoney;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setWidTotalMoney(String widTotalMoney) {
|
|
|
|
|
|
+ public void setWidTotalMoney(Double widTotalMoney) {
|
|
this.widTotalMoney = widTotalMoney;
|
|
this.widTotalMoney = widTotalMoney;
|
|
}
|
|
}
|
|
|
|
|