mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
18 lines
441 B
PHP
18 lines
441 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
use stdClass;
|
|
|
|
class InvoiceItemPresenter extends EntityPresenter
|
|
{
|
|
public function rBits()
|
|
{
|
|
$data = new stdClass();
|
|
$data->description = $this->entity->notes;
|
|
$data->item_price = floatval($this->entity->cost);
|
|
$data->quantity = floatval($this->entity->qty);
|
|
$data->amount = round($data->item_price * $data->quantity, 2);
|
|
|
|
return $data;
|
|
}
|
|
}
|