mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
1c21b6dc7c
* Fixes for invoice item line totals * Refactoring invoice calculations * Update api-docs * Fixes for invoice calculations * remove tests * fixes for config files
128 lines
4.8 KiB
PHP
128 lines
4.8 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Transformers;
|
|
|
|
use App\Models\Invoice;
|
|
use App\Models\InvoiceInvitation;
|
|
use App\Transformers\InvoiceInvitationTransformer;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class InvoiceTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
|
|
protected $defaultIncludes = [
|
|
// 'invoice_items',
|
|
];
|
|
|
|
protected $availableIncludes = [
|
|
'invitations',
|
|
// 'payments',
|
|
// 'client',
|
|
// 'documents',
|
|
];
|
|
|
|
public function includeInvitations(Invoice $invoice)
|
|
{
|
|
$transformer = new InvoiceInvitationTransformer($this->serializer);
|
|
|
|
return $this->includeCollection($invoice->invitations, $transformer, InvoiceInvitation::class);
|
|
}
|
|
/*
|
|
public function includeInvoiceItems(Invoice $invoice)
|
|
{
|
|
$transformer = new InvoiceItemTransformer($this->serializer);
|
|
|
|
return $this->includeCollection($invoice->invoice_items, $transformer, ENTITY_INVOICE_ITEM);
|
|
}
|
|
|
|
|
|
|
|
public function includePayments(Invoice $invoice)
|
|
{
|
|
$transformer = new PaymentTransformer($this->account, $this->serializer, $invoice);
|
|
|
|
return $this->includeCollection($invoice->payments, $transformer, ENTITY_PAYMENT);
|
|
}
|
|
|
|
public function includeClient(Invoice $invoice)
|
|
{
|
|
$transformer = new ClientTransformer($this->account, $this->serializer);
|
|
|
|
return $this->includeItem($invoice->client, $transformer, ENTITY_CLIENT);
|
|
}
|
|
|
|
public function includeExpenses(Invoice $invoice)
|
|
{
|
|
$transformer = new ExpenseTransformer($this->account, $this->serializer);
|
|
|
|
return $this->includeCollection($invoice->expenses, $transformer, ENTITY_EXPENSE);
|
|
}
|
|
|
|
public function includeDocuments(Invoice $invoice)
|
|
{
|
|
$transformer = new DocumentTransformer($this->account, $this->serializer);
|
|
|
|
$invoice->documents->each(function ($document) use ($invoice) {
|
|
$document->setRelation('invoice', $invoice);
|
|
});
|
|
|
|
return $this->includeCollection($invoice->documents, $transformer, ENTITY_DOCUMENT);
|
|
}
|
|
*/
|
|
public function transform(Invoice $invoice)
|
|
{
|
|
return [
|
|
'id' => $this->encodePrimaryKey($invoice->id),
|
|
'amount' => (float) $invoice->amount ?: '',
|
|
'balance' => (float) $invoice->balance ?: '',
|
|
'client_id' => (string) $this->encodePrimaryKey($invoice->client_id),
|
|
'status_id' => (string) ($invoice->status_id ?: 1),
|
|
'updated_at' => $invoice->updated_at,
|
|
'archived_at' => $invoice->deleted_at,
|
|
'invoice_number' => $invoice->invoice_number,
|
|
'discount' => (float) $invoice->discount ?: '',
|
|
'po_number' => $invoice->po_number ?: '',
|
|
'invoice_date' => $invoice->invoice_date ?: '',
|
|
'due_date' => $invoice->due_date ?: '',
|
|
'terms' => $invoice->terms ?: '',
|
|
'public_notes' => $invoice->public_notes ?: '',
|
|
'private_notes' => $invoice->private_notes ?: '',
|
|
'is_deleted' => (bool) $invoice->is_deleted,
|
|
'invoice_type_id' => (string) $invoice->invoice_type_id ?: '',
|
|
'tax_name1' => $invoice->tax_name1 ? $invoice->tax_name1 : '',
|
|
'tax_rate1' => (float) $invoice->tax_rate1,
|
|
'tax_name2' => $invoice->tax_name2 ? $invoice->tax_name2 : '',
|
|
'tax_rate2' => (float) $invoice->tax_rate2,
|
|
'tax_name3' => $invoice->tax_name3 ? $invoice->tax_name3 : '',
|
|
'tax_rate3' => (float) $invoice->tax_rate3,
|
|
'is_amount_discount' => (bool) ($invoice->is_amount_discount ?: false),
|
|
'invoice_footer' => $invoice->invoice_footer ?: '',
|
|
'partial' => (float) ($invoice->partial ?: 0.0),
|
|
'partial_due_date' => $invoice->partial_due_date ?: '',
|
|
'custom_value1' => (string) $invoice->custom_value1 ?: '',
|
|
'custom_value2' => (string) $invoice->custom_value2 ?: '',
|
|
'custom_value3' => (string) $invoice->custom_value3 ?: '',
|
|
'custom_value4' => (string) $invoice->custom_value4 ?: '',
|
|
'has_tasks' => (bool) $invoice->has_tasks,
|
|
'has_expenses' => (bool) $invoice->has_expenses,
|
|
'custom_surcharge1' => $invoice->custom_surcharge1 ?: '',
|
|
'custom_surcharge2' => $invoice->custom_surcharge2 ?: '',
|
|
'custom_surcharge3' => $invoice->custom_surcharge3 ?: '',
|
|
'custom_surcharge4' => $invoice->custom_surcharge4 ?: '',
|
|
'line_items' => $invoice->line_items ?: '',
|
|
'backup' => $invoice->backup ?: '',
|
|
'settings' => $invoice->settings ?: '',
|
|
|
|
];
|
|
}
|
|
} |