update order status

This commit is contained in:
Aditya Siregar
2025-08-13 23:36:31 +07:00
parent ccb0458189
commit ee7d0e529b
9 changed files with 846 additions and 35 deletions
+2
View File
@@ -205,6 +205,8 @@ func (r *Router) addAppRoutes(rg *gin.Engine) {
inventory.POST("/adjust", r.inventoryHandler.AdjustInventory)
inventory.GET("/low-stock/:outlet_id", r.inventoryHandler.GetLowStockItems)
inventory.GET("/zero-stock/:outlet_id", r.inventoryHandler.GetZeroStockItems)
inventory.GET("/report/summary/:outlet_id", r.inventoryHandler.GetInventoryReportSummary)
inventory.GET("/report/details", r.inventoryHandler.GetInventoryReportDetails)
}
orders := protected.Group("/orders")