2017-01-30 21:40:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Libraries\Skype;
|
2016-08-10 15:57:34 +03:00
|
|
|
|
|
|
|
|
class InvoiceItemCard
|
|
|
|
|
{
|
|
|
|
|
public function __construct($invoiceItem, $account)
|
|
|
|
|
{
|
2016-08-13 22:19:37 +03:00
|
|
|
$this->title = intval($invoiceItem->qty) . ' ' . $invoiceItem->product_key;
|
2016-08-10 15:57:34 +03:00
|
|
|
$this->subtitle = $invoiceItem->notes;
|
|
|
|
|
$this->quantity = $invoiceItem->qty;
|
|
|
|
|
$this->price = $account->formatMoney($invoiceItem->cost);
|
|
|
|
|
}
|
|
|
|
|
}
|