GET api/Sale/GetSaleByMonthYear?month={month}&year={year}
Get sale by Month and year
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
month | integer |
Required |
|
year | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ReportViewModelName | Description | Type | Additional information |
---|---|---|---|
DailySale | DailySale |
None. |
|
MonthlySale | MonthlySale |
None. |
Response Formats
application/json, text/json
Sample:
{ "DailySale": { "$id": "2", "Description": "sample string 1", "GrandTotal": 2.0, "NetTotal": 3.0, "OutletSale": [ { "$id": "3", "OutletId": "a6b5e5e3-2488-4b5c-a496-074dd34bfed4", "SaleDate": "2025-04-04T05:31:11.0222244+02:00", "OutletName": "sample string 3", "GrossTotal": 4.0, "NetTotal": 5.0 }, { "$ref": "3" } ] }, "MonthlySale": { "$id": "4", "Description": "sample string 1", "SaleMonth": "sample string 2", "GrandTotal": 3.0, "NetTotal": 4.0, "OutletSale": [ { "$ref": "3" }, { "$ref": "3" } ] } }