1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/app/Ninja/Reports/ProductReport.php

62 lines
2.2 KiB
PHP
Raw Normal View History

2017-01-22 11:09:29 +01:00
<?php
namespace App\Ninja\Reports;
use App\Models\Client;
2017-01-30 20:40:43 +01:00
use Auth;
2017-01-22 11:09:29 +01:00
class ProductReport extends AbstractReport
{
public $columns = [
'client',
'invoice_number',
'invoice_date',
'product',
'qty',
'cost',
//'tax_rate1',
//'tax_rate2',
2017-01-22 11:09:29 +01:00
];
public function run()
{
$account = Auth::user()->account;
$status = $this->options['invoice_status'];
2017-01-22 11:09:29 +01:00
$clients = Client::scope()
->withArchived()
2017-01-22 11:09:29 +01:00
->with('contacts')
->with(['invoices' => function ($query) use ($status) {
if ($status == 'draft') {
$query->whereIsPublic(false);
} elseif ($status == 'unpaid' || $status == 'paid') {
$query->whereIsPublic(true);
}
$query->invoices()
->withArchived()
->where('invoice_date', '>=', $this->startDate)
2017-01-22 11:09:29 +01:00
->where('invoice_date', '<=', $this->endDate)
->with(['invoice_items']);
2017-01-22 11:09:29 +01:00
}]);
foreach ($clients->get() as $client) {
foreach ($client->invoices as $invoice) {
foreach ($invoice->invoice_items as $item) {
2017-01-22 11:09:29 +01:00
$this->data[] = [
$this->isExport ? $client->getDisplayName() : $client->present()->link,
$this->isExport ? $invoice->invoice_number : $invoice->present()->link,
$invoice->present()->invoice_date,
$item->product_key,
$item->qty,
$account->formatMoney($item->cost, $client),
2017-01-22 11:09:29 +01:00
];
}
//$this->addToTotals($client->currency_id, 'paid', $payment ? $payment->getCompletedAmount() : 0);
//$this->addToTotals($client->currency_id, 'amount', $invoice->amount);
//$this->addToTotals($client->currency_id, 'balance', $invoice->balance);
2017-01-22 11:09:29 +01:00
}
}
}
}