增加接口:获取待收款或付款的条数

This commit is contained in:
jishenghua
2025-04-28 17:20:53 +08:00
parent 8788173078
commit 207c606c49
2 changed files with 49 additions and 0 deletions

View File

@@ -928,6 +928,32 @@ public class DepotHeadService {
return list;
}
public int getNeedCount(String supplierType) throws Exception {
String type = "";
String subType = "";
String typeBack = "";
String subTypeBack = "";
String billType = "";
if (("vendor").equals(supplierType)) {
type = "入库";
subType = "采购";
typeBack = "出库";
subTypeBack = "采购退货";
billType = "付款";
} else if (("customer").equals(supplierType)) {
type = "出库";
subType = "销售";
typeBack = "入库";
subTypeBack = "销售退货";
billType = "收款";
}
String beginTime = Tools.parseDayToTime(Tools.getYearBegin(), BusinessConstants.DAY_FIRST_TIME);
String endTime = Tools.getCenternTime(new Date());
String [] organArray = getOrganArray(subType, "");
return getStatementAccountCount(beginTime, endTime, null, organArray,
1, supplierType, type, subType,typeBack, subTypeBack, billType);
}
public List<DepotHeadVo4List> getDetailByNumber(String number, HttpServletRequest request)throws Exception {
List<DepotHeadVo4List> resList = new ArrayList<>();
try{