feat(bid): add in-transit order management feature

实现了在途订单的统计查询、列表展示以及相关的订单操作功能,包括收货完成、延期、撤回等,同时新增了对应的后台接口、Mapper以及路由页面。
This commit is contained in:
2026-06-12 10:12:19 +08:00
parent 91f29d36ee
commit b975fd0bc6
7 changed files with 301 additions and 1 deletions

View File

@@ -99,4 +99,14 @@ public class BizDeliveryOrderController extends BaseController {
public AjaxResult materialRecords(@PathVariable Long materialId) {
return success(service.selectMaterialRecords(materialId));
}
// ════════════════════════════════════════
// 在途统计
// ════════════════════════════════════════════
@PreAuthorize("@ss.hasPermi('bid:order:transit')")
@GetMapping("/transit/stats")
public AjaxResult transitStats() {
return success(service.selectTransitStats());
}
}