作者 yangfu

feat: 增加路由

- 生产历史记录
- 生产记录撤销
@@ -22,6 +22,10 @@ func init() { @@ -22,6 +22,10 @@ func init() {
22 web.Post("/v1/manufacture-weigh/product-plans/submit-product-record", middleware.RedirectManufactureWeigh()) 22 web.Post("/v1/manufacture-weigh/product-plans/submit-product-record", middleware.RedirectManufactureWeigh())
23 // 车间员工 23 // 车间员工
24 web.Post("/v1/manufacture-weigh/product-groups/employee-signing", middleware.RedirectManufactureWeigh()) 24 web.Post("/v1/manufacture-weigh/product-groups/employee-signing", middleware.RedirectManufactureWeigh())
  25 + // 生产记录撤回
  26 + web.Post("/v1/manufacture-weigh/product-records/cancel", middleware.RedirectManufactureWeigh())
  27 + // 历史记录
  28 + web.Post("/v1/manufacture-weigh/product-records/history", middleware.RedirectManufactureWeigh())
25 29
26 // 车间生产效率 30 // 车间生产效率
27 web.Post("/v1/manufacture-weigh/statistics/workshop-production-efficiency-statistics", middleware.RedirectManufactureWeigh()) 31 web.Post("/v1/manufacture-weigh/statistics/workshop-production-efficiency-statistics", middleware.RedirectManufactureWeigh())