Description
Multi Currency: Return database currency code in field dbCurrency depend on if Multi Currency is Enabled then we:
- calculate and return data in database currency
else
- calculate and return data in order / original currency (with value NULL for currency code).
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
fromDate |
string |
0 |
20.06.2023 |
Date from. |
| 2 |
toDate |
string |
0 |
20.06.2023 |
Date to. |
| 3 |
ShopID |
string |
0 |
ABC |
Shop Id. |
Request body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
<soapenv:Header/>
<soapenv:Body>
<dem:pixiReportTurnover>
<dem:fromDate>20.06.2023</dem:fromDate>
<dem:toDate>20.06.2023</dem:toDate>
<dem:ShopID>ABC</dem:ShopID>
</dem:pixiReportTurnover>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Result set
| # |
Name |
Type |
Description |
| 1 |
TurnoverNetGivenDate |
string |
Turnover on gived date - today |
| 2 |
TurnoverNetDayBefore |
string |
Turnover for day before given date - yesterday |
| 3 |
TurnoverNetGivenMonth |
string |
Turnover for given month - this month |
| 4 |
TurnoverNetPreviousMonth |
string |
Turnover for month before given date - previous month |
| 5 |
dbCurrency |
string |
dbCurrency |
Additional Notes