Fix fields in Finance methods (#45)

Fixed operation type field in getting transaction list
Fixed fields in params for getting finance realization report
This commit is contained in:
Antares
2023-10-26 15:48:31 +04:00
committed by GitHub
parent 40d9fc32cb
commit e5f2007a8e
2 changed files with 48 additions and 52 deletions

View File

@@ -21,12 +21,12 @@ type ReportOnSoldProductsResponse struct {
core.CommonResponse
// Query result
Result []ReportonSoldProductsResult `json:"result"`
Result ReportonSoldProductsResult `json:"result"`
}
type ReportonSoldProductsResult struct {
// Report title page
Header []ReportOnSoldProductsResultHeader `json:"header"`
Header ReportOnSoldProductsResultHeader `json:"header"`
// Report table
Rows []ReportOnSoldProductsResultRow `json:"rows"`
@@ -272,7 +272,7 @@ type ListTransactionsFilter struct {
Date ListTransactionsFilterDate `json:"date"`
// Operation type
OperationType string `json:"operation_type"`
OperationType []string `json:"operation_type"`
// Shipment number
PostingNumber string `json:"posting_number"`