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

157 lines
6.2 KiB
PHP
Raw Normal View History

2019-05-02 13:07:38 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-05-02 13:07:38 +02:00
namespace App\Transformers;
2021-05-06 23:41:37 +02:00
use App\Models\Activity;
2020-08-14 00:08:10 +02:00
use App\Models\Backup;
2020-06-22 12:56:31 +02:00
use App\Models\Document;
2019-05-02 13:07:38 +02:00
use App\Models\Quote;
use App\Models\QuoteInvitation;
2021-05-06 23:41:37 +02:00
use App\Transformers\ActivityTransformer;
2019-05-02 13:07:38 +02:00
use App\Utils\Traits\MakesHash;
class QuoteTransformer extends EntityTransformer
{
use MakesHash;
protected $defaultIncludes = [
'invitations',
2020-06-22 07:52:20 +02:00
'documents',
];
2019-05-02 13:07:38 +02:00
protected $availableIncludes = [
'invitations',
2020-06-22 07:52:20 +02:00
'documents',
'history',
2021-05-06 23:41:37 +02:00
'activities',
2020-06-22 07:52:20 +02:00
// 'payments',
2019-05-02 13:07:38 +02:00
// 'client',
];
2021-05-06 23:41:37 +02:00
public function includeActivities(Quote $quote)
{
$transformer = new ActivityTransformer($this->serializer);
return $this->includeCollection($quote->activities, $transformer, Activity::class);
}
2020-08-14 00:08:10 +02:00
public function includeHistory(Quote $quote)
{
$transformer = new InvoiceHistoryTransformer($this->serializer);
return $this->includeCollection($quote->history, $transformer, Backup::class);
}
public function includeInvitations(Quote $quote)
2019-05-02 13:07:38 +02:00
{
$transformer = new QuoteInvitationTransformer($this->serializer);
2019-05-02 13:07:38 +02:00
return $this->includeCollection($quote->invitations, $transformer, QuoteInvitation::class);
2019-05-02 13:07:38 +02:00
}
/*
public function includePayments(quote $quote)
{
$transformer = new PaymentTransformer($this->account, $this->serializer, $quote);
return $this->includeCollection($quote->payments, $transformer, ENTITY_PAYMENT);
}
public function includeClient(quote $quote)
{
$transformer = new ClientTransformer($this->account, $this->serializer);
return $this->includeItem($quote->client, $transformer, ENTITY_CLIENT);
}
public function includeExpenses(quote $quote)
{
$transformer = new ExpenseTransformer($this->account, $this->serializer);
return $this->includeCollection($quote->expenses, $transformer, ENTITY_EXPENSE);
}
*/
2020-06-22 12:56:31 +02:00
public function includeDocuments(Quote $quote)
{
$transformer = new DocumentTransformer($this->serializer);
2020-06-22 12:56:31 +02:00
return $this->includeCollection($quote->documents, $transformer, Document::class);
}
2019-05-02 13:07:38 +02:00
public function transform(Quote $quote)
{
return [
'id' => $this->encodePrimaryKey($quote->id),
'user_id' => $this->encodePrimaryKey($quote->user_id),
'assigned_user_id' => $this->encodePrimaryKey($quote->assigned_user_id),
'amount' => (float) $quote->amount,
'balance' => (float) $quote->balance,
'client_id' => (string) $this->encodePrimaryKey($quote->client_id),
'status_id' => (string) $quote->status_id,
'design_id' => (string) $this->encodePrimaryKey($quote->design_id),
'invoice_id' => (string) $this->encodePrimaryKey($quote->invoice_id),
'updated_at' => (int) $quote->updated_at,
'archived_at' => (int) $quote->deleted_at,
'created_at' => (int) $quote->created_at,
'number' => $quote->number ?: '',
'discount' => (float) $quote->discount,
2019-09-27 00:14:02 +02:00
'po_number' => $quote->po_number ?: '',
'date' => $quote->date ?: '',
'last_sent_date' => $quote->last_sent_date ?: '',
'next_send_date' => $quote->date ?: '',
2020-08-14 00:10:31 +02:00
'reminder1_sent' => $quote->reminder1_sent ?: '',
'reminder2_sent' => $quote->reminder2_sent ?: '',
'reminder3_sent' => $quote->reminder3_sent ?: '',
'reminder_last_sent' => $quote->reminder_last_sent ?: '',
'due_date' => $quote->due_date ?: '',
2019-05-02 13:07:38 +02:00
'terms' => $quote->terms ?: '',
'public_notes' => $quote->public_notes ?: '',
'private_notes' => $quote->private_notes ?: '',
'is_deleted' => (bool) $quote->is_deleted,
'uses_inclusive_taxes' => (bool) $quote->uses_inclusive_taxes,
2019-05-02 13:07:38 +02:00
'tax_name1' => $quote->tax_name1 ? $quote->tax_name1 : '',
'tax_rate1' => (float) $quote->tax_rate1,
2019-05-02 13:07:38 +02:00
'tax_name2' => $quote->tax_name2 ? $quote->tax_name2 : '',
'tax_rate2' => (float) $quote->tax_rate2,
'tax_name3' => $quote->tax_name3 ? $quote->tax_name3 : '',
'tax_rate3' => (float) $quote->tax_rate3,
'total_taxes' => (float) $quote->total_taxes,
2019-05-02 13:07:38 +02:00
'is_amount_discount' => (bool) ($quote->is_amount_discount ?: false),
'footer' => $quote->footer ?: '',
2019-05-02 13:07:38 +02:00
'partial' => (float) ($quote->partial ?: 0.0),
'partial_due_date' => $quote->partial_due_date ?: '',
'custom_value1' => (string) $quote->custom_value1 ?: '',
'custom_value2' => (string) $quote->custom_value2 ?: '',
'custom_value3' => (string) $quote->custom_value3 ?: '',
'custom_value4' => (string) $quote->custom_value4 ?: '',
2019-05-02 13:07:38 +02:00
'has_tasks' => (bool) $quote->has_tasks,
'has_expenses' => (bool) $quote->has_expenses,
'custom_surcharge1' => (float) $quote->custom_surcharge1,
'custom_surcharge2' => (float) $quote->custom_surcharge2,
'custom_surcharge3' => (float) $quote->custom_surcharge3,
'custom_surcharge4' => (float) $quote->custom_surcharge4,
2020-12-10 11:48:16 +01:00
'custom_surcharge_tax1' => (bool) $quote->custom_surcharge_tax1,
'custom_surcharge_tax2' => (bool) $quote->custom_surcharge_tax2,
'custom_surcharge_tax3' => (bool) $quote->custom_surcharge_tax3,
'custom_surcharge_tax4' => (bool) $quote->custom_surcharge_tax4,
'line_items' => $quote->line_items ?: (array) [],
'entity_type' => 'quote',
'exchange_rate' => (float) $quote->exchange_rate,
'paid_to_date' => (float) $quote->paid_to_date,
'project_id' => $this->encodePrimaryKey($quote->project_id),
2021-03-10 01:08:58 +01:00
'subscription_id' => $this->encodePrimaryKey($quote->subscription_id),
2019-05-02 13:07:38 +02:00
];
}
}