1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/Ninja/Import/CSV/VendorTransformer.php

47 lines
1.5 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Import\CSV;
2016-01-06 15:23:58 +01:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
2016-01-07 16:21:13 +01:00
// vendor
/**
2017-01-30 20:40:43 +01:00
* Class VendorTransformer.
*/
2016-01-06 15:23:58 +01:00
class VendorTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 20:40:43 +01:00
*
* @return bool|Item
*/
2016-01-06 15:23:58 +01:00
public function transform($data)
{
if (isset($data->name) && $this->hasVendor($data->name)) {
return false;
}
return new Item($data, function ($data) {
return [
'name' => $this->getString($data, 'name'),
'work_phone' => $this->getString($data, 'work_phone'),
'address1' => $this->getString($data, 'address1'),
'city' => $this->getString($data, 'city'),
'state' => $this->getString($data, 'state'),
'postal_code' => $this->getString($data, 'postal_code'),
'private_notes' => $this->getString($data, 'notes'),
2018-03-30 13:33:28 +02:00
'vendor_contacts' => [
2016-01-06 15:23:58 +01:00
[
2018-03-30 13:33:28 +02:00
'first_name' => $this->getString($data, 'contact_first_name'),
'last_name' => $this->getString($data, 'contact_last_name'),
'email' => $this->getString($data, 'contact_email'),
'phone' => $this->getString($data, 'contact_phone'),
2016-01-06 15:23:58 +01:00
],
],
'country_id' => isset($data->country) ? $this->getCountryId($data->country) : null,
];
});
}
}