From 8727da35394c68314cc59a45161341b3f0ec9297 Mon Sep 17 00:00:00 2001 From: gaorl Date: Thu, 17 Aug 2023 10:07:52 +0800 Subject: [PATCH] =?UTF-8?q?feature=EF=BC=9A=E8=B4=AD=E6=96=B9=E7=BC=96?= =?UTF-8?q?=E7=A0=81=E6=96=B0=E5=A2=9E=E6=A8=A1=E7=B3=8A=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B4=AD=E6=96=B9=E7=BC=96=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../consumer/modules/order/controller/BuyerController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/order-management-consumer/src/main/java/com/dxhy/order/consumer/modules/order/controller/BuyerController.java b/order-management-consumer/src/main/java/com/dxhy/order/consumer/modules/order/controller/BuyerController.java index 36beac55..d9759e6a 100644 --- a/order-management-consumer/src/main/java/com/dxhy/order/consumer/modules/order/controller/BuyerController.java +++ b/order-management-consumer/src/main/java/com/dxhy/order/consumer/modules/order/controller/BuyerController.java @@ -341,7 +341,7 @@ public class BuyerController { @ApiOperation(value = "购方信息模糊查询", notes = "购方信息管理-购方信息模糊查询") @SysLog(operation = "购方信息模糊查询", operationDesc = "购方信息模糊查询操作", key = "购方信息管理") public R queryBuyerInfoList(@RequestParam String purchaseName, - @RequestParam String buyerCode, +// @RequestParam String buyerCode, @RequestParam String xhfNsrsbh, @ApiParam(name = "entList", value = "数据组织Id数组", required = false) @RequestParam(value = "entList", required = false) String entList) { if (StringUtils.isBlank(xhfNsrsbh)) { @@ -351,7 +351,7 @@ public class BuyerController { List shList = JSON.parseArray(xhfNsrsbh, String.class); List entList1 = NsrsbhUtils.transShListByXhfNsrsbh(entList); - List buyerEntityList = buyerService.autoQueryBuyerInfoList(purchaseName, buyerCode, shList, entList1); + List buyerEntityList = buyerService.autoQueryBuyerInfoList(purchaseName, "", shList, entList1); return R.ok().put(OrderManagementConstant.DATA, buyerEntityList); }