Skip to content

Commit

Permalink
round added to value
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamás KIRÁLY committed Aug 27, 2023
1 parent 8a22ad6 commit 9a92479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/NTAKOrderItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function buildRequest(bool $isAtTheSpot = true): array
'afaKategoria' => $this->vat->name,
'bruttoEgysegar' => $this->price,
'mennyisegiEgyseg' => $this->amountType->name,
'mennyiseg' => $this->amount,
'mennyiseg' => round($this->amount, 2),
'tetelszam' => $this->quantity,
'rendelesIdopontja' => $this->when->timezone('Europe/Budapest')->toIso8601String(),
'tetelOsszesito' => $this->quantity * $this->price,
Expand Down

0 comments on commit 9a92479

Please sign in to comment.