2016-01-06 15:23:58 +01:00
|
|
|
<?php namespace App\Ninja\Import\Ronin;
|
|
|
|
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
|
|
use League\Fractal\Resource\Item;
|
2016-01-07 16:21:13 +01:00
|
|
|
// vendor
|
2016-01-06 15:23:58 +01:00
|
|
|
class VendorTransformer extends BaseTransformer
|
|
|
|
{
|
|
|
|
public function transform($data)
|
|
|
|
{
|
|
|
|
if ($this->hasVendor($data->company)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Item($data, function ($data) {
|
|
|
|
return [
|
|
|
|
'name' => $data->company,
|
|
|
|
'work_phone' => $data->phone,
|
|
|
|
'contacts' => [
|
|
|
|
[
|
|
|
|
'first_name' => $this->getFirstName($data->name),
|
|
|
|
'last_name' => $this->getLastName($data->name),
|
|
|
|
'email' => $data->email,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|