1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Transformers/ExpenseTransformer.php

97 lines
3.8 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Transformers;
2020-10-11 23:34:02 +02:00
use App\Models\Document;
use App\Models\Expense;
use App\Utils\Traits\MakesHash;
2020-02-27 00:32:44 +01:00
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* class ExpenseTransformer.
*/
class ExpenseTransformer extends EntityTransformer
{
use MakesHash;
2020-02-27 00:32:44 +01:00
use SoftDeletes;
2020-10-19 12:59:58 +02:00
protected $defaultIncludes = [
2020-10-11 23:34:02 +02:00
'documents',
];
/**
* @var array
*/
protected $availableIncludes = [
2020-10-11 23:34:02 +02:00
'documents',
];
2020-10-11 23:34:02 +02:00
public function includeDocuments(Expense $expense)
{
$transformer = new DocumentTransformer($this->serializer);
return $this->includeCollection($expense->documents, $transformer, Document::class);
}
/**
* @param Expense $expense
*
* @return array
*/
public function transform(Expense $expense)
{
return [
'id' => $this->encodePrimaryKey($expense->id),
'user_id' => $this->encodePrimaryKey($expense->user_id),
'assigned_user_id' => $this->encodePrimaryKey($expense->assigned_user_id),
'vendor_id' => $this->encodePrimaryKey($expense->vendor_id),
'invoice_id' => $this->encodePrimaryKey($expense->invoice_id),
'client_id' => $this->encodePrimaryKey($expense->client_id),
'bank_id' => (string) $expense->bank_id ?: '',
'invoice_currency_id' => (string) $expense->invoice_currency_id ?: '',
'expense_currency_id' => '', //todo remove redundant in 5.0.25
'currency_id' => (string) $expense->currency_id ?: '',
2020-10-26 20:10:04 +01:00
'category_id' => $this->encodePrimaryKey($expense->category_id),
'payment_type_id' => (string) $expense->payment_type_id ?: '',
'recurring_expense_id' => (string) $expense->recurring_expense_id ?: '',
'is_deleted' => (bool) $expense->is_deleted,
'should_be_invoiced' => (bool) $expense->should_be_invoiced,
'invoice_documents' => (bool) $expense->invoice_documents,
'amount' => (float) $expense->amount ?: 0,
'foreign_amount' => (float) $expense->foreign_amount ?: 0,
'exchange_rate' => (float) $expense->exchange_rate ?: 0,
'tax_name1' => $expense->tax_name1 ? $expense->tax_name1 : '',
'tax_rate1' => (float) $expense->tax_rate1,
'tax_name2' => $expense->tax_name2 ? $expense->tax_name2 : '',
'tax_rate2' => (float) $expense->tax_rate2,
'tax_name3' => $expense->tax_name3 ? $expense->tax_name3 : '',
'tax_rate3' => (float) $expense->tax_rate3,
'private_notes' => (string) $expense->private_notes ?: '',
'public_notes' => (string) $expense->public_notes ?: '',
'transaction_reference' => (string) $expense->transaction_reference ?: '',
'transaction_id' => (string) $expense->transaction_id ?: '',
'date' => $expense->date ?: '',
//'expense_date' => $expense->date ?: '',
'number' => (string)$expense->number ?: '',
'payment_date' => $expense->payment_date ?: '',
'custom_value1' => $expense->custom_value1 ?: '',
'custom_value2' => $expense->custom_value2 ?: '',
'custom_value3' => $expense->custom_value3 ?: '',
'custom_value4' => $expense->custom_value4 ?: '',
'updated_at' => (int) $expense->updated_at,
'archived_at' => (int) $expense->deleted_at,
'created_at' => (int) $expense->created_at,
'project_id' => $this->encodePrimaryKey($expense->project_id),
];
}
}