dolibarr/htdocs/core/lib/sendings.lib.php

496 lines
17 KiB
PHP
Raw Permalink Normal View History

<?php
2012-10-31 09:50:20 +01:00
/* Copyright (C) 2008-2012 Laurent Destailleur <eldy@users.sourceforge.net>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
2011-10-24 12:59:44 +02:00
* \file htdocs/core/lib/sendings.lib.php
* \ingroup expedition
* \brief Library for expedition module
*/
require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
2016-10-29 16:18:39 +02:00
require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
2012-02-04 10:48:47 +01:00
/**
* Prepare array with list of tabs
*
* @param Expedition $object Object related to tabs
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
2012-02-04 10:48:47 +01:00
*/
function shipping_prepare_head($object)
{
2016-10-24 20:52:21 +02:00
global $db, $langs, $conf, $user;
2010-05-08 18:45:47 +02:00
2018-09-11 17:30:43 +02:00
// Load translation files required by the page
$langs->loadLangs(array("sendings", "deliveries"));
$h = 0;
$head = array();
$head[$h][0] = DOL_URL_ROOT."/expedition/card.php?id=".$object->id;
$head[$h][1] = $langs->trans("SendingCard");
$head[$h][2] = 'shipping';
$h++;
if ($object->statut == Expedition::STATUS_DRAFT) {
2023-05-09 11:04:53 +02:00
$head[$h][0] = DOL_URL_ROOT."/expedition/dispatch.php?id=".$object->id;
2023-05-22 15:59:48 +02:00
$head[$h][1] = $langs->trans("ShipmentDistribution");
2023-05-09 11:04:53 +02:00
$head[$h][2] = 'dispatch';
$h++;
}
2023-10-15 15:32:35 +02:00
if (getDolGlobalInt('MAIN_SUBMODULE_DELIVERY') && $user->hasRight('expedition', 'delivery', 'lire')) {
2012-07-02 19:30:37 +02:00
// delivery link
$object->fetchObjectLinked($object->id, $object->element);
if (isset($object->linkedObjectsIds['delivery']) && is_array($object->linkedObjectsIds['delivery']) && count($object->linkedObjectsIds['delivery']) > 0) { // If there is a delivery
2024-03-12 21:59:29 +01:00
// Take first element of array
$tmp = reset($object->linkedObjectsIds['delivery']);
2024-03-12 21:59:29 +01:00
$head[$h][0] = DOL_URL_ROOT."/delivery/card.php?id=".((int) $tmp);
2012-07-02 19:30:37 +02:00
$head[$h][1] = $langs->trans("DeliveryCard");
$head[$h][2] = 'delivery';
2012-07-02 17:07:37 +02:00
$h++;
}
}
2023-11-27 11:39:32 +01:00
if (!getDolGlobalString('MAIN_DISABLE_CONTACTS_TAB')) {
$objectsrc = $object;
2021-02-23 22:03:23 +01:00
if ($object->origin == 'commande' && $object->origin_id > 0) {
$objectsrc = new Commande($db);
$objectsrc->fetch($object->origin_id);
}
$nbContact = count($objectsrc->liste_contact(-1, 'internal')) + count($objectsrc->liste_contact(-1, 'external'));
2024-03-12 21:59:29 +01:00
$head[$h][0] = DOL_URL_ROOT."/expedition/contact.php?id=".((int) $object->id);
$head[$h][1] = $langs->trans("ContactsAddresses");
2021-02-23 22:03:23 +01:00
if ($nbContact > 0) {
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbContact.'</span>';
}
$head[$h][2] = 'contact';
$h++;
2016-06-06 12:29:15 +02:00
}
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php';
$upload_dir = $conf->expedition->dir_output."/sending/".dol_sanitizeFileName($object->ref);
$nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$'));
$nbLinks = Link::count($db, $object->element, $object->id);
$head[$h][0] = DOL_URL_ROOT.'/expedition/document.php?id='.$object->id;
$head[$h][1] = $langs->trans('Documents');
2021-02-23 22:03:23 +01:00
if (($nbFiles + $nbLinks) > 0) {
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.($nbFiles + $nbLinks).'</span>';
}
$head[$h][2] = 'documents';
$h++;
$nbNote = 0;
2021-02-23 22:03:23 +01:00
if (!empty($object->note_private)) {
$nbNote++;
}
if (!empty($object->note_public)) {
$nbNote++;
}
2013-04-09 17:18:07 +02:00
$head[$h][0] = DOL_URL_ROOT."/expedition/note.php?id=".$object->id;
$head[$h][1] = $langs->trans("Notes");
2021-02-23 22:03:23 +01:00
if ($nbNote > 0) {
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbNote.'</span>';
}
2013-04-09 17:18:07 +02:00
$head[$h][2] = 'note';
$h++;
2012-02-04 10:48:47 +01:00
// Show more tabs from modules
// Entries must be declared in modules descriptor with line
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
// $this->tabs = array('entity:-tabname); to remove a tab
complete_head_from_modules($conf, $langs, $object, $head, $h, 'delivery');
complete_head_from_modules($conf, $langs, $object, $head, $h, 'delivery', 'remove');
2012-02-04 10:48:47 +01:00
return $head;
}
2011-01-25 00:35:21 +01:00
2012-02-04 10:48:47 +01:00
/**
* Prepare array with list of tabs
*
* @param Object $object Object related to tabs
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
2012-02-04 10:48:47 +01:00
*/
function delivery_prepare_head($object)
{
2020-01-28 02:21:39 +01:00
global $langs, $db, $conf, $user;
2010-05-08 18:45:47 +02:00
2018-09-11 17:30:43 +02:00
// Load translation files required by the page
$langs->loadLangs(array("sendings", "deliveries"));
$h = 0;
$head = array();
2023-10-15 15:32:35 +02:00
if (getDolGlobalInt('MAIN_SUBMODULE_EXPEDITION') && $user->hasRight('expedition', 'lire')) {
$head[$h][0] = DOL_URL_ROOT."/expedition/card.php?id=".$object->origin_id;
$head[$h][1] = $langs->trans("SendingCard");
$head[$h][2] = 'shipping';
$h++;
}
2020-10-05 15:32:29 +02:00
$head[$h][0] = DOL_URL_ROOT."/delivery/card.php?id=".$object->id;
$head[$h][1] = $langs->trans("DeliveryCard");
$head[$h][2] = 'delivery';
$h++;
2020-01-28 02:21:39 +01:00
// Show more tabs from modules
// Entries must be declared in modules descriptor with line
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
// $this->tabs = array('entity:-tabname); to remove a tab
// complete_head_from_modules use $object->id for this link so we temporary change it
$savObjectId = $object->id;
// Get parent object
$tmpobject = null;
if ($object->origin) {
$tmpobject = new Expedition($db);
$tmpobject->fetch($object->origin_id);
} else {
$tmpobject = $object;
}
2023-11-27 11:39:32 +01:00
if (!getDolGlobalString('MAIN_DISABLE_CONTACTS_TAB')) {
2020-10-25 17:19:15 +01:00
$objectsrc = $tmpobject;
2021-02-23 22:03:23 +01:00
if ($tmpobject->origin == 'commande' && $tmpobject->origin_id > 0) {
2020-10-25 17:19:15 +01:00
$objectsrc = new Commande($db);
$objectsrc->fetch($tmpobject->origin_id);
}
$nbContact = count($objectsrc->liste_contact(-1, 'internal')) + count($objectsrc->liste_contact(-1, 'external'));
$head[$h][0] = DOL_URL_ROOT."/expedition/contact.php?id=".$tmpobject->id;
$head[$h][1] = $langs->trans("ContactsAddresses");
2021-02-23 22:03:23 +01:00
if ($nbContact > 0) {
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbContact.'</span>';
}
2020-10-25 17:19:15 +01:00
$head[$h][2] = 'contact';
$h++;
}
2020-01-28 02:21:39 +01:00
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php';
2022-10-07 21:22:17 +02:00
$upload_dir = $conf->expedition->dir_output."/sending/".dol_sanitizeFileName($tmpobject->ref);
2020-01-28 02:21:39 +01:00
$nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$'));
$nbLinks = Link::count($db, $tmpobject->element, $tmpobject->id);
2020-01-28 02:21:39 +01:00
$head[$h][0] = DOL_URL_ROOT.'/expedition/document.php?id='.$tmpobject->id;
$head[$h][1] = $langs->trans('Documents');
2021-02-23 22:03:23 +01:00
if (($nbFiles + $nbLinks) > 0) {
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.($nbFiles + $nbLinks).'</span>';
}
2020-01-28 02:21:39 +01:00
$head[$h][2] = 'documents';
$h++;
$nbNote = 0;
2021-02-23 22:03:23 +01:00
if (!empty($tmpobject->note_private)) {
$nbNote++;
}
if (!empty($tmpobject->note_public)) {
$nbNote++;
}
2020-01-28 02:21:39 +01:00
$head[$h][0] = DOL_URL_ROOT."/expedition/note.php?id=".$tmpobject->id;
$head[$h][1] = $langs->trans("Notes");
2021-02-23 22:03:23 +01:00
if ($nbNote > 0) {
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbNote.'</span>';
}
$head[$h][2] = 'note';
$h++;
2020-01-28 02:21:39 +01:00
$object->id = $tmpobject->id;
complete_head_from_modules($conf, $langs, $object, $head, $h, 'delivery');
complete_head_from_modules($conf, $langs, $object, $head, $h, 'delivery', 'remove');
2020-01-28 02:21:39 +01:00
$object->id = $savObjectId;
2012-02-04 10:48:47 +01:00
return $head;
}
/**
* List sendings and receive receipts
*
2012-02-04 14:39:47 +01:00
* @param string $origin Origin ('commande', ...)
2011-09-12 19:08:02 +02:00
* @param int $origin_id Origin id
2023-12-02 16:46:37 +01:00
* @param string $filter Filter (Do not use a string from a user input)
2023-12-01 19:51:32 +01:00
* @return int Return integer <0 if KO, >0 if OK
*/
function show_list_sending_receive($origin, $origin_id, $filter = '')
{
global $db, $conf, $langs;
global $form;
$product_static = new Product($db);
$expedition = new Expedition($db);
$warehousestatic = new Entrepot($db);
$sql = "SELECT obj.rowid, obj.fk_product, obj.label, obj.description, obj.product_type as fk_product_type, obj.qty as qty_asked, obj.date_start, obj.date_end,";
$sql .= " ed.rowid as edrowid, ed.qty as qty_shipped, ed.fk_expedition as expedition_id, ed.fk_elementdet, ed.fk_entrepot as warehouse_id,";
$sql .= " e.rowid as sendingid, e.ref as exp_ref, e.date_creation, e.date_delivery, e.date_expedition, e.billed, e.fk_statut as status, e.signed_status,";
$sql .= ' p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid, p.tobatch as product_tobatch,';
$sql .= ' p.description as product_desc';
2023-12-02 16:46:37 +01:00
$sql .= " FROM ".MAIN_DB_PREFIX."expeditiondet as ed,";
$sql .= " ".MAIN_DB_PREFIX."expedition as e,";
$sql .= " ".MAIN_DB_PREFIX.$origin."det as obj"; // for example llx_commandedet
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON obj.fk_product = p.rowid";
//TODO Add link to expeditiondet_batch
$sql .= " WHERE e.entity IN (".getEntity('expedition').")";
2021-06-09 15:36:47 +02:00
$sql .= " AND obj.fk_".$origin." = ".((int) $origin_id);
$sql .= " AND obj.rowid = ed.fk_elementdet";
$sql .= " AND ed.fk_expedition = e.rowid";
2021-02-23 22:03:23 +01:00
if ($filter) {
$sql .= $filter;
}
2023-12-02 16:46:37 +01:00
$sql .= " ORDER BY obj.rowid, obj.fk_product";
2014-06-12 11:31:53 +02:00
dol_syslog("show_list_sending_receive", LOG_DEBUG);
$resql = $db->query($sql);
2021-02-23 22:03:23 +01:00
if ($resql) {
$num = $db->num_rows($resql);
$i = 0;
2021-02-23 22:03:23 +01:00
if ($num) {
if ($filter) {
print load_fiche_titre($langs->trans("OtherSendingsForSameOrder"));
} else {
print load_fiche_titre($langs->trans("SendingsAndReceivingForSameOrder"));
}
2019-11-05 21:24:41 +01:00
print '<table class="liste centpercent">';
print '<tr class="liste_titre">';
2019-01-19 12:40:17 +01:00
//print '<td class="left">'.$langs->trans("QtyOrdered").'</td>';
print '<td>'.$langs->trans("SendingSheet").'</td>';
print '<td>'.$langs->trans("Description").'</td>';
2019-03-14 14:20:32 +01:00
print '<td class="center">'.$langs->trans("DateCreation").'</td>';
print '<td class="center">'.$langs->trans("DateDeliveryPlanned").'</td>';
print '<td class="center">'.$langs->trans("QtyPreparedOrShipped").'</td>';
2022-09-25 06:02:37 +02:00
if (isModEnabled('stock')) {
print '<td>'.$langs->trans("Warehouse").'</td>';
2016-10-29 16:18:39 +02:00
}
/*TODO Add link to expeditiondet_batch
if (isModEnabled('productbatch'))
{
2021-02-23 22:03:23 +01:00
print '<td>';
print '</td>';
}*/
2023-04-18 14:04:27 +02:00
if (getDolGlobalInt('MAIN_SUBMODULE_DELIVERY')) {
2012-02-04 10:48:47 +01:00
print '<td>'.$langs->trans("DeliveryOrder").'</td>';
2019-03-14 14:20:32 +01:00
//print '<td class="center">'.$langs->trans("QtyReceived").'</td>';
print '<td class="right">'.$langs->trans("DeliveryDate").'</td>';
2012-02-04 10:48:47 +01:00
}
print "</tr>\n";
2021-02-23 22:03:23 +01:00
while ($i < $num) {
$objp = $db->fetch_object($resql);
2018-04-22 19:27:37 +02:00
2023-09-19 20:29:24 +02:00
$expedition->id = $objp->expedition_id;
$expedition->ref = $objp->exp_ref;
$expedition->billed = $objp->billed;
$expedition->statut = $objp->status;
$expedition->status = $objp->status;
$expedition->signed_status = $objp->signed_status;
2023-09-19 20:29:24 +02:00
print '<tr class="oddeven">';
2010-05-17 16:13:03 +02:00
// Sending id
2019-03-14 14:20:32 +01:00
print '<td class="nowrap left">';
2023-09-19 20:29:24 +02:00
print $expedition->getNomUrl(1);
//print '<a href="'.DOL_URL_ROOT.'/expedition/card.php?id='.$objp->expedition_id.'">'.img_object($langs->trans("ShowSending"), 'sending').' '.$objp->exp_ref.'<a>';
print '</td>';
2010-05-17 16:13:03 +02:00
// Description
2021-02-23 22:03:23 +01:00
if ($objp->fk_product > 0) {
2012-02-04 10:48:47 +01:00
// Define output language
2023-11-27 11:39:32 +01:00
if (getDolGlobalInt('MAIN_MULTILANGS') && getDolGlobalString('PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE')) {
2012-02-04 10:48:47 +01:00
$object = new $origin($db);
'@phan-var-force CommonObject $object';
2012-02-04 10:48:47 +01:00
$object->fetch($origin_id);
$object->fetch_thirdparty();
2014-03-12 01:21:18 +01:00
$prod = new Product($db);
$prod->id = $objp->fk_product;
2014-03-12 01:21:18 +01:00
$prod->getMultiLangs();
2012-02-04 10:48:47 +01:00
$outputlangs = $langs;
$newlang = '';
2021-05-17 07:27:02 +02:00
if (empty($newlang) && GETPOST('lang_id', 'aZ09')) {
$newlang = GETPOST('lang_id', 'aZ09');
2021-02-23 22:03:23 +01:00
}
if (empty($newlang)) {
$newlang = $object->thirdparty->default_lang;
}
if (!empty($newlang)) {
$outputlangs = new Translate("", $conf);
2012-02-04 10:48:47 +01:00
$outputlangs->setDefaultLang($newlang);
}
$label = (!empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $objp->product_label;
2020-05-21 15:05:19 +02:00
} else {
$label = (!empty($objp->label) ? $objp->label : $objp->product_label);
2012-02-04 10:48:47 +01:00
}
print '<td>';
// Show product and description
$product_static->type = $objp->fk_product_type;
$product_static->id = $objp->fk_product;
$product_static->ref = $objp->ref;
$product_static->status_batch = $objp->product_tobatch;
2023-09-19 20:29:24 +02:00
$text = $product_static->getNomUrl(1);
$text .= ' - '.$label;
$description = (getDolGlobalInt('PRODUIT_DESC_IN_FORM_ACCORDING_TO_DEVICE') ? '' : dol_htmlentitiesbr($objp->description));
print $form->textwithtooltip($text, $description, 3, 0, '', $i);
// Show range
print_date_range($objp->date_start, $objp->date_end);
// Add description in form
if (getDolGlobalInt('PRODUIT_DESC_IN_FORM_ACCORDING_TO_DEVICE')) {
print(!empty($objp->description) ? ((empty($objp->product) || $objp->description != $objp->product) ? '<br>'.dol_htmlentitiesbr($objp->description) : '') : '');
}
print '</td>';
2020-05-21 15:05:19 +02:00
} else {
print "<td>";
2021-02-23 22:03:23 +01:00
if ($objp->fk_product_type == 1) {
$text = img_object($langs->trans('Service'), 'service');
} else {
$text = img_object($langs->trans('Product'), 'product');
}
2012-08-25 15:21:34 +02:00
if (!empty($objp->label)) {
$text .= ' <strong>'.$objp->label.'</strong>';
print $form->textwithtooltip($text, $objp->description, 3, 0, '', $i);
2012-08-25 15:21:34 +02:00
} else {
print $text.' '.nl2br($objp->description);
}
// Show range
print_date_range($objp->date_start, $objp->date_end);
print "</td>\n";
}
2019-03-14 14:20:32 +01:00
//print '<td class="center">'.$objp->qty_asked.'</td>';
// Date creation
2019-03-14 14:20:32 +01:00
print '<td class="nowrap center">'.dol_print_date($db->jdate($objp->date_creation), 'day').'</td>';
// Date shipping creation
2019-03-14 14:20:32 +01:00
print '<td class="nowrap center">'.dol_print_date($db->jdate($objp->date_delivery), 'day').'</td>';
2010-05-13 01:03:33 +02:00
// Qty shipped
2019-03-14 14:20:32 +01:00
print '<td class="center">'.$objp->qty_shipped.'</td>';
2010-05-13 01:03:33 +02:00
2016-10-29 16:18:39 +02:00
// Warehouse
2022-09-25 06:02:37 +02:00
if (isModEnabled('stock')) {
print '<td>';
2021-02-23 22:03:23 +01:00
if ($objp->warehouse_id > 0) {
$warehousestatic->fetch($objp->warehouse_id);
print $warehousestatic->getNomUrl(1);
}
print '</td>';
2016-10-29 16:18:39 +02:00
}
// Batch number management
/*TODO Add link to expeditiondet_batch
if (isModEnabled('productbatch'))
{
//var_dump($objp->edrowid);
2021-02-23 22:03:23 +01:00
$lines[$i]->detail_batch
if (isset($lines[$i]->detail_batch))
{
print '<td>';
if ($lines[$i]->product_tobatch)
{
$detail = '';
foreach ($lines[$i]->detail_batch as $dbatch)
{
$detail.= $langs->trans("Batch").': '.$dbatch->batch;
$detail.= ' - '.$langs->trans("SellByDate").': '.dol_print_date($dbatch->sellby,"day");
2017-12-02 11:34:56 +01:00
$detail.= ' - '.$langs->trans("EatByDate").': '.dol_print_date($dbatch->eatby,"day");
$detail.= ' - '.$langs->trans("Qty").': '.$dbatch->qty;
$detail.= '<br>';
2021-02-23 22:03:23 +01:00
}
print $form->textwithtooltip(img_picto('', 'object_barcode').' '.$langs->trans("DetailBatchNumber"),$detail);
}
else
{
print $langs->trans("NA");
}
print '</td>';
} else {
print '<td></td>';
}
}*/
// Information on receipt
2023-04-18 14:04:27 +02:00
if (getDolGlobalInt('MAIN_SUBMODULE_DELIVERY')) {
include_once DOL_DOCUMENT_ROOT.'/delivery/class/delivery.class.php';
$expedition->fetchObjectLinked($expedition->id, $expedition->element);
2011-05-06 20:27:18 +02:00
//var_dump($expedition->linkedObjects);
$receiving = '';
2021-02-23 22:03:23 +01:00
if (!empty($expedition->linkedObjects['delivery'])) {
$receiving = reset($expedition->linkedObjects['delivery']); // Take first link
}
2021-02-23 22:03:23 +01:00
if (!empty($receiving)) {
'@phan-var-force Delivery $receiving';
// $expedition->fk_elementdet = id of det line of order
// $receiving->fk_origin_line = id of det line of order
// $receiving->origin may be 'shipping'
// $receiving->origin_id may be id of shipping
2010-05-13 01:03:33 +02:00
// Ref
print '<td>';
print $receiving->getNomUrl($db);
2020-10-05 15:32:29 +02:00
//print '<a href="'.DOL_URL_ROOT.'/delivery/card.php?id='.$livraison_id.'">'.img_object($langs->trans("ShowReceiving"),'sending').' '.$objp->livraison_ref.'<a>';
print '</td>';
2010-05-13 01:03:33 +02:00
// Qty received
2019-03-14 14:20:32 +01:00
//print '<td class="center">';
// TODO No solution for the moment to link a line det of receipt with a line det of shipping,
// so no way to know the qty received for this line of shipping.
//print $langs->trans("FeatureNotYetAvailable");
//print '</td>';
2010-05-13 01:03:33 +02:00
// Date shipping real
2019-03-14 14:20:32 +01:00
print '<td class="right">';
print dol_print_date($receiving->date_delivery, 'day');
print '</td>';
2020-05-21 15:05:19 +02:00
} else {
2010-07-23 00:51:00 +02:00
//print '<td>&nbsp;</td>';
print '<td>&nbsp;</td>';
print '<td>&nbsp;</td>';
}
}
print '</tr>';
$i++;
}
print '</table>';
}
$db->free($resql);
2020-05-21 15:05:19 +02:00
} else {
dol_print_error($db);
}
return 1;
}