dolibarr 20.0.0
linesalesrepresentative.tpl.php
1<?php
2/* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
18// Protection to avoid direct call of template
19if (empty($conf) || !is_object($conf)) {
20 print "Error, template page can't be called as URL";
21 exit(1);
22}
23
24print '<!-- linesalesrepresentative.tpl.php -->';
25
26// Sale representative
27print '<tr><td>';
28print '<table class="nobordernopadding centpercent"><tr><td>';
29print $langs->trans('SalesRepresentatives');
30print '</td>';
31if ($action != 'editsalesrepresentatives' && $user->hasRight('societe', 'creer')) {
32 print '<td class="right">';
33 print '<a class="editfielda reposition" href="'.$_SERVER["PHP_SELF"].'?action=editsalesrepresentatives&token='.newToken().'&socid='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('Edit'), 1).'</a>';
34 print '</td>';
35}
36print '</tr></table>';
37print '</td><td colspan="3">';
38
39if ($action == 'editsalesrepresentatives') {
40 print '<form method="post" action="'.$_SERVER['PHP_SELF'].'">';
41 print '<input type="hidden" name="action" value="set_salesrepresentatives" />';
42 print '<input type="hidden" name="token" value="'.newToken().'" />';
43 print '<input type="hidden" name="socid" value="'.$object->id.'" />';
44 $userlist = $form->select_dolusers('', '', 0, null, 0, '', '', 'default', 0, 0, '', 0, '', '', 0, 1);
45
46 $arrayselected = GETPOST('commercial', 'array');
47 if (empty($arrayselected)) {
48 $arrayselected = $object->getSalesRepresentatives($user, 1);
49 }
50 print $form->multiselectarray('commercial', $userlist, $arrayselected, null, null, null, null, "90%");
51 print '<input type="submit" class="button valignmiddle smallpaddingimp" value="'.$langs->trans("Modify").'" />';
52 print '</form>';
53} else {
54 $listsalesrepresentatives = $object->getSalesRepresentatives($user);
55
56 $nbofsalesrepresentative = count($listsalesrepresentatives);
57 if ($nbofsalesrepresentative > 0 && is_array($listsalesrepresentatives)) {
58 $userstatic = new User($db);
59 foreach ($listsalesrepresentatives as $val) {
60 $userstatic->id = $val['id'];
61 $userstatic->login = $val['login'];
62 $userstatic->lastname = $val['lastname'];
63 $userstatic->firstname = $val['firstname'];
64 $userstatic->status = $val['statut'];
65 $userstatic->photo = $val['photo'];
66 $userstatic->email = $val['email'];
67 $userstatic->office_phone = $val['office_phone'];
68 $userstatic->user_mobile = $val['user_mobile'];
69 $userstatic->job = $val['job'];
70 $userstatic->entity = $val['entity'];
71 $userstatic->gender = $val['gender'];
72 print $userstatic->getNomUrl(-1, '', 0, 0, ($nbofsalesrepresentative > 1 ? 16 : (empty($conf->dol_optimize_smallscreen) ? 24 : 20)));
73 print ' ';
74 }
75 } else {
76 print '<span class="opacitymedium">'.$langs->trans("NoSalesRepresentativeAffected").'</span>';
77 }
78 print '</td></tr>';
79}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
Class to manage Dolibarr users.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.