客户查询明细表

This commit is contained in:
mzr 2024-10-31 15:53:30 +08:00
parent b4e2fcc348
commit 8dc5e2b0ea
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public class ClientStockReportService {
**/
public List listClientStockDetail(Map<String, Object> params) {
List<Map<String, Object>> list = new ArrayList<>();
List<Map<String, Object>> goodsList = this.findList(params, "ListClientStockDetail");
List<Map<String, Object>> goodsList = this.findList(params, ".getClientInventoryDetail");
for (Map<String, Object> goodsMap : goodsList) {
Map<String, Object> selMap = new HashMap<>(params);
selMap.put("goodsNo", goodsMap.get("goodsNo"));