mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
105 lines
3.7 KiB
PHP
105 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Reports;
|
|
|
|
use App\Models\Client;
|
|
use Auth;
|
|
use Barracuda\ArchiveStream\Archive;
|
|
use App\Models\TaxRate;
|
|
|
|
class QuoteReport extends AbstractReport
|
|
{
|
|
public function getColumns()
|
|
{
|
|
$columns = [
|
|
'client' => [],
|
|
'quote_number' => [],
|
|
'quote_date' => [],
|
|
'amount' => [],
|
|
'status' => [],
|
|
'private_notes' => ['columnSelector-false'],
|
|
'user' => ['columnSelector-false'],
|
|
];
|
|
|
|
if (TaxRate::scope()->count()) {
|
|
$columns['tax'] = ['columnSelector-false'];
|
|
}
|
|
|
|
$account = auth()->user()->account;
|
|
|
|
if ($account->custom_invoice_text_label1) {
|
|
$columns[$account->custom_invoice_text_label1] = ['columnSelector-false', 'custom'];
|
|
}
|
|
if ($account->custom_invoice_text_label1) {
|
|
$columns[$account->custom_invoice_text_label1] = ['columnSelector-false', 'custom'];
|
|
}
|
|
|
|
return $columns;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$account = Auth::user()->account;
|
|
$statusIds = $this->options['status_ids'];
|
|
$exportFormat = $this->options['export_format'];
|
|
$hasTaxRates = TaxRate::scope()->count();
|
|
|
|
$clients = Client::scope()
|
|
->orderBy('name')
|
|
->withArchived()
|
|
->with('contacts', 'user')
|
|
->with(['invoices' => function ($query) use ($statusIds) {
|
|
$query->quotes()
|
|
->withArchived()
|
|
->statusIds($statusIds)
|
|
->where('invoice_date', '>=', $this->startDate)
|
|
->where('invoice_date', '<=', $this->endDate)
|
|
->with(['invoice_items', 'invoice_status']);
|
|
}]);
|
|
|
|
if ($this->isExport && $exportFormat == 'zip') {
|
|
$zip = Archive::instance_by_useragent(date('Y-m-d') . '_' . str_replace(' ', '_', trans('texts.quote_documents')));
|
|
foreach ($clients->get() as $client) {
|
|
foreach ($client->invoices as $invoice) {
|
|
foreach ($invoice->documents as $document) {
|
|
$name = sprintf('%s_%s_%s', $invoice->invoice_date ?: date('Y-m-d'), $invoice->present()->titledName, $document->name);
|
|
$name = str_replace(' ', '_', $name);
|
|
$zip->add_file($name, $document->getRaw());
|
|
}
|
|
}
|
|
}
|
|
$zip->finish();
|
|
exit;
|
|
}
|
|
|
|
foreach ($clients->get() as $client) {
|
|
foreach ($client->invoices as $invoice) {
|
|
$row = [
|
|
$this->isExport ? $client->getDisplayName() : $client->present()->link,
|
|
$this->isExport ? $invoice->invoice_number : $invoice->present()->link,
|
|
$invoice->present()->invoice_date,
|
|
$account->formatMoney($invoice->amount, $client),
|
|
$invoice->present()->status(),
|
|
$invoice->private_notes,
|
|
$invoice->user->getDisplayName(),
|
|
];
|
|
|
|
if ($hasTaxRates) {
|
|
$row[] = $account->formatMoney($invoice->getTaxTotal(), $client);
|
|
}
|
|
|
|
if ($account->custom_invoice_text_label1) {
|
|
$row[] = $invoice->custom_text_value1;
|
|
}
|
|
if ($account->custom_invoice_text_label2) {
|
|
$row[] = $invoice->custom_text_value2;
|
|
}
|
|
|
|
$this->data[] = $row;
|
|
|
|
$this->addToTotals($client->currency_id, 'amount', $invoice->amount);
|
|
}
|
|
}
|
|
}
|
|
}
|