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); }