erp查询接口修改

This commit is contained in:
hxt
2025-10-30 09:29:53 +08:00
parent 05a6278d18
commit e6d3fe8584
2 changed files with 2 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ public class ErpExternalApiImpl implements ErpExternalApi {
@Override
public HashMap<String, Object> queryDataToErp(ErpQueryReqDTO reqDTO) {
String funcnr = reqDTO.getFuncnr();
Map<String, Object> req = new HashMap<>();
Map<String, Object> req = reqDTO.getReq();
return erpConfig.fetchDataFromERP(funcnr, req);
}