33require
'../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/societe/class/societe.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/societe/class/societeaccount.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
38require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
42$langs->loadLangs(array(
"companies",
"website"));
48$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
50$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'websitelist';
51$backtopage =
GETPOST(
'backtopage',
'alpha');
52$optioncss =
GETPOST(
'optioncss',
'aZ');
53$toselect =
GETPOST(
'toselect',
'array');
54$optioncss =
GETPOST(
'optioncss',
'aZ');
58$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
59$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
61if (empty($page) || $page == -1) {
64$offset = $limit * $page;
68 $sortfield =
't.login';
79$diroutputmassaction = isModEnabled(
'website') ? $conf->website->dir_output.
'/temp/massgeneration/'.$user->id :
'';
80$hookmanager->initHooks(array(
'websitethirdpartylist'));
83$extrafields->fetch_name_optionals_label($objectwebsiteaccount->table_element);
85$search_array_options = $extrafields->getOptionalsFromPost($objectwebsiteaccount->table_element,
'',
'search_');
87unset($objectwebsiteaccount->fields[
'fk_soc']);
90$search_all =
GETPOST(
"search_all",
'alpha');
92foreach ($objectwebsiteaccount->fields as $key => $val) {
93 if (
GETPOST(
'search_'.$key,
'alpha')) {
94 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
99$fieldstosearchall = array();
100foreach ($objectwebsiteaccount->fields as $key => $val) {
101 if (!empty($val[
'searchall'])) {
102 $fieldstosearchall[
't.'.$key] = $val[
'label'];
107$arrayfields = array();
108foreach ($objectwebsiteaccount->fields as $key => $val) {
110 if (!empty($val[
'visible'])) {
111 $arrayfields[
't.'.$key] = array(
'label' => $val[
'label'],
'checked' => (($val[
'visible'] < 0) ? 0 : 1),
'enabled' => $val[
'enabled']);
116include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
132$permissiontoread = $user->hasRight(
'societe',
'lire');
133$permissiontoadd = $user->hasRight(
'societe',
'create');
134$permissiontodelete = $user->hasRight(
'societe',
'supprimer');
141$parameters = array(
'id' => $id);
142$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
147if (empty($reshook)) {
149 if (
GETPOST(
'cancel',
'alpha') && !empty($backtopage)) {
150 header(
"Location: ".$backtopage);
155 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
158 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
159 foreach ($objectwebsiteaccount->fields as $key => $val) {
161 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
162 $search[$key.
'_dtstart'] =
'';
163 $search[$key.
'_dtend'] =
'';
168 $search_array_options = array();
170 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
171 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
176 $objectclass =
'WebsiteAccount';
177 $objectlabel =
'WebsiteAccount';
178 $uploaddir = $conf->societe->multidir_output[
$object->entity];
179 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
188$contactstatic =
new Contact($db);
190$form =
new Form($db);
192$langs->load(
"companies");
194$title = $langs->trans(
"WebsiteAccounts");
200$site_filter_list = array();
201if (isModEnabled(
'website')) {
202 $site_filter_list[] =
'dolibarr_website';
204if (isModEnabled(
'webportal')) {
205 $site_filter_list[] =
'dolibarr_portal';
208$sql .= $objectwebsiteaccount->getFieldList(
't');
210if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
211 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
212 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
216$parameters = array();
217$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $objectwebsiteaccount, $action);
218$sql .= $hookmanager->resPrint;
219$sql = preg_replace(
'/,\s*$/',
'', $sql);
223$sql .=
" FROM ".MAIN_DB_PREFIX.
"societe_account as t";
224if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
225 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
228$parameters = array();
229$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
230$sql .= $hookmanager->resPrint;
231if ($objectwebsiteaccount->ismultientitymanaged == 1) {
232 $sql .=
" WHERE t.entity IN (".getEntity(
'thirdpartyaccount').
")";
234 $sql .=
" WHERE 1 = 1";
236$sql .=
" AND fk_soc = ".((int)
$object->id);
237if (!empty($site_filter_list)) {
238 $sql .=
" AND t.site IN (".$db->sanitize(
"'".implode(
"','", $site_filter_list).
"'", 1).
")";
240foreach ($search as $key => $val) {
241 if (array_key_exists($key, $objectwebsiteaccount->fields)) {
242 if ($key ==
'status' && $search[$key] == -1) {
245 $mode_search = (($objectwebsiteaccount->isInt($objectwebsiteaccount->fields[$key]) || $objectwebsiteaccount->isFloat($objectwebsiteaccount->fields[$key])) ? 1 : 0);
246 if ((strpos($objectwebsiteaccount->fields[$key][
'type'],
'integer:') === 0) || (strpos($objectwebsiteaccount->fields[$key][
'type'],
'sellist:') === 0) || !empty($objectwebsiteaccount->fields[$key][
'arrayofkeyval'])) {
247 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty($objectwebsiteaccount->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0', $objectwebsiteaccount->fields[$key][
'arrayofkeyval'])))) {
252 if ($search[$key] !=
'') {
253 $sql .=
natural_search(
"t.".$db->sanitize($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
256 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
257 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
258 if (preg_match(
'/^(date|timestamp|datetime)/', $objectwebsiteaccount->fields[$columnName][
'type'])) {
259 if (preg_match(
'/_dtstart$/', $key)) {
260 $sql .=
" AND t.".$db->sanitize($columnName).
" >= '".$db->idate($search[$key]).
"'";
262 if (preg_match(
'/_dtend$/', $key)) {
263 $sql .=
" AND t.".$db->sanitize($columnName).
" <= '".$db->idate($search[$key]).
"'";
273 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
276include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
278$parameters = array();
279$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $objectwebsiteaccount, $action);
280$sql .= $hookmanager->resPrint;
297$nbtotalofrecords =
'';
299 $resql = $db->query($sql);
300 $nbtotalofrecords = $db->num_rows($resql);
301 if (($page * $limit) > $nbtotalofrecords) {
309$sql .= $db->order($sortfield, $sortorder);
311 $sql .= $db->plimit($limit + 1, $offset);
314$resql = $db->query($sql);
320$num = $db->num_rows($resql);
328$arrayofselected = is_array($toselect) ? $toselect : array();
330$param =
'id='.$object->id;
332 $param .=
'&mode='.urlencode($mode);
334if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
335 $param .=
'&contextpage='.urlencode($contextpage);
337if ($limit > 0 && $limit != $conf->liste_limit) {
338 $param .=
'&limit='.((int) $limit);
340if ($optioncss !=
'') {
341 $param .=
'&optioncss='.urlencode($optioncss);
343foreach ($search as $key => $val) {
344 if (is_array($search[$key])) {
345 foreach ($search[$key] as $skey) {
347 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
350 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
351 $param .=
'&search_'.$key.
'month='.((int)
GETPOST(
'search_'.$key.
'month',
'int'));
352 $param .=
'&search_'.$key.
'day='.((int)
GETPOST(
'search_'.$key.
'day',
'int'));
353 $param .=
'&search_'.$key.
'year='.((int)
GETPOST(
'search_'.$key.
'year',
'int'));
354 } elseif ($search[$key] !=
'') {
355 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
359include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
363print
dol_get_fiche_head($head,
'website', $langs->trans(
"ThirdParty"), - 1,
'company');
365$linkback =
'<a href="'.DOL_URL_ROOT.
'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
367dol_banner_tab($object,
'socid', $linkback, ($user->socid ? 0 : 1),
'rowid',
'nom');
369print
'<div class="fichecenter">';
371print
'<div class="underbanner clearboth"></div>';
372print
'<table class="border centpercent tableforfield">';
377print
'<tr><td class="titlefield">'.$langs->trans(
'NatureOfThirdParty').
'</td><td>';
378print $socstat->getTypeUrl(1);
382if ($socstat->client && !empty($socstat->code_client)) {
383 print
'<tr><td class="titlefield">';
384 print $langs->trans(
'CustomerCode').
'</td><td>';
386 $tmpcheck = $socstat->check_codeclient();
387 if ($tmpcheck != 0 && $tmpcheck != -5) {
388 print
' <span class="error">('.$langs->trans(
"WrongCustomerCode").
')</span>';
394if ($socstat->fournisseur && !empty($socstat->code_fournisseur)) {
395 print
'<tr><td class="titlefield">';
396 print $langs->trans(
'SupplierCode').
'</td><td>';
398 $tmpcheck = $socstat->check_codefournisseur();
399 if ($tmpcheck != 0 && $tmpcheck != -5) {
400 print
' <span class="error">('.$langs->trans(
"WrongSupplierCode").
')</span>';
413if (isModEnabled(
'website') || isModEnabled(
'webportal')) {
414 if ($user->hasRight(
'societe',
'lire')) {
415 $newcardbutton .=
dolGetButtonTitle($langs->trans(
"AddWebsiteAccount"),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/website/websiteaccount_card.php?action=create&fk_soc='.
$object->id.
'&backtopage='.urlencode($_SERVER[
"PHP_SELF"].
'?id='.
$object->id));
417 $newcardbutton .=
dolGetButtonTitle($langs->trans(
"AddAction"),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/website/websiteaccount_card.php?action=create&fk_soc='.
$object->id.
'&backtopage='.urlencode($_SERVER[
"PHP_SELF"].
'?id='.
$object->id),
'', 0);
426$arrayofmassactions = array(
430if ($user->hasRight(
'mymodule',
'delete')) {
431 $arrayofmassactions[
'predelete'] =
'<span class="fa fa-trash paddingrightonly"></span>'.$langs->trans(
"Delete");
433if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
434 $arrayofmassactions = array();
436$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
438print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
439if ($optioncss !=
'') {
440 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
442print
'<input type="hidden" name="token" value="'.newToken().
'">';
443print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
444print
'<input type="hidden" name="action" value="list">';
445print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
446print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
447print
'<input type="hidden" name="page" value="'.$page.
'">';
448print
'<input type="hidden" name="id" value="'.$id.
'">';
449print
'<input type="hidden" name="page_y" value="">';
450print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
452print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'', 0, $newcardbutton,
'', $limit);
454$topicmail =
"Information";
455$modelmail =
"societeaccount";
457$trackid =
'thi'.$object->id;
458include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
471$parameters = array();
472$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $objectwebsiteaccount, $action);
473if (empty($reshook)) {
474 $moreforfilter .= $hookmanager->resPrint;
476 $moreforfilter = $hookmanager->resPrint;
479if (!empty($moreforfilter)) {
480 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
481 print $moreforfilter;
485$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
486$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
487$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
488$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
490print
'<div class="div-table-responsive">';
491print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
496print
'<tr class="liste_titre_filter">';
499 print
'<td class="liste_titre center maxwidthsearch">';
500 $searchpicto = $form->showFilterButtons(
'left');
504foreach ($objectwebsiteaccount->fields as $key => $val) {
506 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
507 if ($key ==
'status') {
508 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
509 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
510 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
511 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
512 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
513 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'id',
'rowid',
'ref',
'status')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
514 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
516 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
517 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
518 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
519 print $form->selectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] :
''), 1, 0, 0,
'', 1, 0, 0,
'',
'maxwidth100'.($key ==
'status' ?
' search_status width100 onrightofpage' :
''), 1);
520 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
522 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(empty($search[$key]) ?
'' : $search[$key]).
'">';
523 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
524 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(empty($search[$key]) ?
'' : $search[$key]).
'">';
532 } elseif ($key ==
'lang') {
533 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
535 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, null, 1, 0, 0,
'minwidth100imp maxwidth125', 2);
537 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
543include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
545$parameters = array(
'arrayfields' => $arrayfields);
546$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $objectwebsiteaccount, $action);
547print $hookmanager->resPrint;
550 print
'<td class="liste_titre center maxwidthsearch">';
551 $searchpicto = $form->showFilterButtons();
558$totalarray = array();
559$totalarray[
'nbfield'] = 0;
563print
'<tr class="liste_titre">';
566 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
567 $totalarray[
'nbfield']++;
569foreach ($objectwebsiteaccount->fields as $key => $val) {
570 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
571 if ($key ==
'status') {
572 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
573 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
574 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
575 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
576 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
577 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'id',
'rowid',
'ref',
'status')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
578 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
580 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
581 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
582 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
't.'.$key,
'', $param, ($cssforfield ?
'class="'.$cssforfield.
'"' :
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
''), 0, (empty($val[
'helplist']) ?
'' : $val[
'helplist'])).
"\n";
583 $totalarray[
'nbfield']++;
587include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
589$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &$totalarray);
590$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $objectwebsiteaccount, $action);
591print $hookmanager->resPrint;
594 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
595 $totalarray[
'nbfield']++;
601$needToFetchEachLine = 0;
602if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
603 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
604 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
605 $needToFetchEachLine++;
613$savnbfield = $totalarray[
'nbfield'];
614$totalarray = array();
615$totalarray[
'nbfield'] = 0;
616$imaxinloop = ($limit ? min($num, $limit) : $num);
617while ($i < $imaxinloop) {
618 $obj = $db->fetch_object($resql);
624 $objectwebsiteaccount->id = $obj->rowid;
625 $objectwebsiteaccount->login = $obj->login;
626 $objectwebsiteaccount->ref = $obj->login;
627 foreach ($objectwebsiteaccount->fields as $key => $val) {
628 if (property_exists($objectwebsiteaccount, $key)) {
629 $objectwebsiteaccount->$key = $obj->$key;
634 print
'<tr data-rowid="'.$objectwebsiteaccount->id.
'" class="oddeven">';
637 print
'<td class="nowrap center">';
638 if ($massactionbutton || $massaction) {
640 if (in_array($obj->rowid, $arrayofselected)) {
643 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
647 $totalarray[
'nbfield']++;
650 foreach ($objectwebsiteaccount->fields as $key => $val) {
651 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
652 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
653 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
654 } elseif ($key ==
'status') {
655 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
657 if (in_array($val[
'type'], array(
'timestamp'))) {
658 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
659 } elseif ($key ==
'ref') {
660 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
663 if (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'id',
'rowid',
'ref',
'status')) && empty($val[
'arrayofkeyval'])) {
664 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
667 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
668 print
'<td'.($cssforfield ?
' class="'.$cssforfield.((preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) ?
' classfortooltip' :
'').
'"' :
'');
669 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) {
670 print
' title="'.dol_escape_htmltag(
$object->$key).
'"';
680 if ($key ==
'login') {
681 print $objectwebsiteaccount->getNomUrl(1,
'', 0,
'', 1);
683 print $objectwebsiteaccount->showOutputField($val, $key, $obj->$key,
'');
687 $totalarray[
'nbfield']++;
689 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
691 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
693 if (!isset($totalarray[
'val'])) {
694 $totalarray[
'val'] = array();
696 if (!isset($totalarray[
'val'][
't.'.$key])) {
697 $totalarray[
'val'][
't.'.$key] = 0;
699 $totalarray[
'val'][
't.'.$key] += $objectwebsiteaccount->$key;
704 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
706 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $objectwebsiteaccount,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
707 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $objectwebsiteaccount, $action);
708 print $hookmanager->resPrint;
711 print
'<td class="nowrap center">';
712 if ($massactionbutton || $massaction) {
714 if (in_array($obj->rowid, $arrayofselected)) {
717 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
721 $totalarray[
'nbfield']++;
730include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
736 foreach ($arrayfields as $key => $val) {
737 if (!empty($val[
'checked'])) {
741 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
747$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
748$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $objectwebsiteaccount, $action);
749print $hookmanager->resPrint;
751print
'</table>'.
"\n";
756if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
757 $hidegeneratedfilelistifempty = 1;
758 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
759 $hidegeneratedfilelistifempty = 0;
762 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
766 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
767 $urlsource .= str_replace(
'&',
'&', $param);
769 $filedir = $diroutputmassaction;
770 $genallowed = $permissiontoread;
771 $delallowed = $permissiontoadd;
773 print $formfile->showdocuments(
'massfilesarea_mymodule',
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class for SocieteAccount.
Class to manage third parties objects (customers, suppliers, prospects...)
societe_prepare_head(Societe $object)
Return array of tabs to used on pages for third parties cards.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get 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, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
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.