diff --git a/app/payments/platron/PG_Signature.php b/app/payments/platron/PG_Signature.php index 689a001..9e217b1 100644 --- a/app/payments/platron/PG_Signature.php +++ b/app/payments/platron/PG_Signature.php @@ -277,6 +277,7 @@ class OfdReceiptItem public $price; public $quantity; public $vat; + public $type = 'product'; public function toArray() { @@ -286,6 +287,7 @@ public function toArray() 'pg_price' => $this->price, 'pg_quantity' => $this->quantity, 'pg_vat' => $this->vat, + 'pg_type' => $this->type, ); } }