|
|
|
@ -341,6 +341,7 @@ public class BuyerController { |
|
|
|
|
@ApiOperation(value = "购方信息模糊查询", notes = "购方信息管理-购方信息模糊查询") |
|
|
|
|
@SysLog(operation = "购方信息模糊查询", operationDesc = "购方信息模糊查询操作", key = "购方信息管理") |
|
|
|
|
public R queryBuyerInfoList(@RequestParam String purchaseName, |
|
|
|
|
@RequestParam String buyerCode, |
|
|
|
|
@RequestParam String xhfNsrsbh, |
|
|
|
|
@ApiParam(name = "entList", value = "数据组织Id数组", required = false) @RequestParam(value = "entList", required = false) String entList) { |
|
|
|
|
if (StringUtils.isBlank(xhfNsrsbh)) { |
|
|
|
@ -350,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, "", shList, entList1); |
|
|
|
|
List<BuyerEntity> buyerEntityList = buyerService.autoQueryBuyerInfoList(purchaseName, buyerCode, shList, entList1); |
|
|
|
|
|
|
|
|
|
return R.ok().put(OrderManagementConstant.DATA, buyerEntityList); |
|
|
|
|
} |
|
|
|
|