177 lines
7.3 KiB
PHP
177 lines
7.3 KiB
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', 1);
|
|
|
|
// Vendors
|
|
require_once 'ripcord/ripcord.php';
|
|
require '../config/config.inc.php';
|
|
require 'ErpTools.php';
|
|
require 'config.php';
|
|
|
|
if (empty($_GET['token']) || $_GET['token'] !== ERP_SCRIPT_TOKEN) {
|
|
die;
|
|
}
|
|
|
|
// date de diff pour la création de client
|
|
$date_since_import = new DateTime();
|
|
$date_since_import->modify('-2 day');
|
|
|
|
// Get All Customers with email and is company
|
|
$models = ripcord::client("$url/xmlrpc/2/object");
|
|
$ids_customer = $models->execute_kw($db, $uid, $password,
|
|
'res.partner', 'search', array(
|
|
array(
|
|
array('email', '!=', ''),
|
|
array('is_company', '=', true),
|
|
array('customer', '=', true),
|
|
array('create_date', '>=', $date_since_import->format('Y-m-d H:i:s')),
|
|
)
|
|
)
|
|
);
|
|
|
|
// $ids_customer = array(7185);
|
|
|
|
foreach ($ids_customer as $id_customer) {
|
|
// get info company
|
|
$record = $models->execute_kw($db, $uid, $password,
|
|
'res.partner', 'read', array($id_customer));
|
|
|
|
$other_addresses = $models->execute_kw($db, $uid, $password,
|
|
'res.partner', 'read', array($record['child_ids']));
|
|
|
|
$tags = $models->execute_kw($db, $uid, $password,
|
|
'res.partner.category', 'read', array($record['category_id']));
|
|
|
|
$group_to_add_to_customer = array();
|
|
foreach ($tags as $key => $tag) {
|
|
if (!Group::getByName($tag['name'], 1)) {
|
|
$group = new Group();
|
|
$group->name = array(1 => $tag['name']);
|
|
$group->reduction = 0;
|
|
$group->price_display_method = PS_TAX_EXC;
|
|
$group->save();
|
|
} else {
|
|
$group = Group::getByName($tag['name'], 1);
|
|
}
|
|
$group_to_add_to_customer[] = $group->id;
|
|
}
|
|
|
|
|
|
// check mail validity
|
|
if(empty($record['email'])) {
|
|
continue;
|
|
}
|
|
// multiple email / explode
|
|
$email = $record['email'];
|
|
if(!Validate::isEmail($email)) {
|
|
$emails = explode(';', $record['email']);
|
|
$email = trim($emails[0]);
|
|
if(!Validate::isEmail($email)) {
|
|
ErpTools::logError($record, 'add_customer_email');
|
|
continue;
|
|
}
|
|
}
|
|
// ppp($id_customer.' loop');
|
|
// var_dump(ErpTools::alreadyExists($record['id']));
|
|
// var_dump(Customer::getCustomersByEmail($email));
|
|
// check if user not exist and email not register
|
|
if (!ErpTools::alreadyExists($record['id'])
|
|
&& !Customer::getCustomersByEmail($email)) {
|
|
|
|
$lastname = substr((isset($record['display_name']) ? $record['display_name'] : $record['name'] ) , 0, 32);
|
|
$firstname = substr((isset($record['display_name']) ? $record['display_name'] : $record['name'] ) , 0, 32);
|
|
$record['phone'] = ($record['phone']) ? $record['phone'] : '0123456789';
|
|
|
|
// if contact check name else lastname firstname is company info
|
|
// if (!empty($record['child_ids'])) {
|
|
// $contact = $models->execute_kw($db, $uid, $password,
|
|
// 'res.partner', 'read', array($record['child_ids'][0]));
|
|
// $lastname = utf8_encode($contact['name']);
|
|
// $firstname = utf8_encode($contact['name']);
|
|
// } else {
|
|
// $lastname = utf8_decode(substr((isset($record['display_name']) ? $record['display_name'] : $record['name'] ) , 0, 32));
|
|
// $firstname = utf8_decode(substr((isset($record['display_name']) ? $record['display_name'] : $record['name'] ) , 0, 32));
|
|
// }
|
|
//
|
|
|
|
if (!ErpTools::validateRecordCustomer($record)) {
|
|
ErpTools::logError($record, 'add_customer_validate');
|
|
p($record);
|
|
continue;
|
|
}
|
|
|
|
$password_generate = Tools::passwdGen(6);
|
|
|
|
try {
|
|
// add Customer
|
|
$customer = new Customer();
|
|
$customer->lastname = utf8_encode($lastname);
|
|
$customer->firstname = utf8_encode($firstname);
|
|
$customer->active = (int) $record['active'];
|
|
$customer->email = $email;
|
|
$customer->passwd = Tools::encrypt($password_generate);
|
|
$customer->company = utf8_encode( (isset($record['display_name']) ? $record['display_name'] : $record['name'] ) );
|
|
$customer->id_erp = $record['id'];
|
|
$customer->representant = (isset($record['user_id'][1]) ? $record['user_id'][1] : '' );
|
|
|
|
// If customer add with success create Address
|
|
if ($customer->add()) {
|
|
$customer->addGroups($group_to_add_to_customer);
|
|
$address = new Address();
|
|
$address->id_customer = $customer->id;
|
|
$address->alias = 'Adresse Livraison';
|
|
$address->lastname = utf8_encode($lastname);
|
|
$address->firstname = utf8_encode($firstname);
|
|
$address->address1 = utf8_encode($record['street']);
|
|
$address->address2 = utf8_encode($record['street2']);
|
|
$address->city = utf8_encode($record['city']);
|
|
$address->postcode = $record['zip'];
|
|
$address->company = utf8_encode($record['display_name']);
|
|
$address->phone = (int) str_replace(' ', '', $record['phone']);
|
|
$address->id_country = ErpTools::getCountryIdForPresta($record['country_id'][0]);
|
|
$address->is_erp = 1;
|
|
$address->id_erp = $record['id'];
|
|
$address->add();
|
|
|
|
$mail = Mail::Send(
|
|
1,
|
|
'account',
|
|
Mail::l('Welcome!'),
|
|
array(
|
|
'{firstname}' => $customer->firstname,
|
|
'{lastname}' => $customer->lastname,
|
|
'{email}' => $customer->email,
|
|
'{passwd}' => $password_generate
|
|
),
|
|
array($customer->email, 'gerald@roykin.fr'),
|
|
$customer->firstname.' '.$customer->lastname
|
|
);
|
|
var_dump("mail sent : ".$mail.' '.$customer->email);
|
|
foreach ($other_addresses as $key => $other_address) {
|
|
$other_address['phone'] = ($other_address['phone']) ? $other_address['phone'] : $record['phone'];
|
|
|
|
$address = new Address();
|
|
$address->id_customer = $customer->id;
|
|
$address->alias = utf8_encode($other_address['name']);
|
|
$address->lastname = utf8_encode($lastname);
|
|
$address->firstname = utf8_encode($firstname);
|
|
$address->address1 = utf8_encode($other_address['street']);
|
|
$address->address2 = utf8_encode($other_address['street2']);
|
|
$address->city = utf8_encode($other_address['city']);
|
|
$address->postcode = $other_address['zip'];
|
|
$address->company = utf8_encode($other_address['display_name']);
|
|
$address->phone = (int) str_replace(' ', '', $other_address['phone']);
|
|
$address->id_country = ErpTools::getCountryIdForPresta($other_address['country_id'][0]);
|
|
$address->is_erp = 1;
|
|
$address->id_erp = $other_address['id'];
|
|
$address->add();
|
|
}
|
|
|
|
}
|
|
} catch (Exception $exception) {
|
|
$msg = $exception->getMessage();
|
|
ErpTools::logError($record, 'add_customer');
|
|
}
|
|
}
|
|
}
|