新增处方平台取消订单

This commit is contained in:
2023-09-13 10:49:42 +08:00
parent 6f77093b38
commit 29e05ef1ce
11 changed files with 391 additions and 13 deletions
+9
View File
@@ -386,5 +386,14 @@ func privateRouter(r *gin.Engine, api controller.Api) {
// 取消药品订单
productGroup.PUT("/cancel/:order_product_id", api.OrderProduct.CancelOrderProduct)
}
// 上报数据
reportGroup := orderGroup.Group("/report")
{
// 上报处方平台
reportGroup.POST("/pre/:order_product_id", api.Order.ReportPreOrder)
// 上报监管平台
}
}
}