feat(bid): add close date order management feature
新增结单时间管理功能,包括: 1. 新增结单统计接口与页面,展示待结单、今日/本周结单量和平均处理周期 2. 支持按单号、订单状态搜索查询结单列表 3. 支持批量设置收货日期并批量确认结单 4. 优化现有订单列表的表格列宽与布局
This commit is contained in:
@@ -115,4 +115,10 @@ public class BizDeliveryOrderController extends BaseController {
|
||||
public AjaxResult historyStats() {
|
||||
return success(service.selectHistoryStats());
|
||||
}
|
||||
|
||||
@PreAuthorize("@ss.hasPermi('bid:order:closeDate:edit')")
|
||||
@GetMapping("/closeDate/stats")
|
||||
public AjaxResult closeDateStats() {
|
||||
return success(service.selectCloseDateStats());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user