优化客户对账和供应商对账的导出excel功能

This commit is contained in:
季圣华
2023-10-15 23:24:46 +08:00
parent 6bf544fecd
commit d0ca531fc2
8 changed files with 403 additions and 71 deletions

View File

@@ -54,6 +54,9 @@ public interface DepotItemMapperEx {
List<DepotItemVo4WithInfoEx> getDetailList(
@Param("headerId") Long headerId);
List<DepotItemVo4WithInfoEx> getBillDetailListByIds(
@Param("idList") List<Long> idList);
List<DepotItemVo4WithInfoEx> findByAll(
@Param("materialParam") String materialParam,
@Param("categoryIdList") List<Long> categoryIdList,

View File

@@ -0,0 +1,34 @@
package com.jsh.erp.datasource.vo;
public class BillListCacheVo {
private String number;
private String organName;
private String operTimeStr;
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
public String getOrganName() {
return organName;
}
public void setOrganName(String organName) {
this.organName = organName;
}
public String getOperTimeStr() {
return operTimeStr;
}
public void setOperTimeStr(String operTimeStr) {
this.operTimeStr = operTimeStr;
}
}