mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Import\Invoiceable;
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
use League\Fractal\Resource\Item;
|
|
|
|
/**
|
|
* Class ClientTransformer.
|
|
*/
|
|
class ClientTransformer extends BaseTransformer
|
|
{
|
|
/**
|
|
* @param $data
|
|
*
|
|
* @return bool|Item
|
|
*/
|
|
public function transform($data)
|
|
{
|
|
if ($this->hasClient($data->client_name)) {
|
|
return false;
|
|
}
|
|
|
|
return new Item($data, function ($data) {
|
|
return [
|
|
'name' => $this->getString($data, 'client_name'),
|
|
'work_phone' => $this->getString($data, 'tel'),
|
|
'website' => $this->getString($data, 'website'),
|
|
'address1' => $this->getString($data, 'address'),
|
|
'city' => $this->getString($data, 'city'),
|
|
'state' => $this->getString($data, 'state'),
|
|
'postal_code' => $this->getString($data, 'postcode'),
|
|
'country_id' => $this->getCountryIdBy2($data->country),
|
|
'private_notes' => $this->getString($data, 'notes'),
|
|
'contacts' => [
|
|
[
|
|
'email' => $this->getString($data, 'email'),
|
|
'phone' => $this->getString($data, 'mobile'),
|
|
],
|
|
],
|
|
];
|
|
});
|
|
}
|
|
}
|