2021-02-17 00:15:42 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://clientninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/clientninja/clientninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. client Ninja LLC (https://clientninja.com)
|
2021-02-17 00:15:42 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-02-17 00:15:42 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Import\Transformers\Freshbooks;
|
|
|
|
|
|
|
|
use App\Import\ImportException;
|
|
|
|
use App\Import\Transformers\BaseTransformer;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ClientTransformer.
|
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
class ClientTransformer extends BaseTransformer
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param $data
|
|
|
|
*
|
|
|
|
* @return array|bool
|
|
|
|
*/
|
|
|
|
public function transform($data)
|
|
|
|
{
|
|
|
|
if (isset($data['Organization']) && $this->hasClient($data['Organization'])) {
|
|
|
|
throw new ImportException('Client already exists');
|
|
|
|
}
|
2021-02-17 00:15:42 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
return [
|
|
|
|
'company_id' => $this->maps['company']->id,
|
|
|
|
'name' => $this->getString($data, 'Organization'),
|
|
|
|
'work_phone' => $this->getString($data, 'Phone'),
|
|
|
|
'address1' => $this->getString($data, 'Street'),
|
|
|
|
'city' => $this->getString($data, 'City'),
|
|
|
|
'state' => $this->getString($data, 'Province/State'),
|
|
|
|
'postal_code' => $this->getString($data, 'Postal Code'),
|
|
|
|
'country_id' => isset($data['Country']) ? $this->getCountryId($data['Country']) : null,
|
|
|
|
'private_notes' => $this->getString($data, 'Notes'),
|
|
|
|
'credit_balance' => 0,
|
|
|
|
'settings' => new \stdClass,
|
|
|
|
'client_hash' => Str::random(40),
|
|
|
|
'contacts' => [
|
|
|
|
[
|
|
|
|
'first_name' => $this->getString($data, 'First Name'),
|
|
|
|
'last_name' => $this->getString($data, 'Last Name'),
|
|
|
|
'email' => $this->getString($data, 'Email'),
|
|
|
|
'phone' => $this->getString($data, 'Phone'),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2021-02-17 00:15:42 +01:00
|
|
|
}
|