feature:购方编码新增模糊查询添加购方编码

release
gaorl 2 years ago
parent 2d0cbc48a2
commit 8727da3539
  1. 4
      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<String> shList = JSON.parseArray(xhfNsrsbh, String.class);
List<String> entList1 = NsrsbhUtils.transShListByXhfNsrsbh(entList);
List<BuyerEntity> buyerEntityList = buyerService.autoQueryBuyerInfoList(purchaseName, buyerCode, shList, entList1);
List<BuyerEntity> buyerEntityList = buyerService.autoQueryBuyerInfoList(purchaseName, "", shList, entList1);
return R.ok().put(OrderManagementConstant.DATA, buyerEntityList);
}

Loading…
Cancel
Save