dolibarr 23.0.3
societecontact.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005 Patrick Rouillon <patrick@rouillon.net>
3 * Copyright (C) 2005-2011 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2011-2015 Philippe Grand <philippe.grand@atoo-net.com>
6 * Copyright (C) 2014 Charles-Fr Benke <charles.fr@benke.fr>
7 * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
8 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
32// Load Dolibarr environment
33require '../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
35require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
36require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
37require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
38
47// Load translation files required by the page
48$langs->loadLangs(array('companies', 'orders'));
49
50// Get parameters
51$id = GETPOSTINT('id') ? GETPOSTINT('id') : GETPOSTINT('socid');
52$ref = GETPOST('ref', 'alpha');
53$action = GETPOST('action', 'aZ09');
54$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'thirdpartylist';
55$massaction = GETPOST('massaction', 'alpha');
56$optioncss = GETPOST('optioncss', 'alpha');
57
58$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
59$sortfield = GETPOST('sortfield', 'aZ09comma');
60$sortorder = GETPOST('sortorder', 'aZ09comma');
61$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
62if (!$sortorder) {
63 $sortorder = "ASC";
64}
65if (!$sortfield) {
66 $sortfield = "s.nom";
67}
68if (empty($page) || $page == -1 || !empty($search_btn) || !empty($search_remove_btn) || (empty($toselect) && $massaction === '0')) {
69 $page = 0;
70}
71$offset = $limit * $page;
72$pageprev = $page - 1;
73$pagenext = $page + 1;
74
75// Security check
76if ($user->socid) {
77 $socid = $user->socid;
78}
79
80// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
81$hookmanager->initHooks(array('thirdpartycontact', 'thirdpartycontactcard', 'globalcard'));
82
83$result = restrictedArea($user, 'societe', $id, '');
84
85
86// Initialize objects
87$object = new Societe($db);
88
89/*
90 * Actions
91 */
92
93$parameters = array('id' => $id);
94$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
95if ($reshook < 0) {
96 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
97}
98if (empty($reshook)) {
99 if ($action == 'addcontact' && $user->hasRight('societe', 'creer')) {
100 $result = $object->fetch($id);
101
102 if ($result > 0 && $id > 0) {
103 $contactid = (GETPOSTINT('userid') ? GETPOSTINT('userid') : GETPOSTINT('contactid'));
104 $typeid = (GETPOST('typecontact') ? GETPOST('typecontact') : GETPOST('type'));
105 $result = $object->add_contact($contactid, $typeid, GETPOST("source", 'aZ09'));
106 }
107
108 if ($result >= 0) {
109 header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
110 exit;
111 } else {
112 if ($object->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
113 $langs->load("errors");
114 $mesg = '<div class="error">'.$langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType").'</div>';
115 } else {
116 $mesg = '<div class="error">'.$object->error.'</div>';
117 }
118 }
119 } elseif ($action == 'swapstatut' && $user->hasRight('societe', 'creer')) {
120 // bascule du statut d'un contact
121 if ($object->fetch($id)) {
122 $result = $object->swapContactStatus(GETPOSTINT('ligne'));
123 } else {
124 dol_print_error($db);
125 }
126 } elseif ($action == 'deletecontact' && $user->hasRight('societe', 'creer')) {
127 // Efface un contact
128 $object->fetch($id);
129 $result = $object->delete_contact(GETPOSTINT("lineid"));
130
131 if ($result >= 0) {
132 header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
133 exit;
134 } else {
135 dol_print_error($db);
136 }
137 }
138}
139
140
141/*
142 * View
143 */
144
145$form = new Form($db);
146$formcompany = new FormCompany($db);
147$formother = new FormOther($db);
148$contactstatic = new Contact($db);
149$userstatic = new User($db);
150
151$title = $langs->trans("ContactAddress", $object->name);
152if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/thirdpartynameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->name) {
153 $title = $object->name." - ".$title;
154}
155$help_url = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
156llxHeader('', $title, $help_url);
157
158
159// View and edit
160
161if ($id > 0 || !empty($ref)) {
162 if ($object->fetch($id, $ref) > 0) {
163 $head = societe_prepare_head($object);
164 print dol_get_fiche_head($head, 'contactext', $langs->trans("ThirdParty"), -1, 'company');
165
166 print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
167 print '<input type="hidden" name="token" value="'.newToken().'">';
168
169 $linkback = '<a href="'.DOL_URL_ROOT.'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
170
171 dol_banner_tab($object, 'socid', $linkback, ($user->socid ? 0 : 1), 'rowid', 'nom');
172
173 print '<div class="fichecenter">';
174
175 print '<div class="underbanner clearboth"></div>';
176 print '<table class="border centpercent">';
177
178 // Prospect/Customer
179 /*print '<tr><td class="titlefield">'.$langs->trans('ProspectCustomer').'</td><td>';
180 print $object->getLibCustProspStatut();
181 print '</td></tr>';
182
183 // Supplier
184 print '<tr><td>'.$langs->trans('Supplier').'</td><td>';
185 print yn($object->fournisseur);
186 print '</td></tr>';*/
187
188 if ($object->client) {
189 print '<tr><td class="titlefield">';
190 print $langs->trans('CustomerCode').'</td><td colspan="3">';
191 print $object->code_client;
192 $tmpcheck = $object->check_codeclient();
193 if ($tmpcheck != 0 && $tmpcheck != -5) {
194 print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
195 }
196 print '</td></tr>';
197 }
198
199 if ($object->fournisseur) {
200 print '<tr><td class="titlefield">';
201 print $langs->trans('SupplierCode').'</td><td colspan="3">';
202 print $object->code_fournisseur;
203 $tmpcheck = $object->check_codefournisseur();
204 if ($tmpcheck != 0 && $tmpcheck != -5) {
205 print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
206 }
207 print '</td></tr>';
208 }
209 print '</table>';
210
211 print '</div>';
212
213 print '</form>';
214 print '<br>';
215
216 // Contacts lines (modules that overwrite templates must declare this into descriptor)
217 $dirtpls = array_merge($conf->modules_parts['tpl'], array('/core/tpl'));
218 foreach ($dirtpls as $reldir) {
219 $res = @include dol_buildpath($reldir.'/contacts.tpl.php');
220 if ($res) {
221 break;
222 }
223 }
224
225 // additional list with adherents of company
226 if (isModEnabled('member') && $user->hasRight('adherent', 'lire')) {
227 require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
228 require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent_type.class.php';
229
230 $membertypestatic = new AdherentType($db);
231 $memberstatic = new Adherent($db);
232
233 $langs->load("members");
234 $sql = "SELECT d.rowid, d.login, d.lastname, d.firstname, d.societe as company, d.fk_soc,";
235 $sql .= " d.datefin,";
236 $sql .= " d.email, d.fk_adherent_type as type_id, d.morphy, d.statut,";
237 $sql .= " t.libelle as type_label, t.subscription";
238 $sql .= " FROM ".MAIN_DB_PREFIX."adherent as d";
239 $sql .= ", ".MAIN_DB_PREFIX."adherent_type as t";
240 $sql .= " WHERE d.entity IN (".getEntity('member').")";
241 $sql .= " AND d.fk_soc = ".((int) $id);
242 $sql .= " AND d.fk_adherent_type = t.rowid";
243
244 dol_syslog("get list sql=".$sql);
245 $resql = $db->query($sql);
246 if ($resql) {
247 $num = $db->num_rows($resql);
248
249 if ($num > 0) {
250 $param = '';
251
252 $titre = $langs->trans("MembersListOfTiers");
253 print '<br>';
254
255 print_barre_liste($titre, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, 0, '');
256
257 print "<table class=\"noborder\" width=\"100%\">";
258 print '<tr class="liste_titre">';
259 print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "d.rowid", "", $param, "", $sortfield, $sortorder);
260 print_liste_field_titre("NameSlashCompany", $_SERVER["PHP_SELF"], "d.lastname", "", $param, "", $sortfield, $sortorder);
261 print_liste_field_titre("Login", $_SERVER["PHP_SELF"], "d.login", "", $param, "", $sortfield, $sortorder);
262 print_liste_field_titre("Type", $_SERVER["PHP_SELF"], "t.libelle", "", $param, "", $sortfield, $sortorder);
263 print_liste_field_titre("Person", $_SERVER["PHP_SELF"], "d.morphy", "", $param, "", $sortfield, $sortorder);
264 print_liste_field_titre("EMail", $_SERVER["PHP_SELF"], "d.email", "", $param, "", $sortfield, $sortorder);
265 print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "d.statut,d.datefin", "", $param, "", $sortfield, $sortorder);
266 print_liste_field_titre("EndSubscription", $_SERVER["PHP_SELF"], "d.datefin", "", $param, '', $sortfield, $sortorder, 'center ');
267 print "</tr>\n";
268
269 $i = 0;
270 while ($i < $num && $i < $conf->liste_limit) {
271 $objp = $db->fetch_object($resql);
272
273 $datefin = $db->jdate($objp->datefin);
274 $memberstatic->id = $objp->rowid;
275 $memberstatic->ref = $objp->rowid;
276 $memberstatic->lastname = $objp->lastname;
277 $memberstatic->firstname = $objp->firstname;
278 $memberstatic->statut = $objp->statut; // deprecated
279 $memberstatic->status = $objp->statut;
280 $memberstatic->datefin = $db->jdate($objp->datefin);
281
282 $companyname = $objp->company;
283
284 print '<tr class="oddeven">';
285
286 // Ref
287 print "<td>";
288 print $memberstatic->getNomUrl(1);
289 print "</td>\n";
290
291 // Lastname
292 print "<td><a href=\"card.php?rowid=$objp->rowid\">";
293 print((!empty($objp->lastname) || !empty($objp->firstname)) ? dol_trunc($memberstatic->getFullName($langs)) : '');
294 print(((!empty($objp->lastname) || !empty($objp->firstname)) && !empty($companyname)) ? ' / ' : '');
295 print(!empty($companyname) ? dol_trunc($companyname, 32) : '');
296 print "</a></td>\n";
297
298 // Login
299 print "<td>".$objp->login."</td>\n";
300
301 // Type
302 $membertypestatic->id = $objp->type_id;
303 $membertypestatic->libelle = $objp->type_label; // deprecated
304 $membertypestatic->label = $objp->type_label;
305
306 print '<td class="nowrap">';
307 print $membertypestatic->getNomUrl(1, 32);
308 print '</td>';
309
310 // Moral/Physique
311 print "<td>".$memberstatic->getmorphylib($objp->morphy)."</td>\n";
312
313 // EMail
314 print "<td>".dol_print_email($objp->email, 0, 0, 1)."</td>\n";
315
316 // Statut
317 print '<td class="nowrap">';
318 print $memberstatic->LibStatut($objp->statut, $objp->subscription, $datefin, 2);
319 print "</td>";
320
321 // End of subscription date
322 if ($datefin) {
323 print '<td class="center nowrap">';
324 print dol_print_date($datefin, 'day');
325 if ($memberstatic->hasDelay()) {
326 print " ".img_warning($langs->trans("SubscriptionLate"));
327 }
328 print '</td>';
329 } else {
330 print '<td class="left nowrap">';
331 if (!empty($objp->subscription)) {
332 print $langs->trans("SubscriptionNotReceived");
333 if ($objp->statut > 0) {
334 print " ".img_warning();
335 }
336 } else {
337 print '&nbsp;';
338 }
339 print '</td>';
340 }
341
342 print "</tr>\n";
343 $i++;
344 }
345 print "</table>\n";
346 }
347 }
348 }
349 } else {
350 // Contrat non trouve
351 print "ErrorRecordNotFound";
352 }
353}
354
355// End of page
356llxFooter();
357$db->close();
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:47
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:73
Class to manage members of a foundation.
Class to manage members type.
Class to manage contact/addresses.
Class to build HTML component for third parties management Only common components are here.
Class to manage generation of HTML components Only common components must be here.
Class permettant la generation de composants html autre Only common components are here.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
societe_prepare_head(Societe $object)
Return array of tabs to used on pages for third parties cards.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_liste_field_titre($name, $file="", $field="", $begin="", $param="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.