1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Ninja/Import/Invoiceable/ClientTransformer.php
2016-01-06 09:52:26 +02:00

35 lines
1.2 KiB
PHP

<?php namespace App\Ninja\Import\Invoiceable;
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
class ClientTransformer extends BaseTransformer
{
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'),
],
],
];
});
}
}