43require
'../main.inc.php';
44require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
45require_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
46require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
47require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions.lib.php';
48require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
49require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
50require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
51require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
52require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
53require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
54if (isModEnabled(
'member')) {
55 require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent.class.php';
57if (isModEnabled(
'accounting')) {
58 require_once DOL_DOCUMENT_ROOT.
'/core/lib/accounting.lib.php';
60if (isModEnabled(
'accounting')) {
61 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formaccounting.class.php';
63if (isModEnabled(
'accounting')) {
64 require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingaccount.class.php';
66if (isModEnabled(
'eventorganization')) {
67 require_once DOL_DOCUMENT_ROOT.
'/eventorganization/class/conferenceorboothattendee.class.php';
82if ($mysoc->country_code ==
'GR') {
91$langs->loadLangs(array(
"companies",
"commercial",
"bills",
"banks",
"users"));
93if (isModEnabled(
'member')) {
94 $langs->load(
"members");
96if (isModEnabled(
'category')) {
97 $langs->load(
"categories");
99if (isModEnabled(
'incoterm')) {
100 $langs->load(
"incoterm");
102if (isModEnabled(
'notification')) {
103 $langs->load(
"mails");
105if (isModEnabled(
'accounting')) {
106 $langs->load(
"products");
114$action = (
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view');
115$cancel =
GETPOST(
'cancel',
'alpha');
116$backtopage =
GETPOST(
'backtopage',
'alpha');
117$backtopageforcancel =
GETPOST(
'backtopageforcancel',
'alpha');
118$backtopagejsfields =
GETPOST(
'backtopagejsfields',
'alpha');
119$confirm =
GETPOST(
'confirm',
'alpha');
121$dol_openinpopup =
'';
122if (!empty($backtopagejsfields)) {
123 $tmpbacktopagejsfields = explode(
':', $backtopagejsfields);
124 $dol_openinpopup = preg_replace(
'/[^a-z0-9_]/i',
'', $tmpbacktopagejsfields[0]);
129 if (in_array($action, [
'add',
'create',
'merge',
'confirm_merge',
'delete',
'confirm_delete'])) {
133 $socid = $user->socid;
135if (empty($socid) && $action ==
'view') {
145$extrafields->fetch_name_optionals_label(
$object->table_element);
150$hookmanager->initHooks(array(
'thirdpartycard',
'globalcard'));
156if (!(
$object->id > 0) && $action ==
'view') {
163if (!empty($canvas)) {
164 require_once DOL_DOCUMENT_ROOT.
'/core/class/canvas.class.php';
165 $objcanvas =
new Canvas($db, $action);
166 $objcanvas->getCanvas(
'thirdparty',
'card', $canvas);
170$permissiontoread = $user->hasRight(
'societe',
'lire');
171$permissiontoadd = $user->hasRight(
'societe',
'creer');
172$permissiontodelete = $user->hasRight(
'societe',
'supprimer') || ($permissiontoadd && isset(
$object->status) &&
$object->status == 0);
173$permissionnote = $user->hasRight(
'societe',
'creer');
174$permissiondellink = $user->hasRight(
'societe',
'creer');
175$upload_dir =
$conf->societe->multidir_output[isset(
$object->entity) ?
$object->entity : 1];
178$result =
restrictedArea($user,
'societe', $socid,
'&societe',
'',
'fk_soc',
'rowid', 0);
186$parameters = array(
'id' => $socid,
'objcanvas' => $objcanvas);
188$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
193if (empty($reshook)) {
194 $backurlforlist = DOL_URL_ROOT.
'/societe/list.php';
196 if (empty($backtopage) || ($cancel && empty($id))) {
197 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
198 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
199 $backtopage = $backurlforlist;
201 $backtopage = DOL_URL_ROOT.
'/societe/card.php?id='.((!empty($id) &&
$id > 0) ? $id :
'__ID__');
207 if (!empty($backtopageforcancel)) {
208 header(
"Location: ".$backtopageforcancel);
210 } elseif (!empty($backtopage)) {
211 header(
"Location: ".$backtopage);
217 if ($action ==
'confirm_merge' && $confirm ==
'yes' && $permissiontoadd) {
219 $soc_origin =
new Societe($db);
221 if ($soc_origin_id <= 0) {
222 $langs->load(
'errors');
223 setEventMessages($langs->trans(
'ErrorThirdPartyIdIsMandatory', $langs->transnoentitiesnoconv(
'MergeOriginThirdparty')),
null,
'errors');
225 if (!$error && $soc_origin->fetch($soc_origin_id) < 1) {
230 $result =
$object->mergeCompany($soc_origin_id);
241 if (
GETPOST(
'getcustomercode')) {
243 $_POST[
"customer_code"] =
"Acompleter";
246 if (
GETPOST(
'getsuppliercode')) {
248 $_POST[
"supplier_code"] =
"Acompleter";
251 if ($action ==
'set_localtax1' && $permissiontoadd) {
255 $res =
$object->setValueFrom(
'localtax1_value', $value,
'',
null,
'text',
'', $user,
'COMPANY_MODIFY');
257 if ($action ==
'set_localtax2' && $permissiontoadd) {
261 $res =
$object->setValueFrom(
'localtax2_value', $value,
'',
null,
'text',
'', $user,
'COMPANY_MODIFY');
264 if ($action ==
'update_extras' && $permissiontoadd) {
270 $extrafields->fetch_name_optionals_label(
$object->table_element);
272 $ret = $extrafields->setOptionalsFromPost(
null,
$object,
GETPOST(
'attribute',
'restricthtml'));
278 $result =
$object->insertExtraFields(
'COMPANY_MODIFY');
286 $action =
'edit_extras';
291 if ((!
GETPOST(
'getcustomercode') && !
GETPOST(
'getsuppliercode')) && ($action ==
'add' || $action ==
'update') && $permissiontoadd) {
292 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
295 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"ThirdPartyName")),
null,
'errors');
299 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Customer")),
null,
'errors');
303 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Prospect")),
null,
'errors');
306 if (GETPOSTISSET(
'supplier') &&
GETPOSTINT(
'supplier') < 0) {
307 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Supplier")),
null,
'errors');
311 if (isModEnabled(
'mailing') &&
getDolGlobalInt(
'MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2 &&
GETPOSTINT(
'contact_no_email') == -1 && !empty(
GETPOST(
'email',
'custom', 0, FILTER_SANITIZE_EMAIL))) {
313 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"No_Email")),
null,
'errors');
316 if (isModEnabled(
'mailing') &&
GETPOSTINT(
"private") == 1 &&
getDolGlobalInt(
'MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2 &&
GETPOSTINT(
'contact_no_email') == -1 && !empty(
GETPOST(
'email',
'custom', 0, FILTER_SANITIZE_EMAIL))) {
318 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"No_Email")),
null,
'errors');
322 if ($action ==
'update') {
349 $object->socialnetworks = array();
350 if (isModEnabled(
'socialnetworks')) {
351 foreach ($socialnetworks as $key => $value) {
352 if (GETPOSTISSET($key) &&
GETPOST($key,
'alphanohtml') !=
'') {
359 $object->phone_mobile = (string)
GETPOST(
"phone_mobile",
'alpha');
361 $object->email = trim(
GETPOST(
'email',
'custom', 0, FILTER_SANITIZE_EMAIL));
363 $object->url = trim(
GETPOST(
'url',
'custom', 0, FILTER_SANITIZE_URL));
371 $object->code_client = GETPOSTISSET(
'customer_code') ?
GETPOST(
'customer_code',
'alpha') :
GETPOST(
'code_client',
'alpha');
372 $object->code_fournisseur = GETPOSTISSET(
'supplier_code') ?
GETPOST(
'supplier_code',
'alpha') :
GETPOST(
'code_fournisseur',
'alpha');
378 $object->vat_reverse_charge =
GETPOST(
'vat_reverse_charge') ==
'on' ? 1 : 0;
395 $customer = (
GETPOSTINT(
'customer') > 0 ? 1 : 0);
396 $prospect = (
GETPOSTINT(
'prospect') > 0 ? 2 : 0);
397 $prospectcustomer = $customer + $prospect;
399 $object->client = $prospectcustomer;
402 if ($action ==
'add') {
405 $form =
new Form($db);
406 $form->load_cache_types_paiements();
408 $paymentTermId =
GETPOSTINT(
'cond_reglement_id');
409 $paymentTypeId =
GETPOSTINT(
'mode_reglement_id');
411 $object->cond_reglement_id = $paymentTermId;
413 $filterPaymentTypeIdArr = array(0, 2, 3);
414 if (!empty($form->cache_types_paiements[$paymentTypeId]) && isset($form->cache_types_paiements[$paymentTypeId][
'type']) && in_array($form->cache_types_paiements[$paymentTypeId][
'type'], $filterPaymentTypeIdArr)) {
415 $object->mode_reglement_id = $paymentTypeId;
419 if (
$object->fournisseur > 0) {
420 $object->cond_reglement_supplier_id = $paymentTermId;
422 $filterPaymentTypeIdArr = array(1, 2, 3);
423 if (!empty($form->cache_types_paiements[$paymentTypeId]) && isset($form->cache_types_paiements[$paymentTypeId][
'type']) && in_array($form->cache_types_paiements[$paymentTypeId][
'type'], $filterPaymentTypeIdArr)) {
424 $object->mode_reglement_supplier_id = $paymentTypeId;
434 $object->webservices_url =
GETPOST(
'webservices_url',
'custom', 0, FILTER_SANITIZE_URL);
435 $object->webservices_key =
GETPOST(
'webservices_key',
'san_alpha');
437 if (GETPOSTISSET(
'accountancy_code_sell')) {
438 $accountancy_code_sell =
GETPOST(
'accountancy_code_sell',
'alpha');
440 if (empty($accountancy_code_sell) || $accountancy_code_sell ==
'-1') {
441 $object->accountancy_code_sell =
'';
443 $object->accountancy_code_sell = $accountancy_code_sell;
446 if (GETPOSTISSET(
'accountancy_code_buy')) {
447 $accountancy_code_buy =
GETPOST(
'accountancy_code_buy',
'alpha');
449 if (empty($accountancy_code_buy) || $accountancy_code_buy ==
'-1') {
450 $object->accountancy_code_buy =
'';
452 $object->accountancy_code_buy = $accountancy_code_buy;
457 if (isModEnabled(
'incoterm')) {
459 $object->location_incoterms =
GETPOST(
'location_incoterms',
'alpha');
463 if (isModEnabled(
"multicurrency")) {
464 $object->multicurrency_code =
GETPOST(
'multicurrency_code',
'alpha');
468 $ret = $extrafields->setOptionalsFromPost(
null,
$object);
474 $ret =
$object->setValuesForExtraLanguages();
480 if (!empty($_FILES[
'photo'][
'name'])) {
491 if (!
GETPOST(
'cancel',
'alpha')) {
493 $langs->load(
"errors");
498 $langs->load(
"errors");
501 if (!empty(
$object->webservices_url)) {
503 if (strpos(
$object->webservices_url,
"http") ===
false) {
504 $object->webservices_url =
"http://".$object->webservices_url;
507 $langs->load(
"errors");
509 $errors[] = $langs->trans(
"ErrorBadUrl",
$object->webservices_url);
517 $object->country_code = $tmparray[
'code'];
518 $object->country = $tmparray[
'label'];
524 if ($action ==
'add' && $permissiontoadd) {
532 if (empty(
$object->fournisseur)) {
533 $object->code_fournisseur =
'';
536 $result =
$object->create($user);
538 if ($result >= 0 && isModEnabled(
'mailing') && !empty(
$object->email) &&
$object->no_email == 1) {
541 if ($resultnoemail < 0) {
550 dol_syslog(
"We ask to create a contact/address too", LOG_DEBUG);
551 $contcats =
GETPOST(
'contcats',
'array');
553 $result =
$object->create_individual($user, $no_email, $contcats);
561 $salesreps =
GETPOST(
'commercial',
'array');
562 $result =
$object->setSalesRep($salesreps,
true);
569 $custcats =
GETPOST(
'custcats',
'array');
570 $result =
$object->setCategories($custcats,
'customer');
577 $suppcats =
GETPOST(
'suppcats',
'array');
578 $result =
$object->setCategories($suppcats,
'supplier');
586 $file_OK = is_uploaded_file($_FILES[
'photo'][
'tmp_name']);
595 if (!($result > 0)) {
596 $errors[] =
"ErrorFailedToSaveFile";
604 switch ($_FILES[
'photo'][
'error']) {
607 $errors[] =
"ErrorFileSizeTooLarge";
610 $errors[] =
"ErrorFilePartiallyUploaded";
615 if ($result == -3 && in_array(
'ErrorCustomerCodeAlreadyUsed',
$object->errors)) {
616 $duplicate_code_error =
true;
620 if ($result == -3 && in_array(
'ErrorSupplierCodeAlreadyUsed',
$object->errors)) {
621 $duplicate_code_error =
true;
622 $object->code_fournisseur =
'';
625 if ($db->lasterrno() ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
626 $duplicate_code_error =
true;
633 if ($result >= 0 && !$error) {
636 if ($backtopagejsfields) {
639 $retstring =
'<script>';
640 $retstring .=
'jQuery(document).ready(function() {
641 console.log(\'We execute action to create. We save id and go back - '.$dol_openinpopup.
'\');
642 console.log(\
'id = '.
$object->id.
'\');
643 $(\
'#varforreturndialogid'.$dol_openinpopup.
'\', window.parent.document).text(\
''.
$object->id.
'\');
644 $(\
'#varforreturndialoglabel'.$dol_openinpopup.
'\', window.parent.document).text(\
''.
$object->name.
'\');
645 window.parent.jQuery(\
'#idfordialog'.$dol_openinpopup.
'\').dialog(\
'close\');
647 $retstring .=
'</script>';
654 if (!empty($backtopage)) {
655 $backtopage = preg_replace(
'/--IDFORBACKTOPAGE--/', (
string)
$object->id, $backtopage);
656 if (preg_match(
'/\?/', $backtopage)) {
657 $backtopage .=
'&socid='.$object->id;
659 header(
"Location: ".$backtopage);
662 $url = $_SERVER[
"PHP_SELF"].
"?socid=".
$object->id;
664 $url = DOL_URL_ROOT.
"/comm/card.php?socid=".
$object->id;
665 } elseif (
$object->fournisseur == 1) {
666 $url = DOL_URL_ROOT.
"/fourn/card.php?socid=".
$object->id;
669 header(
"Location: ".$url);
678 if ($action ==
'update' && $permissiontoadd) {
681 if (
GETPOST(
'cancel',
'alpha')) {
682 if (!empty($backtopage)) {
683 header(
"Location: ".$backtopage);
686 header(
"Location: ".$_SERVER[
"PHP_SELF"].
"?socid=".$socid);
692 if (empty(
$object->client) && empty(
$object->oldcopy->code_client)) {
695 if (empty(
$object->fournisseur) && empty(
$object->oldcopy->code_fournisseur)) {
696 $object->code_fournisseur =
'';
700 $result =
$object->update($socid, $user, 1,
$object->oldcopy->codeclient_modifiable(),
$object->oldcopy->codefournisseur_modifiable(),
'update', 0);
704 if (GETPOSTISSET(
'no_email') &&
$object->email) {
706 $result =
$object->setNoEmail($no_email);
725 $salesreps =
GETPOST(
'commercial',
'array');
726 $result =
$object->setSalesRep($salesreps);
733 if (!$error && $user->hasRight(
'categorie',
'lire')) {
735 $categories =
GETPOST(
'custcats',
'array');
736 $result =
$object->setCategories($categories,
'customer');
743 $categories =
GETPOST(
'suppcats',
'array');
744 $result =
$object->setCategories($categories,
'supplier');
753 $file_OK = is_uploaded_file($_FILES[
'photo'][
'tmp_name']);
755 $fileimg = $dir.
'/'.
$object->logo;
756 $dirthumbs = $dir.
'/thumbs';
762 if ($current_logo !=
$object->logo) {
763 $fileimg = $dir.
'/'.$current_logo;
764 $dirthumbs = $dir.
'/thumbs';
775 if (!($result > 0)) {
776 $errors[] =
"ErrorFailedToSaveFile";
783 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
792 $errors[] =
"ErrorBadImageFormat";
795 switch ($_FILES[
'photo'][
'error']) {
798 $errors[] =
"ErrorFileSizeTooLarge";
801 $errors[] =
"ErrorFilePartiallyUploaded";
810 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"adherent";
811 $sql .=
" SET fk_soc = NULL WHERE fk_soc = ".((int) $socid);
812 if (!
$object->db->query($sql)) {
819 if (!$error && !count($errors)) {
820 if (!empty($backtopage)) {
821 header(
"Location: ".$backtopage);
824 header(
"Location: ".$_SERVER[
"PHP_SELF"].
"?socid=".$socid);
833 $action = ($action ==
'add' ?
'create' :
'edit');
838 if ($action ==
'confirm_delete' && $confirm ==
'yes' && $user->hasRight(
'societe',
'supprimer')) {
841 $result =
$object->delete($socid, $user);
844 header(
"Location: ".DOL_URL_ROOT.
"/societe/list.php?restore_lastsearch_values=1&delsoc=".urlencode(
$object->name));
847 $langs->load(
"errors");
855 if ($action ==
'set_thirdpartytype' && $permissiontoadd) {
861 if ($action ==
'set_incoterms' && $permissiontoadd && isModEnabled(
'incoterm')) {
867 if ($action ==
'set_thirdparty' && $permissiontoadd) {
873 if ($action ==
'set_salesrepresentatives' && $permissiontoadd) {
879 if ($action ==
'setwarehouse' && $permissiontoadd) {
883 if ($action ==
'confirm_clone' && $confirm !=
'yes') {
887 if ($action ==
'confirm_clone' && $confirm ==
'yes' && $user->hasRight(
'societe',
'creer')) {
893 if (!empty(
GETPOST(
'clone_name'))) {
895 $clone->name =
GETPOST(
'clone_name',
'alphanohtml');
897 $clone->fournisseur = 0;
902 $clone->context[
'createfromclone'] =
'createfromclone';
903 $id = $clone->create($user);
911 unset($clone->context[
'createfromclone']);
918 header(
"Location: " . $_SERVER[
"PHP_SELF"] .
"?id=" . $id);
922 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"NewRefForClone")),
null,
'errors');
935 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
939 $triggersendname =
'COMPANY_SENTBYMAIL';
940 $paramname =
'socid';
941 $mode =
'emailfromthirdparty';
942 $trackid =
'thi'.$object->id;
943 include DOL_DOCUMENT_ROOT.
'/core/actions_sendmails.inc.php';
947 $upload_dir = !empty(
$conf->societe->multidir_output[
$object->entity]) ?
$conf->societe->multidir_output[
$object->entity] :
$conf->societe->dir_output;
948 $permissiontoadd = $user->hasRight(
'societe',
'creer');
949 include DOL_DOCUMENT_ROOT.
'/core/actions_builddoc.inc.php';
957$form =
new Form($db);
961if (isModEnabled(
'accounting')) {
965if ($socid > 0 && empty(
$object->id)) {
966 $result =
$object->fetch($socid);
973$title = $langs->trans(
"ThirdParty");
974if ($action ==
'create') {
975 $title = $langs->trans(
"NewThirdParty");
978 $title =
$object->name.
" - ".$langs->trans(
'Card');
980$help_url =
'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas|DE:Modul_Geschäftspartner';
984$countrynotdefined = $langs->trans(
"ErrorSetACountryFirst").
' ('.$langs->trans(
"SeeAbove").
')';
986$canvasdisplayaction = $action;
987if (in_array($canvasdisplayaction, array(
'merge',
'confirm_merge'))) {
988 $canvasdisplayaction =
'view';
991if (is_object($objcanvas) && $objcanvas->displayCanvasExists($canvasdisplayaction)) {
995 $objcanvas->assign_values($canvasdisplayaction,
$object->id,
$object->ref);
996 $objcanvas->display_canvas($canvasdisplayaction);
1001 if ($action ==
'create') {
1006 if (
getDolGlobalString(
'THIRDPARTY_DEFAULT_CREATE_CONTACT') && !GETPOSTISSET(
'private')) {
1009 if (empty($private)) {
1015 if (substr($module, 0, 15) ==
'mod_codeclient_' && substr($module, -3) ==
'php') {
1016 $module = substr($module, 0,
dol_strlen($module) - 4);
1018 $dirsociete = array_merge(array(
'/core/modules/societe/'),
$conf->modules_parts[
'societe']);
1019 foreach ($dirsociete as $dirroot) {
1025 $modCodeClient =
new $module($db);
1026 '@phan-var-force ModeleThirdPartyCode $modCodeClient';
1029 if (substr($module, 0, 15) ==
'mod_codeclient_' && substr($module, -3) ==
'php') {
1030 $module = substr($module, 0,
dol_strlen($module) - 4);
1032 $dirsociete = array_merge(array(
'/core/modules/societe/'),
$conf->modules_parts[
'societe']);
1033 foreach ($dirsociete as $dirroot) {
1039 $modCodeFournisseur =
new $module($db);
1040 '@phan-var-force ModeleThirdPartyCode $modCodeFournisseur';
1043 if (
GETPOST(
"type",
'aZ') !=
'f') {
1050 if (
GETPOST(
"type",
'aZ') ==
'c') {
1057 if (
GETPOST(
"type",
'aZ') ==
'p') {
1065 if ((isModEnabled(
"supplier_order") || isModEnabled(
"supplier_invoice")) && (
GETPOST(
"type") ==
'f' || (
GETPOST(
"type") ==
'' &&
getDolGlobalString(
'THIRDPARTY_SUPPLIER_BY_DEFAULT')))) {
1072 $object->particulier = $private;
1076 if (empty($duplicate_code_error)) {
1081 setEventMessages($langs->trans(
'NewCustomerSupplierCodeProposed'),
null,
'warnings');
1089 $object->socialnetworks = array();
1090 if (isModEnabled(
'socialnetworks')) {
1091 foreach ($socialnetworks as $key => $value) {
1092 if (GETPOSTISSET($key) &&
GETPOST($key,
'alphanohtml') !=
'') {
1099 $object->phone_mobile = (string)
GETPOST(
"phone_mobile",
'alpha');
1101 $object->email =
GETPOST(
'email',
'custom', 0, FILTER_SANITIZE_EMAIL);
1104 $paymentTermId =
GETPOSTINT(
'cond_reglement_id');
1105 if (empty($paymentTermId) && !GETPOSTISSET(
'cond_reglement_id')) {
1108 $object->cond_reglement_id = $paymentTermId;
1109 $paymentTypeId =
GETPOSTINT(
'mode_reglement_id');
1110 if (empty($paymentTypeId) && !GETPOSTISSET(
'mode_reglement_id')) {
1113 $object->mode_reglement_id = $paymentTypeId;
1126 $object->vat_reverse_charge =
GETPOST(
'vat_reverse_charge') ==
'on' ? 1 : 0;
1141 if (GETPOSTISSET(
'accountancy_code_sell')) {
1142 $accountancy_code_sell =
GETPOST(
'accountancy_code_sell',
'alpha');
1144 if (empty($accountancy_code_sell) || $accountancy_code_sell ==
'-1') {
1145 $object->accountancy_code_sell =
'';
1147 $object->accountancy_code_sell = $accountancy_code_sell;
1150 if (GETPOSTISSET(
'accountancy_code_buy')) {
1151 $accountancy_code_buy =
GETPOST(
'accountancy_code_buy',
'alpha');
1153 if (empty($accountancy_code_buy) || $accountancy_code_buy ==
'-1') {
1154 $object->accountancy_code_buy =
'';
1156 $object->accountancy_code_buy = $accountancy_code_buy;
1164 $file_OK = (isset($_FILES[
'photo']) ? is_uploaded_file($_FILES[
'photo'][
'tmp_name']) : false);
1169 if (@is_dir($dir)) {
1173 if (!($result > 0)) {
1174 $errors[] =
"ErrorFailedToSaveFile";
1187 $object->country_code = $tmparray[
'code'];
1188 $object->country = $tmparray[
'label'];
1193 if (isModEnabled(
"multicurrency")) {
1199 print
load_fiche_titre($langs->trans(
"NewThirdParty"), $linkback,
'building');
1201 if (!empty(
$conf->use_javascript_ajax)) {
1203 print
"\n".
'<script type="text/javascript">';
1204 print
'$(document).ready(function () {
1207 is_private=' . $private.
';
1209 $(".individualline").show();
1211 $(".individualline").hide();
1213 $("#radiocompany").click(function() {
1214 $(".individualline").hide();
1215 $("#typent_id").val(0);
1216 $("#typent_id").change();
1217 $("#effectif_id").val(0);
1218 $("#effectif_id").change();
1219 $("#TypeName").html(document.formsoc.ThirdPartyName.value);
1220 document.formsoc.private.value=0;
1222 $("#radioprivate").click(function() {
1223 $(".individualline").show();
1224 $("#typent_id").val(id_te_private);
1225 $("#typent_id").change();
1226 $("#effectif_id").val(id_ef15);
1227 $("#effectif_id").change();
1228 /* Force to recompute the width of a select2 field when it was hidden and then shown programmatically */
1229 if ($("#civility_id").data("select2")) {
1230 $("#civility_id").select2({width: "resolve"});
1232 $("#TypeName").html(document.formsoc.LastName.value);
1233 document.formsoc.private.value=1;
1238 function init_check_no_email(input) {
1239 if (input.val()!="") {
1240 $(".noemail").addClass("fieldrequired");
1242 $(".noemail").removeClass("fieldrequired");
1245 $("#email").keyup(function() {
1246 init_check_no_email($(this));
1248 init_check_no_email($("#email"));';
1251 print
'</script>'.
"\n";
1253 print
'<div id="selectthirdpartytype">';
1254 print
'<div class="hideonsmartphone float">';
1255 print $langs->trans(
"ThirdPartyType").
': ';
1257 print
'<label for="radiocompany" class="radiocompany">';
1258 print
'<input type="radio" id="radiocompany" class="flat" name="private" value="0"'.($private ?
'' :
' checked').
'>';
1260 print $langs->trans(
"CreateThirdPartyOnly");
1262 print
' ';
1263 print
'<label for="radioprivate" class="radioprivate">';
1264 $text =
'<input type="radio" id="radioprivate" class="flat" name="private" value="1"'.($private ?
' checked' :
'').
'>';
1266 $text .= $langs->trans(
"CreateThirdPartyAndContact");
1267 $htmltext = $langs->trans(
"ToCreateContactWithSameName");
1268 print $form->textwithpicto($text, $htmltext, 1,
'help',
'', 0, 3);
1274 print
'<script type="text/javascript">';
1275 print
'$(document).ready(function () {
1276 var canHaveCustomerCategoryIfNotCustomerProspectSupplier = ' . (!
getDolGlobalString(
'THIRDPARTY_CAN_HAVE_CUSTOMER_CATEGORY_EVEN_IF_NOT_CUSTOMER_PROSPECT') ?
'0' :
'1') .
';
1278 init_customer_categ();
1279 $("#customerprospect").change(function() {
1280 init_customer_categ();
1282 function init_customer_categ() {
1283 console.log("is customer or prospect = "+jQuery("#customerprospect").val());
1284 if (jQuery("#customerprospect").val() == 0 && !canHaveCustomerCategoryIfNotCustomerProspectSupplier) {
1285 jQuery(".visibleifcustomer").hide();
1287 jQuery(".visibleifcustomer").show();
1291 init_supplier_categ();
1292 $("#fournisseur").change(function() {
1293 init_supplier_categ();
1295 function init_supplier_categ() {
1296 console.log("is supplier = "+jQuery("#fournisseur").val());
1297 if (jQuery("#fournisseur").val() == 0) {
1298 jQuery(".visibleifsupplier").hide();
1300 jQuery(".visibleifsupplier").show();
1304 $("#selectcountry_id").change(function() {
1305 console.log("selectcountry_id change");
1306 document.formsoc.action.value="create";
1307 document.formsoc.submit();
1310 print
'</script>'.
"\n";
1315 print
'<form enctype="multipart/form-data" action="'.$_SERVER[
"PHP_SELF"].
'" method="post" name="formsoc" autocomplete="off">';
1317 print
'<input type="hidden" name="action" value="add">';
1318 print
'<input type="hidden" name="token" value="'.newToken().
'">';
1319 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
1320 print
'<input type="hidden" name="backtopagejsfields" value="'.$backtopagejsfields.
'">';
1321 print
'<input type="hidden" name="dol_openinpopup" value="'.$dol_openinpopup.
'">';
1322 print
'<input type="hidden" name="private" value='.$object->particulier.
'>';
1323 print
'<input type="hidden" name="type" value='.GETPOST(
"type",
'alpha').
'>';
1324 print
'<input type="hidden" name="LastName" value="'.$langs->trans(
'ThirdPartyName').
' / '.$langs->trans(
'LastName').
'">';
1325 print
'<input type="hidden" name="ThirdPartyName" value="'.$langs->trans(
'ThirdPartyName').
'">';
1326 if ($modCodeClient->code_auto || $modCodeFournisseur->code_auto) {
1327 print
'<input type="hidden" name="code_auto" value="1">';
1333 $parameters = array();
1335 $reshook = $hookmanager->executeHooks(
'tabContentCreateThirdparty', $parameters,
$object, $action);
1336 if (empty($reshook)) {
1337 print
'<table class="border centpercent">';
1340 print
'<tr class="tr-field-thirdparty-name"><td class="titlefieldcreate">';
1341 if (
$object->particulier || $private) {
1342 print
'<span id="TypeName" class="fieldrequired">'.$langs->trans(
'ThirdPartyName').
' / '.$langs->trans(
'LastName',
'name').
'</span>';
1344 print
'<span id="TypeName" class="fieldrequired">'.$form->editfieldkey(
'ThirdPartyName',
'name',
'',
$object, 0).
'</span>';
1346 print
'</td><td'.(!
getDolGlobalString(
'SOCIETE_USEPREFIX') ?
' colspan="3"' :
'').
'>';
1348 print
'<input type="text" class="minwidth300" maxlength="128" name="name" id="name" value="'.dol_escape_htmltag(
$object->name).
'" autofocus="autofocus">';
1349 print $form->widgetForTranslation(
"name",
$object, $permissiontoadd,
'string',
'alphanohtml',
'minwidth300');
1444 print
'<td>'.$langs->trans(
'Prefix').
'</td><td><input type="text" size="5" maxlength="5" name="prefix_comm" value="'.
dol_escape_htmltag(
$object->prefix_comm).
'"></td>';
1449 if (
$conf->use_javascript_ajax) {
1452 print
'<tr class="individualline"><td>'.$form->editfieldkey(
'FirstName',
'firstname',
'',
$object, 0).
'</td>';
1453 print
'<td colspan="3"><input type="text" class="minwidth300" maxlength="128" name="firstname" id="firstname" value="'.dol_escape_htmltag(
$object->firstname).
'"></td>';
1457 print
'<tr class="individualline"><td>'.$form->editfieldkey(
'UserTitle',
'civility_id',
'',
$object, 0).
'</td><td colspan="3" class="maxwidthonsmartphone">';
1458 print $formcompany->select_civility(
$object->civility_id,
'civility_id',
'maxwidth100').
'</td>';
1464 print
'<tr id="name_alias"><td><label for="name_alias_input">'.$langs->trans(
'AliasNames').
'</label></td>';
1465 print
'<td colspan="3"><input type="text" class="minwidth300" name="name_alias" id="name_alias_input" value="'.dol_escape_htmltag(
$object->name_alias).
'"></td></tr>';
1469 $selectedcustomer = 0;
1470 $selectedprospect = 0;
1471 switch ($selected) {
1473 $selectedcustomer = 1;
1476 $selectedprospect = 1;
1479 $selectedprospect = 1;
1480 $selectedcustomer = 1;
1486 $selectedprospect = (GETPOSTISSET(
'prospect') ?
GETPOSTINT(
'prospect') : $selectedprospect);
1487 $selectedcustomer = (GETPOSTISSET(
'customer') ?
GETPOSTINT(
'customer') : $selectedcustomer);
1488 print
'<tr class="marginbottomlarge height50">';
1489 if (
$conf->browser->layout !=
'phone') {
1490 print
'<td class="titlefieldcreate">'.$form->editfieldkey(
'',
'customerprospect',
'',
$object, 0,
'string',
'', 0).
'</td>';
1492 print
'<td class="maxwidthonsmartphone"'.($conf->browser->layout !=
'phone' ?
'colspan="3"' :
'colspan="2"').
'>';
1495 print
'<span id="spannature1" class="spannature prospect-back paddinglarge marginrightonly"><label for="prospectinput" class="valignmiddle">'.$langs->trans(
"Prospect").
'<input id="prospectinput" class="flat checkforselect marginleftonly valignmiddle" type="checkbox" name="prospect" value="2"'.($selectedprospect ?
' checked="checked"' :
'').
'></label></span>';
1499 print
'<span id="spannature2" class="spannature customer-back paddinglarge marginrightonly"><label for="customerinput" class="valignmiddle">'.$langs->trans(
"Customer").
'<input id="customerinput" class="flat checkforselect marginleftonly valignmiddle" type="checkbox" name="customer" value="1"'.($selectedcustomer ?
' checked="checked"' :
'').
'></label></span>';
1502 if ((isModEnabled(
"fournisseur") && $user->hasRight(
'fournisseur',
'lire') && !
getDolGlobalString(
'MAIN_USE_NEW_SUPPLIERMOD')) || (isModEnabled(
"supplier_order") && $user->hasRight(
'supplier_order',
'lire')) || (isModEnabled(
"supplier_invoice") && $user->hasRight(
'supplier_invoice',
'lire'))
1503 || (isModEnabled(
'supplier_proposal') && $user->hasRight(
'supplier_proposal',
'lire'))) {
1505 $selected = (GETPOSTISSET(
'supplier') ?
GETPOSTINT(
'supplier') :
$object->fournisseur);
1506 print
'<span id="spannature3" class="spannature vendor-back paddinglarge marginrightonly"><label for="supplierinput" class="valignmiddle">'.$langs->trans(
"Vendor").
'<input id="supplierinput" class="flat checkforselect marginleftonly valignmiddle" type="checkbox" name="supplier" value="1"'.($selected ?
' checked="checked"' :
'').
'></label></span>';
1509 if (
$conf->use_javascript_ajax) {
1511 function refreshNatureCss() {
1512 jQuery(".spannature").each(function( index ) {
1513 id = $(this).attr("id").split("spannature")[1];
1514 console.log(jQuery("#spannature"+(id)+" .checkforselect").is(":checked"));
1515 if (jQuery("#spannature"+(id)+" .checkforselect").is(":checked")) {
1517 jQuery("#spannature"+(id)).addClass("prospect-back").removeClass("nonature-back");
1520 jQuery("#spannature"+(id)).addClass("customer-back").removeClass("nonature-back");
1523 jQuery("#spannature"+(id)).addClass("vendor-back").removeClass("nonature-back");
1526 jQuery("#spannature"+(id)).removeClass("prospect-back").removeClass("customer-back").removeClass("vendor-back").addClass("nonature-back");
1531 function manageprospectcustomer(element) {
1532 console.log("We uncheck unwanted values on a nature");
1533 id = $(element).attr("id").split("spannature")[1];
1535 $("#spannature2 .checkforselect").prop("checked", false);
1538 $("#spannature1 .checkforselect").prop("checked", false);
1542 jQuery(".spannature").click(function(){
1543 console.log("We click on a nature");
1544 '.(getDolGlobalString(
'SOCIETE_DISABLE_PROSPECTSCUSTOMERS') ?
'manageprospectcustomer($(this));' :
'').
'
1553 print
'<tr><td>'.$form->editfieldkey(
'CustomerCode',
'customer_code',
'',
$object, 0).
'</td><td>';
1554 print
'<table class="nobordernopadding"><tr><td>';
1555 $tmpcode =
$object->code_client;
1556 if (empty($tmpcode) && !empty($modCodeClient->code_auto)) {
1557 $tmpcode = $modCodeClient->getNextValue(
$object, 0);
1559 print
'<input type="text" name="customer_code" id="customer_code" class="maxwidthonsmartphone" value="'.dol_escape_htmltag($tmpcode).
'" maxlength="24">';
1561 $s = $modCodeClient->getToolTip($langs,
$object, 0);
1562 print $form->textwithpicto(
'', $s, 1);
1563 print
'</td></tr></table>';
1566 if (
$conf->browser->layout ==
'phone') {
1570 print
'<td>'.$form->editfieldkey(
'SupplierCode',
'supplier_code',
'',
$object, 0).
'</td><td>';
1572 if ((isModEnabled(
"fournisseur") && $user->hasRight(
'fournisseur',
'lire') && !
getDolGlobalString(
'MAIN_USE_NEW_SUPPLIERMOD')) || (isModEnabled(
"supplier_order") && $user->hasRight(
'supplier_order',
'lire')) || (isModEnabled(
"supplier_invoice") && $user->hasRight(
'supplier_invoice',
'lire'))) {
1573 print
'<table class="nobordernopadding"><tr><td>';
1574 $tmpcode =
$object->code_fournisseur;
1575 if (empty($tmpcode) && !empty($modCodeFournisseur->code_auto)) {
1576 $tmpcode = $modCodeFournisseur->getNextValue(
$object, 1);
1578 print
'<input type="text" name="supplier_code" id="supplier_code" class="maxwidthonsmartphone" value="'.dol_escape_htmltag($tmpcode).
'" maxlength="24">';
1580 $s = $modCodeFournisseur->getToolTip($langs,
$object, 1);
1581 print $form->textwithpicto(
'', $s, 1);
1582 print
'</td></tr></table>';
1587 print
'<tr><td>'.$form->editfieldkey(
'Status',
'status',
'',
$object, 0).
'</td><td colspan="3">';
1588 print $form->selectarray(
'status', array(
'1' => $langs->trans(
'InActivity'),
'0' => $langs->trans(
'ActivityCeased')), 1, 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth100', 1);
1592 if (isModEnabled(
'barcode')) {
1593 print
'<tr><td>'.$form->editfieldkey(
'Gencod',
'barcode',
'',
$object, 0).
'</td>';
1594 print
'<td colspan="3">';
1595 print
img_picto(
'',
'barcode',
'class="pictofixedwidth"');
1596 print
'<input type="text" class="minwidth200 maxwidth300 widthcentpercentminusx" name="barcode" id="barcode" value="'.dol_escape_htmltag(
$object->barcode).
'">';
1600 $colspan = (
$conf->browser->layout ==
'phone' ? 2 : 4);
1601 print
'<tr><td'.($colspan ?
' colspan="'.$colspan.
'"' :
'').
'> </td></tr>';
1604 print
'<tr><td class="tdtop">';
1605 print $form->editfieldkey(
'Address',
'address',
'',
$object, 0);
1607 print
'<td colspan="3">';
1608 print
'<textarea name="address" id="address" class="quatrevingtpercent" rows="'.ROWS_2.
'" wrap="soft">';
1610 print
'</textarea>';
1611 print $form->widgetForTranslation(
"address",
$object, $permissiontoadd,
'textarea',
'alphanohtml',
'quatrevingtpercent');
1615 print
'<tr><td>'.$form->editfieldkey(
'Zip',
'zipcode',
'',
$object, 0).
'</td><td>';
1616 print $formcompany->select_ziptown(
$object->zip,
'zipcode', array(
'town',
'selectcountry_id',
'state_id'), 0, 0,
'',
'maxwidth100');
1618 if (
$conf->browser->layout ==
'phone') {
1621 print
'<td class="tdtop">'.$form->editfieldkey(
'Town',
'town',
'',
$object, 0).
'</td><td>';
1622 print $formcompany->select_ziptown(
$object->town,
'town', array(
'zipcode',
'selectcountry_id',
'state_id'), 0, 0,
'',
'maxwidth150 quatrevingtpercent');
1623 print $form->widgetForTranslation(
"town",
$object, $permissiontoadd,
'string',
'alphanohtml',
'maxwidth100 quatrevingtpercent');
1627 print
'<tr><td>'.$form->editfieldkey(
'Country',
'selectcountry_id',
'',
$object, 0).
'</td><td colspan="3" class="maxwidthonsmartphone">';
1628 print
img_picto(
'',
'country',
'class="pictofixedwidth"');
1629 print $form->select_country((GETPOSTISSET(
'country_id') ?
GETPOST(
'country_id') :
$object->country_id),
'country_id',
'', 0,
'minwidth200 maxwidth300 widthcentpercentminusx');
1631 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1638 print
'<tr><td>'.$form->editfieldkey(
'Region-State',
'state_id',
'',
$object, 0).
'</td><td colspan="3" class="maxwidthonsmartphone">';
1640 print
'<tr><td>'.$form->editfieldkey(
'State',
'state_id',
'',
$object, 0).
'</td><td colspan="3" class="maxwidthonsmartphone">';
1644 print
img_picto(
'',
'state',
'class="pictofixedwidth"');
1645 print $formcompany->select_state(
$object->state_id,
$object->country_code,
'state_id',
'minwidth200 maxwidth300 widthcentpercentminusx');
1647 print $countrynotdefined;
1653 print
'<tr><td>'.$form->editfieldkey(
'Phone',
'phone',
'',
$object, 0).
'</td>';
1654 print
'<td'.($conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>'.
img_picto(
'',
'object_phoning',
'class="pictofixedwidth"').
' <input type="text" name="phone" id="phone" class="maxwidth200 widthcentpercentminusx" value="'.(GETPOSTISSET(
'phone') ?
GETPOST(
'phone',
'alpha') :
$object->phone).
'"></td>';
1656 if (
$conf->browser->layout ==
'phone') {
1661 print
'<td>'.$form->editfieldkey(
'PhoneMobile',
'phone_mobile',
'',
$object, 0).
'</td>';
1662 print
'<td'.($conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>'.
img_picto(
'',
'object_phoning_mobile',
'class="pictofixedwidth"').
' <input type="text" name="phone_mobile" id="phone_mobile" class="maxwidth200 widthcentpercentminusx" value="'.(GETPOSTISSET(
'phone_mobile') ?
GETPOST(
'phone_mobile',
'alpha') :
$object->phone_mobile).
'"></td></tr>';
1666 print
'<td>'.$form->editfieldkey(
'Fax',
'fax',
'',
$object, 0).
'</td>';
1667 print
'<td'.($conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>'.
img_picto(
'',
'object_phoning_fax',
'class="pictofixedwidth"').
' <input type="text" name="fax" id="fax" class="maxwidth200 widthcentpercentminusx" value="'.(GETPOSTISSET(
'fax') ?
GETPOST(
'fax',
'alpha') :
$object->fax).
'"></td></tr>';
1670 print
'<tr><td>'.$form->editfieldkey(
'Web',
'url',
'',
$object, 0).
'</td>';
1671 print
'<td colspan="3">'.img_picto(
'',
'globe',
'class="pictofixedwidth"').
' <input type="text" class="maxwidth500 widthcentpercentminusx" name="url" id="url" value="'.
$object->url.
'"></td></tr>';
1674 print
'<tr><td>'.$form->editfieldkey(
'EMail',
'email',
'',
$object, 0,
'string',
'',
getDolGlobalString(
'SOCIETE_EMAIL_MANDATORY')).
'</td>';
1675 print
'<td'.(($conf->browser->layout ==
'phone') || !isModEnabled(
'mailing') ?
' colspan="3"' :
'').
'>'.
img_picto(
'',
'object_email',
'class="pictofixedwidth"').
' <input type="text" class="maxwidth200 widthcentpercentminusx" name="email" id="email" value="'.
$object->email.
'"></td>';
1678 if (isModEnabled(
'mailing')) {
1679 if (
$conf->browser->layout ==
'phone') {
1682 if (
$conf->use_javascript_ajax &&
getDolGlobalInt(
'MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2) {
1683 print
"\n".
'<script type="text/javascript">'.
"\n";
1684 print
'$(document).ready(function () {
1685 $("#email").keyup(function() {
1686 console.log("We change email content");
1687 if ($(this).val()!="") {
1688 $(".noemail").addClass("fieldrequired");
1690 $(".noemail").removeClass("fieldrequired");
1694 print
'</script>'.
"\n";
1696 if (!GETPOSTISSET(
"no_email") && !empty(
$object->email)) {
1697 $result =
$object->getNoEmail();
1702 print
'<td class="noemail"><label for="no_email">'.$langs->trans(
"No_Email").
'</label></td>';
1704 print $form->selectyesno(
'no_email', (GETPOSTISSET(
"no_email") ?
GETPOSTINT(
"no_email") :
getDolGlobalInt(
'MAILING_CONTACT_DEFAULT_BULK_STATUS')), 1, false, (
getDolGlobalInt(
'MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2 ? 1 : 0), 1);
1710 if (isModEnabled(
'mailing') &&
getDolGlobalString(
'THIRDPARTY_SUGGEST_ALSO_ADDRESS_CREATION')) {
1712 if (
$conf->browser->layout !=
'phone') {
1716 print
'<td class="individualline noemail">'.$form->editfieldkey($langs->trans(
'No_Email') .
' ('.$langs->trans(
'Contact').
')',
'contact_no_email',
'',
$object, 0).
'</td>';
1717 print
'<td class="individualline" '.(($conf->browser->layout ==
'phone') || !isModEnabled(
'mailing') ?
' colspan="3"' :
'').
'>'.$form->selectyesno(
'contact_no_email', (GETPOSTISSET(
"contact_no_email") ?
GETPOST(
"contact_no_email",
'alpha') : (empty(
$object->no_email) ? 0 : 1)), 1, false, 1).
'</td>';
1722 if (isModEnabled(
'socialnetworks')) {
1723 $colspan = (
$conf->browser->layout ==
'phone' ? 2 : 4);
1725 $object->showSocialNetwork($socialnetworks, $colspan);
1727 print
'<tr><td'.($colspan ?
' colspan="'.$colspan.
'"' :
'').
'><hr></td></tr>';
1733 $NBCOLS = (
$conf->browser->layout ==
'phone' ? 1 : 2);
1736 while ($i <= $NBPROFIDMAX) {
1737 $idprof = $langs->transcountry(
'ProfId'.$i,
$object->country_code);
1738 if ($idprof !=
'-' && ($i <= $NBPROFIDMIN || !empty($langs->tab_translate[
'ProfId'.$i.$object->country_code]))) {
1741 if (($j % $NBCOLS) == 0) {
1745 $idprof_mandatory =
'SOCIETE_IDPROF'.($i).
'_MANDATORY';
1746 print
'<td>'.$form->editfieldkey($idprof, $key,
'',
$object, 0,
'string',
'', (empty(
$conf->global->$idprof_mandatory) ? 0 : 1)).
'</td><td>';
1748 print $formcompany->get_input_id_prof($i, $key,
$object->$key,
$object->country_code);
1750 if (($j % $NBCOLS) == ($NBCOLS - 1)) {
1757 if ($NBCOLS > 1 && ($j % 2 == 1)) {
1758 print
'<td colspan="2"></td></tr>';
1762 print
'<tr><td><label for="assujtva_value">'.$form->editfieldkey(
'VATIsUsed',
'assujtva_value',
'',
$object, 0).
'</label></td>';
1764 print
'<input id="assujtva_value" name="assujtva_value" type="checkbox" ' . (GETPOSTISSET(
'assujtva_value') ? (
GETPOST(
'assujtva',
'alpha') !=
'' ?
' checked="checked"' :
'') :
'checked="checked"') .
' value="1">';
1766 if (
$conf->browser->layout ==
'phone') {
1769 print
'<td class="nowrap">'.$form->editfieldkey(
'VATIntra',
'intra_vat',
'',
$object, 0).
'</td>';
1770 print
'<td class="nowrap">';
1771 $s =
'<input type="text" class="flat maxwidthonsmartphone" name="tva_intra" id="intra_vat" maxlength="20" value="'.$object->tva_intra.
'">';
1776 if (!empty(
$conf->use_javascript_ajax)) {
1778 if (!empty(
$conf->dol_use_jmobile)) {
1783 print
'<script type="text/javascript">';
1784 print
"function CheckVAT(a) {\n";
1785 if ($mysoc->country_code ==
'GR' &&
$object->country_code ==
'GR' && !empty($u)) {
1786 print
"GRVAT(a,'{$u}','{$p}','{$myafm}');\n";
1788 print
"newpopup('".DOL_URL_ROOT.
"/societe/checkvat/checkVatPopup.php?vatNumber='+a, '".
dol_escape_js($langs->trans(
"VATIntraCheckableOnEUSite")).
"', ".$widthpopup.
", ".$heightpopup.
");\n";
1793 $s .=
'<a href="#" class="hideonsmartphone" onclick="CheckVAT(document.formsoc.tva_intra.value);">'.$langs->trans(
"VATIntraCheck").
'</a>';
1794 $s = $form->textwithpicto($s, $langs->trans(
"VATIntraCheckDesc", $langs->transnoentitiesnoconv(
"VATIntraCheck")), 1);
1796 $s .=
'<a href="'.$langs->transcountry(
"VATIntraCheckURL",
$object->country_id).
'" target="_blank" rel="noopener noreferrer">'.
img_picto($langs->trans(
"VATIntraCheckableOnEUSite"),
'help').
'</a>';
1805 print
'<tr><td><label for="vat_reverse_charge">' . $form->editfieldkey(
'VATReverseChargeByDefault',
'vat_reverse_charge',
'',
$object, 0) .
'</label></td><td colspan="3">';
1806 print
'<input type="checkbox" name="vat_reverse_charge" id="vat_reverse_charge" '.($object->vat_reverse_charge ==
'1' ?
' checked' :
'').
'>';
1812 if ($mysoc->localtax1_assuj ==
"1" && $mysoc->localtax2_assuj ==
"1") {
1813 print
'<tr><td>'.$langs->transcountry(
"LocalTax1IsUsed", $mysoc->country_code).
'</td><td>';
1814 print
'<input id="localtax1assuj_value" name="localtax1assuj_value" type="checkbox" ' . (isset(
$conf->global->THIRDPARTY_DEFAULT_USELOCALTAX1) ?
'checked="checked"' :
'') .
' value="1">';
1816 if (
$conf->browser->layout ==
'phone') {
1819 print
'<td>'.$langs->transcountry(
"LocalTax2IsUsed", $mysoc->country_code).
'</td><td>';
1820 print
'<input id="localtax2assuj_value" name="localtax2assuj_value" type="checkbox" ' . (isset(
$conf->global->THIRDPARTY_DEFAULT_USELOCALTAX2) ?
'checked="checked"' :
'') .
' value="1">';
1822 } elseif ($mysoc->localtax1_assuj ==
"1") {
1823 print
'<tr><td>'.$langs->transcountry(
"LocalTax1IsUsed", $mysoc->country_code).
'</td><td colspan="3">';
1824 print
'<input id="localtax1assuj_value" name="localtax1assuj_value" type="checkbox" ' . (isset(
$conf->global->THIRDPARTY_DEFAULT_USELOCALTAX1) ?
'checked="checked"' :
'') .
' value="1">';
1826 } elseif ($mysoc->localtax2_assuj ==
"1") {
1827 print
'<tr><td>'.$langs->transcountry(
"LocalTax2IsUsed", $mysoc->country_code).
'</td><td colspan="3">';
1828 print
'<input id="localtax2assuj_value" name="localtax2assuj_value" type="checkbox" ' . (isset(
$conf->global->THIRDPARTY_DEFAULT_USELOCALTAX2) ?
'checked="checked"' :
'') .
' value="1">';
1833 print
'<tr><td>'.$form->editfieldkey(
'ThirdPartyType',
'typent_id',
'',
$object, 0).
'</td><td class="maxwidthonsmartphone"'.((
$conf->browser->layout ==
'phone' ||
getDolGlobalString(
'SOCIETE_DISABLE_WORKFORCE')) ?
' colspan="3"' :
'').
'>'.
"\n";
1834 $sortparam = (!
getDolGlobalString(
'SOCIETE_SORT_ON_TYPEENT') ?
'ASC' :
$conf->global->SOCIETE_SORT_ON_TYPEENT);
1835 print $form->selectarray(
"typent_id", $formcompany->typent_array(0),
$object->typent_id, 1, 0, 0,
'', 0, 0, 0, $sortparam,
'', 1);
1837 print
' '.info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1841 if (
$conf->browser->layout ==
'phone') {
1844 print
'<td>'.$form->editfieldkey(
'Workforce',
'effectif_id',
'',
$object, 0).
'</td><td class="maxwidthonsmartphone"'.(
$conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>';
1845 print $form->selectarray(
"effectif_id", $formcompany->effectif_array(0),
$object->effectif_id, 0, 0, 0,
'', 0, 0, 0,
'',
'', 1);
1847 print
' '.info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1850 print
'<input type="hidden" name="effectif_id" id="effectif_id" value="'.$object->effectif_id.
'">';
1855 print
'<tr><td>'.$form->editfieldkey(
'JuridicalStatus',
'forme_juridique_code',
'',
$object, 0).
'</td>';
1856 print
'<td colspan="3" class="maxwidthonsmartphone">';
1858 print $formcompany->select_juridicalstatus(
$object->forme_juridique_code,
$object->country_code,
'',
'forme_juridique_code');
1860 print $countrynotdefined;
1865 print
'<tr><td>'.$form->editfieldkey(
'Capital',
'capital',
'',
$object, 0).
'</td>';
1866 print
'<td colspan="3"><input type="text" name="capital" id="capital" class="maxwidth100" value="'.$object->capital.
'"> ';
1867 if (isModEnabled(
"multicurrency")) {
1868 print
'<span class="hideonsmartphone">';
1870 print $langs->getCurrencySymbol(
$object->multicurrency_code);
1871 print
'</span></td></tr>';
1873 print
'<span class="hideonsmartphone">';
1874 print $langs->getCurrencySymbol(
$conf->currency);
1876 print
'</span></td></tr>';
1879 print
'<tr><td>'.$form->editfieldkey(
'DefaultLang',
'default_lang',
'',
$object, 0).
'</td><td colspan="3" class="maxwidthonsmartphone">'.
"\n";
1880 print
img_picto(
'',
'language',
'class="pictofixedwidth"').$formadmin->select_language(
GETPOST(
'default_lang',
'alpha') ?
GETPOST(
'default_lang',
'alpha') : (
$object->default_lang ?
$object->default_lang :
''),
'default_lang', 0, array(), 1, 0, 0,
'maxwidth200onsmartphone');
1887 print
'<td>'.$form->editfieldkey(
'PaymentConditions',
'cond_reglement_id',
'',
$object, 0).
'</td>';
1888 print
'<td colspan="3" class="maxwidthonsmartphone">';
1889 print $form->getSelectConditionsPaiements(
$object->cond_reglement_id,
'cond_reglement_id', 1, 1, 1,
'',
$object->deposit_percent);
1894 print
'<td>'.$form->editfieldkey(
'PaymentMode',
'mode_reglement_id',
'',
$object, 0).
'</td>';
1895 print
'<td colspan="3" class="maxwidthonsmartphone">';
1896 print $form->select_types_paiements(
$object->mode_reglement_id,
'mode_reglement_id',
'', 0, 1, 1, 0, 1);
1900 if (isModEnabled(
'incoterm')) {
1902 print
'<td>'.$form->editfieldkey(
'IncotermLabel',
'incoterm_id',
'',
$object, 0).
'</td>';
1903 print
'<td colspan="3" class="maxwidthonsmartphone">';
1904 print $form->select_incoterms((!empty(
$object->fk_incoterms) ?
$object->fk_incoterms :
''), (!empty(
$object->location_incoterms) ?
$object->location_incoterms :
''));
1909 if (isModEnabled(
'category') && $user->hasRight(
'categorie',
'lire')) {
1910 $langs->load(
'categories');
1913 print
'<tr class="visibleifcustomer"><td class="toptd">'.$form->editfieldkey(
'CustomersProspectsCategoriesShort',
'custcats',
'',
$object, 0).
'</td><td colspan="3">';
1914 $cate_arbo = $form->select_all_categories(Categorie::TYPE_CUSTOMER,
'',
'parent', 64, 0, 3);
1915 print
img_picto(
'',
'category',
'class="pictofixedwidth"').$form->multiselectarray(
'custcats', $cate_arbo,
GETPOST(
'custcats',
'array'), 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0);
1919 print
'<tr class="individualline"><td class="toptd">'.$form->editfieldkey(
'ContactCategoriesShort',
'contcats',
'',
$object, 0).
'</td><td colspan="3">';
1920 $cate_arbo = $form->select_all_categories(Categorie::TYPE_CONTACT,
'',
'parent', 64, 0, 3);
1921 print
img_picto(
'',
'category',
'class="pictofixedwidth"').$form->multiselectarray(
'contcats', $cate_arbo,
GETPOST(
'contcats',
'array'), 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0);
1926 if (isModEnabled(
"supplier_proposal") || isModEnabled(
"supplier_order") || isModEnabled(
"supplier_invoice")) {
1927 print
'<tr class="visibleifsupplier"><td class="toptd">'.$form->editfieldkey(
'SuppliersCategoriesShort',
'suppcats',
'',
$object, 0).
'</td><td colspan="3">';
1928 $cate_arbo = $form->select_all_categories(Categorie::TYPE_SUPPLIER,
'',
'parent', 64, 0, 3);
1929 print
img_picto(
'',
'category',
'class="pictofixedwidth"').$form->multiselectarray(
'suppcats', $cate_arbo,
GETPOST(
'suppcats',
'array'), 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0);
1935 if (isModEnabled(
"multicurrency")) {
1937 print
'<td>'.$form->editfieldkey(
'Currency',
'multicurrency_code',
'',
$object, 0).
'</td>';
1938 print
'<td colspan="3" class="maxwidthonsmartphone">';
1939 print
img_picto(
'',
'currency',
'class="pictofixedwidth"');
1940 print $form->selectMultiCurrency((GETPOSTISSET(
'multicurrency_code') ?
GETPOST(
'multicurrency_code') : (
$object->multicurrency_code ?
$object->multicurrency_code :
$conf->currency)),
'multicurrency_code', 1,
'', false,
'maxwidth150 widthcentpercentminusx');
1945 $parameters = array(
'socid' => $socid,
'colspan' =>
' colspan="3"',
'colspanvalue' =>
'3');
1946 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_add.tpl.php';
1951 print
'<td>'.$langs->trans(
'ParentCompany').
'</td>';
1952 print
'<td colspan="3" class="maxwidthonsmartphone">';
1953 print
img_picto(
'',
'company',
'class="paddingrightonly"');
1954 print $form->select_company(
GETPOST(
'parent_company_id'),
'parent_company_id',
'',
'SelectThirdParty', 0, 0, array(), 0,
'minwidth300 maxwidth500 widthcentpercentminusxx');
1960 print
'<td>'.$form->editfieldkey(
'AllocateCommercial',
'commercial_id',
'',
$object, 0).
'</td>';
1961 print
'<td colspan="3" class="maxwidthonsmartphone">';
1963 $userlist = $form->select_dolusers($selected,
'', 0,
null, 0,
'',
'',
'0', 0, 0,
'AND u.statut = 1', 0,
'',
'', 0, 2);
1966 print
img_picto(
'',
'user').$form->multiselectarray(
'commercial', $userlist, $selected, 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0);
1970 print
'<tr class="hideonsmartphone">';
1971 print
'<td>'.$form->editfieldkey(
'Logo',
'photoinput',
'',
$object, 0).
'</td>';
1972 print
'<td colspan="3">';
1973 print
'<input class="flat" type="file" name="photo" id="photoinput" />';
1977 print
'</table>'.
"\n";
1981 print
'<table class="border centpercent">';
1983 if (isModEnabled(
'accounting')) {
1986 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellCode").
'</td>';
1988 $accountancy_code_sell =
GETPOST(
'accountancy_code_sell',
'alpha');
1989 print $formaccounting->select_account($accountancy_code_sell,
'accountancy_code_sell', 1, array(), 1, 1,
'');
1993 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyCode").
'</td>';
1995 $accountancy_code_buy =
GETPOST(
'accountancy_code_buy',
'alpha');
1996 print $formaccounting->select_account($accountancy_code_buy,
'accountancy_code_buy', 1, array(), 1, 1,
'');
2000 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellCode").
'</td>';
2001 print
'<td class="maxwidthonsmartphone"><input class="minwidth100" name="accountancy_code_sell" value="'.$object->accountancy_code_sell.
'">';
2005 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyCode").
'</td>';
2006 print
'<td class="maxwidthonsmartphone"><input class="minwidth100" name="accountancy_code_buy" value="'.$object->accountancy_code_buy.
'">';
2016 print $form->buttonsSaveCancel(
'AddThirdParty',
'Cancel', array(), 0,
'', $dol_openinpopup);
2018 print
'</form>'.
"\n";
2019 } elseif ($action ==
'edit') {
2023 $res =
$object->fetch_optionals();
2030 if (substr($module, 0, 15) ==
'mod_codeclient_' && substr($module, -3) ==
'php') {
2031 $module = substr($module, 0,
dol_strlen($module) - 4);
2033 $dirsociete = array_merge(array(
'/core/modules/societe/'),
$conf->modules_parts[
'societe']);
2034 foreach ($dirsociete as $dirroot) {
2040 $modCodeClient =
new $module($db);
2041 '@phan-var-force ModeleThirdPartyCode $modCodeClient';
2043 if ($modCodeClient->code_auto) {
2044 $prefixCustomerIsUsed = $modCodeClient->verif_prefixIsUsed();
2046 $prefixCustomerIsUsed =
false;
2049 if (substr($module, 0, 15) ==
'mod_codeclient_' && substr($module, -3) ==
'php') {
2050 $module = substr($module, 0,
dol_strlen($module) - 4);
2052 $dirsociete = array_merge(array(
'/core/modules/societe/'),
$conf->modules_parts[
'societe']);
2053 foreach ($dirsociete as $dirroot) {
2059 $modCodeFournisseur =
new $module($db);
2060 '@phan-var-force ModeleThirdPartyCode $modCodeFournisseur';
2062 if ($modCodeFournisseur->code_auto) {
2063 $prefixSupplierIsUsed = $modCodeFournisseur->verif_prefixIsUsed();
2065 $prefixSupplierIsUsed =
false;
2070 if (GETPOSTISSET(
'name')) {
2086 $object->socialnetworks = array();
2087 if (isModEnabled(
'socialnetworks')) {
2088 foreach ($socialnetworks as $key => $value) {
2089 if (GETPOSTISSET($key) &&
GETPOST($key,
'alphanohtml') !=
'') {
2096 $object->phone_mobile = (string)
GETPOST(
'phone_mobile',
'alpha');
2098 $object->email =
GETPOST(
'email',
'custom', 0, FILTER_SANITIZE_EMAIL);
2115 $object->vat_reverse_charge =
GETPOST(
'vat_reverse_charge') ==
'on' ? 1 : 0;
2120 $object->webservices_url =
GETPOST(
'webservices_url',
'custom', 0, FILTER_SANITIZE_URL);
2121 $object->webservices_key =
GETPOST(
'webservices_key',
'san_alpha');
2123 if (GETPOSTISSET(
'accountancy_code_sell')) {
2124 $accountancy_code_sell =
GETPOST(
'accountancy_code_sell',
'alpha');
2126 if (empty($accountancy_code_sell) || $accountancy_code_sell ==
'-1') {
2127 $object->accountancy_code_sell =
'';
2129 $object->accountancy_code_sell = $accountancy_code_sell;
2132 if (GETPOSTISSET(
'accountancy_code_buy')) {
2133 $accountancy_code_buy =
GETPOST(
'accountancy_code_buy',
'alpha');
2135 if (empty($accountancy_code_buy) || $accountancy_code_buy ==
'-1') {
2136 $object->accountancy_code_buy =
'';
2138 $object->accountancy_code_buy = $accountancy_code_buy;
2143 if (isModEnabled(
'incoterm')) {
2145 $object->location_incoterms =
GETPOST(
'lcoation_incoterms',
'alpha');
2156 if (
$object->country_id > 0) {
2158 $object->country_code = $tmparray[
'code'];
2159 $object->country = $tmparray[
'label'];
2163 if (isModEnabled(
"multicurrency")) {
2168 if (
$object->localtax1_assuj == 0) {
2173 if (
$object->localtax2_assuj == 0) {
2179 if (!empty(
$conf->use_javascript_ajax)) {
2180 print
"\n".
'<script type="text/javascript">';
2181 print
'$(document).ready(function () {
2184 if("#localtax1assuj_value".value==undefined){
2191 if("#localtax2assuj_value".value==undefined){
2198 $("#localtax1assuj_value").change(function() {
2199 var value=document.getElementById("localtax1assuj_value").value;
2206 $("#localtax2assuj_value").change(function() {
2207 var value=document.getElementById("localtax2assuj_value").value;
2215 var canHaveCustomerCategoryIfNotCustomerProspect = ' . (
getDolGlobalInt(
'THIRDPARTY_CAN_HAVE_CUSTOMER_CATEGORY_EVEN_IF_NOT_CUSTOMER_PROSPECT') ?
'1' :
'0') .
';
2217 init_customer_categ();
2218 $("#customerprospect").change(function() {
2219 init_customer_categ();
2221 function init_customer_categ() {
2222 console.log("is customer or prospect = "+jQuery("#customerprospect").val());
2223 if (jQuery("#customerprospect").val() == 0 && !canHaveCustomerCategoryIfNotCustomerProspect)
2225 jQuery(".visibleifcustomer").hide();
2229 jQuery(".visibleifcustomer").show();
2233 init_supplier_categ();
2234 $("#fournisseur").change(function() {
2235 init_supplier_categ();
2237 function init_supplier_categ() {
2238 console.log("is supplier = "+jQuery("#fournisseur").val());
2239 if (jQuery("#fournisseur").val() == 0)
2241 jQuery(".visibleifsupplier").hide();
2245 jQuery(".visibleifsupplier").show();
2249 $("#selectcountry_id").change(function() {
2250 console.log("selectcountry_id change");
2251 document.formsoc.action.value="edit";
2252 document.formsoc.submit();
2256 print
'</script>'.
"\n";
2259 print
'<form enctype="multipart/form-data" action="'.$_SERVER[
"PHP_SELF"].
'?socid='.
$object->id.
'" method="post" name="formsoc">';
2260 print
'<input type="hidden" name="action" value="update">';
2261 print
'<input type="hidden" name="token" value="'.newToken().
'">';
2262 print
'<input type="hidden" name="socid" value="'.$object->id.
'">';
2263 print
'<input type="hidden" name="entity" value="'.$object->entity.
'">';
2264 if ($modCodeClient->code_auto || $modCodeFournisseur->code_auto) {
2265 print
'<input type="hidden" name="code_auto" value="1">';
2271 print
'<div class="fichecenter2">';
2273 $parameters = array();
2275 $reshook = $hookmanager->executeHooks(
'tabContentEditThirdparty', $parameters,
$object, $action);
2276 if (empty($reshook)) {
2277 print
'<table class="border centpercent">';
2281 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ID").
'</td><td colspan="3">';
2287 print
'<tr><td class="titlefieldcreate">'.$form->editfieldkey(
'ThirdPartyName',
'name',
'',
$object, 0,
'string',
'', 1).
'</td>';
2288 print
'<td colspan="3"><input type="text" class="minwidth300" maxlength="128" name="name" id="name" value="'.dol_escape_htmltag(
$object->name).
'" autofocus="autofocus">';
2289 print $form->widgetForTranslation(
"name",
$object, $permissiontoadd,
'string',
'alphanohtml',
'minwidth300');
2293 print
'<tr id="name_alias"><td><label for="name_alias_input">'.$langs->trans(
'AliasNames').
'</label></td>';
2294 print
'<td colspan="3"><input type="text" class="minwidth300" name="name_alias" id="name_alias_input" value="'.dol_escape_htmltag(
$object->name_alias).
'"></td></tr>';
2298 print
'<tr><td>'.$form->editfieldkey(
'Prefix',
'prefix',
'',
$object, 0).
'</td><td colspan="3">';
2300 if (($prefixCustomerIsUsed || $prefixSupplierIsUsed) &&
$object->prefix_comm) {
2301 print
'<input type="hidden" name="prefix_comm" value="'.dol_escape_htmltag(
$object->prefix_comm).
'">';
2304 print
'<input type="text" size="5" maxlength="5" name="prefix_comm" id="prefix" value="'.dol_escape_htmltag(
$object->prefix_comm).
'">';
2311 $selectedcustomer = 0;
2312 $selectedprospect = 0;
2313 switch ($selected) {
2315 $selectedcustomer = 1;
2318 $selectedprospect = 1;
2321 $selectedprospect = 1;
2322 $selectedcustomer = 1;
2329 $selectedprospect = (GETPOSTISSET(
'prospect') ?
GETPOSTINT(
'prospect') : $selectedprospect);
2330 $selectedcustomer = (GETPOSTISSET(
'customer') ?
GETPOSTINT(
'customer') : $selectedcustomer);
2331 print
'<tr class="marginbottomlarge height50"><td class="titlefieldcreate">'.$form->editfieldkey(
'',
'customerprospect',
'',
$object, 0,
'string',
'', 0).
'</td>';
2332 print
'<td class="maxwidthonsmartphone" colspan="3">';
2335 print
'<span id="spannature1" class="spannature prospect-back paddinglarge marginrightonly"><label for="prospectinput" class="valignmiddle">'.$langs->trans(
"Prospect").
'<input id="prospectinput" class="flat checkforselect marginleftonly valignmiddle" type="checkbox" name="prospect" value="2"'.($selectedprospect ?
' checked="checked"' :
'').
'></label></span>';
2339 print
'<span id="spannature2" class="spannature customer-back paddinglarge marginrightonly"><label for="customerinput" class="valignmiddle">'.$langs->trans(
"Customer").
'<input id="customerinput" class="flat checkforselect marginleftonly valignmiddle" type="checkbox" name="customer" value="1"'.($selectedcustomer ?
' checked="checked"' :
'').
'></label></span>';
2341 if ((isModEnabled(
"fournisseur") && $user->hasRight(
'fournisseur',
'lire') && !
getDolGlobalString(
'MAIN_USE_NEW_SUPPLIERMOD')) || (isModEnabled(
"supplier_order") && $user->hasRight(
'supplier_order',
'lire')) || (isModEnabled(
"supplier_invoice") && $user->hasRight(
'supplier_invoice',
'lire'))
2342 || (isModEnabled(
'supplier_proposal') && $user->hasRight(
'supplier_proposal',
'lire'))) {
2344 $selected = (GETPOSTISSET(
'supplier') ?
GETPOSTINT(
'supplier') :
$object->fournisseur);
2345 print
'<span id="spannature3" class="spannature vendor-back paddinglarge marginrightonly"><label for="supplierinput" class="valignmiddle">'.$langs->trans(
"Vendor").
'<input id="supplierinput" class="flat checkforselect marginleftonly valignmiddle" type="checkbox" name="supplier" value="1"'.($selected ?
' checked="checked"' :
'').
'></label></span>';
2349 if (
$conf->use_javascript_ajax) {
2351 function refreshNatureCss() {
2352 jQuery(".spannature").each(function( index ) {
2353 id = $(this).attr("id").split("spannature")[1];
2354 console.log(jQuery("#spannature"+(id)+" .checkforselect").is(":checked"));
2355 if (jQuery("#spannature"+(id)+" .checkforselect").is(":checked")) {
2357 jQuery("#spannature"+(id)).addClass("prospect-back").removeClass("nonature-back");
2360 jQuery("#spannature"+(id)).addClass("customer-back").removeClass("nonature-back");
2363 jQuery("#spannature"+(id)).addClass("vendor-back").removeClass("nonature-back");
2366 jQuery("#spannature"+(id)).removeClass("prospect-back").removeClass("customer-back").removeClass("vendor-back").addClass("nonature-back");
2371 function manageprospectcustomer(element) {
2372 console.log("We uncheck unwanted values on a nature");
2373 id = $(element).attr("id").split("spannature")[1];
2375 $("#spannature2 .checkforselect").prop("checked", false);
2378 $("#spannature1 .checkforselect").prop("checked", false);
2382 jQuery(".spannature").click(function(){
2383 console.log("We click on a nature");
2384 '.(getDolGlobalString(
'SOCIETE_DISABLE_PROSPECTSCUSTOMERS') ?
'manageprospectcustomer($(this));' :
'').
'
2392 print
'<tr><td>'.$form->editfieldkey(
'CustomerCode',
'customer_code',
'',
$object, 0).
'</td><td>';
2393 print
'<table class="nobordernopadding"><tr><td>';
2394 $tmpcode =
$object->code_client;
2395 if (empty($tmpcode) && !empty($modCodeClient->code_auto)) {
2396 $tmpcode = $modCodeClient->getNextValue(
$object, 0);
2398 print
'<input type="text" name="customer_code" id="customer_code" class="maxwidthonsmartphone" value="'.dol_escape_htmltag($tmpcode).
'" maxlength="24">';
2400 $s = $modCodeClient->getToolTip($langs,
$object, 0);
2401 print $form->textwithpicto(
'', $s, 1);
2402 print
'</td></tr></table>';
2405 if (
$conf->browser->layout ==
'phone') {
2409 print
'<td>'.$form->editfieldkey(
'SupplierCode',
'supplier_code',
'',
$object, 0).
'</td><td>';
2411 if ((isModEnabled(
"fournisseur") && $user->hasRight(
'fournisseur',
'lire') && !
getDolGlobalString(
'MAIN_USE_NEW_SUPPLIERMOD')) || (isModEnabled(
"supplier_order") && $user->hasRight(
'supplier_order',
'lire')) || (isModEnabled(
"supplier_invoice") && $user->hasRight(
'supplier_invoice',
'lire'))) {
2412 print
'<table class="nobordernopadding"><tr><td>';
2413 $tmpcode =
$object->code_fournisseur;
2414 if (empty($tmpcode) && !empty($modCodeFournisseur->code_auto)) {
2415 $tmpcode = $modCodeFournisseur->getNextValue(
$object, 1);
2417 print
'<input type="text" name="supplier_code" id="supplier_code" class="maxwidthonsmartphone" value="'.dol_escape_htmltag($tmpcode).
'" maxlength="24">';
2419 $s = $modCodeFournisseur->getToolTip($langs,
$object, 1);
2420 print $form->textwithpicto(
'', $s, 1);
2421 print
'</td></tr></table>';
2427 if (isModEnabled(
'barcode')) {
2428 print
'<tr><td class="tdtop">'.$form->editfieldkey(
'Gencod',
'barcode',
'',
$object, 0).
'</td>';
2429 print
'<td colspan="3">';
2430 print
img_picto(
'',
'barcode',
'class="pictofixedwidth"');
2431 print
'<input type="text" class="minwidth100 maxwidth200 widthcentpercentminusx" name="barcode" id="barcode" value="'.dol_escape_htmltag(
$object->barcode).
'">';
2436 print
'<tr><td>'.$form->editfieldkey(
'Status',
'status',
'',
$object, 0).
'</td><td colspan="3">';
2437 print $form->selectarray(
'status', array(
'0' => $langs->trans(
'ActivityCeased'),
'1' => $langs->trans(
'InActivity')),
$object->status, 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth100', 1);
2440 $colspan = (
$conf->browser->layout ==
'phone' ? 2 : 4);
2441 print
'<tr><td'.($colspan ?
' colspan="'.$colspan.
'"' :
'').
'> </td></tr>';
2444 print
'<tr><td class="tdtop">'.$form->editfieldkey(
'Address',
'address',
'',
$object, 0).
'</td>';
2445 print
'<td colspan="3"><textarea name="address" id="address" class="quatrevingtpercent" rows="3" wrap="soft">';
2447 print
'</textarea>';
2448 print $form->widgetForTranslation(
"address",
$object, $permissiontoadd,
'textarea',
'alphanohtml',
'quatrevingtpercent');
2452 print
'<tr><td>'.$form->editfieldkey(
'Zip',
'zipcode',
'',
$object, 0).
'</td><td'.(
$conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>';
2453 print $formcompany->select_ziptown(
$object->zip,
'zipcode', array(
'town',
'selectcountry_id',
'state_id'), 0, 0,
'',
'maxwidth100');
2455 if (
$conf->browser->layout ==
'phone') {
2458 print
'<td>'.$form->editfieldkey(
'Town',
'town',
'',
$object, 0).
'</td><td'.(
$conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>';
2459 print $formcompany->select_ziptown(
$object->town,
'town', array(
'zipcode',
'selectcountry_id',
'state_id'));
2460 print $form->widgetForTranslation(
"town",
$object, $permissiontoadd,
'string',
'alphanohtml',
'maxwidth100 quatrevingtpercent');
2464 print
'<tr><td>'.$form->editfieldkey(
'Country',
'selectcounty_id',
'',
$object, 0).
'</td><td colspan="3">';
2465 print
img_picto(
'',
'globe-americas',
'class="pictofixedwidth"');
2466 print $form->select_country((GETPOSTISSET(
'country_id') ?
GETPOST(
'country_id') :
$object->country_id),
'country_id',
'', 0,
'minwidth200 maxwidth400 widthcentpercentminusx');
2468 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
2475 print
'<tr><td>'.$form->editfieldkey(
'Region-State',
'state_id',
'',
$object, 0).
'</td><td colspan="3">';
2477 print
'<tr><td>'.$form->editfieldkey(
'State',
'state_id',
'',
$object, 0).
'</td><td colspan="3">';
2480 print
img_picto(
'',
'state',
'class="pictofixedwidth"');
2481 print $formcompany->select_state(
$object->state_id,
$object->country_code,
'state_id',
'minwidth200 maxwidth400 widthcentpercentminusx');
2486 print
'<tr><td>'.$form->editfieldkey(
'Phone',
'phone',
GETPOST(
'phone',
'alpha'),
$object, 0).
'</td>';
2487 print
'<td'.($conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>'.
img_picto(
'',
'object_phoning',
'class="pictofixedwidth"').
' <input type="text" name="phone" id="phone" class="maxwidth200 widthcentpercentminusx" value="'.(GETPOSTISSET(
'phone') ?
GETPOST(
'phone',
'alpha') :
$object->phone).
'"></td>';
2488 if (
$conf->browser->layout ==
'phone') {
2491 print
'<td>'.$form->editfieldkey(
'PhoneMobile',
'phone_mobile',
GETPOST(
'phone_mobile',
'alpha'),
$object, 0).
'</td>';
2492 print
'<td'.($conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>'.
img_picto(
'',
'object_phoning_mobile',
'class="pictofixedwidth"').
' <input type="text" name="phone_mobile" id="phone_mobile" class="maxwidth200 widthcentpercentminusx" value="'.(GETPOSTISSET(
'phone_mobile') ?
GETPOST(
'phone_mobile',
'alpha') :
$object->phone_mobile).
'"></td></tr>';
2494 print
'<td>'.$form->editfieldkey(
'Fax',
'fax',
GETPOST(
'fax',
'alpha'),
$object, 0).
'</td>';
2495 print
'<td'.($conf->browser->layout ==
'phone' ?
' colspan="3"' :
'').
'>'.
img_picto(
'',
'object_phoning_fax',
'class="pictofixedwidth"').
' <input type="text" name="fax" id="fax" class="maxwidth200 widthcentpercentminusx" value="'.(GETPOSTISSET(
'fax') ?
GETPOST(
'fax',
'alpha') :
$object->fax).
'"></td>';
2499 print
'<tr><td>'.$form->editfieldkey(
'Web',
'url',
GETPOST(
'url',
'alpha'),
$object, 0).
'</td>';
2500 print
'<td colspan="3">'.img_picto(
'',
'globe',
'class="pictofixedwidth"').
' <input type="text" name="url" id="url" class="maxwidth200onsmartphone maxwidth300 widthcentpercentminusx " value="'.(GETPOSTISSET(
'url') ?
GETPOST(
'url',
'alpha') :
$object->url).
'"></td></tr>';
2503 print
'<tr><td>'.$form->editfieldkey(
'EMail',
'email',
GETPOST(
'email',
'alpha'),
$object, 0,
'string',
'', (
getDolGlobalString(
'SOCIETE_EMAIL_MANDATORY'))).
'</td>';
2504 print
'<td'.(($conf->browser->layout ==
'phone') || !isModEnabled(
'mailing') ?
' colspan="3"' :
'').
'>';
2505 print
img_picto(
'',
'object_email',
'class="pictofixedwidth"');
2506 print
'<input type="text" name="email" id="email" class="maxwidth500 widthcentpercentminusx" value="'.(GETPOSTISSET(
'email') ?
GETPOST(
'email',
'alpha') :
$object->
email).
'">';
2510 if (isModEnabled(
'mailing')) {
2511 if (
$conf->browser->layout ==
'phone') {
2514 if (
$conf->use_javascript_ajax &&
getDolGlobalInt(
'MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2) {
2515 print
"\n".
'<script type="text/javascript">'.
"\n";
2518 jQuery(document).ready(function () {
2519 function init_check_no_email(input) {
2520 if (input.val()!="") {
2521 $(".noemail").addClass("fieldrequired");
2523 $(".noemail").removeClass("fieldrequired");
2526 $("#email").keyup(function() {
2527 init_check_no_email($(this));
2529 init_check_no_email($("#email"));
2531 print
'</script>'.
"\n";
2533 if (!GETPOSTISSET(
"no_email") && !empty(
$object->email)) {
2534 $result =
$object->getNoEmail();
2539 print
'<td class="noemail"><label for="no_email">'.$langs->trans(
"No_Email").
'</label></td>';
2541 $useempty = (
getDolGlobalInt(
'MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2);
2542 print $form->selectyesno(
'no_email', (GETPOSTISSET(
"no_email") ?
GETPOSTINT(
"no_email") :
$object->no_email), 1, false, $useempty);
2548 if (isModEnabled(
'socialnetworks')) {
2549 $colspan = (
$conf->browser->layout ==
'phone' ? 2 : 4);
2551 $object->showSocialNetwork($socialnetworks, $colspan);
2553 print
'<tr><td'.($colspan ?
' colspan="'.$colspan.
'"' :
'').
'><hr></td></tr>';
2559 $NBCOLS = (
$conf->browser->layout ==
'phone' ? 1 : 2);
2562 while ($i <= $NBPROFIDMAX) {
2563 $idprof = $langs->transcountry(
'ProfId'.$i,
$object->country_code);
2564 if ($idprof !=
'-' && ($i <= $NBPROFIDMIN || !empty($langs->tab_translate[
'ProfId'.$i.$object->country_code]))) {
2567 if (($j % $NBCOLS) == 0) {
2571 $idprof_mandatory =
'SOCIETE_IDPROF'.($i).
'_MANDATORY';
2572 print
'<td>'.$form->editfieldkey($idprof, $key,
'',
$object, 0,
'string',
'', !(empty(
$conf->global->$idprof_mandatory) || !
$object->isACompany())).
'</td><td>';
2573 print $formcompany->get_input_id_prof($i, $key,
$object->$key,
$object->country_code);
2575 if (($j % $NBCOLS) == ($NBCOLS - 1)) {
2582 if ($NBCOLS > 0 && ($j % 2) == 1) {
2583 print
'<td colspan="2"></td></tr>';
2587 print
'<tr><td>'.$form->editfieldkey(
'VATIsUsed',
'assujtva_value',
'',
$object, 0).
'</td><td colspan="3">';
2588 print
'<input id="assujtva_value" name="assujtva_value" type="checkbox" ' . (
$object->tva_assuj ?
'checked="checked"' :
'') .
' value="1">';
2593 if ($mysoc->localtax1_assuj ==
"1" && $mysoc->localtax2_assuj ==
"1") {
2594 print
'<tr><td>'.$form->editfieldkey($langs->transcountry(
"LocalTax1IsUsed", $mysoc->country_code),
'localtax1assuj_value',
'',
$object, 0).
'</td><td>';
2595 print
'<input id="localtax1assuj_value" name="localtax1assuj_value" type="checkbox" ' . (
$object->localtax1_assuj ?
'checked="checked"' :
'') .
' value="1">';
2597 print
'<span class="cblt1"> '.$langs->transcountry(
"Type", $mysoc->country_code).
': ';
2598 $formcompany->select_localtax(1,
$object->localtax1_value,
"lt1");
2603 print
'<td>'.$form->editfieldkey($langs->transcountry(
"LocalTax2IsUsed", $mysoc->country_code),
'localtax2assuj_value',
'',
$object, 0).
'</td><td>';
2604 print
'<input id="localtax2assuj_value" name="localtax2assuj_value" type="checkbox" ' . (
$object->localtax2_assuj ?
'checked="checked"' :
'') .
' value="1"></td></tr>';
2606 print
'<span class="cblt2"> '.$langs->transcountry(
"Type", $mysoc->country_code).
': ';
2607 $formcompany->select_localtax(2,
$object->localtax2_value,
"lt2");
2611 } elseif ($mysoc->localtax1_assuj ==
"1" && $mysoc->localtax2_assuj !=
"1") {
2612 print
'<tr><td>'.$form->editfieldkey($langs->transcountry(
"LocalTax1IsUsed", $mysoc->country_code),
'localtax1assuj_value',
'',
$object, 0).
'</td><td colspan="3">';
2613 print
'<input id="localtax1assuj_value" name="localtax1assuj_value" type="checkbox" ' . (
$object->localtax1_assuj ?
'checked="checked"' :
'') .
' value="1">';
2615 print
'<span class="cblt1"> '.$langs->transcountry(
"Type", $mysoc->country_code).
': ';
2616 $formcompany->select_localtax(1,
$object->localtax1_value,
"lt1");
2620 } elseif ($mysoc->localtax2_assuj ==
"1" && $mysoc->localtax1_assuj !=
"1") {
2621 print
'<tr><td>'.$form->editfieldkey($langs->transcountry(
"LocalTax2IsUsed", $mysoc->country_code),
'localtax2assuj_value',
'',
$object, 0).
'</td><td colspan="3">';
2622 print
'<input id="localtax2assuj_value" name="localtax2assuj_value" type="checkbox" ' . (
$object->localtax2_assuj ?
'checked="checked"' :
'') .
' value="1">';
2624 print
'<span class="cblt2"> '.$langs->transcountry(
"Type", $mysoc->country_code).
': ';
2625 $formcompany->select_localtax(2,
$object->localtax2_value,
"lt2");
2633 print
'<tr><td>' . $form->editfieldkey(
'VATReverseChargeByDefault',
'vat_reverse_charge',
'',
$object, 0) .
'</td><td colspan="3">';
2634 print
'<input type="checkbox" name="vat_reverse_charge" '.($object->vat_reverse_charge ==
'1' ?
' checked' :
'').
'>';
2639 print
'<tr><td>'.$form->editfieldkey(
'VATIntra',
'intra_vat',
'',
$object, 0).
'</td>';
2640 print
'<td colspan="3">';
2641 $s =
'<input type="text" class="flat maxwidthonsmartphone" name="tva_intra" id="intra_vat" maxlength="20" value="'.$object->tva_intra.
'">';
2646 if (
$conf->use_javascript_ajax) {
2648 if (!empty(
$conf->dol_use_jmobile)) {
2653 print
'<script type="text/javascript">';
2654 print
"function CheckVAT(a) {\n";
2655 if ($mysoc->country_code ==
'GR' &&
$object->country_code ==
'GR' && !empty($u)) {
2656 print
"GRVAT(a,'{$u}','{$p}','{$myafm}');\n";
2658 print
"newpopup('".DOL_URL_ROOT.
"/societe/checkvat/checkVatPopup.php?vatNumber='+a, '".
dol_escape_js($langs->trans(
"VATIntraCheckableOnEUSite")).
"', ".$widthpopup.
", ".$heightpopup.
");\n";
2663 $s .=
'<a href="#" class="hideonsmartphone" onclick="CheckVAT(document.formsoc.tva_intra.value);">'.$langs->trans(
"VATIntraCheck").
'</a>';
2664 $s = $form->textwithpicto($s, $langs->trans(
"VATIntraCheckDesc", $langs->transnoentitiesnoconv(
"VATIntraCheck")), 1);
2666 $s .=
'<a href="'.$langs->transcountry(
"VATIntraCheckURL",
$object->country_id).
'" class="hideonsmartphone" target="_blank" rel="noopener noreferrer">'.
img_picto($langs->trans(
"VATIntraCheckableOnEUSite"),
'help').
'</a>';
2674 print
'<tr><td>'.$form->editfieldkey(
'ThirdPartyType',
'typent_id',
'',
$object, 0).
'</td><td class="maxwidthonsmartphone"'.((
$conf->browser->layout ==
'phone' ||
getDolGlobalString(
'SOCIETE_DISABLE_WORKFORCE')) ?
' colspan="3"' :
'').
'>';
2675 print $form->selectarray(
"typent_id", $formcompany->typent_array(0),
$object->typent_id, 1, 0, 0,
'', 0, 0, 0, (!
getDolGlobalString(
'SOCIETE_SORT_ON_TYPEENT') ?
'ASC' :
$conf->global->SOCIETE_SORT_ON_TYPEENT),
'', 1);
2677 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
2681 if (
$conf->browser->layout ==
'phone') {
2684 print
'<td>'.$form->editfieldkey(
'Workforce',
'effectif_id',
'',
$object, 0).
'</td><td class="maxwidthonsmartphone">';
2685 print $form->selectarray(
"effectif_id", $formcompany->effectif_array(0),
$object->effectif_id, 0, 0, 0,
'', 0, 0, 0,
'',
'', 1);
2687 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
2690 print
'<input type="hidden" name="effectif_id" id="effectif_id" value="'.$object->effectif_id.
'">';
2695 print
'<tr><td>'.$form->editfieldkey(
'JuridicalStatus',
'forme_juridique_code',
'',
$object, 0).
'</td><td class="maxwidthonsmartphone" colspan="3">';
2696 print $formcompany->select_juridicalstatus(
$object->forme_juridique_code,
$object->country_code,
'',
'forme_juridique_code');
2700 print
'<tr><td>'.$form->editfieldkey(
'Capital',
'capital',
'',
$object, 0).
'</td>';
2701 print
'<td colspan="3"><input type="text" name="capital" id="capital" size="10" value="';
2703 if (isModEnabled(
"multicurrency")) {
2704 print
'"> <span class="hideonsmartphone">'.$langs->trans(
"Currency".
$object->multicurrency_code).
'</span></td></tr>';
2706 print
'"> <span class="hideonsmartphone">'.$langs->trans(
"Currency".
$conf->currency).
'</span></td></tr>';
2711 print
'<tr><td>'.$form->editfieldkey(
'DefaultLang',
'default_lang',
'',
$object, 0).
'</td><td colspan="3">'.
"\n";
2712 print
img_picto(
'',
'language',
'class="pictofixedwidth"').$formadmin->select_language(
$object->default_lang,
'default_lang', 0, array(),
'1', 0, 0,
'maxwidth300 widthcentpercentminusx');
2718 if (isModEnabled(
'incoterm')) {
2720 print
'<td>'.$form->editfieldkey(
'IncotermLabel',
'incoterm_id',
'',
$object, 0).
'</td>';
2721 print
'<td colspan="3" class="maxwidthonsmartphone">';
2722 print $form->select_incoterms((!empty(
$object->fk_incoterms) ?
$object->fk_incoterms :
''), (!empty(
$object->location_incoterms) ?
$object->location_incoterms :
''));
2727 if (isModEnabled(
'category') && $user->hasRight(
'categorie',
'lire')) {
2729 print
'<tr class="visibleifcustomer"><td>'.$form->editfieldkey(
'CustomersCategoriesShort',
'custcats',
'',
$object, 0).
'</td>';
2730 print
'<td colspan="3">';
2731 $cate_arbo = $form->select_all_categories(Categorie::TYPE_CUSTOMER,
'',
'', 64, 0, 3);
2733 $cats = $c->containing(
$object->id, Categorie::TYPE_CUSTOMER);
2734 $arrayselected = array();
2735 foreach ($cats as $cat) {
2736 $arrayselected[] = $cat->id;
2738 print
img_picto(
'',
'category',
'class="pictofixedwidth"').$form->multiselectarray(
'custcats', $cate_arbo, $arrayselected, 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0);
2742 if ((isModEnabled(
"fournisseur") && $user->hasRight(
'fournisseur',
'lire') && !
getDolGlobalString(
'MAIN_USE_NEW_SUPPLIERMOD')) || (isModEnabled(
"supplier_order") && $user->hasRight(
'supplier_order',
'lire')) || (isModEnabled(
"supplier_invoice") && $user->hasRight(
'supplier_invoice',
'lire'))) {
2743 print
'<tr class="visibleifsupplier"><td>'.$form->editfieldkey(
'SuppliersCategoriesShort',
'suppcats',
'',
$object, 0).
'</td>';
2744 print
'<td colspan="3">';
2745 $cate_arbo = $form->select_all_categories(Categorie::TYPE_SUPPLIER,
'',
'', 64, 0, 3);
2747 $cats = $c->containing(
$object->id, Categorie::TYPE_SUPPLIER);
2748 $arrayselected = array();
2749 foreach ($cats as $cat) {
2750 $arrayselected[] = $cat->id;
2752 print
img_picto(
'',
'category',
'class="pictofixedwidth"').$form->multiselectarray(
'suppcats', $cate_arbo, $arrayselected, 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0);
2758 if (isModEnabled(
"multicurrency")) {
2760 print
'<td>'.$form->editfieldkey(
'Currency',
'multicurrency_code',
'',
$object, 0).
'</td>';
2761 print
'<td colspan="3" class="maxwidthonsmartphone">';
2762 print
img_picto(
'',
'currency',
'class="pictofixedwidth"');
2763 print $form->selectMultiCurrency((GETPOSTISSET(
'multicurrency_code') ?
GETPOST(
'multicurrency_code') : (
$object->multicurrency_code ?
$object->multicurrency_code :
$conf->currency)),
'multicurrency_code', 1,
'', false,
'maxwidth150 widthcentpercentminusx');
2768 $parameters = array(
'socid' => $socid,
'colspan' =>
' colspan="3"',
'colspanvalue' =>
'3');
2769 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_edit.tpl.php';
2774 print
'<td>'.$langs->trans(
'ParentCompany').
'</td>';
2775 print
'<td colspan="3" class="maxwidthonsmartphone">';
2776 print
img_picto(
'',
'company',
'class="pictofixedwidth"');
2777 print $form->select_company(
GETPOST(
'parent_company_id') ?
GETPOST(
'parent_company_id') :
$object->parent,
'parent_company_id',
'',
'SelectThirdParty', 0, 0, array(), 0,
'minwidth300 maxwidth500 widthcentpercentminusxx');
2782 print
'<tr class="hideonsmartphone">';
2783 print
'<td>'.$form->editfieldkey(
'Logo',
'photoinput',
'',
$object, 0).
'</td>';
2784 print
'<td colspan="3">';
2786 print $form->showphoto(
'societe',
$object, 100, 0, 0,
'inline-block');
2789 if ($caneditfield) {
2793 print
'<table class="nobordernopadding">';
2795 print
'<tr><td><input type="checkbox" class="flat photodelete" name="deletephoto" id="photodelete"> <label for="photodelete">'.$langs->trans(
"Delete").
'</photo><br></td></tr>';
2800 $maxmin = $maxfilesizearray[
'maxmin'];
2802 print
'<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).
'">';
2804 print
'<input type="file" class="flat" name="photo" id="photoinput">';
2813 print
'<td>'.$form->editfieldkey(
'AllocateCommercial',
'commercial_id',
'',
$object, 0).
'</td>';
2814 print
'<td colspan="3" class="maxwidthonsmartphone">';
2815 $userlist = $form->select_dolusers(
'',
'', 0,
null, 0,
'',
'', 0, 0, 0,
'AND u.statut = 1', 0,
'',
'', 0, 1);
2816 $arrayselected =
GETPOST(
'commercial',
'array');
2817 if (empty($arrayselected)) {
2818 $arrayselected =
$object->getSalesRepresentatives($user, 1);
2820 print
img_picto(
'',
'user',
'class="pictofixedwidth"').$form->multiselectarray(
'commercial', $userlist, $arrayselected, 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0,
'',
'',
'', 1);
2827 print
'<table class="border centpercent">';
2829 if (isModEnabled(
'accounting')) {
2832 print
'<tr><td>'.$langs->trans(
"ProductAccountancySellCode").
'</td>';
2834 print $formaccounting->select_account(
$object->accountancy_code_sell,
'accountancy_code_sell', 1, array(), 1, 1);
2838 print
'<tr><td>'.$langs->trans(
"ProductAccountancyBuyCode").
'</td>';
2840 print $formaccounting->select_account(
$object->accountancy_code_buy,
'accountancy_code_buy', 1, array(), 1, 1);
2844 print
'<tr><td>'.$langs->trans(
"ProductAccountancySellCode").
'</td>';
2845 print
'<td><input name="accountancy_code_sell" class="maxwidth200" value="'.$object->accountancy_code_sell.
'">';
2849 print
'<tr><td>'.$langs->trans(
"ProductAccountancyBuyCode").
'</td>';
2850 print
'<td><input name="accountancy_code_buy" class="maxwidth200" value="'.$object->accountancy_code_buy.
'">';
2861 print $form->buttonsSaveCancel();
2868 $res =
$object->fetch_optionals();
2875 print
dol_get_fiche_head($head,
'card', $langs->trans(
"ThirdParty"), -1,
'company', 0,
'',
'', 0,
'', 1);
2880 if ($action ==
'delete' || (
$conf->use_javascript_ajax && empty(
$conf->dol_use_jmobile))) {
2881 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
"?socid=".
$object->id, $langs->trans(
"DeleteACompany"), $langs->trans(
"ConfirmDeleteCompany"),
"confirm_delete",
'', 0,
"action-delete");
2884 if ($action ==
'merge') {
2885 $formquestion = array(
2887 'name' =>
'soc_origin',
2888 'label' => $langs->trans(
'MergeOriginThirdparty'),
2890 'value' => $form->select_company(
'',
'soc_origin',
'',
'SelectThirdParty', 0, 0, array(), 0,
'minwidth200',
'',
'', 1, array(),
false, array(
$object->id))
2894 $formconfirm .= $form->formconfirm($_SERVER[
"PHP_SELF"].
"?socid=".
$object->id, $langs->trans(
"MergeThirdparties"), $langs->trans(
"ConfirmMergeThirdparties"),
"confirm_merge", $formquestion,
'no', 1, 250);
2898 if (($action ==
'clone' && (empty(
$conf->use_javascript_ajax) || !empty(
$conf->dol_use_jmobile)))
2899 || (!empty(
$conf->use_javascript_ajax) && empty(
$conf->dol_use_jmobile))) {
2901 $formquestionclone = array(
2902 'text' => $langs->trans(
"ConfirmClone"),
2903 0 => array(
'type' =>
'text',
'name' =>
'clone_name',
'label' => $langs->trans(
"NewSocNameForClone"),
'value' => empty($tmpcode) ? $langs->trans(
"CopyOf").
' '.
$object->nom : $tmpcode,
'morecss' =>
'width250'),
2905 $formconfirm .= $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'ToClone'), $langs->trans(
'ConfirmCloneThirdparties',
$object->name),
'confirm_clone', $formquestionclone,
'yes',
'action-clone', 350, 600);
2909 $parameters = array(
'formConfirm' => $formconfirm);
2910 $reshook = $hookmanager->executeHooks(
'formConfirm', $parameters,
$object, $action);
2911 if (empty($reshook)) {
2912 $formconfirm .= $hookmanager->resPrint;
2913 } elseif ($reshook > 0) {
2914 $formconfirm = $hookmanager->resPrint;
2922 $linkback =
'<a href="'.DOL_URL_ROOT.
'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
2924 dol_banner_tab(
$object,
'socid', $linkback, ($user->socid ? 0 : 1),
'rowid',
'nom');
2927 $parameters = array();
2929 $reshook = $hookmanager->executeHooks(
'tabContentViewThirdparty', $parameters,
$object, $action);
2930 if (empty($reshook)) {
2931 print
'<div class="fichecenter">';
2932 print
'<div class="fichehalfleft">';
2934 print
'<div class="underbanner clearboth"></div>';
2935 print
'<table class="border tableforfield centpercent">';
2938 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
'NatureOfThirdParty').
'</td><td>';
2951 print $langs->trans(
'CustomerCode');
2955 $tmpcheck =
$object->check_codeclient();
2956 if ($tmpcheck != 0 && $tmpcheck != -5) {
2957 print
' <span class="error">('.$langs->trans(
"WrongCustomerCode").
')</span>';
2964 if (((isModEnabled(
"fournisseur") && $user->hasRight(
'fournisseur',
'lire') && !
getDolGlobalString(
'MAIN_USE_NEW_SUPPLIERMOD')) || (isModEnabled(
"supplier_order") && $user->hasRight(
'supplier_order',
'lire')) || (isModEnabled(
"supplier_invoice") && $user->hasRight(
'supplier_invoice',
'lire'))) &&
$object->fournisseur) {
2966 print $langs->trans(
'SupplierCode').
'</td><td>';
2968 $tmpcheck =
$object->check_codefournisseur();
2969 if ($tmpcheck != 0 && $tmpcheck != -5) {
2970 print
' <span class="error">('.$langs->trans(
"WrongSupplierCode").
')</span>';
2977 if (isModEnabled(
'barcode')) {
2989 while ($i <= $NBPROFIDMAX) {
2990 $idprof = $langs->transcountry(
'ProfId'.$i,
$object->country_code);
2991 if (!empty(
$conf->dol_optimize_smallscreen)) {
2992 $idprof = $langs->transcountry(
'ProfId'.$i.
'Short',
$object->country_code);
2994 if ($idprof !=
'-' && ($i <= $NBPROFIDMIN || !empty($langs->tab_translate[
'ProfId'.$i.$object->country_code]))) {
2996 print
'<td>'.$idprof.
'</td><td>';
3002 print
' '.$object->id_prof_url($i,
$object);
3005 print
' <span class="error">('.$langs->trans(
"ErrorWrongValue").
')</span>';
3023 print $form->textwithpicto($langs->trans(
'VATIsUsed'), $langs->trans(
'VATIsUsedWhenSelling'));
3032 print $form->textwithpicto($langs->trans(
'VATReverseChargeByDefault'), $langs->trans(
'VATReverseChargeByDefaultDesc'));
3034 print
'<input type="checkbox" name="vat_reverse_charge" ' . (
$object->vat_reverse_charge ==
'1' ?
' checked' :
'') .
' disabled>';
3041 if (
$object->fournisseur || $mysoc->country_code ==
'ES') {
3042 if ($mysoc->localtax1_assuj ==
"1" && $mysoc->localtax2_assuj ==
"1") {
3043 print
'<tr><td>'.$langs->transcountry(
"LocalTax1IsUsed", $mysoc->country_code).
'</td><td>';
3045 print
'</td></tr><tr><td>'.$langs->transcountry(
"LocalTax2IsUsed", $mysoc->country_code).
'</td><td>';
3050 print
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?socid='.
$object->id.
'">';
3051 print
'<input type="hidden" name="action" value="set_localtax1">';
3052 print
'<input type="hidden" name="token" value="'.newToken().
'">';
3053 print
'<tr><td>'.$langs->transcountry(
"Localtax1", $mysoc->country_code).
' <a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=editRE&token='.
newToken().
'&socid='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</td>';
3054 if ($action ==
'editRE') {
3055 print
'<td class="left">';
3056 $formcompany->select_localtax(1,
$object->localtax1_value,
"lt1");
3057 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'"></td>';
3059 print
'<td>'.$object->localtax1_value.
'</td>';
3061 print
'</tr></form>';
3064 print
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?socid='.
$object->id.
'">';
3065 print
'<input type="hidden" name="action" value="set_localtax2">';
3066 print
'<input type="hidden" name="token" value="'.newToken().
'">';
3067 print
'<tr><td>'.$langs->transcountry(
"Localtax2", $mysoc->country_code).
'<a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=editIRPF&token='.
newToken().
'&socid='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</td>';
3068 if ($action ==
'editIRPF') {
3069 print
'<td class="left">';
3070 $formcompany->select_localtax(2,
$object->localtax2_value,
"lt2");
3071 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'"></td>';
3073 print
'<td>'.$object->localtax2_value.
'</td>';
3075 print
'</tr></form>';
3077 } elseif ($mysoc->localtax1_assuj ==
"1" && $mysoc->localtax2_assuj !=
"1") {
3078 print
'<tr><td>'.$langs->transcountry(
"LocalTax1IsUsed", $mysoc->country_code).
'</td><td>';
3082 print
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?socid='.
$object->id.
'">';
3083 print
'<input type="hidden" name="action" value="set_localtax1">';
3084 print
'<input type="hidden" name="token" value="'.newToken().
'">';
3085 print
'<tr><td> '.$langs->transcountry(
"Localtax1", $mysoc->country_code).
'<a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=editRE&token='.
newToken().
'&socid='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</td>';
3086 if ($action ==
'editRE') {
3087 print
'<td class="left">';
3088 $formcompany->select_localtax(1,
$object->localtax1_value,
"lt1");
3089 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'"></td>';
3091 print
'<td>'.$object->localtax1_value.
'</td>';
3093 print
'</tr></form>';
3095 } elseif ($mysoc->localtax2_assuj ==
"1" && $mysoc->localtax1_assuj !=
"1") {
3096 print
'<tr><td>'.$langs->transcountry(
"LocalTax2IsUsed", $mysoc->country_code).
'</td><td>';
3100 print
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?socid='.
$object->id.
'">';
3101 print
'<input type="hidden" name="action" value="set_localtax2">';
3102 print
'<input type="hidden" name="token" value="'.newToken().
'">';
3103 print
'<tr><td> '.$langs->transcountry(
"Localtax2", $mysoc->country_code).
' <a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=editIRPF&token='.
newToken().
'&socid='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</td>';
3104 if ($action ==
'editIRPF') {
3105 print
'<td class="left">';
3106 $formcompany->select_localtax(2,
$object->localtax2_value,
"lt2");
3107 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'"></td>';
3109 print
'<td>'.$object->localtax2_value.
'</td>';
3111 print
'</tr></form>';
3118 print
'<td class="nowrap">'.$langs->trans(
'VATIntra').
'</td><td>';
3122 $s .=
'<input type="hidden" id="tva_intra" name="tva_intra" maxlength="20" value="'.$object->tva_intra.
'">';
3127 if (
$conf->use_javascript_ajax) {
3129 if (!empty(
$conf->dol_use_jmobile)) {
3134 print
'<script type="text/javascript">';
3135 print
"function CheckVAT(a) {\n";
3136 if ($mysoc->country_code ==
'GR' &&
$object->country_code ==
'GR' && !empty($u)) {
3137 print
"GRVAT(a,'{$u}','{$p}','{$myafm}');\n";
3139 print
"newpopup('".DOL_URL_ROOT.
"/societe/checkvat/checkVatPopup.php?vatNumber='+a, '".
dol_escape_js($langs->trans(
"VATIntraCheckableOnEUSite")).
"', ".$widthpopup.
", ".$heightpopup.
");\n";
3144 $s .=
'<a href="#" class="hideonsmartphone" onclick="CheckVAT(jQuery(\'#tva_intra\').val());">'.$langs->trans(
"VATIntraCheck").
'</a>';
3145 $s = $form->textwithpicto($s, $langs->trans(
"VATIntraCheckDesc", $langs->transnoentitiesnoconv(
"VATIntraCheck")), 1);
3147 $s .=
'<a href="'.$langs->transcountry(
"VATIntraCheckURL",
$object->country_id).
'" class="hideonsmartphone" target="_blank" rel="noopener noreferrer">'.
img_picto($langs->trans(
"VATIntraCheckableOnEUSite"),
'help').
'</a>';
3158 $langs->load(
'stocks');
3159 require_once DOL_DOCUMENT_ROOT.
'/product/class/html.formproduct.class.php';
3161 print
'<tr class="nowrap">';
3163 print $form->editfieldkey(
"Warehouse",
'warehouse',
'',
$object, $user->hasRight(
'societe',
'creer'));
3165 if ($action ==
'editwarehouse') {
3166 $formproduct->formSelectWarehouses($_SERVER[
'PHP_SELF'].
'?id='.
$object->id,
$object->fk_warehouse,
'fk_warehouse', 1);
3168 if (
$object->fk_warehouse > 0) {
3169 print
img_picto(
'',
'stock',
'class="paddingrightonly"');
3171 $formproduct->formSelectWarehouses($_SERVER[
'PHP_SELF'].
'?id='.
$object->id,
$object->fk_warehouse,
'none');
3180 print
'<div class="fichehalfright">';
3182 print
'<div class="underbanner clearboth"></div>';
3183 print
'<table class="border tableforfield centpercent">';
3186 if (isModEnabled(
'category') && $user->hasRight(
'categorie',
'lire')) {
3189 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"CustomersCategoriesShort").
'</td>';
3191 print $form->showCategories(
$object->id, Categorie::TYPE_CUSTOMER, 1);
3196 if (((isModEnabled(
"fournisseur") && $user->hasRight(
'fournisseur',
'lire') && !
getDolGlobalString(
'MAIN_USE_NEW_SUPPLIERMOD')) || (isModEnabled(
"supplier_order") && $user->hasRight(
'supplier_order',
'lire')) || (isModEnabled(
"supplier_invoice") && $user->hasRight(
'supplier_invoice',
'lire'))) &&
$object->fournisseur) {
3197 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"SuppliersCategoriesShort").
'</td>';
3199 print $form->showCategories(
$object->id, Categorie::TYPE_SUPPLIER, 1);
3206 print
'<tr><td class="titlefieldmiddle">';
3207 print
'<table class="nobordernopadding" width="100%"><tr><td>'.$langs->trans(
'ThirdPartyType').
'</td>';
3208 if ($action !=
'editthirdpartytype' && $user->hasRight(
'societe',
'creer')) {
3209 print
'<td class="right"><a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=editthirdpartytype&token='.
newToken().
'&socid='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</a></td>';
3211 print
'</tr></table>';
3213 $html_name = ($action ==
'editthirdpartytype') ?
'typent_id' :
'none';
3214 $formcompany->formThirdpartyType($_SERVER[
'PHP_SELF'].
'?socid='.
$object->id,
$object->typent_id, $html_name,
'');
3219 print
'<tr><td>'.$langs->trans(
"Workforce").
'</td><td>'.
$object->effectif.
'</td></tr>';
3223 print
'<tr><td>'.$langs->trans(
'JuridicalStatus').
'</td><td>'.
dolPrintHTML(
$object->forme_juridique).
'</td></tr>';
3226 print
'<tr><td>'.$langs->trans(
'Capital').
'</td><td>';
3228 if (isModEnabled(
"multicurrency") && !empty(
$object->multicurrency_code)) {
3239 if (isModEnabled(
'mailing')) {
3240 $result =
$object->getNoEmail();
3244 print
'<tr><td>'.$langs->trans(
"No_Email").
'</td><td>';
3248 $langs->load(
"mails");
3249 print
'<span class="opacitymedium">'.$langs->trans(
"EMailNotDefined").
'</span>';
3252 $langs->load(
"mails");
3253 print
' <span class="badge badge-secondary" title="'.dol_escape_htmltag($langs->trans(
"NbOfEMailingsSend")).
'">'.
$object->getNbOfEMailings().
'</span>';
3260 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
3261 print
'<tr><td>'.$langs->trans(
"DefaultLang").
'</td><td>';
3264 $langs->load(
"languages");
3265 $labellang = (
$object->default_lang ? $langs->trans(
'Language_'.
$object->default_lang) :
'');
3272 if (isModEnabled(
'incoterm')) {
3274 print
'<table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans(
'IncotermLabel').
'</td>';
3275 if ($action !=
'editincoterm' && $user->hasRight(
'societe',
'creer')) {
3276 print
'<td class="right"><a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?socid='.
$object->id.
'&action=editincoterm&token='.
newToken().
'">'.
img_edit(
'', 1).
'</a></td>';
3278 print
'</tr></table>';
3279 print
'</td><td colspan="3">';
3280 if ($action !=
'editincoterm') {
3281 print $form->textwithpicto(
$object->display_incoterms(),
$object->label_incoterms, 1);
3283 print $form->select_incoterms((!empty(
$object->fk_incoterms) ?
$object->fk_incoterms :
''), (!empty(
$object->location_incoterms) ?
$object->location_incoterms :
''), $_SERVER[
'PHP_SELF'].
'?socid='.
$object->id);
3289 if (isModEnabled(
"multicurrency")) {
3291 print
'<td>'.$form->editfieldkey(
'Currency',
'multicurrency_code',
'',
$object, 0).
'</td>';
3299 print
'<tr><td class="nowrap">';
3300 print $langs->trans(
"ProductAccountancySellCode");
3301 print
'</td><td colspan="2">';
3302 if (isModEnabled(
'accounting')) {
3303 if (!empty(
$object->accountancy_code_sell)) {
3305 $accountingaccount->fetch(0,
$object->accountancy_code_sell, 1);
3307 print $accountingaccount->getNomUrl(0, 1, 1,
'', 1);
3310 print
$object->accountancy_code_sell;
3315 print
'<tr><td class="nowrap">';
3316 print $langs->trans(
"ProductAccountancyBuyCode");
3317 print
'</td><td colspan="2">';
3318 if (isModEnabled(
'accounting')) {
3319 if (!empty(
$object->accountancy_code_buy)) {
3321 $accountingaccount2->fetch(0,
$object->accountancy_code_buy, 1);
3323 print $accountingaccount2->getNomUrl(0, 1, 1,
'', 1);
3326 print
$object->accountancy_code_buy;
3332 $parameters = array(
'socid' => $socid,
'colspan' =>
' colspan="3"',
'colspanvalue' =>
'3');
3333 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
3338 print
'<table class="nobordernopadding" width="100%"><tr><td>'.$langs->trans(
'ParentCompany').
'</td>';
3339 if ($action !=
'editparentcompany' && $user->hasRight(
'societe',
'creer')) {
3340 print
'<td class="right"><a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=editparentcompany&token='.
newToken().
'&socid='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</a></td>';
3342 print
'</tr></table>';
3344 $html_name = ($action ==
'editparentcompany') ?
'parent_id' :
'none';
3345 $form->form_thirdparty($_SERVER[
'PHP_SELF'].
'?socid='.
$object->id,
$object->parent, $html_name,
'', 1, 0, 0, array(), 0, array(
$object->id));
3350 include DOL_DOCUMENT_ROOT.
'/societe/tpl/linesalesrepresentative.tpl.php';
3353 if (isModEnabled(
'member')) {
3354 $langs->load(
"members");
3355 print
'<tr><td>'.$langs->trans(
"LinkedToDolibarrMember").
'</td>';
3358 $result = $adh->fetch(0,
'',
$object->id);
3360 $adh->ref = $adh->getFullName($langs);
3361 print $adh->getNomUrl(-1);
3363 print
'<span class="opacitymedium">'.$langs->trans(
"ThirdpartyNotLinkedToMember").
'</span>';
3365 print
"</td></tr>\n";
3388 print
'<div class="clearboth"></div>';
3397 if ($action !=
'presend') {
3398 print
'<div class="tabsAction">'.
"\n";
3400 $parameters = array();
3401 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters,
$object, $action);
3402 if (empty($reshook)) {
3403 $at_least_one_email_contact =
false;
3404 $TContact =
$object->contact_array_objects();
3405 foreach ($TContact as &$contact) {
3406 if (!empty($contact->email)) {
3407 $at_least_one_email_contact =
true;
3412 if (empty($user->socid)) {
3413 $langs->load(
"mails");
3415 if (empty(
$object->email) && !$at_least_one_email_contact) {
3416 $title = $langs->trans(
'NoEMail');
3418 print
dolGetButtonAction($title, $langs->trans(
'SendMail'),
'default', $_SERVER[
'PHP_SELF'].
'?socid='.
$object->id.
'&action=presend&mode=init#formmailbeforetitle',
'btn-send-mail', !empty(
$object->email) || $at_least_one_email_contact);
3421 print
dolGetButtonAction(
'', $langs->trans(
'Modify'),
'default', $_SERVER[
"PHP_SELF"].
'?socid='.
$object->id.
'&action=edit&token='.
newToken(),
'', $permissiontoadd);
3423 if (!empty(
$conf->use_javascript_ajax) && empty(
$conf->dol_use_jmobile)) {
3424 $cloneSocietetUrl =
'';
3425 $cloneButtonId =
'action-clone';
3427 $cloneSocietetUrl =
'';
3428 $cloneButtonId =
'';
3430 print
dolGetButtonAction($langs->trans(
'ToClone'),
'',
'default', $cloneSocietetUrl, $cloneButtonId, $user->hasRight(
'societe',
'creer'));
3432 if (isModEnabled(
'member')) {
3434 $result = $adh->fetch(0,
'',
$object->id);
3436 print
'<a class="butAction" href="'.DOL_URL_ROOT.
'/adherents/card.php?&action=create&socid='.
$object->id.
'" title="'.
dol_escape_htmltag($langs->trans(
"NewMember")).
'">'.$langs->trans(
"NewMember").
'</a>'.
"\n";
3440 print
dolGetButtonAction($langs->trans(
'MergeThirdparties'), $langs->trans(
'Merge'),
'danger', $_SERVER[
"PHP_SELF"].
'?socid='.
$object->id.
'&action=merge&token='.
newToken(),
'', $permissiontodelete);
3442 $deleteUrl = $_SERVER[
"PHP_SELF"].
'?socid='.
$object->id.
'&action=delete&token='.
newToken();
3443 $buttonId =
'action-delete-no-ajax';
3444 if (
$conf->use_javascript_ajax && empty(
$conf->dol_use_jmobile)) {
3446 $buttonId =
'action-delete';
3448 print
dolGetButtonAction(
'', $langs->trans(
'Delete'),
'delete', $deleteUrl, $buttonId, $permissiontodelete);
3451 print
'</div>'.
"\n";
3455 if (
GETPOST(
'modelselected')) {
3456 $action =
'presend';
3459 if ($action !=
'presend') {
3460 print
'<div class="fichecenter"><div class="fichehalfleft">';
3463 print
'<a name="builddoc"></a>';
3469 $urlsource = $_SERVER[
"PHP_SELF"].
"?socid=".
$object->id;
3470 $genallowed = $user->hasRight(
'societe',
'lire');
3471 $delallowed = $user->hasRight(
'societe',
'creer');
3473 print $formfile->showdocuments(
'company',
$object->id, $filedir, $urlsource, $genallowed, $delallowed,
$object->model_pdf, 0, 0, 0, 28, 0,
'entity='.$object->entity, 0,
'',
$object->default_lang);
3482 print
'</div><div class="fichehalfright">';
3486 $morehtmlcenter =
'<div class="nowraponall">';
3487 $morehtmlcenter .=
dolGetButtonTitle($langs->trans(
'FullConversation'),
'',
'fa fa-comments imgforviewmode', DOL_URL_ROOT.
'/societe/messaging.php?socid='.
$object->id);
3488 $morehtmlcenter .=
dolGetButtonTitle($langs->trans(
'FullList'),
'',
'fa fa-bars imgforviewmode', DOL_URL_ROOT.
'/societe/agenda.php?socid='.
$object->id);
3489 $morehtmlcenter .=
'</div>';
3492 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formactions.class.php';
3494 $somethingshown = $formactions->showactions(
$object,
'', $socid, 1,
'', $MAXEVENT,
'', $morehtmlcenter);
3496 print
'</div></div>';
3507 $modelmail =
'thirdparty';
3508 $defaulttopic =
'Information';
3509 $diroutput =
$conf->societe->multidir_output[
$object->entity];
3510 $trackid =
'thi'.$object->id;
3512 include DOL_DOCUMENT_ROOT.
'/core/tpl/card_presend.tpl.php';
3525function GRVAT(a, u, p, myafm) {
3526 var afm = a.replace(/\D/g,
"");
3530 url:
'<?php echo DOL_URL_ROOT ?>/societe/checkvat/checkVatGr.php',
3532 success:
function(data) {
3536 if (obj.RgWsPublicBasicRt_out.afm ===
null) {
3537 alert(obj.pErrorRec_out.errorDescr);
3539 $(
"#name").val(obj.RgWsPublicBasicRt_out.onomasia);
3540 $(
"#address").val(obj.RgWsPublicBasicRt_out.postalAddress +
" " + obj.RgWsPublicBasicRt_out.postalAddressNo);
3541 $(
"#zipcode").val(obj.RgWsPublicBasicRt_out.postalZipCode);
3542 $(
"#town").val(obj.RgWsPublicBasicRt_out.postalAreaDescription);
3543 $(
"#idprof2").val(obj.RgWsPublicBasicRt_out.doyDescr);
3544 $(
"#name_alias_input").val(obj.RgWsPublicBasicRt_out.commerTitle);
3546 if (obj.arrayOfRgWsPublicFirmActRt_out.RgWsPublicFirmActRtUser) {
3547 var firmActUser = obj.arrayOfRgWsPublicFirmActRt_out.RgWsPublicFirmActRtUser;
3549 if (Array.isArray(firmActUser)) {
3550 var primaryFirmAct = firmActUser.find(item => item.firmActKindDescr ===
"ΚΥΡΙΑ");
3551 if (primaryFirmAct) {
3552 $(
"#idprof1").val(primaryFirmAct.firmActDescr);
3555 $(
"#idprof1").val(firmActUser.firmActDescr);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage accounting accounts.
Class to manage members of a foundation.
Class to manage categories.
Class to manage third parties objects (customers, suppliers, prospects...)
show_contacts($conf, $langs, $db, $object, $backtopage='', $showuserlogin=0)
Show html area for list of contacts.
getCountry($searchkey, $withcode='', $dbtouse=null, $outputlangs=null, $entconv=1, $searchlabel='')
Return country label, code or id from an id, code or label.
currency_name($code_iso, $withcode=0, $outputlangs=null)
Return label of currency or code+label.
show_subsidiaries($conf, $langs, $db, $object)
Show html area for list of subsidiaries.
societe_prepare_head(Societe $object)
Return array of tabs to used on pages for third parties cards.
isInEEC($object)
Return if a country of an object is inside the EEC (European Economic Community)
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as p label as s rowid as s nom as s email
Sender: Who sends the email ("Sender" has sent emails on behalf of "From").
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_move_uploaded_file($src_file, $dest_file, $allowoverwrite, $disablevirusscan=0, $uploaderrorcode=0, $nohook=0, $varfiles='addedfile', $upload_dir='')
Check validity of a file upload from an GUI page, and move it to its final destination.
addFileIntoDatabaseIndex($dir, $file, $fullpathorig='', $mode='uploaded', $setsharekey=0, $object=null, $forceFullTextIndexation='')
Add a file into database index.
deleteFilesIntoDatabaseIndex($dir, $file, $mode='uploaded')
Delete files into database index using search criteria.
isValidUrl($url, $http=0, $pass=0, $port=0, $path=0, $query=0, $anchor=0)
Url string validation <http[s]> :// [user[:pass]@] hostname [port] [/path] [?getquery] [anchor].
recordNotFound($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Displays an error page when a record is not found.
isOnlyOneLocalTax($local)
Return true if LocalTax (1 or 2) is unique.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
picto_from_langcode($codelang, $moreatt='', $notitlealt=0)
Return img flag of country for a language code or country code.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dolPrintHTML($s, $allowiframe=0)
Return a string (that can be on several lines) ready to be output on a HTML page.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
GETPOSTISARRAY($paramname, $method=0)
Return true if the parameter $paramname is submit from a POST OR GET as an array.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_escape_js($stringtoescape, $mode=0, $noescapebackslashn=0)
Returns text escaped for inclusion into javascript code.
dol_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='')
Return an id or code from a code or id.
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
dolGetFirstLastname($firstname, $lastname, $nameorder=-1)
Return firstname and lastname in correct order.
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
getArrayOfSocialNetworks()
Get array of social network dictionary.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
GETPOSTFLOAT($paramname, $rounding='')
Return the value of a $_GET or $_POST supervariable, converted into float.
dol_print_profids($profID, $profIDtype, $countrycode='', $addcpButton=1)
Format professional IDs according to their country.
dol_htmloutput_mesg($mesgstring='', $mesgarray=array(), $style='ok', $keepembedded=0)
Print formatted messages to output (Used to show messages on html output).
dol_clone($object, $native=2)
Create a clone of instance of object (new instance with same value for each properties) With native =...
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
isValidEmail($address, $acceptsupervisorkey=0, $acceptuserkey=0)
Return true if email syntax is ok.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='')
Show information in HTML for admin users or standard users.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
image_format_supported($file, $acceptsvg=0)
Return if a filename is file name of a supported image format.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
getMaxFileSizeArray()
Return the max allowed for file upload.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.