EVOLUTION-MANAGER
Edit File: contact_supplier.class.php
<?php /** * --------------------------------------------------------------------- * GLPI - Gestionnaire Libre de Parc Informatique * Copyright (C) 2015-2018 Teclib' and contributors. * * http://glpi-project.org * * based on GLPI - Gestionnaire Libre de Parc Informatique * Copyright (C) 2003-2014 by the INDEPNET Development Team. * * --------------------------------------------------------------------- * * LICENSE * * This file is part of GLPI. * * GLPI 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 2 of the License, or * (at your option) any later version. * * GLPI 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 GLPI. If not, see <http://www.gnu.org/licenses/>. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } class Contact_Supplier extends CommonDBRelation{ // From CommonDBRelation static public $itemtype_1 = 'Contact'; static public $items_id_1 = 'contacts_id'; static public $itemtype_2 = 'Supplier'; static public $items_id_2 = 'suppliers_id'; static function getTypeName($nb = 0) { return _n('Link Contact/Supplier', 'Links Contact/Supplier', $nb); } function getForbiddenStandardMassiveAction() { $forbidden = parent::getForbiddenStandardMassiveAction(); $forbidden[] = 'update'; return $forbidden; } function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) { if (!$withtemplate && Session::haveRight("contact_enterprise", READ)) { $nb = 0; switch ($item->getType()) { case 'Supplier' : if ($_SESSION['glpishow_count_on_tabs']) { $nb = self::countForItem($item); } return self::createTabEntry(Contact::getTypeName(Session::getPluralNumber()), $nb); case 'Contact' : if ($_SESSION['glpishow_count_on_tabs']) { $nb = self::countForItem($item); } return self::createTabEntry(Supplier::getTypeName(Session::getPluralNumber()), $nb); } } return ''; } static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0) { switch ($item->getType()) { case 'Supplier' : self::showForSupplier($item); break; case 'Contact' : self::showForContact($item); break; } return true; } /** * Print the HTML array for entreprises on the current contact * * @return void */ static function showForContact(Contact $contact) { $instID = $contact->fields['id']; if (!$contact->can($instID, READ)) { return; } $canedit = $contact->can($instID, UPDATE); $rand = mt_rand(); $iterator = self::getListForItem($contact); $number = count($iterator); $suppliers = []; $used = []; while ($data = $iterator->next()) { $suppliers[$data['linkid']] = $data; $used[$data['id']] = $data['id']; } if ($canedit) { echo "<div class='firstbloc'>"; echo "<form name='contactsupplier_form$rand' id='contactsupplier_form$rand' method='post' action='"; echo Toolbox::getItemTypeFormURL(__CLASS__)."'>"; echo "<table class='tab_cadre_fixe'>"; echo "<tr class='tab_bg_1'><th colspan='2'>".__('Add a supplier')."</tr>"; echo "<tr class='tab_bg_2'><td class='center'>"; echo "<input type='hidden' name='contacts_id' value='$instID'>"; Supplier::dropdown(['used' => $used, 'entity' => $contact->fields["entities_id"], 'entity_sons' => $contact->fields["is_recursive"]]); echo "</td><td class='center'>"; echo "<input type='submit' name='add' value=\""._sx('button', 'Add')."\" class='submit'>"; echo "</td></tr>"; echo "</table>"; Html::closeForm(); echo "</div>"; } echo "<div class='spaced'>"; if ($canedit && $number) { Html::openMassiveActionsForm('mass'.__CLASS__.$rand); $massiveactionparams = ['num_displayed' => min($_SESSION['glpilist_limit'], $number), 'container' => 'mass'.__CLASS__.$rand]; Html::showMassiveActions($massiveactionparams); } echo "<table class='tab_cadre_fixehov'>"; $header_begin = "<tr>"; $header_top = ''; $header_bottom = ''; $header_end = ''; if ($canedit && $number) { $header_top .= "<th width='10'>".Html::getCheckAllAsCheckbox('mass'.__CLASS__.$rand); $header_top .= "</th>"; $header_bottom .= "<th width='10'>".Html::getCheckAllAsCheckbox('mass'.__CLASS__.$rand); $header_bottom .= "</th>"; } $header_end .= "<th>".__('Supplier')."</th>"; $header_end .= "<th>".__('Entity')."</th>"; $header_end .= "<th>".__('Third party type')."</th>"; $header_end .= "<th>". __('Phone')."</th>"; $header_end .= "<th>".__('Fax')."</th>"; $header_end .= "<th>".__('Website')."</th>"; $header_end .= "</tr>"; echo $header_begin.$header_top.$header_end; if ($number > 0) { Session::initNavigateListItems('Supplier', //TRANS : %1$s is the itemtype name, // %2$s is the name of the item (used for headings of a list) sprintf(__('%1$s = %2$s'), Contact::getTypeName(1), $contact->getName())); foreach ($suppliers as $data) { $assocID = $data["linkid"]; Session::addToNavigateListItems('Supplier', $data["id"]); $website = $data["website"]; if (!empty($website)) { $website = $data["website"]; if (!preg_match("?https*://?", $website)) { $website = "http://".$website; } $website = "<a target=_blank href='$website'>".$data["website"]."</a>"; } echo "<tr class='tab_bg_1".($data["is_deleted"]?"_2":"")."'>"; if ($canedit) { echo "<td>".Html::getMassiveActionCheckBox(__CLASS__, $assocID)."</td>"; } echo "<td class='center'>"; echo "<a href='".Supplier::getFormURLWithID($data["id"])."'>". Dropdown::getDropdownName("glpi_suppliers", $data["id"])."</a></td>"; echo "<td class='center'>".Dropdown::getDropdownName("glpi_entities", $data["entity"]); echo "</td>"; echo "<td class='center'>".Dropdown::getDropdownName("glpi_suppliertypes", $data["suppliertypes_id"]); echo "</td>"; echo "<td class='center' width='80'>".$data["phonenumber"]."</td>"; echo "<td class='center' width='80'>".$data["fax"]."</td>"; echo "<td class='center'>".$website."</td>"; echo "</tr>"; } echo $header_begin.$header_bottom.$header_end; } echo "</table>"; if ($canedit && $number) { $massiveactionparams['ontop'] = false; Html::showMassiveActions($massiveactionparams); Html::closeForm(); } echo "</div>"; } /** * Show contacts asociated to an enterprise * * @return void **/ static function showForSupplier(Supplier $supplier) { $instID = $supplier->fields['id']; if (!$supplier->can($instID, READ)) { return; } $canedit = $supplier->can($instID, UPDATE); $rand = mt_rand(); $iterator = self::getListForItem($supplier); $number = count($iterator); $contacts = []; $used = []; while ($data = $iterator->next()) { $contacts[$data['linkid']] = $data; $used[$data['id']] = $data['id']; } if ($canedit) { echo "<div class='firstbloc'>"; echo "<form name='contactsupplier_form$rand' id='contactsupplier_form$rand' method='post' action='"; echo Toolbox::getItemTypeFormURL(__CLASS__)."'>"; echo "<table class='tab_cadre_fixe'>"; echo "<tr class='tab_bg_1'><th colspan='2'>".__('Add a contact')."</tr>"; echo "<tr class='tab_bg_2'><td class='center'>"; echo "<input type='hidden' name='suppliers_id' value='$instID'>"; Contact::dropdown(['used' => $used, 'entity' => $supplier->fields["entities_id"], 'entity_sons' => $supplier->fields["is_recursive"]]); echo "</td><td class='center'>"; echo "<input type='submit' name='add' value=\""._sx('button', 'Add')."\" class='submit'>"; echo "</td></tr>"; echo "</table>"; Html::closeForm(); echo "</div>"; } echo "<div class='spaced'>"; if ($canedit && $number) { Html::openMassiveActionsForm('mass'.__CLASS__.$rand); $massiveactionparams = ['num_displayed' => min($_SESSION['glpilist_limit'], $number), 'container' => 'mass'.__CLASS__.$rand]; Html::showMassiveActions($massiveactionparams); } echo "<table class='tab_cadre_fixehov'>"; $header_begin = "<tr>"; $header_top = ''; $header_bottom = ''; $header_end = ''; if ($canedit && $number) { $header_top .= "<th width='10'>".Html::getCheckAllAsCheckbox('mass'.__CLASS__.$rand); $header_top .= "</th>"; $header_bottom .= "<th width='10'>".Html::getCheckAllAsCheckbox('mass'.__CLASS__.$rand); $header_bottom .= "</th>"; } $header_end .= "<th>".__('Name')."</th>"; $header_end .= "<th>".__('Entity')."</th>"; $header_end .= "<th>". __('Phone')."</th>"; $header_end .= "<th>". __('Phone 2')."</th>"; $header_end .= "<th>".__('Mobile phone')."</th>"; $header_end .= "<th>".__('Fax')."</th>"; $header_end .= "<th>"._n('Email', 'Emails', 1)."</th>"; $header_end .= "<th>".__('Type')."</th>"; $header_end .= "</tr>"; echo $header_begin.$header_top.$header_end; if ($number) { Session::initNavigateListItems('Contact', //TRANS : %1$s is the itemtype name, %2$s is the name of the item (used for headings of a list) sprintf(__('%1$s = %2$s'), Supplier::getTypeName(1), $supplier->getName())); foreach ($contacts as $data) { $assocID = $data["linkid"]; Session::addToNavigateListItems('Contact', $data["id"]); echo "<tr class='tab_bg_1".($data["is_deleted"]?"_2":"")."'>"; if ($canedit) { echo "<td>".Html::getMassiveActionCheckBox(__CLASS__, $assocID)."</td>"; } echo "<td class='center'>"; echo "<a href='".Contact::getFormURLWithID($data["id"])."'>". sprintf(__('%1$s %2$s'), $data["name"], $data["firstname"])."</a></td>"; echo "<td class='center' width='100'>".Dropdown::getDropdownName("glpi_entities", $data["entity"]); echo "</td>"; echo "<td class='center' width='100'>".$data["phone"]."</td>"; echo "<td class='center' width='100'>".$data["phone2"]."</td>"; echo "<td class='center' width='100'>".$data["mobile"]."</td>"; echo "<td class='center' width='100'>".$data["fax"]."</td>"; echo "<td class='center'>"; echo "<a href='mailto:".$data["email"]."'>".$data["email"]."</a></td>"; echo "<td class='center'>".Dropdown::getDropdownName("glpi_contacttypes", $data["contacttypes_id"])."</td>"; echo "</tr>"; } echo $header_begin.$header_bottom.$header_end; } echo "</table>"; if ($canedit && $number) { $massiveactionparams['ontop'] = false; Html::showMassiveActions($massiveactionparams); Html::closeForm(); } echo "</div>"; } }