* Copyright (C) 2003 Brian Fraval * Copyright (C) 2004-2015 Laurent Destailleur * Copyright (C) 2005 Eric Seigne * Copyright (C) 2005-2017 Regis Houssin * Copyright (C) 2008 Patrick Raguin * Copyright (C) 2010-2020 Juanjo Menent * Copyright (C) 2011-2024 Alexandre Spangaro * Copyright (C) 2015 Jean-François Ferry * Copyright (C) 2015 Marcos García * Copyright (C) 2015 Raphaël Doursenaud * Copyright (C) 2018 Nicolas ZABOURI * Copyright (C) 2018 Ferran Marcet * Copyright (C) 2018-2024 Frédéric France * Copyright (C) 2022-2023 George Gkantinas * Copyright (C) 2023 Nick Fragoulis * Copyright (C) 2023 Alexandre Janniaux * Copyright (C) 2024 MDW * Copyright (C) 2024 Charlene Benke * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * \file htdocs/societe/card.php * \ingroup societe * \brief Third party card page */ // Load Dolibarr environment require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php'; require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php'; require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; if (isModEnabled('member')) { require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php'; } if (isModEnabled('accounting')) { require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php'; } if (isModEnabled('accounting')) { require_once DOL_DOCUMENT_ROOT.'/core/class/html.formaccounting.class.php'; } if (isModEnabled('accounting')) { require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingaccount.class.php'; } if (isModEnabled('eventorganization')) { require_once DOL_DOCUMENT_ROOT.'/eventorganization/class/conferenceorboothattendee.class.php'; } /** * @var Conf $conf * @var DoliDB $db * @var HookManager $hookmanager * @var Societe $mysoc * @var Translate $langs * @var User $user */ $u = ''; $p = ''; $myafm = ''; if ($mysoc->country_code == 'GR') { $u = getDolGlobalString('AADE_WEBSERVICE_USER'); $p = getDolGlobalString('AADE_WEBSERVICE_KEY'); $myafm = preg_replace('/\D/', '', getDolGlobalString('MAIN_INFO_TVAINTRA')); } // Load translation files required by the page $langs->loadLangs(array("companies", "commercial", "bills", "banks", "users")); if (isModEnabled('member')) { $langs->load("members"); } if (isModEnabled('category')) { $langs->load("categories"); } if (isModEnabled('incoterm')) { $langs->load("incoterm"); } if (isModEnabled('notification')) { $langs->load("mails"); } if (isModEnabled('accounting')) { $langs->load("products"); } $error = 0; $errors = array(); // Get parameters $action = (GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view'); $cancel = GETPOST('cancel', 'alpha'); $backtopage = GETPOST('backtopage', 'alpha'); $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha'); $backtopagejsfields = GETPOST('backtopagejsfields', 'alpha'); $confirm = GETPOST('confirm', 'alpha'); $dol_openinpopup = ''; if (!empty($backtopagejsfields)) { $tmpbacktopagejsfields = explode(':', $backtopagejsfields); $dol_openinpopup = preg_replace('/[^a-z0-9_]/i', '', $tmpbacktopagejsfields[0]); } $socid = GETPOSTINT('socid') ? GETPOSTINT('socid') : GETPOSTINT('id'); if ($user->socid) { if (in_array($action, ['add', 'create', 'merge', 'confirm_merge', 'delete', 'confirm_delete'])) { accessforbidden(); } $socid = $user->socid; } if (empty($socid) && $action == 'view') { $action = 'create'; } $id = $socid; $object = new Societe($db); $extrafields = new ExtraFields($db); // fetch optionals attributes and labels $extrafields->fetch_name_optionals_label($object->table_element); $socialnetworks = getArrayOfSocialNetworks(); // Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context $hookmanager->initHooks(array('thirdpartycard', 'globalcard')); if ($socid > 0) { $object->fetch($socid); } // Get object canvas (By default, this is not defined, so standard usage of dolibarr) $canvas = $object->canvas ? $object->canvas : GETPOST("canvas"); $objcanvas = null; if (!empty($canvas)) { require_once DOL_DOCUMENT_ROOT.'/core/class/canvas.class.php'; $objcanvas = new Canvas($db, $action); $objcanvas->getCanvas('thirdparty', 'card', $canvas); } // Permissions $permissiontoread = $user->hasRight('societe', 'lire'); $permissiontoadd = $user->hasRight('societe', 'creer'); // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php $permissiontodelete = $user->hasRight('societe', 'supprimer') || ($permissiontoadd && isset($object->status) && $object->status == 0); $permissionnote = $user->hasRight('societe', 'creer'); // Used by the include of actions_setnotes.inc.php $permissiondellink = $user->hasRight('societe', 'creer'); // Used by the include of actions_dellink.inc.php $upload_dir = $conf->societe->multidir_output[isset($object->entity) ? $object->entity : 1]; // Security check $result = restrictedArea($user, 'societe', $object->id, '&societe', '', 'fk_soc', 'rowid', 0); if (!($object->id > 0) && $action == 'view') { recordNotFound(); } /* * Actions */ $parameters = array('id' => $socid, 'objcanvas' => $objcanvas); $current_logo = ''; $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks if ($reshook < 0) { setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); } if (empty($reshook)) { $backurlforlist = DOL_URL_ROOT.'/societe/list.php'; if (empty($backtopage) || ($cancel && empty($id))) { if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) { if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) { $backtopage = $backurlforlist; } else { $backtopage = DOL_URL_ROOT.'/societe/card.php?id='.((!empty($id) && $id > 0) ? $id : '__ID__'); } } } if ($cancel) { if (!empty($backtopageforcancel)) { header("Location: ".$backtopageforcancel); exit; } elseif (!empty($backtopage)) { header("Location: ".$backtopage); exit; } $action = ''; } if ($action == 'confirm_merge' && $confirm == 'yes' && $permissiontoadd) { $soc_origin_id = GETPOSTINT('soc_origin'); $soc_origin = new Societe($db); // The thirdparty that we will delete if ($soc_origin_id <= 0) { $langs->load('errors'); setEventMessages($langs->trans('ErrorThirdPartyIdIsMandatory', $langs->transnoentitiesnoconv('MergeOriginThirdparty')), null, 'errors'); } else { if (!$error && $soc_origin->fetch($soc_origin_id) < 1) { setEventMessages($langs->trans('ErrorRecordNotFound'), null, 'errors'); $error++; } if (!$error) { $result = $object->mergeCompany($soc_origin_id); if ($result < 0) { $error++; setEventMessages($object->error, $object->errors, 'errors'); } else { setEventMessages($langs->trans('ThirdpartiesMergeSuccess'), null, 'mesgs'); } } } } if (GETPOST('getcustomercode')) { // We defined value code_client $_POST["customer_code"] = "Acompleter"; } if (GETPOST('getsuppliercode')) { // We defined value code_fournisseur $_POST["supplier_code"] = "Acompleter"; } if ($action == 'set_localtax1' && $permissiontoadd) { //get selected from combobox $value = GETPOST('lt1'); $object->fetch($socid); $res = $object->setValueFrom('localtax1_value', $value, '', null, 'text', '', $user, 'COMPANY_MODIFY'); } if ($action == 'set_localtax2' && $permissiontoadd) { //get selected from combobox $value = GETPOST('lt2'); $object->fetch($socid); $res = $object->setValueFrom('localtax2_value', $value, '', null, 'text', '', $user, 'COMPANY_MODIFY'); } if ($action == 'update_extras' && $permissiontoadd) { $object->fetch($socid); $object->oldcopy = dol_clone($object, 2); // Fill array 'array_options' with data from update form $extrafields->fetch_name_optionals_label($object->table_element); $ret = $extrafields->setOptionalsFromPost(null, $object, GETPOST('attribute', 'restricthtml')); if ($ret < 0) { $error++; } if (!$error) { $result = $object->insertExtraFields('COMPANY_MODIFY'); if ($result < 0) { setEventMessages($object->error, $object->errors, 'errors'); $error++; } } if ($error) { $action = 'edit_extras'; } } // Add new or update third party if ((!GETPOST('getcustomercode') && !GETPOST('getsuppliercode')) && ($action == 'add' || $action == 'update') && $permissiontoadd) { require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; if (!GETPOST('name')) { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("ThirdPartyName")), null, 'errors'); $error++; } if (GETPOSTINT('customer') && GETPOSTINT('customer') < 0) { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Customer")), null, 'errors'); $error++; } if (GETPOSTINT('prospect') && GETPOSTINT('prospect') < 0) { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Prospect")), null, 'errors'); $error++; } if (GETPOSTISSET('supplier') && GETPOSTINT('supplier') < 0) { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Supplier")), null, 'errors'); $error++; } if (isModEnabled('mailing') && getDolGlobalInt('MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2 && GETPOSTINT('contact_no_email') == -1 && !empty(GETPOST('email', 'custom', 0, FILTER_SANITIZE_EMAIL))) { $error++; setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("No_Email")), null, 'errors'); } 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))) { $error++; setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("No_Email")), null, 'errors'); } if (!$error) { if ($action == 'update') { // Test on permission not required here $ret = $object->fetch($socid); $object->oldcopy = clone $object; } else { $object->canvas = $canvas; } if (GETPOSTINT("private") == 1) { // Ask to create a contact $object->particulier = GETPOSTINT("private"); $object->name = dolGetFirstLastname(GETPOST('firstname', 'alphanohtml'), GETPOST('name', 'alphanohtml')); $object->civility_id = GETPOST('civility_id', 'alphanohtml'); // Note: civility id is a code, not an int // Add non official properties $object->name_bis = GETPOST('name', 'alphanohtml'); $object->firstname = GETPOST('firstname', 'alphanohtml'); } else { $object->name = GETPOST('name', 'alphanohtml'); } $object->entity = ((GETPOSTISSET('entity') && GETPOST('entity') != '') ? GETPOSTINT('entity') : $conf->entity); $object->name_alias = GETPOST('name_alias', 'alphanohtml'); $object->parent = GETPOSTISSET('parent_company_id') ? GETPOSTINT('parent_company_id') : $object->parent; $object->address = GETPOST('address', 'alphanohtml'); $object->zip = GETPOST('zipcode', 'alphanohtml'); $object->town = GETPOST('town', 'alphanohtml'); $object->country_id = GETPOSTINT('country_id'); $object->state_id = GETPOSTINT('state_id'); $object->socialnetworks = array(); if (isModEnabled('socialnetworks')) { foreach ($socialnetworks as $key => $value) { if (GETPOSTISSET($key) && GETPOST($key, 'alphanohtml') != '') { $object->socialnetworks[$key] = GETPOST($key, 'alphanohtml'); } } } $object->phone = GETPOST('phone', 'alpha'); $object->phone_mobile = (string) GETPOST("phone_mobile", 'alpha'); $object->fax = GETPOST('fax', 'alpha'); $object->email = trim(GETPOST('email', 'custom', 0, FILTER_SANITIZE_EMAIL)); $object->no_email = GETPOSTINT("no_email"); $object->url = trim(GETPOST('url', 'custom', 0, FILTER_SANITIZE_URL)); $object->idprof1 = trim(GETPOST('idprof1', 'alphanohtml')); $object->idprof2 = trim(GETPOST('idprof2', 'alphanohtml')); $object->idprof3 = trim(GETPOST('idprof3', 'alphanohtml')); $object->idprof4 = trim(GETPOST('idprof4', 'alphanohtml')); $object->idprof5 = trim(GETPOST('idprof5', 'alphanohtml')); $object->idprof6 = trim(GETPOST('idprof6', 'alphanohtml')); $object->prefix_comm = GETPOST('prefix_comm', 'alphanohtml'); $object->code_client = GETPOSTISSET('customer_code') ? GETPOST('customer_code', 'alpha') : GETPOST('code_client', 'alpha'); $object->code_fournisseur = GETPOSTISSET('supplier_code') ? GETPOST('supplier_code', 'alpha') : GETPOST('code_fournisseur', 'alpha'); $object->capital = GETPOSTFLOAT('capital'); $object->barcode = GETPOST('barcode', 'alphanohtml'); $object->tva_intra = GETPOST('tva_intra', 'alphanohtml'); $object->tva_assuj = GETPOSTINT('assujtva_value'); $object->vat_reverse_charge = GETPOST('vat_reverse_charge') == 'on' ? 1 : 0; $object->status = GETPOSTINT('status'); // Local Taxes $object->localtax1_assuj = GETPOSTINT('localtax1assuj_value'); $object->localtax2_assuj = GETPOSTINT('localtax2assuj_value'); $object->localtax1_value = GETPOST('lt1', 'alpha'); $object->localtax2_value = GETPOST('lt2', 'alpha'); $object->forme_juridique_code = GETPOSTINT('forme_juridique_code'); $object->effectif_id = GETPOSTINT('effectif_id'); $object->typent_id = GETPOSTINT('typent_id'); $object->typent_code = dol_getIdFromCode($db, $object->typent_id, 'c_typent', 'id', 'code'); // Force typent_code too so check in verify() will be done on new type // Calculate the type of the thirdparty $customer = (GETPOSTINT('customer') > 0 ? 1 : 0); $prospect = (GETPOSTINT('prospect') > 0 ? 2 : 0); $prospectcustomer = $customer + $prospect; $object->client = $prospectcustomer; $object->fournisseur = (GETPOSTINT('supplier') > 0 ? 1 : 0); if ($action == 'add') { // for prospect, customer or supplier if ($object->client > 0 || $object->fournisseur > 0) { $form = new Form($db); $form->load_cache_types_paiements(); $paymentTermId = GETPOSTINT('cond_reglement_id'); $paymentTypeId = GETPOSTINT('mode_reglement_id'); if ($object->client > 0) { $object->cond_reglement_id = $paymentTermId; $filterPaymentTypeIdArr = array(0, 2, 3); // allow payment type for customer (filter is "CRDT" in "Form::select_types_paiements()" method) if (!empty($form->cache_types_paiements[$paymentTypeId]) && isset($form->cache_types_paiements[$paymentTypeId]['type']) && in_array($form->cache_types_paiements[$paymentTypeId]['type'], $filterPaymentTypeIdArr)) { $object->mode_reglement_id = $paymentTypeId; } } if ($object->fournisseur > 0) { $object->cond_reglement_supplier_id = $paymentTermId; $filterPaymentTypeIdArr = array(1, 2, 3); // allow payment type for supplier (filter is "DBIT" in "Form::select_types_paiements()" method) if (!empty($form->cache_types_paiements[$paymentTypeId]) && isset($form->cache_types_paiements[$paymentTypeId]['type']) && in_array($form->cache_types_paiements[$paymentTypeId]['type'], $filterPaymentTypeIdArr)) { $object->mode_reglement_supplier_id = $paymentTypeId; } } } } $object->commercial_id = GETPOSTINT('commercial_id'); $object->default_lang = GETPOST('default_lang'); // Webservices url/key $object->webservices_url = GETPOST('webservices_url', 'custom', 0, FILTER_SANITIZE_URL); $object->webservices_key = GETPOST('webservices_key', 'san_alpha'); if (GETPOSTISSET('accountancy_code_sell')) { $accountancy_code_sell = GETPOST('accountancy_code_sell', 'alpha'); if (empty($accountancy_code_sell) || $accountancy_code_sell == '-1') { $object->accountancy_code_sell = ''; } else { $object->accountancy_code_sell = $accountancy_code_sell; } } if (GETPOSTISSET('accountancy_code_buy')) { $accountancy_code_buy = GETPOST('accountancy_code_buy', 'alpha'); if (empty($accountancy_code_buy) || $accountancy_code_buy == '-1') { $object->accountancy_code_buy = ''; } else { $object->accountancy_code_buy = $accountancy_code_buy; } } // Incoterms if (isModEnabled('incoterm')) { $object->fk_incoterms = GETPOSTINT('incoterm_id'); $object->location_incoterms = GETPOST('location_incoterms', 'alpha'); } // Multicurrency if (isModEnabled("multicurrency")) { $object->multicurrency_code = GETPOST('multicurrency_code', 'alpha'); } // Fill array 'array_options' with data from add form $ret = $extrafields->setOptionalsFromPost(null, $object); if ($ret < 0) { $error++; } // Fill array 'array_languages' with data from add form $ret = $object->setValuesForExtraLanguages(); if ($ret < 0) { $error++; } //var_dump($object->array_languages);exit; if (!empty($_FILES['photo']['name'])) { $current_logo = $object->logo; $object->logo = dol_sanitizeFileName($_FILES['photo']['name']); } if (GETPOST('deletephoto')) { $current_logo = $object->logo; $object->logo = ''; } // Check parameters if (!GETPOST('cancel', 'alpha')) { if (!empty($object->email) && !isValidEmail($object->email)) { $langs->load("errors"); $error++; setEventMessages($langs->trans("ErrorBadEMail", $object->email), null, 'errors'); } if (!empty($object->url) && !isValidUrl($object->url)) { $langs->load("errors"); setEventMessages($langs->trans("ErrorBadUrl", $object->url), null, 'errors'); } if (!empty($object->webservices_url)) { //Check if has transport, without any the soap client will give error if (strpos($object->webservices_url, "http") === false) { $object->webservices_url = "http://".$object->webservices_url; } if (!isValidUrl($object->webservices_url)) { $langs->load("errors"); $error++; $errors[] = $langs->trans("ErrorBadUrl", $object->webservices_url); } } // We set country_id, country_code and country for the selected country $object->country_id = GETPOSTINT('country_id') != '' ? GETPOSTINT('country_id') : $mysoc->country_id; if ($object->country_id) { $tmparray = getCountry($object->country_id, 'all'); $object->country_code = $tmparray['code']; $object->country = $tmparray['label']; } } } if (!$error) { if ($action == 'add' && $permissiontoadd) { $error = 0; $db->begin(); if (empty($object->client)) { $object->code_client = ''; } if (empty($object->fournisseur)) { $object->code_fournisseur = ''; } $result = $object->create($user); if ($result >= 0 && isModEnabled('mailing') && !empty($object->email) && $object->no_email == 1) { // Add mass emailing flag into table mailing_unsubscribe $resultnoemail = $object->setNoEmail($object->no_email); if ($resultnoemail < 0) { $error++; $errors = array_merge($errors, ($object->error ? array($object->error) : $object->errors)); $action = 'create'; } } if ($result >= 0) { if ($object->particulier) { dol_syslog("We ask to create a contact/address too", LOG_DEBUG); $contcats = GETPOST('contcats', 'array'); $no_email = GETPOSTINT('contact_no_email'); $result = $object->create_individual($user, $no_email, $contcats); if ($result < 0) { setEventMessages($object->error, $object->errors, 'errors'); $error++; } } // Links with users $salesreps = GETPOST('commercial', 'array'); $result = $object->setSalesRep($salesreps, true); if ($result < 0) { $error++; setEventMessages($object->error, $object->errors, 'errors'); } // Customer categories association $custcats = GETPOST('custcats', 'array'); $result = $object->setCategories($custcats, 'customer'); if ($result < 0) { $error++; setEventMessages($object->error, $object->errors, 'errors'); } // Supplier categories association $suppcats = GETPOST('suppcats', 'array'); $result = $object->setCategories($suppcats, 'supplier'); if ($result < 0) { $error++; setEventMessages($object->error, $object->errors, 'errors'); } // Logo/Photo save $dir = $conf->societe->multidir_output[$conf->entity]."/".$object->id."/logos/"; $file_OK = is_uploaded_file($_FILES['photo']['tmp_name']); if ($file_OK) { if (image_format_supported($_FILES['photo']['name'])) { dol_mkdir($dir); if (@is_dir($dir)) { $newfile = $dir.'/'.dol_sanitizeFileName($_FILES['photo']['name']); $result = dol_move_uploaded_file($_FILES['photo']['tmp_name'], $newfile, 1); if (!($result > 0)) { $errors[] = "ErrorFailedToSaveFile"; } else { // Create thumbs $object->addThumbs($newfile); } } } } else { switch ($_FILES['photo']['error']) { case 1: //uploaded file exceeds the upload_max_filesize directive in php.ini case 2: //uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form $errors[] = "ErrorFileSizeTooLarge"; break; case 3: //uploaded file was only partially uploaded $errors[] = "ErrorFilePartiallyUploaded"; break; } } } else { if ($result == -3 && in_array('ErrorCustomerCodeAlreadyUsed', $object->errors)) { $duplicate_code_error = true; $object->code_client = ''; } if ($result == -3 && in_array('ErrorSupplierCodeAlreadyUsed', $object->errors)) { $duplicate_code_error = true; $object->code_fournisseur = ''; } if ($db->lasterrno() == 'DB_ERROR_RECORD_ALREADY_EXISTS') { // TODO Sometime errors on duplicate on profid and not on code, so we must manage this case $duplicate_code_error = true; } setEventMessages($object->error, $object->errors, 'errors'); $error++; } if ($result >= 0 && !$error) { $db->commit(); if ($backtopagejsfields) { llxHeader('', '', ''); $retstring = ''; print $retstring; llxFooter(); exit; } if (!empty($backtopage)) { $backtopage = preg_replace('/--IDFORBACKTOPAGE--/', (string) $object->id, $backtopage); // New method to autoselect project after a New on another form object creation if (preg_match('/\?/', $backtopage)) { $backtopage .= '&socid='.$object->id; // Old method } header("Location: ".$backtopage); exit; } else { $url = $_SERVER["PHP_SELF"]."?socid=".$object->id; // Old method if (($object->client == 1 || $object->client == 3) && !getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS')) { $url = DOL_URL_ROOT."/comm/card.php?socid=".$object->id; } elseif ($object->fournisseur == 1) { $url = DOL_URL_ROOT."/fourn/card.php?socid=".$object->id; } header("Location: ".$url); exit; } } else { $db->rollback(); $action = 'create'; } } if ($action == 'update' && $permissiontoadd) { $error = 0; if (GETPOST('cancel', 'alpha')) { if (!empty($backtopage)) { header("Location: ".$backtopage); exit; } else { header("Location: ".$_SERVER["PHP_SELF"]."?socid=".$socid); exit; } } // To not set code if third party is not concerned. But if it had values, we keep them. if (empty($object->client) && empty($object->oldcopy->code_client)) { $object->code_client = ''; } if (empty($object->fournisseur) && empty($object->oldcopy->code_fournisseur)) { $object->code_fournisseur = ''; } //var_dump($object);exit; $result = $object->update($socid, $user, 1, $object->oldcopy->codeclient_modifiable(), $object->oldcopy->codefournisseur_modifiable(), 'update', 0); if ($result > 0) { // Update mass emailing flag into table mailing_unsubscribe if (GETPOSTISSET('no_email') && $object->email) { $no_email = GETPOSTINT('no_email'); $result = $object->setNoEmail($no_email); if ($result < 0) { setEventMessages($object->error, $object->errors, 'errors'); $action = 'edit'; } } $action = 'view'; } else { setEventMessages($object->error, $object->errors, 'errors'); $action = 'edit'; } if ($result <= 0) { setEventMessages($object->error, $object->errors, 'errors'); $error++; } // Links with users $salesreps = GETPOST('commercial', 'array'); $result = $object->setSalesRep($salesreps); if ($result < 0) { $error++; setEventMessages($object->error, $object->errors, 'errors'); } // Prevent thirdparty's emptying if a user hasn't rights $user->rights->categorie->lire (in such a case, post of 'custcats' is not defined) if (!$error && $user->hasRight('categorie', 'lire')) { // Customer categories association $categories = GETPOST('custcats', 'array'); $result = $object->setCategories($categories, 'customer'); if ($result < 0) { $error++; setEventMessages($object->error, $object->errors, 'errors'); } // Supplier categories association $categories = GETPOST('suppcats', 'array'); $result = $object->setCategories($categories, 'supplier'); if ($result < 0) { $error++; setEventMessages($object->error, $object->errors, 'errors'); } } // Logo/Photo save $dir = $conf->societe->multidir_output[$object->entity]."/".$object->id."/logos"; $file_OK = is_uploaded_file($_FILES['photo']['tmp_name']); if (GETPOST('deletephoto') && $object->logo) { $fileimg = $dir.'/'.$object->logo; $dirthumbs = $dir.'/thumbs'; dol_delete_file($fileimg); dol_delete_dir_recursive($dirthumbs); } if ($file_OK) { if (image_format_supported($_FILES['photo']['name']) > 0) { if ($current_logo != $object->logo) { $fileimg = $dir.'/'.$current_logo; $dirthumbs = $dir.'/thumbs'; dol_delete_file($fileimg); dol_delete_dir_recursive($dirthumbs); } dol_mkdir($dir); if (@is_dir($dir)) { $newfile = $dir.'/'.dol_sanitizeFileName($_FILES['photo']['name']); $result = dol_move_uploaded_file($_FILES['photo']['tmp_name'], $newfile, 1); if (!($result > 0)) { $errors[] = "ErrorFailedToSaveFile"; } else { // Create thumbs $object->addThumbs($newfile); // Index file in database if (getDolGlobalString('THIRDPARTY_LOGO_ALLOW_EXTERNAL_DOWNLOAD')) { require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; // the dir dirname($newfile) is directory of logo, so we should have only one file at once into index, so we delete indexes for the dir deleteFilesIntoDatabaseIndex(dirname($newfile), '', ''); // now we index the uploaded logo file addFileIntoDatabaseIndex(dirname($newfile), basename($newfile), '', 'uploaded', 1); } } } } else { $errors[] = "ErrorBadImageFormat"; } } else { switch ($_FILES['photo']['error']) { case 1: //uploaded file exceeds the upload_max_filesize directive in php.ini case 2: //uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form $errors[] = "ErrorFileSizeTooLarge"; break; case 3: //uploaded file was only partially uploaded $errors[] = "ErrorFilePartiallyUploaded"; break; } } // Company logo management // Update linked member if (!$error && isset($object->fk_soc) && $object->fk_soc > 0) { $sql = "UPDATE ".MAIN_DB_PREFIX."adherent"; $sql .= " SET fk_soc = NULL WHERE fk_soc = ".((int) $socid); if (!$object->db->query($sql)) { $error++; $object->error .= $object->db->lasterror(); setEventMessages($object->error, $object->errors, 'errors'); } } if (!$error && !count($errors)) { if (!empty($backtopage)) { header("Location: ".$backtopage); exit; } else { header("Location: ".$_SERVER["PHP_SELF"]."?socid=".$socid); exit; } } else { $object->id = $socid; $action = "edit"; } } } else { $action = ($action == 'add' ? 'create' : 'edit'); } } // Delete third party if ($action == 'confirm_delete' && $confirm == 'yes' && $user->hasRight('societe', 'supprimer')) { $object->fetch($socid); $object->oldcopy = clone $object; $result = $object->delete($socid, $user); if ($result > 0) { header("Location: ".DOL_URL_ROOT."/societe/list.php?restore_lastsearch_values=1&delsoc=".urlencode($object->name)); exit; } else { $langs->load("errors"); setEventMessages($object->error, $object->errors, 'errors'); $error++; $action = ''; } } // Set third-party type if ($action == 'set_thirdpartytype' && $permissiontoadd) { $object->fetch($socid); $result = $object->setThirdpartyType(GETPOSTINT('typent_id')); } // Set incoterm if ($action == 'set_incoterms' && $permissiontoadd && isModEnabled('incoterm')) { $object->fetch($socid); $result = $object->setIncoterms(GETPOSTINT('incoterm_id'), GETPOST('location_incoterms')); } // Set parent company if ($action == 'set_thirdparty' && $permissiontoadd) { $object->fetch($socid); $result = $object->setParent(GETPOSTINT('parent_id')); } // Set sales representatives if ($action == 'set_salesrepresentatives' && $permissiontoadd) { $object->fetch($socid); $result = $object->setSalesRep(GETPOST('commercial', 'array')); } // warehouse if ($action == 'setwarehouse' && $permissiontoadd) { $result = $object->setWarehouse(GETPOSTINT('fk_warehouse')); } if ($action == 'confirm_clone' && $confirm != 'yes') { $action = ''; } //clone company essential info if ($action == 'confirm_clone' && $confirm == 'yes' && $user->hasRight('societe', 'creer')) { if ($object->id > 0) { $error = 0; $clone = dol_clone($object, 1); if (!empty(GETPOST('clone_name'))) { $clone->id = 0; $clone->name = GETPOST('clone_name', 'alphanohtml'); $clone->status = 1; $clone->fournisseur = 0; $clone->client = 0; $db->begin(); $clone->context['createfromclone'] = 'createfromclone'; $id = $clone->create($user); if ($id > 0) { $clone->id = $id; } else { setEventMessages($clone->error, $clone->errors, 'errors'); $error++; } unset($clone->context['createfromclone']); if ($error) { $db->rollback(); } else { $db->commit(); $db->close(); header("Location: " . $_SERVER["PHP_SELF"] . "?id=" . $id); exit; } } else { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("NewRefForClone")), null, 'errors'); } } else { dol_print_error($db, $object->error, $object->errors); } $action = 'clone'; } $id = $socid; $object->fetch($socid); // Selection of new fields if (getDolGlobalString('MAIN_DUPLICATE_CONTACTS_TAB_ON_MAIN_CARD') && (!getDolGlobalString('SOCIETE_DISABLE_CONTACTS') || getDolGlobalString('SOCIETE_ADDRESSES_MANAGEMENT'))) { include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php'; } // Actions to send emails $triggersendname = 'COMPANY_SENTBYMAIL'; $paramname = 'socid'; $mode = 'emailfromthirdparty'; $trackid = 'thi'.$object->id; include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php'; // Actions to build doc $id = $socid; $upload_dir = !empty($conf->societe->multidir_output[$object->entity]) ? $conf->societe->multidir_output[$object->entity] : $conf->societe->dir_output; $permissiontoadd = $user->hasRight('societe', 'creer'); include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php'; } /* * View */ $form = new Form($db); $formfile = new FormFile($db); $formadmin = new FormAdmin($db); $formcompany = new FormCompany($db); if (isModEnabled('accounting')) { $formaccounting = new FormAccounting($db); } if ($socid > 0 && empty($object->id)) { $result = $object->fetch($socid); if ($result <= 0) { dol_print_error(null, $object->error); exit(-1); } } $title = $langs->trans("ThirdParty"); if ($action == 'create') { $title = $langs->trans("NewThirdParty"); } if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/thirdpartynameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->name) { $title = $object->name." - ".$langs->trans('Card'); } $help_url = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas|DE:Modul_Geschäftspartner'; llxHeader('', $title, $help_url); $countrynotdefined = $langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')'; $canvasdisplayaction = $action; if (in_array($canvasdisplayaction, array('merge', 'confirm_merge'))) { $canvasdisplayaction = 'view'; } if (is_object($objcanvas) && $objcanvas->displayCanvasExists($canvasdisplayaction)) { // ----------------------------------------- // When used with CANVAS // ----------------------------------------- $objcanvas->assign_values($canvasdisplayaction, $object->id, $object->ref); // Set value for templates $objcanvas->display_canvas($canvasdisplayaction); // Show template } else { // ----------------------------------------- // When used in standard mode // ----------------------------------------- if ($action == 'create') { /* * Creation */ $private = GETPOSTINT("private"); if (getDolGlobalString('THIRDPARTY_DEFAULT_CREATE_CONTACT') && !GETPOSTISSET('private')) { $private = 1; } if (empty($private)) { $private = 0; } // Load object modCodeTiers $module = getDolGlobalString('SOCIETE_CODECLIENT_ADDON', 'mod_codeclient_leopard'); if (substr($module, 0, 15) == 'mod_codeclient_' && substr($module, -3) == 'php') { $module = substr($module, 0, dol_strlen($module) - 4); } $dirsociete = array_merge(array('/core/modules/societe/'), $conf->modules_parts['societe']); foreach ($dirsociete as $dirroot) { $res = dol_include_once($dirroot.$module.'.php'); if ($res) { break; } } $modCodeClient = new $module($db); '@phan-var-force ModeleThirdPartyCode $modCodeClient'; // Load object modCodeFournisseur $module = getDolGlobalString('SOCIETE_CODECLIENT_ADDON', 'mod_codeclient_leopard'); if (substr($module, 0, 15) == 'mod_codeclient_' && substr($module, -3) == 'php') { $module = substr($module, 0, dol_strlen($module) - 4); } $dirsociete = array_merge(array('/core/modules/societe/'), $conf->modules_parts['societe']); foreach ($dirsociete as $dirroot) { $res = dol_include_once($dirroot.$module.'.php'); if ($res) { break; } } $modCodeFournisseur = new $module($db); '@phan-var-force ModeleThirdPartyCode $modCodeFournisseur'; // Define if customer/prospect or supplier status is set or not if (GETPOST("type", 'aZ') != 'f') { $object->client = -1; if (getDolGlobalString('THIRDPARTY_CUSTOMERPROSPECT_BY_DEFAULT')) { $object->client = 3; } } // Prospect / Customer if (GETPOST("type", 'aZ') == 'c') { if (getDolGlobalInt('THIRDPARTY_CUSTOMERTYPE_BY_DEFAULT')) { $object->client = getDolGlobalInt('THIRDPARTY_CUSTOMERTYPE_BY_DEFAULT'); } else { $object->client = 3; } } if (GETPOST("type", 'aZ') == 'p') { $object->client = 2; } if (getDolGlobalString('SOCIETE_DISABLE_PROSPECTSCUSTOMERS') && $object->client == 3) { $object->client = 1; } if ((isModEnabled("supplier_order") || isModEnabled("supplier_invoice")) && (GETPOST("type") == 'f' || (GETPOST("type") == '' && getDolGlobalString('THIRDPARTY_SUPPLIER_BY_DEFAULT')))) { $object->fournisseur = 1; } $object->name = GETPOST('name', 'alphanohtml'); $object->name_alias = GETPOST('name_alias', 'alphanohtml'); $object->firstname = GETPOST('firstname', 'alphanohtml'); $object->particulier = $private; $object->prefix_comm = GETPOST('prefix_comm', 'alphanohtml'); //$object->client = GETPOSTINT('client') ? GETPOSTINT('client') : $object->client; if (empty($duplicate_code_error)) { $object->code_client = GETPOST('customer_code', 'alpha'); $object->fournisseur = GETPOST('fournisseur') ? GETPOSTINT('fournisseur') : $object->fournisseur; $object->code_fournisseur = GETPOST('supplier_code', 'alpha'); } else { setEventMessages($langs->trans('NewCustomerSupplierCodeProposed'), null, 'warnings'); } $object->address = GETPOST('address', 'alphanohtml'); $object->zip = GETPOST('zipcode', 'alphanohtml'); $object->town = GETPOST('town', 'alphanohtml'); $object->state_id = GETPOSTINT('state_id'); $object->socialnetworks = array(); if (isModEnabled('socialnetworks')) { foreach ($socialnetworks as $key => $value) { if (GETPOSTISSET($key) && GETPOST($key, 'alphanohtml') != '') { $object->socialnetworks[$key] = GETPOST($key, 'alphanohtml'); } } } $object->phone = GETPOST('phone', 'alpha'); $object->phone_mobile = (string) GETPOST("phone_mobile", 'alpha'); $object->fax = GETPOST('fax', 'alpha'); $object->email = GETPOST('email', 'custom', 0, FILTER_SANITIZE_EMAIL); $object->url = GETPOST('url', 'custom', 0, FILTER_SANITIZE_URL); $object->capital = GETPOSTFLOAT('capital'); $paymentTermId = GETPOSTINT('cond_reglement_id'); // can be set by default values on create page and not already in get or post variables if (empty($paymentTermId) && !GETPOSTISSET('cond_reglement_id')) { $paymentTermId = getDolGlobalString('MAIN_DEFAULT_PAYMENT_TERM_ID'); } $object->cond_reglement_id = $paymentTermId; $paymentTypeId = GETPOSTINT('mode_reglement_id'); // can be set by default values on create page and not already in get or post variables if (empty($paymentTypeId) && !GETPOSTISSET('mode_reglement_id')) { $paymentTypeId = getDolGlobalString('MAIN_DEFAULT_PAYMENT_TYPE_ID'); } $object->mode_reglement_id = $paymentTypeId; $object->barcode = GETPOST('barcode', 'alphanohtml'); $object->idprof1 = GETPOST('idprof1', 'alphanohtml'); $object->idprof2 = GETPOST('idprof2', 'alphanohtml'); $object->idprof3 = GETPOST('idprof3', 'alphanohtml'); $object->idprof4 = GETPOST('idprof4', 'alphanohtml'); $object->idprof5 = GETPOST('idprof5', 'alphanohtml'); $object->idprof6 = GETPOST('idprof6', 'alphanohtml'); $object->typent_id = GETPOSTINT('typent_id'); $object->effectif_id = GETPOSTINT('effectif_id'); $object->civility_id = GETPOST('civility_id', 'alpha'); $object->tva_assuj = GETPOSTINT('assujtva_value'); $object->vat_reverse_charge = GETPOST('vat_reverse_charge') == 'on' ? 1 : 0; $object->status = GETPOSTINT('status'); //Local Taxes $object->localtax1_assuj = GETPOSTINT('localtax1assuj_value'); $object->localtax2_assuj = GETPOSTINT('localtax2assuj_value'); $object->localtax1_value = GETPOST('lt1', 'alpha'); $object->localtax2_value = GETPOST('lt2', 'alpha'); $object->tva_intra = GETPOST('tva_intra', 'alphanohtml'); $object->commercial_id = GETPOSTINT('commercial_id'); $object->default_lang = GETPOST('default_lang'); if (GETPOSTISSET('accountancy_code_sell')) { $accountancy_code_sell = GETPOST('accountancy_code_sell', 'alpha'); if (empty($accountancy_code_sell) || $accountancy_code_sell == '-1') { $object->accountancy_code_sell = ''; } else { $object->accountancy_code_sell = $accountancy_code_sell; } } if (GETPOSTISSET('accountancy_code_buy')) { $accountancy_code_buy = GETPOST('accountancy_code_buy', 'alpha'); if (empty($accountancy_code_buy) || $accountancy_code_buy == '-1') { $object->accountancy_code_buy = ''; } else { $object->accountancy_code_buy = $accountancy_code_buy; } } $object->logo = (isset($_FILES['photo']) ? dol_sanitizeFileName($_FILES['photo']['name']) : ''); // Company logo management $dir = $conf->societe->multidir_output[$conf->entity]."/".$object->id."/logos"; $file_OK = (isset($_FILES['photo']) ? is_uploaded_file($_FILES['photo']['tmp_name']) : false); if ($file_OK) { if (image_format_supported($_FILES['photo']['name'])) { dol_mkdir($dir); if (@is_dir($dir)) { $newfile = $dir.'/'.dol_sanitizeFileName($_FILES['photo']['name']); $result = dol_move_uploaded_file($_FILES['photo']['tmp_name'], $newfile, 1); if (!($result > 0)) { $errors[] = "ErrorFailedToSaveFile"; } else { // Create thumbs $object->addThumbs($newfile); } } } } // We set country_id, country_code and country for the selected country $object->country_id = GETPOST('country_id') ? GETPOST('country_id') : $mysoc->country_id; if ($object->country_id) { $tmparray = getCountry($object->country_id, 'all'); $object->country_code = $tmparray['code']; $object->country = $tmparray['label']; } $object->forme_juridique_code = GETPOSTINT('forme_juridique_code'); // We set multicurrency_code if enabled if (isModEnabled("multicurrency")) { $object->multicurrency_code = GETPOST('multicurrency_code') ? GETPOST('multicurrency_code') : $conf->currency; } /* Show create form */ $linkback = ""; print load_fiche_titre($langs->trans("NewThirdParty"), $linkback, 'building'); if (!empty($conf->use_javascript_ajax)) { if (getDolGlobalString('THIRDPARTY_SUGGEST_ALSO_ADDRESS_CREATION')) { print "\n".''."\n"; print '
'; print '
'; print $langs->trans("ThirdPartyType").':     '; print '
'; print ''; print '     '; print ''; print '
'; print "
\n"; } print ''."\n"; } dol_htmloutput_mesg(is_numeric($error) ? '' : $error, $errors, 'error'); print '
'; // Chrome ignores autocomplete print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; if ($modCodeClient->code_auto || $modCodeFournisseur->code_auto) { print ''; } print dol_get_fiche_head(array(), 'card', '', 0, ''); // Call Hook tabContentCreateThirdparty $parameters = array(); // Note that $action and $object may be modified by hook $reshook = $hookmanager->executeHooks('tabContentCreateThirdparty', $parameters, $object, $action); if (empty($reshook)) { print ''; // Name, firstname print ''; print ''; print $form->widgetForTranslation("name", $object, $permissiontoadd, 'string', 'alphanohtml', 'minwidth300'); // For some countries that need the company name in 2 languages // This implementation of the feature to search already existing company has been disabled. It must be implemented by keeping the "input text" and we must call the search ajax societe/ajax/ajaxcompanies.php // on a keydown of the input. We should show data about a duplicate found if we found less than 5 answers into a div under the input. /* print ''; print "\n".' '; */ print ''; if (getDolGlobalString('SOCIETE_USEPREFIX')) { // Old not used prefix field print ''; } print ''; // If javascript on, we show option individual if ($conf->use_javascript_ajax) { if (getDolGlobalString('THIRDPARTY_SUGGEST_ALSO_ADDRESS_CREATION')) { // Firstname print ''; print ''; print ''; // Title print ''; print ''; } } // Alias names (commercial, trademark or alias names) print ''; print ''; // Prospect/Customer/Supplier $selected = $object->client; $selectedcustomer = 0; $selectedprospect = 0; switch ($selected) { case 1: $selectedcustomer = 1; break; case 2: $selectedprospect = 1; break; case 3: $selectedprospect = 1; $selectedcustomer = 1; break; default: break; } $selectedprospect = (GETPOSTISSET('prospect') ? GETPOSTINT('prospect') : $selectedprospect); $selectedcustomer = (GETPOSTISSET('customer') ? GETPOSTINT('customer') : $selectedcustomer); print ''; if ($conf->browser->layout != 'phone') { print ''; } print ''; print ''; // Customer code print ''; print ''; 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')) || (isModEnabled('supplier_proposal') && $user->hasRight('supplier_proposal', 'lire'))) { if ($conf->browser->layout == 'phone') { print ''; print ''; } print ''; } else { print ''; } print ''; // Status print ''; // Barcode if (isModEnabled('barcode')) { print ''; print ''; } $colspan = ($conf->browser->layout == 'phone' ? 2 : 4); print ' '; // Address print ''; print ''; // Zip / Town print ''; if ($conf->browser->layout == 'phone') { print ''; } print ''; // Country print ''; // State if (!getDolGlobalString('SOCIETE_DISABLE_STATE')) { if ((getDolGlobalInt('MAIN_SHOW_REGION_IN_STATE_SELECT') == 1 || getDolGlobalInt('MAIN_SHOW_REGION_IN_STATE_SELECT') == 2)) { print ''; } // Phone / Fax print ''; print 'browser->layout == 'phone' ? ' colspan="3"' : '').'>'.img_picto('', 'object_phoning', 'class="pictofixedwidth"').' '; if ($conf->browser->layout == 'phone') { print ''; } // Phone mobile print ''; print 'browser->layout == 'phone' ? ' colspan="3"' : '').'>'.img_picto('', 'object_phoning_mobile', 'class="pictofixedwidth"').' '; // Fax print ''; print ''; print 'browser->layout == 'phone' ? ' colspan="3"' : '').'>'.img_picto('', 'object_phoning_fax', 'class="pictofixedwidth"').' '; // URL print ''; print ''; // Email print ''; print 'browser->layout == 'phone') || !isModEnabled('mailing') ? ' colspan="3"' : '').'>'.img_picto('', 'object_email', 'class="pictofixedwidth"').' '; // Unsubscribe if (isModEnabled('mailing')) { if ($conf->browser->layout == 'phone') { print ''; } if ($conf->use_javascript_ajax && getDolGlobalInt('MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2) { print "\n".''."\n"; } if (!GETPOSTISSET("no_email") && !empty($object->email)) { $result = $object->getNoEmail(); if ($result < 0) { setEventMessages($object->error, $object->errors, 'errors'); } } print ''; print ''; } print ''; // Refuse emailing of all contacts if (isModEnabled('mailing') && getDolGlobalString('THIRDPARTY_SUGGEST_ALSO_ADDRESS_CREATION')) { print ''; if ($conf->browser->layout != 'phone') { print ''; print ''; } print ''; print ''; print ''; } // Social networks if (isModEnabled('socialnetworks')) { $colspan = ($conf->browser->layout == 'phone' ? 2 : 4); $object->showSocialNetwork($socialnetworks, $colspan); print '
'; } // Prof ids $i = 1; $j = 0; $NBCOLS = ($conf->browser->layout == 'phone' ? 1 : 2); $NBPROFIDMIN = getDolGlobalInt('THIRDPARTY_MIN_NB_PROF_ID', 2); $NBPROFIDMAX = getDolGlobalInt('THIRDPARTY_MAX_NB_PROF_ID', 6); while ($i <= $NBPROFIDMAX) { $idprof = $langs->transcountry('ProfId'.$i, $object->country_code); if ($idprof != '-' && ($i <= $NBPROFIDMIN || !empty($langs->tab_translate['ProfId'.$i.$object->country_code]))) { $key = 'idprof'.$i; if (($j % $NBCOLS) == 0) { print ''; } $idprof_mandatory = 'SOCIETE_IDPROF'.($i).'_MANDATORY'; print ''; if (($j % $NBCOLS) == ($NBCOLS - 1)) { print ''; } $j++; } $i++; } if ($NBCOLS > 1 && ($j % 2 == 1)) { print ''; } // Vat is used print ''; print ''; if ($conf->browser->layout == 'phone') { print ''; } print ''; print ''; print ''; // VAT reverse charge by default if (getDolGlobalString('ACCOUNTING_FORCE_ENABLE_VAT_REVERSE_CHARGE')) { print ''; } // Local Taxes //TODO: Place into a function to control showing by country or study better option if ($mysoc->localtax1_assuj == "1" && $mysoc->localtax2_assuj == "1") { print ''; if ($conf->browser->layout == 'phone') { print ''; } print ''; } elseif ($mysoc->localtax1_assuj == "1") { print ''; } elseif ($mysoc->localtax2_assuj == "1") { print ''; } // Type - Workforce/Staff print ''; if ($conf->browser->layout == 'phone') { print ''; } print ''; // Legal Form print ''; print ''; // Capital print ''; print ''; } else { print ''; print $langs->getCurrencySymbol($conf->currency); //print $langs->trans("Currency".$conf->currency); print ''; } if (getDolGlobalInt('MAIN_MULTILANGS')) { print ''; print ''; } // Payment terms of the settlement print ''; print ''; print ''; // Payment mode print ''; print ''; print ''; // Incoterms if (isModEnabled('incoterm')) { print ''; print ''; print ''; } // Categories if (isModEnabled('category') && $user->hasRight('categorie', 'lire')) { $langs->load('categories'); // Customer print '"; if (getDolGlobalString('THIRDPARTY_SUGGEST_ALSO_ADDRESS_CREATION')) { print '"; } // Supplier if (isModEnabled("supplier_proposal") || isModEnabled("supplier_order") || isModEnabled("supplier_invoice")) { print '"; } } // Multicurrency if (isModEnabled("multicurrency")) { print ''; print ''; print ''; } // Other attributes $parameters = array('socid' => $socid, 'colspan' => ' colspan="3"', 'colspanvalue' => '3'); include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_add.tpl.php'; // Parent company if (!getDolGlobalString('SOCIETE_DISABLE_PARENTCOMPANY')) { print ''; print ''; print ''; } // Assign a sale representative print ''; print ''; print ''; // Add logo print ''; print ''; print ''; print ''; print '
'; if ($object->particulier || $private) { print ''.$langs->trans('ThirdPartyName').' / '.$langs->trans('LastName', 'name').''; } else { print ''.$form->editfieldkey('ThirdPartyName', 'name', '', $object, 0).''; } print ''.$langs->trans('Prefix').'
'.$form->editfieldkey('FirstName', 'firstname', '', $object, 0).'
'.$form->editfieldkey('UserTitle', 'civility_id', '', $object, 0).''; print $formcompany->select_civility($object->civility_id, 'civility_id', 'maxwidth100').'
'.$form->editfieldkey('', 'customerprospect', '', $object, 0, 'string', '', 0).'browser->layout != 'phone' ? 'colspan="3"' : 'colspan="2"').'>'; if (!getDolGlobalString('SOCIETE_DISABLE_PROSPECTS')) { print ''; } if (!getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS')) { print ''; } 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')) || (isModEnabled('supplier_proposal') && $user->hasRight('supplier_proposal', 'lire'))) { // Supplier $selected = (GETPOSTISSET('supplier') ? GETPOSTINT('supplier') : $object->fournisseur); print ''; } // Add js to manage the background of nature if ($conf->use_javascript_ajax) { print ''; } print '
'.$form->editfieldkey('CustomerCode', 'customer_code', '', $object, 0).''; print '
'; $tmpcode = $object->code_client; if (empty($tmpcode) && !empty($modCodeClient->code_auto)) { $tmpcode = $modCodeClient->getNextValue($object, 0); } print ''; print ''; $s = $modCodeClient->getToolTip($langs, $object, 0); print $form->textwithpicto('', $s, 1); print '
'; print '
'.$form->editfieldkey('SupplierCode', 'supplier_code', '', $object, 0).''; print '
'; $tmpcode = $object->code_fournisseur; if (empty($tmpcode) && !empty($modCodeFournisseur->code_auto)) { $tmpcode = $modCodeFournisseur->getNextValue($object, 1); } print ''; print ''; $s = $modCodeFournisseur->getToolTip($langs, $object, 1); print $form->textwithpicto('', $s, 1); print '
'; print '
'.$form->editfieldkey('Status', 'status', '', $object, 0).''; print $form->selectarray('status', array('1' => $langs->trans('InActivity'), '0' => $langs->trans('ActivityCeased')), 1, 0, 0, 0, '', 0, 0, 0, '', 'minwidth100', 1); print '
'.$form->editfieldkey('Gencod', 'barcode', '', $object, 0).''; print img_picto('', 'barcode', 'class="pictofixedwidth"'); print ''; print '
'; print $form->editfieldkey('Address', 'address', '', $object, 0); print ''; print ''; print $form->widgetForTranslation("address", $object, $permissiontoadd, 'textarea', 'alphanohtml', 'quatrevingtpercent'); print '
'.$form->editfieldkey('Zip', 'zipcode', '', $object, 0).''; print $formcompany->select_ziptown($object->zip, 'zipcode', array('town', 'selectcountry_id', 'state_id'), 0, 0, '', 'maxwidth100'); print '
'.$form->editfieldkey('Town', 'town', '', $object, 0).''; print $formcompany->select_ziptown($object->town, 'town', array('zipcode', 'selectcountry_id', 'state_id'), 0, 0, '', 'maxwidth150 quatrevingtpercent'); print $form->widgetForTranslation("town", $object, $permissiontoadd, 'string', 'alphanohtml', 'maxwidth100 quatrevingtpercent'); print '
'.$form->editfieldkey('Country', 'selectcountry_id', '', $object, 0).''; print img_picto('', 'country', 'class="pictofixedwidth"'); print $form->select_country((GETPOSTISSET('country_id') ? GETPOST('country_id') : $object->country_id), 'country_id', '', 0, 'minwidth200 maxwidth300 widthcentpercentminusx'); if ($user->admin) { print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1); } print '
'.$form->editfieldkey('Region-State', 'state_id', '', $object, 0).''; } else { print '
'.$form->editfieldkey('State', 'state_id', '', $object, 0).''; } if ($object->country_id) { print img_picto('', 'state', 'class="pictofixedwidth"'); print $formcompany->select_state($object->state_id, $object->country_code, 'state_id', 'minwidth200 maxwidth300 widthcentpercentminusx'); } else { print $countrynotdefined; } print '
'.$form->editfieldkey('Phone', 'phone', '', $object, 0).'
'.$form->editfieldkey('PhoneMobile', 'phone_mobile', '', $object, 0).'
'.$form->editfieldkey('Fax', 'fax', '', $object, 0).'
'.$form->editfieldkey('Web', 'url', '', $object, 0).''.img_picto('', 'globe', 'class="pictofixedwidth"').'
'.$form->editfieldkey('EMail', 'email', '', $object, 0, 'string', '', getDolGlobalString('SOCIETE_EMAIL_MANDATORY')).'
'; 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); print '
'.$form->editfieldkey($langs->trans('No_Email') .' ('.$langs->trans('Contact').')', 'contact_no_email', '', $object, 0).'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).'
'.$form->editfieldkey($idprof, $key, '', $object, 0, 'string', '', (empty($conf->global->$idprof_mandatory) ? 0 : 1)).''; print $formcompany->get_input_id_prof($i, $key, $object->$key, $object->country_code); print '
'; print ''; // Assujeti par default en creation print '
'.$form->editfieldkey('VATIntra', 'intra_vat', '', $object, 0).''; $s = ''; if (!getDolGlobalString('MAIN_DISABLEVATCHECK') && isInEEC($object)) { $s .= ' '; if (!empty($conf->use_javascript_ajax)) { $widthpopup = 600; if (!empty($conf->dol_use_jmobile)) { $widthpopup = 350; } $heightpopup = 400; print "\n"; print ''; print "\n"; $s .= ''.$langs->trans("VATIntraCheck").''; $s = $form->textwithpicto($s, $langs->trans("VATIntraCheckDesc", $langs->transnoentitiesnoconv("VATIntraCheck")), 1); } else { $s .= 'country_id).'" target="_blank" rel="noopener noreferrer">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"), 'help').''; } } print $s; print '
'; print 'vat_reverse_charge == '1' ? ' checked' : '').'>'; print '
'.$langs->transcountry("LocalTax1IsUsed", $mysoc->country_code).''; print 'global->THIRDPARTY_DEFAULT_USELOCALTAX1) ? 'checked="checked"' : '') . ' value="1">'; print '
'.$langs->transcountry("LocalTax2IsUsed", $mysoc->country_code).''; print 'global->THIRDPARTY_DEFAULT_USELOCALTAX2) ? 'checked="checked"' : '') . ' value="1">'; print '
'.$langs->transcountry("LocalTax1IsUsed", $mysoc->country_code).''; print 'global->THIRDPARTY_DEFAULT_USELOCALTAX1) ? 'checked="checked"' : '') . ' value="1">'; print '
'.$langs->transcountry("LocalTax2IsUsed", $mysoc->country_code).''; print 'global->THIRDPARTY_DEFAULT_USELOCALTAX2) ? 'checked="checked"' : '') . ' value="1">'; print '
'.$form->editfieldkey('ThirdPartyType', 'typent_id', '', $object, 0).'browser->layout == 'phone' || getDolGlobalString('SOCIETE_DISABLE_WORKFORCE')) ? ' colspan="3"' : '').'>'."\n"; $sortparam = (!getDolGlobalString('SOCIETE_SORT_ON_TYPEENT') ? 'ASC' : $conf->global->SOCIETE_SORT_ON_TYPEENT); // NONE means we keep sort of original array, so we sort on position. ASC, means next function will sort on label. print $form->selectarray("typent_id", $formcompany->typent_array(0), $object->typent_id, 1, 0, 0, '', 0, 0, 0, $sortparam, '', 1); if ($user->admin) { print ' '.info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1); } if (!getDolGlobalString('SOCIETE_DISABLE_WORKFORCE')) { print '
'.$form->editfieldkey('Workforce', 'effectif_id', '', $object, 0).'browser->layout == 'phone' ? ' colspan="3"' : '').'>'; print $form->selectarray("effectif_id", $formcompany->effectif_array(0), $object->effectif_id, 0, 0, 0, '', 0, 0, 0, '', '', 1); if ($user->admin) { print ' '.info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1); } } else { print ''; } print '
'.$form->editfieldkey('JuridicalStatus', 'forme_juridique_code', '', $object, 0).''; if ($object->country_id) { print $formcompany->select_juridicalstatus($object->forme_juridique_code, $object->country_code, '', 'forme_juridique_code'); } else { print $countrynotdefined; } print '
'.$form->editfieldkey('Capital', 'capital', '', $object, 0).' '; if (isModEnabled("multicurrency")) { print ''; //print $langs->trans("Currency".$object->multicurrency_code); print $langs->getCurrencySymbol($object->multicurrency_code); print '
'.$form->editfieldkey('DefaultLang', 'default_lang', '', $object, 0).''."\n"; 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'); print '
'.$form->editfieldkey('PaymentConditions', 'cond_reglement_id', '', $object, 0).''; print $form->getSelectConditionsPaiements($object->cond_reglement_id, 'cond_reglement_id', 1, 1, 1, '', $object->deposit_percent); print '
'.$form->editfieldkey('PaymentMode', 'mode_reglement_id', '', $object, 0).''; print $form->select_types_paiements($object->mode_reglement_id, 'mode_reglement_id', '', 0, 1, 1, 0, 1); print '
'.$form->editfieldkey('IncotermLabel', 'incoterm_id', '', $object, 0).''; print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms) ? $object->location_incoterms : '')); print '
'.$form->editfieldkey('CustomersProspectsCategoriesShort', 'custcats', '', $object, 0).''; $cate_arbo = $form->select_all_categories(Categorie::TYPE_CUSTOMER, '', 'parent', 64, 0, 3); print img_picto('', 'category', 'class="pictofixedwidth"').$form->multiselectarray('custcats', $cate_arbo, GETPOST('custcats', 'array'), 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0); print "
'.$form->editfieldkey('ContactCategoriesShort', 'contcats', '', $object, 0).''; $cate_arbo = $form->select_all_categories(Categorie::TYPE_CONTACT, '', 'parent', 64, 0, 3); print img_picto('', 'category', 'class="pictofixedwidth"').$form->multiselectarray('contcats', $cate_arbo, GETPOST('contcats', 'array'), 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0); print "
'.$form->editfieldkey('SuppliersCategoriesShort', 'suppcats', '', $object, 0).''; $cate_arbo = $form->select_all_categories(Categorie::TYPE_SUPPLIER, '', 'parent', 64, 0, 3); print img_picto('', 'category', 'class="pictofixedwidth"').$form->multiselectarray('suppcats', $cate_arbo, GETPOST('suppcats', 'array'), 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0); print "
'.$form->editfieldkey('Currency', 'multicurrency_code', '', $object, 0).''; print img_picto('', 'currency', 'class="pictofixedwidth"'); print $form->selectMultiCurrency((GETPOSTISSET('multicurrency_code') ? GETPOST('multicurrency_code') : ($object->multicurrency_code ? $object->multicurrency_code : $conf->currency)), 'multicurrency_code', 1, '', false, 'maxwidth150 widthcentpercentminusx'); print '
'.$langs->trans('ParentCompany').''; print img_picto('', 'company', 'class="paddingrightonly"'); print $form->select_company(GETPOST('parent_company_id'), 'parent_company_id', '', 'SelectThirdParty', 0, 0, array(), 0, 'minwidth300 maxwidth500 widthcentpercentminusxx'); print '
'.$form->editfieldkey('AllocateCommercial', 'commercial_id', '', $object, 0).''; // TODO Use select_doluser in multiselect mode $userlist = $form->select_dolusers($selected, '', 0, null, 0, '', '', '0', 0, 0, 'u.statut:=:1', 0, '', '', 0, 2); // Note: If user has no right to "see all thirdparties", we force selection of sale representative to him, so after creation he can see the record. $selected = (GETPOSTISARRAY('commercial') ? GETPOST('commercial', 'array:int') : (GETPOSTINT('commercial') > 0 ? array(GETPOSTINT('commercial')) : array($user->id))); print img_picto('', 'user').$form->multiselectarray('commercial', $userlist, $selected, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0); print '
'.$form->editfieldkey('Logo', 'photoinput', '', $object, 0).''; print ''; print '
'."\n"; // Accountancy codes if (getDolGlobalString('ACCOUNTANCY_USE_PRODUCT_ACCOUNT_ON_THIRDPARTY')) { print ''; if (isModEnabled('accounting')) { /** @var FormAccounting $formaccounting */ // Accountancy_code_sell print ''; print ''; // Accountancy_code_buy print ''; print ''; } else { // For external software // Accountancy_code_sell print ''; print ''; // Accountancy_code_buy print ''; print ''; } print '
'.$langs->trans("ProductAccountancySellCode").''; $accountancy_code_sell = GETPOST('accountancy_code_sell', 'alpha'); print $formaccounting->select_account($accountancy_code_sell, 'accountancy_code_sell', 1, array(), 1, 1, ''); print '
'.$langs->trans("ProductAccountancyBuyCode").''; $accountancy_code_buy = GETPOST('accountancy_code_buy', 'alpha'); print $formaccounting->select_account($accountancy_code_buy, 'accountancy_code_buy', 1, array(), 1, 1, ''); print '
'.$langs->trans("ProductAccountancySellCode").''; print '
'.$langs->trans("ProductAccountancyBuyCode").''; print '
'; } } print dol_get_fiche_end(); print $form->buttonsSaveCancel('AddThirdParty', 'Cancel', array(), 0, '', $dol_openinpopup); print '
'."\n"; } elseif ($action == 'edit') { //print load_fiche_titre($langs->trans("EditCompany")); if ($socid) { $res = $object->fetch_optionals(); //if ($res < 0) { dol_print_error($db); exit; } $head = societe_prepare_head($object); // Load object modCodeTiers $module = getDolGlobalString('SOCIETE_CODECLIENT_ADDON', 'mod_codeclient_leopard'); if (substr($module, 0, 15) == 'mod_codeclient_' && substr($module, -3) == 'php') { $module = substr($module, 0, dol_strlen($module) - 4); } $dirsociete = array_merge(array('/core/modules/societe/'), $conf->modules_parts['societe']); foreach ($dirsociete as $dirroot) { $res = dol_include_once($dirroot.$module.'.php'); if ($res) { break; } } $modCodeClient = new $module($db); '@phan-var-force ModeleThirdPartyCode $modCodeClient'; // We check if the prefix tag is used if ($modCodeClient->code_auto) { $prefixCustomerIsUsed = $modCodeClient->verif_prefixIsUsed(); } else { $prefixCustomerIsUsed = false; } $module = getDolGlobalString('SOCIETE_CODECLIENT_ADDON'); if (substr($module, 0, 15) == 'mod_codeclient_' && substr($module, -3) == 'php') { $module = substr($module, 0, dol_strlen($module) - 4); } $dirsociete = array_merge(array('/core/modules/societe/'), $conf->modules_parts['societe']); foreach ($dirsociete as $dirroot) { $res = dol_include_once($dirroot.$module.'.php'); if ($res) { break; } } $modCodeFournisseur = new $module($db); '@phan-var-force ModeleThirdPartyCode $modCodeFournisseur'; // We check if the prefix tag is used if ($modCodeFournisseur->code_auto) { $prefixSupplierIsUsed = $modCodeFournisseur->verif_prefixIsUsed(); } else { $prefixSupplierIsUsed = false; } $object->oldcopy = clone $object; if (GETPOSTISSET('name')) { // We overwrite with values if posted $object->name = GETPOST('name', 'alphanohtml'); $object->name_alias = GETPOST('name_alias', 'alphanohtml'); $object->prefix_comm = GETPOST('prefix_comm', 'alphanohtml'); $object->client = GETPOSTINT('client'); $object->code_client = GETPOST('customer_code', 'alpha'); $object->fournisseur = GETPOSTINT('fournisseur'); $object->code_fournisseur = GETPOST('supplier_code', 'alpha'); $object->address = GETPOST('address', 'alphanohtml'); $object->zip = GETPOST('zipcode', 'alphanohtml'); $object->town = GETPOST('town', 'alphanohtml'); $object->country_id = GETPOST('country_id') ? GETPOSTINT('country_id') : $mysoc->country_id; $object->state_id = GETPOSTINT('state_id'); $object->parent = GETPOSTINT('parent_company_id'); $object->socialnetworks = array(); if (isModEnabled('socialnetworks')) { foreach ($socialnetworks as $key => $value) { if (GETPOSTISSET($key) && GETPOST($key, 'alphanohtml') != '') { $object->socialnetworks[$key] = GETPOST($key, 'alphanohtml'); } } } $object->phone = GETPOST('phone', 'alpha'); $object->phone_mobile = (string) GETPOST('phone_mobile', 'alpha'); $object->fax = GETPOST('fax', 'alpha'); $object->email = GETPOST('email', 'custom', 0, FILTER_SANITIZE_EMAIL); $object->no_email = GETPOSTINT("no_email"); $object->url = GETPOST('url', 'custom', 0, FILTER_SANITIZE_URL); $object->capital = GETPOSTFLOAT('capital'); $object->idprof1 = GETPOST('idprof1', 'alphanohtml'); $object->idprof2 = GETPOST('idprof2', 'alphanohtml'); $object->idprof3 = GETPOST('idprof3', 'alphanohtml'); $object->idprof4 = GETPOST('idprof4', 'alphanohtml'); $object->idprof5 = GETPOST('idprof5', 'alphanohtml'); $object->idprof6 = GETPOST('idprof6', 'alphanohtml'); $object->typent_id = GETPOSTINT('typent_id'); $object->effectif_id = GETPOSTINT('effectif_id'); $object->barcode = GETPOST('barcode', 'alphanohtml'); $object->forme_juridique_code = GETPOSTINT('forme_juridique_code'); $object->default_lang = GETPOST('default_lang', 'alpha'); $object->tva_assuj = GETPOSTINT('assujtva_value'); $object->vat_reverse_charge = GETPOST('vat_reverse_charge') == 'on' ? 1 : 0; $object->tva_intra = GETPOST('tva_intra', 'alphanohtml'); $object->status = GETPOSTINT('status'); // Webservices url/key $object->webservices_url = GETPOST('webservices_url', 'custom', 0, FILTER_SANITIZE_URL); $object->webservices_key = GETPOST('webservices_key', 'san_alpha'); if (GETPOSTISSET('accountancy_code_sell')) { $accountancy_code_sell = GETPOST('accountancy_code_sell', 'alpha'); if (empty($accountancy_code_sell) || $accountancy_code_sell == '-1') { $object->accountancy_code_sell = ''; } else { $object->accountancy_code_sell = $accountancy_code_sell; } } if (GETPOSTISSET('accountancy_code_buy')) { $accountancy_code_buy = GETPOST('accountancy_code_buy', 'alpha'); if (empty($accountancy_code_buy) || $accountancy_code_buy == '-1') { $object->accountancy_code_buy = ''; } else { $object->accountancy_code_buy = $accountancy_code_buy; } } //Incoterms if (isModEnabled('incoterm')) { $object->fk_incoterms = GETPOSTINT('incoterm_id'); $object->location_incoterms = GETPOST('lcoation_incoterms', 'alpha'); } //Local Taxes $object->localtax1_assuj = GETPOSTINT('localtax1assuj_value'); $object->localtax2_assuj = GETPOSTINT('localtax2assuj_value'); $object->localtax1_value = GETPOST('lt1'); $object->localtax2_value = GETPOST('lt2'); // We set country_id, and country_code label of the chosen country if ($object->country_id > 0) { $tmparray = getCountry($object->country_id, 'all'); $object->country_code = $tmparray['code']; $object->country = $tmparray['label']; } // We set multicurrency_code if enabled if (isModEnabled("multicurrency")) { $object->multicurrency_code = GETPOST('multicurrency_code') ? GETPOST('multicurrency_code') : $object->multicurrency_code; } } if ($object->localtax1_assuj == 0) { $sub = 0; } else { $sub = 1; } if ($object->localtax2_assuj == 0) { $sub2 = 0; } else { $sub2 = 1; } if (!empty($conf->use_javascript_ajax)) { print "\n".''."\n"; } print '
'; print ''; print ''; print ''; print ''; if ($modCodeClient->code_auto || $modCodeFournisseur->code_auto) { print ''; } print dol_get_fiche_head($head, 'card', $langs->trans("ThirdParty"), 0, 'company'); print '
'; // Call Hook tabContentEditThirdparty $parameters = array(); // Note that $action and $object may be modified by hook $reshook = $hookmanager->executeHooks('tabContentEditThirdparty', $parameters, $object, $action); if (empty($reshook)) { print ''; // Ref/ID if (getDolGlobalString('MAIN_SHOW_TECHNICAL_ID')) { print ''; } // Name print ''; print ''; // Alias names (commercial, trademark or alias names) print ''; print ''; // Prefix if (getDolGlobalString('SOCIETE_USEPREFIX')) { // Old not used prefix field print ''; } // Prospect/Customer/Supplier $selected = $object->client; $selectedcustomer = 0; $selectedprospect = 0; switch ($selected) { case 1: $selectedcustomer = 1; break; case 2: $selectedprospect = 1; break; case 3: $selectedprospect = 1; $selectedcustomer = 1; break; default: break; } // Nature of thirdparty $selectedprospect = (GETPOSTISSET('prospect') ? GETPOSTINT('prospect') : $selectedprospect); $selectedcustomer = (GETPOSTISSET('customer') ? GETPOSTINT('customer') : $selectedcustomer); print ''; if ($conf->browser->layout != 'phone') { print ''; } print ''; print ''; print ''; if ($conf->browser->layout == 'phone') { print ''; } print ''; // Barcode if (isModEnabled('barcode')) { print ''; print ''; } // Status print 'browser->layout == 'phone' ? '' : ' colspan="3"').'>'; print $form->selectarray('status', array('0' => $langs->trans('ActivityCeased'), '1' => $langs->trans('InActivity')), $object->status, 0, 0, 0, '', 0, 0, 0, '', 'minwidth100', 1); print ''; //$colspan = ($conf->browser->layout == 'phone' ? 2 : 4); $colspan = 4; print ''; // Address print ''; print ''; // Zip / Town print 'browser->layout == 'phone' ? ' colspan="3"' : '').'>'; print $formcompany->select_ziptown($object->zip, 'zipcode', array('town', 'selectcountry_id', 'state_id'), 0, 0, '', 'maxwidth100'); print ''; if ($conf->browser->layout == 'phone') { print ''; } print 'browser->layout == 'phone' ? ' colspan="3"' : '').'>'; print $formcompany->select_ziptown($object->town, 'town', array('zipcode', 'selectcountry_id', 'state_id')); print $form->widgetForTranslation("town", $object, $permissiontoadd, 'string', 'alphanohtml', 'maxwidth100 quatrevingtpercent'); print ''; // Country print ''; // State if (!getDolGlobalString('SOCIETE_DISABLE_STATE')) { if ((getDolGlobalInt('MAIN_SHOW_REGION_IN_STATE_SELECT') == 1 || getDolGlobalInt('MAIN_SHOW_REGION_IN_STATE_SELECT') == 2)) { print ''; } // Phone / Fax print ''; print 'browser->layout == 'phone' ? ' colspan="3"' : '').'>'.img_picto('', 'object_phoning', 'class="pictofixedwidth"').' '; if ($conf->browser->layout == 'phone') { print ''; } print ''; print 'browser->layout == 'phone' ? ' colspan="3"' : '').'>'.img_picto('', 'object_phoning_mobile', 'class="pictofixedwidth"').' '; print ''; print 'browser->layout == 'phone' ? ' colspan="3"' : '').'>'.img_picto('', 'object_phoning_fax', 'class="pictofixedwidth"').' '; print ''; // Web print ''; print ''; // EMail print ''; print 'browser->layout == 'phone') || !isModEnabled('mailing') ? ' colspan="3"' : '').'>'; print img_picto('', 'object_email', 'class="pictofixedwidth"'); print ''; print ''; // Unsubscribe if (isModEnabled('mailing')) { if ($conf->browser->layout == 'phone') { print ''; } if ($conf->use_javascript_ajax && getDolGlobalInt('MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2) { print "\n".''."\n"; } if (!GETPOSTISSET("no_email") && !empty($object->email)) { $result = $object->getNoEmail(); if ($result < 0) { setEventMessages($object->error, $object->errors, 'errors'); } } print ''; print ''; } print ''; // Social network if (isModEnabled('socialnetworks')) { //$colspan = ($conf->browser->layout == 'phone' ? 2 : 4); $colspan = 4; $object->showSocialNetwork($socialnetworks, $colspan); print '
'; } // Prof ids $i = 1; $j = 0; $NBCOLS = ($conf->browser->layout == 'phone' ? 1 : 2); $NBPROFIDMIN = getDolGlobalInt('THIRDPARTY_MIN_NB_PROF_ID', 2); $NBPROFIDMAX = getDolGlobalInt('THIRDPARTY_MAX_NB_PROF_ID', 6); while ($i <= $NBPROFIDMAX) { $idprof = $langs->transcountry('ProfId'.$i, $object->country_code); if ($idprof != '-' && ($i <= $NBPROFIDMIN || !empty($langs->tab_translate['ProfId'.$i.$object->country_code]))) { $key = 'idprof'.$i; if (($j % $NBCOLS) == 0) { print ''; } $idprof_mandatory = 'SOCIETE_IDPROF'.($i).'_MANDATORY'; print ''; if (($j % $NBCOLS) == ($NBCOLS - 1)) { print ''; } $j++; } $i++; } if ($NBCOLS > 0 && ($j % 2) == 1) { print ''; } // VAT is used print ''; // Local Taxes //TODO: Place into a function to control showing by country or study better option if ($mysoc->localtax1_assuj == "1" && $mysoc->localtax2_assuj == "1") { print ''; print ''; print ''; if (!isOnlyOneLocalTax(2)) { print ' '.$langs->transcountry("Type", $mysoc->country_code).': '; $formcompany->select_localtax(2, $object->localtax2_value, "lt2"); print ''; } print ''; } elseif ($mysoc->localtax1_assuj == "1" && $mysoc->localtax2_assuj != "1") { print ''; } elseif ($mysoc->localtax2_assuj == "1" && $mysoc->localtax1_assuj != "1") { print ''; } // VAT reverse charge by default if (getDolGlobalString('ACCOUNTING_FORCE_ENABLE_VAT_REVERSE_CHARGE')) { print ''; } // VAT Code print ''; print ''; print ''; // Type - Workforce/Staff print ''; if ($conf->browser->layout == 'phone') { print ''; } print ''; // Juridical type print ''; // Capital print ''; print ''; } else { print '"> '.$langs->trans("Currency".$conf->currency).''; } // Default language if (getDolGlobalInt('MAIN_MULTILANGS')) { print ''; print ''; } // Incoterms if (isModEnabled('incoterm')) { print ''; print ''; print ''; } // Categories if (isModEnabled('category') && $user->hasRight('categorie', 'lire')) { // Customer print ''; print '"; // Supplier 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'))) { print ''; print '"; } } // Multicurrency if (isModEnabled("multicurrency")) { print ''; print ''; print ''; } // Other attributes $parameters = array('socid' => $socid, 'colspan' => ' colspan="3"', 'colspanvalue' => '3'); include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_edit.tpl.php'; // Parent company if (!getDolGlobalString('SOCIETE_DISABLE_PARENTCOMPANY')) { print ''; print ''; print ''; } // Logo print ''; print ''; print ''; print ''; // Assign sale representative print ''; print ''; print ''; print '
'.$langs->trans("ID").''; print $object->ref; print '
'.$form->editfieldkey('ThirdPartyName', 'name', '', $object, 0, 'string', '', 1).''; print $form->widgetForTranslation("name", $object, $permissiontoadd, 'string', 'alphanohtml', 'minwidth300'); print '
'.$form->editfieldkey('Prefix', 'prefix', '', $object, 0).''; // It does not change the prefix mode using the auto numbering prefix if (($prefixCustomerIsUsed || $prefixSupplierIsUsed) && $object->prefix_comm) { print ''; print $object->prefix_comm; } else { print ''; } print '
'.$form->editfieldkey('', 'customerprospect', '', $object, 0, 'string', '', 0).'browser->layout != 'phone' ? 'colspan="3"' : 'colspan="2"').'>'; if (!getDolGlobalString('SOCIETE_DISABLE_PROSPECTS')) { print ''; } if (!getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS')) { print ''; } 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')) || (isModEnabled('supplier_proposal') && $user->hasRight('supplier_proposal', 'lire'))) { // Supplier $selected = (GETPOSTISSET('supplier') ? GETPOSTINT('supplier') : $object->fournisseur); print ''; } // Add js to manage the background of nature if ($conf->use_javascript_ajax) { print ''; } print '
'.$form->editfieldkey('CustomerCode', 'customer_code', '', $object, 0).''; print '
'; $tmpcode = $object->code_client; if (empty($tmpcode) && !empty($modCodeClient->code_auto)) { $tmpcode = $modCodeClient->getNextValue($object, 0); } print ''; print ''; $s = $modCodeClient->getToolTip($langs, $object, 0); print $form->textwithpicto('', $s, 1); print '
'; print '
'.$form->editfieldkey('SupplierCode', 'supplier_code', '', $object, 0).''; 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'))) { print '
'; $tmpcode = $object->code_fournisseur; if (empty($tmpcode) && !empty($modCodeFournisseur->code_auto)) { $tmpcode = $modCodeFournisseur->getNextValue($object, 1); } print ''; print ''; $s = $modCodeFournisseur->getToolTip($langs, $object, 1); print $form->textwithpicto('', $s, 1); print '
'; } print '
'.$form->editfieldkey('Gencod', 'barcode', '', $object, 0).''; print img_picto('', 'barcode', 'class="pictofixedwidth"'); print ''; print '
'.$form->editfieldkey('Status', 'status', '', $object, 0).'
 
'.$form->editfieldkey('Address', 'address', '', $object, 0).''; print $form->widgetForTranslation("address", $object, $permissiontoadd, 'textarea', 'alphanohtml', 'quatrevingtpercent'); print '
'.$form->editfieldkey('Zip', 'zipcode', '', $object, 0).'
'.$form->editfieldkey('Town', 'town', '', $object, 0).'
'.$form->editfieldkey('Country', 'selectcounty_id', '', $object, 0).''; print img_picto('', 'globe-americas', 'class="pictofixedwidth"'); print $form->select_country((GETPOSTISSET('country_id') ? GETPOST('country_id') : $object->country_id), 'country_id', '', 0, 'minwidth200 maxwidth400 widthcentpercentminusx'); if ($user->admin) { print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1); } print '
'.$form->editfieldkey('Region-State', 'state_id', '', $object, 0).''; } else { print '
'.$form->editfieldkey('State', 'state_id', '', $object, 0).''; } print img_picto('', 'state', 'class="pictofixedwidth"'); print $formcompany->select_state($object->state_id, $object->country_code, 'state_id', 'minwidth200 maxwidth400 widthcentpercentminusx'); print '
'.$form->editfieldkey('Phone', 'phone', GETPOST('phone', 'alpha'), $object, 0).'
'.$form->editfieldkey('PhoneMobile', 'phone_mobile', GETPOST('phone_mobile', 'alpha'), $object, 0).'
'.$form->editfieldkey('Fax', 'fax', GETPOST('fax', 'alpha'), $object, 0).'
'.$form->editfieldkey('Web', 'url', GETPOST('url', 'alpha'), $object, 0).''.img_picto('', 'globe', 'class="pictofixedwidth"').'
'.$form->editfieldkey('EMail', 'email', GETPOST('email', 'alpha'), $object, 0, 'string', '', (getDolGlobalString('SOCIETE_EMAIL_MANDATORY'))).'
'; $useempty = (getDolGlobalInt('MAILING_CONTACT_DEFAULT_BULK_STATUS') == 2); print $form->selectyesno('no_email', (GETPOSTISSET("no_email") ? GETPOSTINT("no_email") : $object->no_email), 1, false, $useempty); print '
'.$form->editfieldkey($idprof, $key, '', $object, 0, 'string', '', !(empty($conf->global->$idprof_mandatory) || !$object->isACompany())).''; print $formcompany->get_input_id_prof($i, $key, $object->$key, $object->country_code); print '
'.$form->editfieldkey('VATIsUsed', 'assujtva_value', '', $object, 0).''; print 'tva_assuj ? 'checked="checked"' : '') . ' value="1">'; print '
'.$form->editfieldkey($langs->transcountry("LocalTax1IsUsed", $mysoc->country_code), 'localtax1assuj_value', '', $object, 0).''; print 'localtax1_assuj ? 'checked="checked"' : '') . ' value="1">'; if (!isOnlyOneLocalTax(1)) { print ' '.$langs->transcountry("Type", $mysoc->country_code).': '; $formcompany->select_localtax(1, $object->localtax1_value, "lt1"); print ''; } print '
'.$form->editfieldkey($langs->transcountry("LocalTax2IsUsed", $mysoc->country_code), 'localtax2assuj_value', '', $object, 0).''; print 'localtax2_assuj ? 'checked="checked"' : '') . ' value="1">
'.$form->editfieldkey($langs->transcountry("LocalTax1IsUsed", $mysoc->country_code), 'localtax1assuj_value', '', $object, 0).''; print 'localtax1_assuj ? 'checked="checked"' : '') . ' value="1">'; if (!isOnlyOneLocalTax(1)) { print ' '.$langs->transcountry("Type", $mysoc->country_code).': '; $formcompany->select_localtax(1, $object->localtax1_value, "lt1"); print ''; } print '
'.$form->editfieldkey($langs->transcountry("LocalTax2IsUsed", $mysoc->country_code), 'localtax2assuj_value', '', $object, 0).''; print 'localtax2_assuj ? 'checked="checked"' : '') . ' value="1">'; if (!isOnlyOneLocalTax(2)) { print ' '.$langs->transcountry("Type", $mysoc->country_code).': '; $formcompany->select_localtax(2, $object->localtax2_value, "lt2"); print ''; } print '
' . $form->editfieldkey('VATReverseChargeByDefault', 'vat_reverse_charge', '', $object, 0) . ''; print 'vat_reverse_charge == '1' ? ' checked' : '').'>'; print '
'.$form->editfieldkey('VATIntra', 'intra_vat', '', $object, 0).''; $s = ''; if (!getDolGlobalString('MAIN_DISABLEVATCHECK') && isInEEC($object)) { $s .= '   '; if ($conf->use_javascript_ajax) { $widthpopup = 600; if (!empty($conf->dol_use_jmobile)) { $widthpopup = 350; } $heightpopup = 400; print "\n"; print ''; print "\n"; $s .= ''.$langs->trans("VATIntraCheck").''; $s = $form->textwithpicto($s, $langs->trans("VATIntraCheckDesc", $langs->transnoentitiesnoconv("VATIntraCheck")), 1); } else { $s .= 'country_id).'" class="hideonsmartphone" target="_blank" rel="noopener noreferrer">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"), 'help').''; } } print $s; print '
'.$form->editfieldkey('ThirdPartyType', 'typent_id', '', $object, 0).'browser->layout == 'phone' || getDolGlobalString('SOCIETE_DISABLE_WORKFORCE')) ? ' colspan="3"' : '').'>'; 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); if ($user->admin) { print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1); } if (!getDolGlobalString('SOCIETE_DISABLE_WORKFORCE')) { print '
'.$form->editfieldkey('Workforce', 'effectif_id', '', $object, 0).''; print $form->selectarray("effectif_id", $formcompany->effectif_array(0), $object->effectif_id, 0, 0, 0, '', 0, 0, 0, '', '', 1); if ($user->admin) { print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1); } } else { print ''; } print '
'.$form->editfieldkey('JuridicalStatus', 'forme_juridique_code', '', $object, 0).''; print $formcompany->select_juridicalstatus($object->forme_juridique_code, $object->country_code, '', 'forme_juridique_code'); print '
'.$form->editfieldkey('Capital', 'capital', '', $object, 0).' '.$langs->trans("Currency".$object->multicurrency_code).'
'.$form->editfieldkey('DefaultLang', 'default_lang', '', $object, 0).''."\n"; print img_picto('', 'language', 'class="pictofixedwidth"').$formadmin->select_language($object->default_lang, 'default_lang', 0, array(), '1', 0, 0, 'maxwidth300 widthcentpercentminusx'); print '
'.$form->editfieldkey('IncotermLabel', 'incoterm_id', '', $object, 0).''; print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms) ? $object->location_incoterms : '')); print '
'.$form->editfieldkey('CustomersCategoriesShort', 'custcats', '', $object, 0).''; $cate_arbo = $form->select_all_categories(Categorie::TYPE_CUSTOMER, '', '', 64, 0, 3); $c = new Categorie($db); $cats = $c->containing($object->id, Categorie::TYPE_CUSTOMER); $arrayselected = array(); foreach ($cats as $cat) { $arrayselected[] = $cat->id; } print img_picto('', 'category', 'class="pictofixedwidth"').$form->multiselectarray('custcats', $cate_arbo, $arrayselected, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0); print "
'.$form->editfieldkey('SuppliersCategoriesShort', 'suppcats', '', $object, 0).''; $cate_arbo = $form->select_all_categories(Categorie::TYPE_SUPPLIER, '', '', 64, 0, 3); $c = new Categorie($db); $cats = $c->containing($object->id, Categorie::TYPE_SUPPLIER); $arrayselected = array(); foreach ($cats as $cat) { $arrayselected[] = $cat->id; } print img_picto('', 'category', 'class="pictofixedwidth"').$form->multiselectarray('suppcats', $cate_arbo, $arrayselected, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0); print "
'.$form->editfieldkey('Currency', 'multicurrency_code', '', $object, 0).''; print img_picto('', 'currency', 'class="pictofixedwidth"'); print $form->selectMultiCurrency((GETPOSTISSET('multicurrency_code') ? GETPOST('multicurrency_code') : ($object->multicurrency_code ? $object->multicurrency_code : $conf->currency)), 'multicurrency_code', 1, '', false, 'maxwidth150 widthcentpercentminusx'); print '
'.$langs->trans('ParentCompany').''; print img_picto('', 'company', 'class="pictofixedwidth"'); 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'); print '
'.$form->editfieldkey('Logo', 'photoinput', '', $object, 0).''; if ($object->logo) { print $form->showphoto('societe', $object, 100, 0, 0, 'inline-block'); } $caneditfield = 1; if ($caneditfield) { if ($object->logo) { print "
\n"; } print ''; if ($object->logo) { print ''; } //print ''; print ''; print '
'.$langs->trans("PhotoFile").'
'; $maxfilesizearray = getMaxFileSizeArray(); $maxmin = $maxfilesizearray['maxmin']; if ($maxmin > 0) { print ''; // MAX_FILE_SIZE must precede the field type=file } print ''; print '
'; } print '
'.$form->editfieldkey('AllocateCommercial', 'commercial_id', '', $object, 0).''; $userlist = $form->select_dolusers('', '', 0, null, 0, '', '', 0, 0, 0, 'u.statut:=:1', 0, '', '', 0, 1); $arrayselected = GETPOST('commercial', 'array'); if (empty($arrayselected)) { $arrayselected = $object->getSalesRepresentatives($user, 1); } print img_picto('', 'user', 'class="pictofixedwidth"').$form->multiselectarray('commercial', $userlist, $arrayselected, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0, '', '', '', 1); print '
'; if (getDolGlobalString('ACCOUNTANCY_USE_PRODUCT_ACCOUNT_ON_THIRDPARTY')) { print '
'; print ''; if (isModEnabled('accounting')) { /** @var FormAccounting $formaccounting */ // Accountancy_code_sell print ''; print ''; // Accountancy_code_buy print ''; print ''; } else { // For external software // Accountancy_code_sell print ''; print ''; // Accountancy_code_buy print ''; print ''; } print '
'.$langs->trans("ProductAccountancySellCode").''; print $formaccounting->select_account($object->accountancy_code_sell, 'accountancy_code_sell', 1, array(), 1, 1); print '
'.$langs->trans("ProductAccountancyBuyCode").''; print $formaccounting->select_account($object->accountancy_code_buy, 'accountancy_code_buy', 1, array(), 1, 1); print '
'.$langs->trans("ProductAccountancySellCode").''; print '
'.$langs->trans("ProductAccountancyBuyCode").''; print '
'; } } print '
'; print dol_get_fiche_end(); print $form->buttonsSaveCancel(); print '
'; } } else { // View if (!empty($object->id)) { $res = $object->fetch_optionals(); } //if ($res < 0) { dol_print_error($db); exit; } $head = societe_prepare_head($object); print dol_get_fiche_head($head, 'card', $langs->trans("ThirdParty"), -1, 'company', 0, '', '', 0, '', 1); $formconfirm = ''; // Confirm delete third party if ($action == 'delete' || ($conf->use_javascript_ajax && empty($conf->dol_use_jmobile))) { $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"]."?socid=".$object->id, $langs->trans("DeleteACompany"), $langs->trans("ConfirmDeleteCompany"), "confirm_delete", '', 0, "action-delete"); } if ($action == 'merge') { $formquestion = array( array( 'name' => 'soc_origin', 'label' => $langs->trans('MergeOriginThirdparty'), 'type' => 'other', 'value' => $form->select_company('', 'soc_origin', '', 'SelectThirdParty', 1, 0, array(), 0, 'minwidth200', '', '', 1, array(), false, array($object->id)) ) ); $formconfirm .= $form->formconfirm($_SERVER["PHP_SELF"]."?socid=".$object->id, $langs->trans("MergeThirdparties"), $langs->trans("ConfirmMergeThirdparties"), "confirm_merge", $formquestion, 'no', 1, 250); } // Clone confirmation if (($action == 'clone' && (empty($conf->use_javascript_ajax) || !empty($conf->dol_use_jmobile))) // Output when action = clone if jmobile or no js || (!empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile))) { // Always output when not jmobile nor js // Define confirmation messages $formquestionclone = array( 'text' => $langs->trans("ConfirmClone"), 0 => array('type' => 'text', 'name' => 'clone_name', 'label' => $langs->trans("NewSocNameForClone"), 'value' => empty($tmpcode) ? $langs->trans("CopyOf").' '.$object->nom : $tmpcode, 'morecss' => 'width250'), ); $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); } // Call Hook formConfirm $parameters = array('formConfirm' => $formconfirm); $reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook if (empty($reshook)) { $formconfirm .= $hookmanager->resPrint; } elseif ($reshook > 0) { $formconfirm = $hookmanager->resPrint; } // Print form confirm print $formconfirm; dol_htmloutput_mesg(is_numeric($error) ? '' : $error, $errors, 'error'); $linkback = ''.$langs->trans("BackToList").''; dol_banner_tab($object, 'socid', $linkback, ($user->socid ? 0 : 1), 'rowid', 'nom'); // Call Hook tabContentViewThirdparty $parameters = array(); // Note that $action and $object may be modified by hook $reshook = $hookmanager->executeHooks('tabContentViewThirdparty', $parameters, $object, $action); if (empty($reshook)) { print '
'; print '
'; print '
'; print ''; // Type Prospect/Customer/Supplier print ''; // Prefix if (getDolGlobalString('SOCIETE_USEPREFIX')) { // Old not used prefix field print ''; print ''; } // Customer code if ($object->client) { print ''; print ''; print ''; } // Supplier code 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) { print ''; print ''; } // Barcode if (isModEnabled('barcode')) { print ''; print ''; } // Prof ids $i = 1; $j = 0; $NBPROFIDMIN = getDolGlobalInt('THIRDPARTY_MIN_NB_PROF_ID', 2); $NBPROFIDMAX = getDolGlobalInt('THIRDPARTY_MAX_NB_PROF_ID', 6); while ($i <= $NBPROFIDMAX) { $idprof = $langs->transcountry('ProfId'.$i, $object->country_code); if (!empty($conf->dol_optimize_smallscreen)) { $idprof = $langs->transcountry('ProfId'.$i.'Short', $object->country_code); } if ($idprof != '-' && ($i <= $NBPROFIDMIN || !empty($langs->tab_translate['ProfId'.$i.$object->country_code]))) { print ''; print ''; print ''; $j++; } $i++; } // This fields are used to know VAT to include in an invoice when the thirdparty is making a sale, so when it is a supplier. // We don't need them into customer profile. // Except for spain and localtax where localtax depends on buyer and not seller if ($object->fournisseur) { // VAT is used print ''; print ''; if (getDolGlobalString('ACCOUNTING_FORCE_ENABLE_VAT_REVERSE_CHARGE')) { // VAT reverse charge by default print ''; print ''; } } // Local Taxes if ($object->fournisseur || $mysoc->country_code == 'ES') { if ($mysoc->localtax1_assuj == "1" && $mysoc->localtax2_assuj == "1") { print ''; if ($object->localtax1_assuj == "1" && (!isOnlyOneLocalTax(1))) { print ''; print ''; print ''; print ''; if ($action == 'editRE') { print ''; } else { print ''; } print ''; } if ($object->localtax2_assuj == "1" && (!isOnlyOneLocalTax(2))) { print ''; print ''; print ''; print ''; if ($action == 'editIRPF') { print ''; } else { print ''; } print ''; } } elseif ($mysoc->localtax1_assuj == "1" && $mysoc->localtax2_assuj != "1") { print ''; if ($object->localtax1_assuj == "1" && (!isOnlyOneLocalTax(1))) { print ''; print ''; print ''; print ''; if ($action == 'editRE') { print ''; } else { print ''; } print ''; } } elseif ($mysoc->localtax2_assuj == "1" && $mysoc->localtax1_assuj != "1") { print ''; if ($object->localtax2_assuj == "1" && (!isOnlyOneLocalTax(2))) { print ''; print ''; print ''; print ''; if ($action == 'editIRPF') { print ''; } else { print ''; } print ''; } } } // Sale tax code (VAT code) print ''; print ''; // Warehouse if (isModEnabled('stock') && getDolGlobalString('SOCIETE_ASK_FOR_WAREHOUSE')) { $langs->load('stocks'); require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php'; $formproduct = new FormProduct($db); print ''; print ''; print ''; } print '
'.$langs->trans('NatureOfThirdParty').''; print $object->getTypeUrl(1); print '
'.$langs->trans('Prefix').''.dol_escape_htmltag($object->prefix_comm).'
'; print $langs->trans('CustomerCode'); print ''; print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_client)); $tmpcheck = $object->check_codeclient(); if ($tmpcheck != 0 && $tmpcheck != -5) { print ' ('.$langs->trans("WrongCustomerCode").')'; } print '
'; print $langs->trans('SupplierCode').''; print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur)); $tmpcheck = $object->check_codefournisseur(); if ($tmpcheck != 0 && $tmpcheck != -5) { print ' ('.$langs->trans("WrongSupplierCode").')'; } print '
'; print $langs->trans('Gencod').''.showValueWithClipboardCPButton(dol_escape_htmltag($object->barcode)); print '
'.$idprof.''; $key = 'idprof'.$i; print dol_print_profids($object->$key, 'ProfId'.$i, $object->country_code, 1); if ($object->$key) { if ($object->id_prof_check($i, $object) > 0) { if (!empty($object->id_prof_url($i, $object))) { print '   '.$object->id_prof_url($i, $object); } } else { print ' ('.$langs->trans("ErrorWrongValue").')'; } } print '
'; print $form->textwithpicto($langs->trans('VATIsUsed'), $langs->trans('VATIsUsedWhenSelling')); print ''; print yn($object->tva_assuj); print '
'; print $form->textwithpicto($langs->trans('VATReverseChargeByDefault'), $langs->trans('VATReverseChargeByDefaultDesc')); print ''; print 'vat_reverse_charge == '1' ? ' checked' : '') . ' disabled>'; print '
'.$langs->transcountry("LocalTax1IsUsed", $mysoc->country_code).''; print yn($object->localtax1_assuj); print '
'.$langs->transcountry("LocalTax2IsUsed", $mysoc->country_code).''; print yn($object->localtax2_assuj); print '
'.$langs->transcountry("Localtax1", $mysoc->country_code).' id.'">'.img_edit($langs->transnoentitiesnoconv('Edit'), 1).''; $formcompany->select_localtax(1, $object->localtax1_value, "lt1"); print ''.$object->localtax1_value.'
'.$langs->transcountry("Localtax2", $mysoc->country_code).'id.'">'.img_edit($langs->transnoentitiesnoconv('Edit'), 1).''; $formcompany->select_localtax(2, $object->localtax2_value, "lt2"); print ''.$object->localtax2_value.'
'.$langs->transcountry("LocalTax1IsUsed", $mysoc->country_code).''; print yn($object->localtax1_assuj); print '
'.$langs->transcountry("Localtax1", $mysoc->country_code).'id.'">'.img_edit($langs->transnoentitiesnoconv('Edit'), 1).''; $formcompany->select_localtax(1, $object->localtax1_value, "lt1"); print ''.$object->localtax1_value.'
'.$langs->transcountry("LocalTax2IsUsed", $mysoc->country_code).''; print yn($object->localtax2_assuj); print '
'.$langs->transcountry("Localtax2", $mysoc->country_code).' id.'">'.img_edit($langs->transnoentitiesnoconv('Edit'), 1).''; $formcompany->select_localtax(2, $object->localtax2_value, "lt2"); print ''.$object->localtax2_value.'
'.$langs->trans('VATIntra').''; if ($object->tva_intra) { $s = ''; $s .= dol_print_profids($object->tva_intra, 'VAT', $object->country_code, 1); $s .= ''; if (!getDolGlobalString('MAIN_DISABLEVATCHECK') && isInEEC($object)) { $s .= '   '; if ($conf->use_javascript_ajax) { $widthpopup = 600; if (!empty($conf->dol_use_jmobile)) { $widthpopup = 350; } $heightpopup = 400; print "\n"; print ''; print "\n"; $s .= ''.$langs->trans("VATIntraCheck").''; $s = $form->textwithpicto($s, $langs->trans("VATIntraCheckDesc", $langs->transnoentitiesnoconv("VATIntraCheck")), 1); } else { $s .= 'country_id).'" class="hideonsmartphone" target="_blank" rel="noopener noreferrer">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"), 'help').''; } } print $s; } else { print ' '; } print '
'; print $form->editfieldkey("Warehouse", 'warehouse', '', $object, $user->hasRight('societe', 'creer')); print ''; if ($action == 'editwarehouse') { $formproduct->formSelectWarehouses($_SERVER['PHP_SELF'].'?id='.$object->id, $object->fk_warehouse, 'fk_warehouse', 1); } else { if ($object->fk_warehouse > 0) { print img_picto('', 'stock', 'class="paddingrightonly"'); } $formproduct->formSelectWarehouses($_SERVER['PHP_SELF'].'?id='.$object->id, $object->fk_warehouse, 'none'); } print '
'; print '
'; print '
'; print '
'; print ''; // Tags / categories if (isModEnabled('category') && $user->hasRight('categorie', 'lire')) { // Customer if ($object->prospect || $object->client || getDolGlobalString('THIRDPARTY_CAN_HAVE_CUSTOMER_CATEGORY_EVEN_IF_NOT_CUSTOMER_PROSPECT')) { print ''; print '"; } // Supplier 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) { print ''; print '"; } } // Third-Party Type print ''; // Workforce/Staff if (!getDolGlobalString('SOCIETE_DISABLE_WORKFORCE')) { print ''; } // Legal print ''; // Capital print ''; // Unsubscribe opt-out if (isModEnabled('mailing')) { $result = $object->getNoEmail(); if ($result < 0) { setEventMessages($object->error, $object->errors, 'errors'); } print ''; } // Default language if (getDolGlobalInt('MAIN_MULTILANGS')) { require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; print ''; } // Incoterms if (isModEnabled('incoterm')) { print ''; } // Multicurrency if (isModEnabled("multicurrency")) { print ''; print ''; print ''; } if (getDolGlobalString('ACCOUNTANCY_USE_PRODUCT_ACCOUNT_ON_THIRDPARTY')) { // Accountancy sell code print ''; // Accountancy buy code print ''; } // Other attributes $parameters = array('socid' => $socid, 'colspan' => ' colspan="3"', 'colspanvalue' => '3'); include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php'; // Parent company if (!getDolGlobalString('SOCIETE_DISABLE_PARENTCOMPANY')) { print ''; } // Sales representative include DOL_DOCUMENT_ROOT.'/societe/tpl/linesalesrepresentative.tpl.php'; // Module Adherent if (isModEnabled('member')) { $langs->load("members"); print ''; print '\n"; } // Link user (you must create a contact to get a user) /* print ''; */ print '
'.$langs->trans("CustomersCategoriesShort").''; print $form->showCategories($object->id, Categorie::TYPE_CUSTOMER, 1); print "
'.$langs->trans("SuppliersCategoriesShort").''; print $form->showCategories($object->id, Categorie::TYPE_SUPPLIER, 1); print "
'; print ''; if ($action != 'editthirdpartytype' && $user->hasRight('societe', 'creer')) { print ''; } print '
'.$langs->trans('ThirdPartyType').'id.'">'.img_edit($langs->transnoentitiesnoconv('Edit'), 1).'
'; print '
'; $html_name = ($action == 'editthirdpartytype') ? 'typent_id' : 'none'; $formcompany->formThirdpartyType($_SERVER['PHP_SELF'].'?socid='.$object->id, $object->typent_id, $html_name, ''); print '
'.$langs->trans("Workforce").''.$object->effectif.'
'.$langs->trans('JuridicalStatus').''.dolPrintHTML($object->forme_juridique).'
'.$langs->trans('Capital').''; if ($object->capital) { if (isModEnabled("multicurrency") && !empty($object->multicurrency_code)) { print price($object->capital, 0, $langs, 0, -1, -1, $object->multicurrency_code); } else { print price($object->capital, 0, $langs, 0, -1, -1, $conf->currency); } } else { print ' '; } print '
'.$langs->trans("No_Email").''; if ($object->email) { print yn($object->no_email); } else { $langs->load("mails"); print ''.$langs->trans("EMailNotDefined").''; } $langs->load("mails"); print '   '.$object->getNbOfEMailings().''; print '
'.$langs->trans("DefaultLang").''; //$s=picto_from_langcode($object->default_lang); //print ($s?$s.' ':''); $langs->load("languages"); $labellang = ($object->default_lang ? $langs->trans('Language_'.$object->default_lang) : ''); print picto_from_langcode($object->default_lang, 'class="paddingrightonly saturatemedium opacitylow"'); print $labellang; print '
'; print ''; if ($action != 'editincoterm' && $user->hasRight('societe', 'creer')) { print ''; } print '
'.$langs->trans('IncotermLabel').''.img_edit('', 1).'
'; print '
'; if ($action != 'editincoterm') { print $form->textwithpicto($object->display_incoterms(), $object->label_incoterms, 1); } else { print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms) ? $object->location_incoterms : ''), $_SERVER['PHP_SELF'].'?socid='.$object->id); } print '
'.$form->editfieldkey('Currency', 'multicurrency_code', '', $object, 0).''; print !empty($object->multicurrency_code) ? currency_name($object->multicurrency_code, 1) : ''; print '
'; print $langs->trans("ProductAccountancySellCode"); print ''; if (isModEnabled('accounting')) { if (!empty($object->accountancy_code_sell)) { $accountingaccount = new AccountingAccount($db); $accountingaccount->fetch(0, $object->accountancy_code_sell, 1); print $accountingaccount->getNomUrl(0, 1, 1, '', 1); } } else { print $object->accountancy_code_sell; } print '
'; print $langs->trans("ProductAccountancyBuyCode"); print ''; if (isModEnabled('accounting')) { if (!empty($object->accountancy_code_buy)) { $accountingaccount2 = new AccountingAccount($db); $accountingaccount2->fetch(0, $object->accountancy_code_buy, 1); print $accountingaccount2->getNomUrl(0, 1, 1, '', 1); } } else { print $object->accountancy_code_buy; } print '
'; print ''; if ($action != 'editparentcompany' && $user->hasRight('societe', 'creer')) { print ''; } print '
'.$langs->trans('ParentCompany').'id.'">'.img_edit($langs->transnoentitiesnoconv('Edit'), 1).'
'; print '
'; $html_name = ($action == 'editparentcompany') ? 'parent_id' : 'none'; $form->form_thirdparty($_SERVER['PHP_SELF'].'?socid='.$object->id, $object->parent, $html_name, '', 1, 0, 0, array(), 0, array($object->id)); print '
'.$langs->trans("LinkedToDolibarrMember").''; $adh = new Adherent($db); $result = $adh->fetch(0, '', $object->id); if ($result > 0) { $adh->ref = $adh->getFullName($langs); print $adh->getNomUrl(-1); } else { print ''.$langs->trans("ThirdpartyNotLinkedToMember").''; } print "
'.$langs->trans("DolibarrLogin").''; if ($object->user_id) { $dolibarr_user = new User($db); $result = $dolibarr_user->fetch($object->user_id); print $dolibarr_user->getLoginUrl(-1); } else { //print ''.$langs->trans("NoDolibarrAccess").''; if (!$object->user_id && $user->hasRight('user', 'user', 'creer')) { print ''.img_picto($langs->trans("CreateDolibarrLogin"), 'add').' '.$langs->trans("CreateDolibarrLogin").''; } } print '
'; print '
'; print '
'; print '
'; } print dol_get_fiche_end(); /* * Actions */ if ($action != 'presend') { print '
'."\n"; $parameters = array(); $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook if (empty($reshook)) { $at_least_one_email_contact = false; $TContact = $object->contact_array_objects(); foreach ($TContact as &$contact) { if (!empty($contact->email)) { $at_least_one_email_contact = true; break; } } if (empty($user->socid)) { $langs->load("mails"); $title = ''; if (empty($object->email) && !$at_least_one_email_contact) { $title = $langs->trans('NoEMail'); } 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); } print dolGetButtonAction('', $langs->trans('Modify'), 'default', $_SERVER["PHP_SELF"].'?socid='.$object->id.'&action=edit&token='.newToken(), '', $permissiontoadd); if (!empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile)) { $cloneSocietetUrl = ''; $cloneButtonId = 'action-clone'; } else { $cloneSocietetUrl = ''; $cloneButtonId = ''; } print dolGetButtonAction($langs->trans('ToClone'), '', 'default', $cloneSocietetUrl, $cloneButtonId, $user->hasRight('societe', 'creer')); if (isModEnabled('member')) { $adh = new Adherent($db); $result = $adh->fetch(0, '', $object->id); if ($result == 0 && ($object->client == 1 || $object->client == 3) && getDolGlobalString('MEMBER_CAN_CONVERT_CUSTOMERS_TO_MEMBERS')) { print ''.$langs->trans("NewMember").''."\n"; } } print dolGetButtonAction($langs->trans('MergeThirdparties'), $langs->trans('Merge'), 'danger', $_SERVER["PHP_SELF"].'?socid='.$object->id.'&action=merge&token='.newToken(), '', $permissiontodelete); $deleteUrl = $_SERVER["PHP_SELF"].'?socid='.$object->id.'&action=delete&token='.newToken(); $buttonId = 'action-delete-no-ajax'; if ($conf->use_javascript_ajax && empty($conf->dol_use_jmobile)) { // We can't use preloaded confirm form with jmobile $deleteUrl = ''; $buttonId = 'action-delete'; } print dolGetButtonAction('', $langs->trans('Delete'), 'delete', $deleteUrl, $buttonId, $permissiontodelete); } print '
'."\n"; } //Select mail models is same action as presend if (GETPOST('modelselected')) { $action = 'presend'; } if ($action != 'presend') { print '
'; if (!getDolGlobalString('SOCIETE_DISABLE_BUILDDOC')) { print ''; // ancre /* * Generated documents */ $filedir = $conf->societe->multidir_output[$object->entity].'/'.$object->id; $urlsource = $_SERVER["PHP_SELF"]."?socid=".$object->id; $genallowed = $user->hasRight('societe', 'lire'); $delallowed = $user->hasRight('societe', 'creer'); 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); } // Subsidiaries list if (!getDolGlobalString('SOCIETE_DISABLE_PARENTCOMPANY') && !getDolGlobalString('SOCIETE_DISABLE_SHOW_SUBSIDIARIES')) { print '
'; $result = show_subsidiaries($conf, $langs, $db, $object); } print '
'; $MAXEVENT = 10; $morehtmlcenter = '
'; $morehtmlcenter .= dolGetButtonTitle($langs->trans('FullConversation'), '', 'fa fa-comments imgforviewmode', DOL_URL_ROOT.'/societe/messaging.php?socid='.$object->id); $morehtmlcenter .= dolGetButtonTitle($langs->trans('FullList'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT.'/societe/agenda.php?socid='.$object->id); $morehtmlcenter .= '
'; // List of actions on element include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php'; $formactions = new FormActions($db); $somethingshown = $formactions->showactions($object, '', $socid, 1, '', $MAXEVENT, '', $morehtmlcenter); // Show all action for thirdparty print '
'; if (getDolGlobalString('MAIN_DUPLICATE_CONTACTS_TAB_ON_MAIN_CARD')) { // Contacts list if (!getDolGlobalString('SOCIETE_DISABLE_CONTACTS')) { $result = show_contacts($conf, $langs, $db, $object, $_SERVER["PHP_SELF"].'?socid='.$object->id); } } } // Presend form $modelmail = 'thirdparty'; $defaulttopic = 'Information'; $diroutput = $conf->societe->multidir_output[$object->entity]; $trackid = 'thi'.$object->id; include DOL_DOCUMENT_ROOT.'/core/tpl/card_presend.tpl.php'; } } // End of page llxFooter(); $db->close(); ?>