package router import ( "cold-logistics/app/admin/controller" "cold-logistics/common/actions" "github.com/gin-gonic/gin" jwt "gogs.baozhida.cn/zoie/OAuth-core/pkg/jwtauth" ) func init() { routerCheckRole = append(routerCheckRole, registerWaybillRouter) routerNoCheckRole = append(routerNoCheckRole, registerWaybillRouter2) } // 派费管理 // 需认证的路由代码 func registerWaybillRouter(v1 *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware) { cont := controller.WaybillController{} r := v1.Group("/waybill").Use(authMiddleware.MiddlewareFunc()).Use(actions.PermissionAction()) { r.GET("", cont.GetPage) r.GET("/:waybillNo", cont.Get) r.POST("", cont.Insert) r.POST("/applet", cont.AppletInsert) r.POST("/delivery", cont.Delivery) r.PUT("", cont.Update) r.DELETE("", cont.Delete) r.POST("/warehouse-in", cont.WarehouseIn) // 入库 //r.POST("/warehouse-out", cont.WarehouseOut) // 出库 r.POST("/car-in", cont.CarIn) // 装车 //r.POST("/car-out", cont.CarOut) // 下车 r.POST("/cooler-box-in", cont.CoolerBoxIn) // 装箱 r.POST("/stop-record", cont.StopRecord) // 停止记录 r.POST("/receipt", cont.Receipt) // 签收 r.GET("/customer", cont.GetCustomerPage) // 客户下单列表 r.POST("/customer", cont.CustomerInsert) // 客户下单 r.GET("/applet", cont.GetAppletPage) // app 运单列表 r.GET("/applet-count", cont.GetAppletCount) // app 运单-统计 r.POST("/import", cont.Import) // 导入运单 r.GET("/export-template", cont.ExportTemplate) // 导出运单模板 r.GET("/home", cont.Home) // 首页统计 r.GET("/export", cont.Export) // 运单管理-导出 r.GET("/customer/export", cont.CustomerExport) // 运单管理-客户导出 r.POST("/temperature-pdf", cont.TemperaturePDF) // 导出温湿度pdf r.GET("/waybill-pdf", cont.WaybillPDF) // 导出运单pdf r.POST("/send-mail", cont.SendMail) // 发送温湿度邮件 } } func registerWaybillRouter2(v1 *gin.RouterGroup) { cont := controller.WaybillController{} r := v1.Group("/waybill") { r.POST("/temperature-pdf-url", cont.TemperaturePDFUrl) // 导出温湿度pdf } }