linkedobjectblock.tpl.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /* Copyright (C) 2010-2011 Regis Houssin <regis.houssin@inodbox.com>
  3. * Copyright (C) 2013 Juanjo Menent <jmenent@2byte.es>
  4. * Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
  5. * Copyright (C) 2013-2020 Charlene BENKE <charlie@patas-monkey.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  19. */
  20. // Protection to avoid direct call of template
  21. if (empty($conf) || !is_object($conf)) {
  22. print "Error, template page can't be called as URL";
  23. exit;
  24. }
  25. print "<!-- BEGIN PHP TEMPLATE bom/tpl/linkedobjectblock.tpl.php -->\n";
  26. global $user, $db;
  27. global $noMoreLinkedObjectBlockAfter;
  28. $langs = $GLOBALS['langs'];
  29. $linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
  30. // Load translation files required by the page
  31. $langs->load("bom");
  32. $linkedObjectBlock = dol_sort_array($linkedObjectBlock, 'date', 'desc', 0, 0, 1);
  33. $total = 0;
  34. $ilink = 0;
  35. foreach ($linkedObjectBlock as $key => $objectlink) {
  36. $ilink++;
  37. $product_static = new Product($db);
  38. $trclass = 'oddeven';
  39. if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
  40. $trclass .= ' liste_sub_total';
  41. }
  42. echo '<tr class="'.$trclass.'" >';
  43. echo '<td class="linkedcol-element tdoverflowmax100">'.$langs->trans("Bom");
  44. if (!empty($showImportButton) && $conf->global->MAIN_ENABLE_IMPORT_LINKED_OBJECT_LINES) {
  45. print '<a class="objectlinked_importbtn" href="'.$objectlink->getNomUrl(0, '', 0, 1).'&amp;action=selectlines" data-element="'.$objectlink->element.'" data-id="'.$objectlink->id.'" > <i class="fa fa-indent"></i> </a';
  46. }
  47. echo '</td>';
  48. echo '<td class="linkedcol-name tdoverflowmax150" >'.$objectlink->getNomUrl(1).'</td>';
  49. echo '<td class="linkedcol-ref">';
  50. $result = $product_static->fetch($objectlink->fk_product);
  51. if ($result < 0) {
  52. setEventMessage($product_static->error, 'errors');
  53. } elseif ($result > 0) {
  54. $product_static->getNomUrl(1);
  55. }
  56. print '</td>';
  57. echo '<td class="linkedcol-date">'.dol_print_date($objectlink->date_creation, 'day').'</td>';
  58. echo '<td class="linkedcol-amount right">';
  59. if ($user->rights->commande->lire) {
  60. $total = $total + $objectlink->total_ht;
  61. echo price($objectlink->total_ht);
  62. }
  63. echo '</td>';
  64. echo '<td class="linkedcol-statut right">'.$objectlink->getLibStatut(3).'</td>';
  65. echo '<td class="linkedcol-action right">';
  66. // For now, shipments must stay linked to order, so link is not deletable
  67. if ($object->element != 'shipping') {
  68. echo '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=dellink&token='.newToken().'&dellinkid='.$key.'">'.img_picto($langs->transnoentitiesnoconv("RemoveLink"), 'unlink').'</a>';
  69. }
  70. echo '</td>';
  71. echo "</tr>\n";
  72. }
  73. echo "<!-- END PHP TEMPLATE -->\n";