pad接口-退货-退货指令查询-去掉nuid必传

This commit is contained in:
1378012178@qq.com 2025-12-08 11:03:41 +08:00
parent a655e5b7d6
commit 3c7926608a
2 changed files with 0 additions and 4 deletions

View File

@ -37,9 +37,6 @@ public class InvoicingThdApi {
public Result<IPage<InvoicingThdMainEntity>> thdList(InvoicingThdMainEntity dto,
@RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize) {
if (StringUtils.isBlank(dto.getNuId())) {
return Result.error("缺少参数");
}
IPage<InvoicingThdMainEntity> pageList = tuiHuoApi.thdList(pageNo, pageSize, dto);
return Result.OK(pageList);
}

View File

@ -20,7 +20,6 @@
LEFT JOIN sys_dict dict ON dict.dict_code = 'thd_status'
LEFT JOIN sys_dict_item logStatus ON logStatus.dict_id = dict.id AND logStatus.item_value = main.status
<where>
main.nu_id = #{dto.nuId}
<if test="dto.searchContent != null and dto.searchContent != ''">
AND (
sqrtemp.realname LIKE CONCAT('%', #{dto.searchContent}, '%')