This commit is contained in:
linfso 2024-12-29 13:37:43 +08:00
parent 5fe2fc6a67
commit b8b4f63ea0
2 changed files with 7 additions and 1 deletions

View File

@ -146,7 +146,6 @@ public class EmisWarehouseInController extends EmisBaseController
return AjaxResult.success(emisWarehouseInService.selectEmisWarehouseInById(id));
}
@GetMapping("/getWarehouseInInfo")
public AjaxResult getWarehouseInInfo(String inNo)
{

View File

@ -176,6 +176,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
)
</if>
<if test="params.privSiteCode != null and params.privSiteCode == '88888'">
and EXISTS (
select 1 from emis_waybill ewb where a.bill_code=ewb.bill_code and ewb.pickup_method in('1','3') and ewb.order_status in ('0','1','3')
)
</if>
</where>
order by create_time desc
</select>