2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Ninja\Import\Invoiceable;
|
2016-01-06 15:23:58 +01:00
|
|
|
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
|
|
use League\Fractal\Resource\Item;
|
2016-07-03 18:11:58 +02:00
|
|
|
|
2016-01-07 16:21:13 +01:00
|
|
|
// vendor
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
2017-01-30 20:40:43 +01:00
|
|
|
* Class VendorTransformer.
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
2016-01-06 15:23:58 +01:00
|
|
|
class VendorTransformer extends BaseTransformer
|
|
|
|
{
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @param $data
|
2017-01-30 20:40:43 +01:00
|
|
|
*
|
2016-07-03 18:11:58 +02:00
|
|
|
* @return bool|Item
|
|
|
|
*/
|
2016-01-06 15:23:58 +01:00
|
|
|
public function transform($data)
|
|
|
|
{
|
|
|
|
if ($this->hasVendor($data->vendor_name)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Item($data, function ($data) {
|
|
|
|
return [
|
|
|
|
'name' => $data->vendor_name,
|
|
|
|
'work_phone' => $data->tel,
|
|
|
|
'website' => $data->website,
|
|
|
|
'address1' => $data->address,
|
|
|
|
'city' => $data->city,
|
|
|
|
'state' => $data->state,
|
|
|
|
'postal_code' => $data->postcode,
|
|
|
|
'country_id' => $this->getCountryIdBy2($data->country),
|
|
|
|
'private_notes' => $data->notes,
|
|
|
|
'contacts' => [
|
|
|
|
[
|
|
|
|
'email' => $data->email,
|
|
|
|
'phone' => $data->mobile,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|