invoiceninja/app/Transformers/PaymentTransformer.php

77 lines
2.3 KiB
PHP
Raw Normal View History

2019-03-27 15:50:13 +11:00
<?php
2019-05-11 13:32:07 +10:00
/**
* 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
*/
2019-03-27 15:50:13 +11:00
2019-03-28 13:36:36 +11:00
namespace App\Transformers;
2019-03-27 15:50:13 +11:00
use App\Models\Account;
use App\Models\Client;
use App\Models\Invoice;
use App\Models\Payment;
2019-04-03 11:09:22 +11:00
use App\Utils\Traits\MakesHash;
2019-03-27 15:50:13 +11:00
class PaymentTransformer extends EntityTransformer
{
2019-04-03 11:09:22 +11:00
use MakesHash;
2019-03-28 13:36:36 +11:00
protected $serializer;
2019-03-27 15:50:13 +11:00
protected $defaultIncludes = [];
protected $availableIncludes = [
'client',
'invoice',
];
2019-03-28 13:36:36 +11:00
public function __construct($serializer = null)
2019-03-27 15:50:13 +11:00
{
2019-03-28 13:36:36 +11:00
$this->serializer = $serializer;
2019-03-27 15:50:13 +11:00
}
public function includeInvoice(Payment $payment)
{
2019-03-28 13:36:36 +11:00
$transformer = new InvoiceTransformer($this->serializer);
2019-03-27 15:50:13 +11:00
2019-03-28 13:36:36 +11:00
return $this->includeItem($payment->invoice, $transformer, Invoice::class);
2019-03-27 15:50:13 +11:00
}
public function includeClient(Payment $payment)
{
2019-03-28 13:36:36 +11:00
$transformer = new ClientTransformer($this->serializer);
2019-03-27 15:50:13 +11:00
2019-03-28 13:36:36 +11:00
return $this->includeItem($payment->client, $transformer, Client::class);
2019-03-27 15:50:13 +11:00
}
2019-03-28 13:36:36 +11:00
//todo incomplete
2019-03-27 15:50:13 +11:00
public function transform(Payment $payment)
{
2019-03-28 13:36:36 +11:00
return [
2019-04-03 11:09:22 +11:00
'id' => $this->encodePrimaryKey($payment->id),
2019-03-27 15:50:13 +11:00
'amount' => (float) $payment->amount,
2019-04-20 08:47:10 +10:00
/*
2019-03-27 15:50:13 +11:00
'transaction_reference' => $payment->transaction_reference ?: '',
'payment_date' => $payment->payment_date ?: '',
'updated_at' => $this->getTimestamp($payment->updated_at),
'archived_at' => $this->getTimestamp($payment->deleted_at),
'is_deleted' => (bool) $payment->is_deleted,
'payment_type_id' => (int) ($payment->payment_type_id ?: 0),
'invoice_id' => (int) ($this->invoice ? $this->invoice->public_id : $payment->invoice->public_id),
'invoice_number' => $this->invoice ? $this->invoice->invoice_number : $payment->invoice->invoice_number,
'private_notes' => $payment->private_notes ?: '',
'exchange_rate' => (float) $payment->exchange_rate,
'exchange_currency_id' => (int) $payment->exchange_currency_id,
'refunded' => (float) $payment->refunded,
2019-04-20 08:47:10 +10:00
'payment_status_id' => (int) $payment->payment_status_id,
*/
];
2019-03-27 15:50:13 +11:00
}
}