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

109 lines
3.3 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Transformers;
use App\Models\Activity;
2020-10-11 23:34:02 +02:00
use App\Models\Document;
use App\Models\Vendor;
use App\Models\VendorContact;
use App\Utils\Traits\MakesHash;
2020-10-28 11:10:49 +01:00
use League\Fractal\Resource\Collection;
/**
* class VendorTransformer.
*/
class VendorTransformer extends EntityTransformer
{
use MakesHash;
protected $defaultIncludes = [
'contacts',
'documents',
];
/**
* @var array
*/
protected $availableIncludes = [
'activities',
];
/**
* @param Vendor $vendor
*
2023-07-26 04:59:36 +02:00
* @return \Illuminate\Support\Collection
*/
public function includeActivities(Vendor $vendor)
{
$transformer = new ActivityTransformer($this->serializer);
return $this->includeCollection($vendor->activities, $transformer, Activity::class);
}
/**
* @param Vendor $vendor
*
2023-07-26 04:59:36 +02:00
* @return \Illuminate\Support\Collection
*/
public function includeContacts(Vendor $vendor)
{
$transformer = new VendorContactTransformer($this->serializer);
return $this->includeCollection($vendor->contacts, $transformer, VendorContact::class);
}
2020-10-11 23:34:02 +02:00
public function includeDocuments(Vendor $vendor)
{
$transformer = new DocumentTransformer($this->serializer);
return $this->includeCollection($vendor->documents, $transformer, Document::class);
}
/**
* @param Vendor $vendor
*
* @return array
*/
public function transform(Vendor $vendor)
{
return [
'id' => $this->encodePrimaryKey($vendor->id),
'user_id' => $this->encodePrimaryKey($vendor->user_id),
'assigned_user_id' => $this->encodePrimaryKey($vendor->assigned_user_id),
'name' => $vendor->name ?: '',
'website' => $vendor->website ?: '',
'private_notes' => $vendor->private_notes ?: '',
2020-09-23 02:16:19 +02:00
'public_notes' => $vendor->public_notes ?: '',
'last_login' => (int) $vendor->last_login,
'address1' => $vendor->address1 ?: '',
'address2' => $vendor->address2 ?: '',
'phone' => $vendor->phone ?: '',
'city' => $vendor->city ?: '',
'state' => $vendor->state ?: '',
'postal_code' => $vendor->postal_code ?: '',
'country_id' => (string) $vendor->country_id ?: '',
'currency_id' => (string) $vendor->currency_id ?: '',
'custom_value1' => $vendor->custom_value1 ?: '',
'custom_value2' => $vendor->custom_value2 ?: '',
'custom_value3' => $vendor->custom_value3 ?: '',
'custom_value4' => $vendor->custom_value4 ?: '',
'is_deleted' => (bool) $vendor->is_deleted,
2021-01-24 21:46:53 +01:00
'vat_number' => (string) $vendor->vat_number ?: '',
'id_number' => (string) $vendor->id_number ?: '',
'updated_at' => (int) $vendor->updated_at,
'archived_at' => (int) $vendor->deleted_at,
'created_at' => (int) $vendor->created_at,
2021-01-24 21:46:53 +01:00
'number' => (string) $vendor->number ?: '',
];
}
}