Skip to content

Commit

Permalink
Update README with queryInvoiceDigest example
Browse files Browse the repository at this point in the history
  • Loading branch information
pzs committed Feb 22, 2021
1 parent 9f54f11 commit 568b501
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,25 @@ try {
$invoiceQueryParams = [
"mandatoryQueryParams" => [
"invoiceIssueDate" => [
"dateFrom" => "2019-01-01",
"dateTo" => "2019-01-28",
"dateFrom" => "2021-01-01",
"dateTo" => "2021-01-11",
],
],
"relationalQueryParams" => [
"invoiceDelivery" => [
"queryOperator" => "GTE",
"queryValue" => "2021-01-01",
],
// Több feltétel esetén ugyanazon elemhez tömbben adjuk át a gyerek elemeket
"paymentDate" => [
[
"queryOperator" => "GTE",
"queryValue" => "2021-01-01",
],
[
"queryOperator" => "LTE",
"queryValue" => "2021-01-28",
],
],
],
];
Expand Down

0 comments on commit 568b501

Please sign in to comment.