123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- <?php
- /* Copyright (C) 2001-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2018 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2014-2021 Charlene Benke <charlene.r@benke.fr>
- * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
- * Copyright (C) 2016 Ferran Marcet <fmarcet@2byte.es>
- * Copyright (C) 2019 Nicolas ZABOURI <info@inovea-conseil.com>
- *
- * 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 <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/societe/index.php
- * \ingroup societe
- * \brief Home page for third parties area
- */
- // Load Dolibarr environment
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
- // Load translation files required by the page
- $langs->load("companies");
- // Initialize technical object to manage hooks. Note that conf->hooks_modules contains array
- $hookmanager = new HookManager($db);
- $hookmanager->initHooks(array('thirdpartiesindex'));
- $socid = GETPOST('socid', 'int');
- if ($user->socid) {
- $socid = $user->socid;
- }
- // Security check
- $result = restrictedArea($user, 'societe', 0, '', '', '', '');
- $thirdparty_static = new Societe($db);
- if (!isset($form) || !is_object($form)) {
- $form = new Form($db);
- }
- // Load $resultboxes
- $resultboxes = FormOther::getBoxesArea($user, "3");
- if (GETPOST('addbox')) {
- // Add box (when submit is done from a form when ajax disabled)
- require_once DOL_DOCUMENT_ROOT.'/core/class/infobox.class.php';
- $zone = GETPOST('areacode', 'int');
- $userid = GETPOST('userid', 'int');
- $boxorder = GETPOST('boxorder', 'aZ09');
- $boxorder .= GETPOST('boxcombo', 'aZ09');
- $result = InfoBox::saveboxorder($db, $zone, $boxorder, $userid);
- if ($result > 0) {
- setEventMessages($langs->trans("BoxAdded"), null);
- }
- }
- /*
- * View
- */
- $transAreaType = $langs->trans("ThirdPartiesArea");
- $helpurl = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Módulo_Terceros';
- llxHeader("", $langs->trans("ThirdParties"), $helpurl);
- print load_fiche_titre($transAreaType, $resultboxes['selectboxlist'], 'companies');
- /*
- * Statistics area
- */
- $third = array(
- 'customer' => 0,
- 'prospect' => 0,
- 'supplier' => 0,
- 'other' =>0
- );
- $total = 0;
- $sql = "SELECT s.rowid, s.client, s.fournisseur";
- $sql .= " FROM ".MAIN_DB_PREFIX."societe as s";
- if (!$user->hasRight('societe', 'client', 'voir') && !$socid) {
- $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
- }
- $sql .= ' WHERE s.entity IN ('.getEntity('societe').')';
- if (!$user->hasRight('societe', 'client', 'voir') && !$socid) {
- $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
- }
- if (!$user->hasRight('fournisseur', 'lire')) {
- $sql .= " AND (s.fournisseur <> 1 OR s.client <> 0)"; // client=0, fournisseur=0 must be visible
- }
- // Add where from hooks
- $parameters = array('socid' => $socid);
- $reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters, $thirdparty_static); // Note that $action and $object may have been modified by hook
- if (empty($reshook)) {
- if ($socid > 0) {
- $sql .= " AND s.rowid = ".((int) $socid);
- }
- }
- $sql .= $hookmanager->resPrint;
- //print $sql;
- $result = $db->query($sql);
- if ($result) {
- while ($objp = $db->fetch_object($result)) {
- $found = 0;
- if (isModEnabled('societe') && $user->hasRight('societe', 'lire') && !getDolGlobalString('SOCIETE_DISABLE_PROSPECTS') && !getDolGlobalString('SOCIETE_DISABLE_PROSPECTS_STATS') && ($objp->client == 2 || $objp->client == 3)) {
- $found = 1;
- $third['prospect']++;
- }
- if (isModEnabled('societe') && $user->hasRight('societe', 'lire') && !getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS') && !getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS_STATS') && ($objp->client == 1 || $objp->client == 3)) {
- $found = 1;
- $third['customer']++;
- }
- 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'))) && !getDolGlobalString('SOCIETE_DISABLE_SUPPLIERS_STATS') && $objp->fournisseur) {
- $found = 1;
- $third['supplier']++;
- }
- if (isModEnabled('societe') && $objp->client == 0 && $objp->fournisseur == 0) {
- $found = 1;
- $third['other']++;
- }
- if ($found) {
- $total++;
- }
- }
- } else {
- dol_print_error($db);
- }
- $thirdpartygraph = '<div class="div-table-responsive-no-min">';
- $thirdpartygraph .= '<table class="noborder nohover centpercent">'."\n";
- $thirdpartygraph .= '<tr class="liste_titre"><th colspan="2">'.$langs->trans("Statistics").'</th></tr>';
- if (!empty($conf->use_javascript_ajax) && ((round($third['prospect']) ? 1 : 0) + (round($third['customer']) ? 1 : 0) + (round($third['supplier']) ? 1 : 0) + (round($third['other']) ? 1 : 0) >= 2)) {
- $thirdpartygraph .= '<tr><td class="center" colspan="2">';
- $dataseries = array();
- if (isModEnabled('societe') && $user->hasRight('societe', 'lire') && !getDolGlobalString('SOCIETE_DISABLE_PROSPECTS') && !getDolGlobalString('SOCIETE_DISABLE_PROSPECTS_STATS')) {
- $dataseries[] = array($langs->transnoentitiesnoconv("Prospects"), round($third['prospect']));
- }
- if (isModEnabled('societe') && $user->hasRight('societe', 'lire') && !getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS') && !getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS_STATS')) {
- $dataseries[] = array($langs->transnoentitiesnoconv("Customers"), round($third['customer']));
- }
- 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'))) && !getDolGlobalString('SOCIETE_DISABLE_SUPPLIERS_STATS')) {
- $dataseries[] = array($langs->transnoentitiesnoconv("Suppliers"), round($third['supplier']));
- }
- if (isModEnabled('societe')) {
- $dataseries[] = array($langs->transnoentitiesnoconv("Others"), round($third['other']));
- }
- include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
- $dolgraph = new DolGraph();
- $dolgraph->SetData($dataseries);
- $dolgraph->setShowLegend(2);
- $dolgraph->setShowPercent(1);
- $dolgraph->SetType(array('pie'));
- $dolgraph->setHeight('200');
- $dolgraph->draw('idgraphthirdparties');
- $thirdpartygraph .= $dolgraph->show();
- $thirdpartygraph .= '</td></tr>'."\n";
- } else {
- if (isModEnabled('societe') && $user->hasRight('societe', 'lire') && !getDolGlobalString('SOCIETE_DISABLE_PROSPECTS') && !getDolGlobalString('SOCIETE_DISABLE_PROSPECTS_STATS')) {
- $statstring = "<tr>";
- $statstring .= '<td><a href="'.DOL_URL_ROOT.'/societe/list.php?type=p">'.$langs->trans("Prospects").'</a></td><td class="right">'.round($third['prospect']).'</td>';
- $statstring .= "</tr>";
- }
- if (isModEnabled('societe') && $user->hasRight('societe', 'lire') && !getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS') && !getDolGlobalString('SOCIETE_DISABLE_CUSTOMERS_STATS')) {
- $statstring .= "<tr>";
- $statstring .= '<td><a href="'.DOL_URL_ROOT.'/societe/list.php?type=c">'.$langs->trans("Customers").'</a></td><td class="right">'.round($third['customer']).'</td>';
- $statstring .= "</tr>";
- }
- $statstring2 = '';
- 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'))) && !getDolGlobalString('SOCIETE_DISABLE_SUPPLIERS_STATS')) {
- $statstring2 = "<tr>";
- $statstring2 .= '<td><a href="'.DOL_URL_ROOT.'/societe/list.php?type=f">'.$langs->trans("Suppliers").'</a></td><td class="right">'.round($third['supplier']).'</td>';
- $statstring2 .= "</tr>";
- }
- $thirdpartygraph .= $statstring;
- $thirdpartygraph .= $statstring2;
- }
- $thirdpartygraph .= '<tr class="liste_total"><td>'.$langs->trans("UniqueThirdParties").'</td><td class="right">';
- $thirdpartygraph .= $total;
- $thirdpartygraph .= '</td></tr>';
- $thirdpartygraph .= '</table>';
- $thirdpartygraph .= '</div>';
- $thirdpartycateggraph = '';
- if (isModEnabled('categorie') && getDolGlobalString('CATEGORY_GRAPHSTATS_ON_THIRDPARTIES')) {
- require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
- $elementtype = 'societe';
- $thirdpartycateggraph = '<div class="div-table-responsive-no-min">';
- $thirdpartycateggraph .= '<table class="noborder nohover centpercent">';
- $thirdpartycateggraph .= '<tr class="liste_titre"><th colspan="2">'.$langs->trans("Categories").'</th></tr>';
- $thirdpartycateggraph .= '<tr><td class="center" colspan="2">';
- $sql = "SELECT c.label, count(*) as nb";
- $sql .= " FROM ".MAIN_DB_PREFIX."categorie_societe as cs";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."categorie as c ON cs.fk_categorie = c.rowid";
- $sql .= " WHERE c.type = 2";
- if (!is_numeric($conf->global->CATEGORY_GRAPHSTATS_ON_THIRDPARTIES)) {
- $sql .= " AND c.label like '".$db->escape($conf->global->CATEGORY_GRAPHSTATS_ON_THIRDPARTIES)."'";
- }
- $sql .= " AND c.entity IN (".getEntity('category').")";
- $sql .= " GROUP BY c.label";
- $total = 0;
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0;
- if (!empty($conf->use_javascript_ajax)) {
- $dataseries = array();
- $rest = 0;
- $nbmax = 10;
- while ($i < $num) {
- $obj = $db->fetch_object($result);
- if ($i < $nbmax) {
- $dataseries[] = array($obj->label, round($obj->nb));
- } else {
- $rest += $obj->nb;
- }
- $total += $obj->nb;
- $i++;
- }
- if ($i > $nbmax) {
- $dataseries[] = array($langs->trans("Other"), round($rest));
- }
- include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
- $dolgraph = new DolGraph();
- $dolgraph->SetData($dataseries);
- $dolgraph->setShowLegend(2);
- $dolgraph->setShowPercent(1);
- $dolgraph->SetType(array('pie'));
- $dolgraph->setHeight('200');
- $dolgraph->draw('idgraphcateg');
- $thirdpartycateggraph .= $dolgraph->show();
- } else {
- while ($i < $num) {
- $obj = $db->fetch_object($result);
- $thirdpartycateggraph .= '<tr class="oddeven"><td>'.$obj->label.'</td><td>'.$obj->nb.'</td></tr>';
- $total += $obj->nb;
- $i++;
- }
- }
- }
- $thirdpartycateggraph .= '</td></tr>';
- $thirdpartycateggraph .= '<tr class="liste_total"><td>'.$langs->trans("Total").'</td><td class="right">';
- $thirdpartycateggraph .= $total;
- $thirdpartycateggraph .= '</td></tr>';
- $thirdpartycateggraph .= '</table>';
- $thirdpartycateggraph .= '</div>';
- } else {
- $thirdpartycateggraph = '';
- }
- /*
- * Latest modified third parties
- */
- $max = 15;
- $sql = "SELECT s.rowid, s.nom as name, s.email, s.client, s.fournisseur";
- $sql .= ", s.code_client";
- $sql .= ", s.code_fournisseur";
- if (getDolGlobalString('MAIN_COMPANY_PERENTITY_SHARED')) {
- $sql .= ", spe.accountancy_code_supplier as code_compta_fournisseur";
- $sql .= ", spe.accountancy_code_customer as code_compta";
- } else {
- $sql .= ", s.code_compta_fournisseur";
- $sql .= ", s.code_compta";
- }
- $sql .= ", s.logo";
- $sql .= ", s.entity";
- $sql .= ", s.canvas, s.tms as date_modification, s.status as status";
- $sql .= " FROM ".MAIN_DB_PREFIX."societe as s";
- if (getDolGlobalString('MAIN_COMPANY_PERENTITY_SHARED')) {
- $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "societe_perentity as spe ON spe.fk_soc = s.rowid AND spe.entity = " . ((int) $conf->entity);
- }
- if (!$user->hasRight('societe', 'client', 'voir') && !$socid) {
- $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
- }
- $sql .= ' WHERE s.entity IN ('.getEntity('societe').')';
- if (!$user->hasRight('societe', 'client', 'voir') && !$socid) {
- $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
- }
- if (!$user->hasRight('fournisseur', 'lire')) {
- $sql .= " AND (s.fournisseur != 1 OR s.client != 0)";
- }
- // Add where from hooks
- $parameters = array('socid' => $socid);
- $reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters, $thirdparty_static); // Note that $action and $object may have been modified by hook
- if (empty($reshook)) {
- if ($socid > 0) {
- $sql .= " AND s.rowid = ".((int) $socid);
- }
- }
- $sql .= $hookmanager->resPrint;
- $sql .= $db->order("s.tms", "DESC");
- $sql .= $db->plimit($max, 0);
- //print $sql;
- $lastmodified="";
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0;
- if ($num > 0) {
- $transRecordedType = $langs->trans("LastModifiedThirdParties", $max);
- $lastmodified = "\n<!-- last thirdparties modified -->\n";
- $lastmodified .= '<div class="div-table-responsive-no-min">';
- $lastmodified .= '<table class="noborder centpercent">';
- $lastmodified .= '<tr class="liste_titre"><th colspan="2">'.$transRecordedType.'</th>';
- $lastmodified .= '<th> </th>';
- $lastmodified .= '<th class="right"><a href="'.DOL_URL_ROOT.'/societe/list.php?sortfield=s.tms&sortorder=DESC">'.$langs->trans("FullList").'</th>';
- $lastmodified .= '</tr>'."\n";
- while ($i < $num) {
- $objp = $db->fetch_object($result);
- $thirdparty_static->id = $objp->rowid;
- $thirdparty_static->name = $objp->name;
- $thirdparty_static->client = $objp->client;
- $thirdparty_static->fournisseur = $objp->fournisseur;
- $thirdparty_static->logo = $objp->logo;
- $thirdparty_static->date_modification = $db->jdate($objp->date_modification);
- $thirdparty_static->status = $objp->status;
- $thirdparty_static->code_client = $objp->code_client;
- $thirdparty_static->code_fournisseur = $objp->code_fournisseur;
- $thirdparty_static->canvas = $objp->canvas;
- $thirdparty_static->email = $objp->email;
- $thirdparty_static->entity = $objp->entity;
- $thirdparty_static->code_compta_fournisseur = $objp->code_compta_fournisseur;
- $thirdparty_static->code_compta = $objp->code_compta;
- $lastmodified .= '<tr class="oddeven">';
- // Name
- $lastmodified .= '<td class="nowrap tdoverflowmax200">';
- $lastmodified .= $thirdparty_static->getNomUrl(1);
- $lastmodified .= "</td>\n";
- // Type
- $lastmodified .= '<td class="center">';
- $lastmodified .= $thirdparty_static->getTypeUrl();
- $lastmodified .= '</td>';
- // Last modified date
- $lastmodified .= '<td class="right tddate" title="'.dol_escape_htmltag($langs->trans("DateModification").' '.dol_print_date($thirdparty_static->date_modification, 'dayhour', 'tzuserrel')).'">';
- $lastmodified .= dol_print_date($thirdparty_static->date_modification, 'day', 'tzuserrel');
- $lastmodified .= "</td>";
- $lastmodified .= '<td class="right nowrap">';
- $lastmodified .= $thirdparty_static->getLibStatut(3);
- $lastmodified .= "</td>";
- $lastmodified .= "</tr>\n";
- $i++;
- }
- $db->free($result);
- $lastmodified .= "</table>\n";
- $lastmodified .= '</div>';
- $lastmodified .= "<!-- End last thirdparties modified -->\n";
- }
- } else {
- dol_print_error($db);
- }
- //print '</div></div></div>';
- // boxes
- print '<div class="clearboth"></div>';
- print '<div class="fichecenter fichecenterbis">';
- $boxlist = '<div class="twocolumns">';
- $boxlist .= '<div class="firstcolumn fichehalfleft boxhalfleft" id="boxhalfleft">';
- $boxlist .= $thirdpartygraph;
- $boxlist .= '<br>';
- $boxlist .= $thirdpartycateggraph;
- $boxlist .= '<br>';
- $boxlist .= $resultboxes['boxlista'];
- $boxlist .= '</div>'."\n";
- $boxlist .= '<div class="secondcolumn fichehalfright boxhalfright" id="boxhalfright">';
- $boxlist .= $lastmodified;
- $boxlist .= '<br>';
- $boxlist .= $resultboxes['boxlistb'];
- $boxlist .= '</div>'."\n";
- $boxlist .= '</div>';
- print $boxlist;
- print '</div>';
- $parameters = array('user' => $user);
- $reshook = $hookmanager->executeHooks('dashboardThirdparties', $parameters, $thirdparty_static); // Note that $action and $object may have been modified by hook
- // End of page
- llxFooter();
- $db->close();
|