FIX : Refactoring

This commit is contained in:
ATM-Nicolas
2018-07-16 11:16:55 +02:00
parent 9d60b0a8c6
commit 3c5998e697

View File

@@ -177,24 +177,8 @@ if ($action == 'presend')
$contactstatic = new Contact($db); $contactstatic = new Contact($db);
foreach ($contactarr as $contact) { foreach ($contactarr as $contact) {
switch($contact['code']) { $contactstatic->fetch($contact['id']);
case 'BILLING': $substitutionarray['__CONTACT_NAME_'.$contact['code'].'__'] = $contactstatic->getFullName($langs, 1);
$contactstatic->fetch($contact['id']);
$substitutionarray['__CONTACT_NAME_BILLING__'] = $contactstatic->getFullName($langs, 1);
break;
case 'CUSTOMER':
$contactstatic->fetch($contact['id']);
$substitutionarray['__CONTACT_NAME_CUSTOMER__'] = $contactstatic->getFullName($langs, 1);
break;
case 'SHIPPING':
$contactstatic->fetch($contact['id']);
$substitutionarray['__CONTACT_NAME_SHIPPING__'] = $contactstatic->getFullName($langs, 1);
break;
case 'SERVICE':
$contactstatic->fetch($contact['id']);
$substitutionarray['__CONTACT_NAME_SERVICE__'] = $contactstatic->getFullName($langs, 1);
break;
}
} }
} }