corrections in stockrequest table

This commit is contained in:
2026-07-09 15:30:04 +05:30
parent 135df9fd18
commit 1437a08be5
10 changed files with 186 additions and 10 deletions

View File

@@ -470,3 +470,12 @@ type SalesSummaryResponse struct {
ChartData []SalesSummaryChartData `json:"chartData"`
TopLocations []SalesSummaryTopLocation `json:"topLocations"`
}
type TimeSeriesData struct {
Label string `json:"label"`
Orders int `json:"orders"`
Revenue float64 `json:"revenue"`
Cancelled int `json:"cancelled"`
Delivered int `json:"delivered"`
Activeskus int `json:"activeskus"`
}