1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 15:13:29 +01:00
invoiceninja/app/Ninja/Import/Zoho/ClientTransformer.php

48 lines
1.6 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Import\Zoho;
2015-12-13 21:12:54 +01:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
2017-01-30 20:40:43 +01:00
* Class ClientTransformer.
*/
2015-12-13 21:12:54 +01:00
class ClientTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 20:40:43 +01:00
*
* @return bool|Item
*/
2015-12-13 21:12:54 +01:00
public function transform($data)
{
if ($this->hasClient($data->customer_name)) {
return false;
}
return new Item($data, function ($data) {
return [
2016-01-06 08:52:26 +01:00
'name' => $this->getString($data, 'customer_name'),
'id_number' => $this->getString($data, 'customer_id'),
'work_phone' => $this->getString($data, 'phone'),
'address1' => $this->getString($data, 'billing_address'),
'city' => $this->getString($data, 'billing_city'),
'state' => $this->getString($data, 'billing_state'),
'postal_code' => $this->getString($data, 'billing_code'),
'private_notes' => $this->getString($data, 'notes'),
'website' => $this->getString($data, 'website'),
2015-12-13 21:12:54 +01:00
'contacts' => [
[
2016-01-06 08:52:26 +01:00
'first_name' => $this->getString($data, 'first_name'),
'last_name' => $this->getString($data, 'last_name'),
'email' => $this->getString($data, 'emailid'),
'phone' => $this->getString($data, 'mobilephone'),
2015-12-13 21:12:54 +01:00
],
],
'country_id' => $this->getCountryId($data->billing_country),
];
});
}
}