mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
83 lines
3.3 KiB
PHP
83 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Transformers;
|
|
|
|
use App\Models\Expense;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* class ExpenseTransformer
|
|
*/
|
|
class ExpenseTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
use SoftDeletes;
|
|
protected $defaultIncludes = [
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $availableIncludes = [
|
|
|
|
];
|
|
|
|
/**
|
|
* @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' => (string)$expense->expense_currency_id ?: '',
|
|
'invoice_category_id' => (string)$expense->invoice_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 ?: '',
|
|
'expense_date' => $expense->expense_date ?: '',
|
|
'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,
|
|
];
|
|
}
|
|
}
|