master
rdpnr_hemingxia 2025-04-11 16:31:41 +08:00
commit 7ad3874d09
2 changed files with 7 additions and 1 deletions

View File

@ -40,6 +40,12 @@ public class OrderDeliveryController extends BaseController
{
return prefix + "/delivery";
}
@RequiresPermissions("manage:delivery:view")
@GetMapping("/import")
public String importView()
{
return prefix + "/import";
}
/**
*

View File

@ -127,7 +127,7 @@
updated_at,
deleted_at
from order_list
where order_id = (select order_id from delivery_list where id = #{deliveryId})
where order_id = (select order_id from order_delivery where id = #{deliveryId} and status=0)
and status=0
</select>