* Copyright (C) 2004-2015 Laurent Destailleur * Copyright (C) 2005-2010 Regis Houssin * Copyright (C) 2016 Ferran Marcet * Copyright (C) 2023-2024 Alexandre Spangaro * Copyright (C) 2024 MDW * Copyright (C) 2024 Benjamin Falière * * 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 . */ /** * \file htdocs/reception/list.php * \ingroup reception * \brief Page to list all receptions */ // Load Dolibarr environment require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/reception/class/reception.class.php'; require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php'; require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php'; require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.product.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; $langs->loadLangs(array("sendings", "receptions", "deliveries", 'companies', 'bills', 'orders')); $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'shipmentlist'; // To manage different context of search $socid = GETPOSTINT('socid'); $action = GETPOST('action', 'alpha'); $massaction = GETPOST('massaction', 'alpha'); $toselect = GETPOST('toselect', 'array'); $optioncss = GETPOST('optioncss', 'alpha'); $mode = GETPOST('mode', 'alpha'); $search_ref_rcp = GETPOST("search_ref_rcp"); $search_ref_liv = GETPOST('search_ref_liv'); $search_ref_supplier = GETPOST('search_ref_supplier'); $search_company = GETPOST("search_company"); $search_town = GETPOST('search_town', 'alpha'); $search_zip = GETPOST('search_zip', 'alpha'); $search_state = GETPOST("search_state"); $search_country = GETPOST("search_country", 'aZ09'); $search_type_thirdparty = GETPOST("search_type_thirdparty", 'intcomma'); $search_date_delivery_startday = GETPOSTINT('search_date_delivery_startday'); $search_date_delivery_startmonth = GETPOSTINT('search_date_delivery_startmonth'); $search_date_delivery_startyear = GETPOSTINT('search_date_delivery_startyear'); $search_date_delivery_endday = GETPOSTINT('search_date_delivery_endday'); $search_date_delivery_endmonth = GETPOSTINT('search_date_delivery_endmonth'); $search_date_delivery_endyear = GETPOSTINT('search_date_delivery_endyear'); $search_date_delivery_start = dol_mktime(0, 0, 0, $search_date_delivery_startmonth, $search_date_delivery_startday, $search_date_delivery_startyear); // Use tzserver $search_date_delivery_end = dol_mktime(23, 59, 59, $search_date_delivery_endmonth, $search_date_delivery_endday, $search_date_delivery_endyear); $search_date_create_startday = GETPOSTINT('search_date_create_startday'); $search_date_create_startmonth = GETPOSTINT('search_date_create_startmonth'); $search_date_create_startyear = GETPOSTINT('search_date_create_startyear'); $search_date_create_endday = GETPOSTINT('search_date_create_endday'); $search_date_create_endmonth = GETPOSTINT('search_date_create_endmonth'); $search_date_create_endyear = GETPOSTINT('search_date_create_endyear'); $search_date_create_start = dol_mktime(0, 0, 0, $search_date_create_startmonth, $search_date_create_startday, $search_date_create_startyear); // Use tzserver $search_date_create_end = dol_mktime(23, 59, 59, $search_date_create_endmonth, $search_date_create_endday, $search_date_create_endyear); $search_billed = GETPOST("search_billed", 'intcomma'); $search_status = GETPOST('search_status', 'intcomma'); $search_all = GETPOST('search_all', 'alphanohtml') ? GETPOST('search_all', 'alphanohtml') : GETPOST('sall', 'alphanohtml'); $limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit; $sortfield = GETPOST('sortfield', 'aZ09comma'); $sortorder = GETPOST('sortorder', 'aZ09comma'); $page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page"); if (!$sortfield) { $sortfield = "e.ref"; } if (!$sortorder) { $sortorder = "DESC"; } if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // If $page is not defined, or '' or -1 or if we click on clear filters $page = 0; } $offset = $limit * $page; $pageprev = $page - 1; $pagenext = $page + 1; $diroutputmassaction = $conf->reception->multidir_output[$conf->entity].'/temp/massgeneration/'.$user->id; $object = new Reception($db); // Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context $hookmanager->initHooks(array('receptionlist')); $extrafields = new ExtraFields($db); // Fetch optionals attributes and labels $extrafields->fetch_name_optionals_label($object->table_element); $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_'); // List of fields to search into when doing a "search in all" $fieldstosearchall = array( 'e.ref' => "Ref", 'e.ref_supplier'=>"RefSupplier", 's.nom' => "ThirdParty", 'e.note_public' => 'NotePublic', ); if (empty($user->socid)) { $fieldstosearchall["e.note_private"] = "NotePrivate"; } $checkedtypetiers = 0; $arrayfields = array( 'e.ref' => array('label' => $langs->trans("Ref"), 'checked' => 1), 'e.ref_supplier' => array('label' => $langs->trans("RefSupplier"), 'checked' => 1), 's.nom' => array('label' => $langs->trans("ThirdParty"), 'checked' => 1), 's.town' => array('label' => $langs->trans("Town"), 'checked' => 1), 's.zip' => array('label' => $langs->trans("Zip"), 'checked' => 1), 'state.nom' => array('label' => $langs->trans("StateShort"), 'checked' => 0), 'country.code_iso' => array('label' => $langs->trans("Country"), 'checked' => 0), 'typent.code' => array('label' => $langs->trans("ThirdPartyType"), 'checked' => $checkedtypetiers), 'e.date_delivery' => array('label' => $langs->trans("DateDeliveryPlanned"), 'checked' => 1), 'e.datec' => array('label' => $langs->trans("DateCreation"), 'checked' => 0, 'position' => 500), 'e.tms' => array('label' => $langs->trans("DateModificationShort"), 'checked' => 0, 'position' => 500), 'e.fk_statut' => array('label' => $langs->trans("Status"), 'checked' => 1, 'position' => 1000), 'e.billed' => array('label' => $langs->trans("Billed"), 'checked' => 1, 'position' => 1000, 'enabled' => 'getDolGlobalString("WORKFLOW_BILL_ON_RECEPTION") !== "0"') ); // Extra fields include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php'; $object->fields = dol_sort_array($object->fields, 'position'); $arrayfields = dol_sort_array($arrayfields, 'position'); '@phan-var-force array,position?:int,help?:string}> $arrayfields'; // dol_sort_array looses type for Phan $error = 0; // Security check $receptionid = GETPOSTINT('id'); if ($user->socid) { $socid = $user->socid; } $result = restrictedArea($user, 'reception', $receptionid, ''); /* * Actions */ if (GETPOST('cancel', 'alpha')) { $action = 'list'; $massaction = ''; } if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_createbills') { $massaction = ''; } $parameters = array('socid' => $socid, 'arrayfields' => &$arrayfields); $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks if ($reshook < 0) { setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); } include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php'; // Purge search criteria if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers $search_ref_supplier = ''; $search_ref_rcp = ''; $search_ref_liv = ''; $search_company = ''; $search_town = ''; $search_zip = ""; $search_state = ""; $search_country = ''; $search_type_thirdparty = ''; $search_date_delivery_startday = ''; $search_date_delivery_startmonth = ''; $search_date_delivery_startyear = ''; $search_date_delivery_endday = ''; $search_date_delivery_endmonth = ''; $search_date_delivery_endyear = ''; $search_date_delivery_start = ''; $search_date_delivery_end = ''; $search_date_create_startday = ''; $search_date_create_startmonth = ''; $search_date_create_startyear = ''; $search_date_create_endday = ''; $search_date_create_endmonth = ''; $search_date_create_endyear = ''; $search_date_create_start = ''; $search_date_create_end = ''; $search_billed = ''; $search_status = ''; $toselect = array(); $search_array_options = array(); } if (empty($reshook)) { // Mass actions $objectclass = 'Reception'; $objectlabel = 'Receptions'; $permissiontoread = $user->hasRight('reception', 'lire'); $permissiontoadd = $user->hasRight('reception', 'creer'); $permissiontodelete = $user->hasRight('reception', 'supprimer'); $uploaddir = $conf->reception->multidir_output[$conf->entity]; include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php'; if ($massaction == 'confirm_createbills' && ($user->hasRight("fournisseur", "facture", "creer") || $user->hasRight("supplier_invoice", "creer"))) { $receptions = GETPOST('toselect', 'array'); $createbills_onebythird = GETPOSTINT('createbills_onebythird'); $validate_invoices = GETPOSTINT('validate_invoices'); $errors = array(); $TFact = array(); $TFactThird = array(); $TFactThirdNbLines = array(); $nb_bills_created = 0; $lastid = 0; $lastref = ''; $db->begin(); //sort ids to keep order if one bill per third sort($receptions); foreach ($receptions as $id_reception) { $rcp = new Reception($db); // We not allow invoice reception that are in draft status if ($rcp->fetch($id_reception) <= 0 || $rcp->statut == $rcp::STATUS_DRAFT) { $errors[] = $langs->trans('StatusOfRefMustBe', $rcp->ref, $langs->transnoentities("StatusReceptionValidatedShort")); $error++; continue; } $objecttmp = new FactureFournisseur($db); if (!empty($createbills_onebythird) && !empty($TFactThird[$rcp->socid])) { // If option "one bill per third" is set, and an invoice for this thirdparty was already created, we reuse it. $objecttmp = $TFactThird[$rcp->socid]; // Add all links of this new reception to the existing invoice $objecttmp->fetchObjectLinked(); $rcp->fetchObjectLinked(); if (!empty($rcp->linkedObjectsIds['order_supplier']) && is_array($rcp->linkedObjectsIds['order_supplier'])) { foreach ($rcp->linkedObjectsIds['order_supplier'] as $key => $value) { if (empty($objecttmp->linkedObjectsIds['order_supplier']) || !in_array($value, $objecttmp->linkedObjectsIds['order_supplier'])) { //Don't try to link if already linked $objecttmp->add_object_linked('order_supplier', $value); // add supplier order linked object } } } } else { $cond_reglement_id = 0; $mode_reglement_id = 0; $fk_account = 0; $transport_mode_id = 0; if (!empty($rcp->cond_reglement_id)) { $cond_reglement_id = $rcp->cond_reglement_id; } if (!empty($rcp->mode_reglement_id)) { $mode_reglement_id = $rcp->mode_reglement_id; } if (!empty($rcp->fk_account)) { $fk_account = $rcp->fk_account; } if (!empty($rcp->transport_mode_id)) { $transport_mode_id = $rcp->transport_mode_id; } if (empty($cond_reglement_id) || empty($mode_reglement_id) || empty($fk_account) || empty($transport_mode_id) ) { if (!isset($rcp->supplier_order)) { $rcp->fetch_origin(); } // try to get from source of reception (supplier order) if (!empty($rcp->origin_object)) { $supplierOrder = $rcp->origin_object; if (empty($cond_reglement_id) && !empty($supplierOrder->cond_reglement_id)) { $cond_reglement_id = $supplierOrder->cond_reglement_id; } if (empty($mode_reglement_id) && !empty($supplierOrder->mode_reglement_id)) { $mode_reglement_id = $supplierOrder->mode_reglement_id; } if (empty($fk_account) && !empty($supplierOrder->fk_account)) { $fk_account = $supplierOrder->fk_account; } if (empty($transport_mode_id) && !empty($supplierOrder->transport_mode_id)) { $transport_mode_id = $supplierOrder->transport_mode_id; } } // try get from third-party of reception if (!empty($rcp->thirdparty)) { $soc = $rcp->thirdparty; if (empty($cond_reglement_id) && !empty($soc->cond_reglement_supplier_id)) { $cond_reglement_id = $soc->cond_reglement_supplier_id; } if (empty($mode_reglement_id) && !empty($soc->mode_reglement_supplier_id)) { $mode_reglement_id = $soc->mode_reglement_supplier_id; } if (empty($fk_account) && !empty($soc->fk_account)) { $fk_account = $soc->fk_account; } if (empty($transport_mode_id) && !empty($soc->transport_mode_id)) { $transport_mode_id = $soc->transport_mode_id; } } } // If we want one invoice per reception or if there is no first invoice yet for this thirdparty. $objecttmp->socid = $rcp->socid; $objecttmp->type = $objecttmp::TYPE_STANDARD; $objecttmp->cond_reglement_id = $cond_reglement_id; $objecttmp->mode_reglement_id = $mode_reglement_id; $objecttmp->fk_account = $fk_account; $objecttmp->transport_mode_id = $transport_mode_id; // if the VAT reverse-charge is activated by default in supplier card to resume the information $objecttmp->vat_reverse_charge = $soc->vat_reverse_charge; $objecttmp->fk_project = $rcp->fk_project; //$objecttmp->multicurrency_code = $rcp->multicurrency_code; if (empty($createbills_onebythird)) { $objecttmp->ref_supplier = $rcp->ref; } else { // Set a unique value for the invoice for the n reception $objecttmp->ref_supplier = $langs->trans("Reception").' '.dol_print_date(dol_now(), 'dayhourlog').'-'.$rcp->socid; } $datefacture = dol_mktime(12, 0, 0, GETPOSTINT('remonth'), GETPOSTINT('reday'), GETPOSTINT('reyear')); if (empty($datefacture)) { $datefacture = dol_now(); } $objecttmp->date = $datefacture; $objecttmp->origin = 'reception'; $objecttmp->origin_id = $id_reception; // Auto calculation of date due if not filled by user if (empty($objecttmp->date_echeance)) { $objecttmp->date_echeance = $objecttmp->calculate_date_lim_reglement(); } $objecttmp->array_options = $rcp->array_options; // Copy extrafields // Set $objecttmp->linked_objects with all links order_supplier existing on reception, so same links will be added to the generated supplier invoice $rcp->fetchObjectLinked(); if (count($rcp->linkedObjectsIds['order_supplier']) > 0) { foreach ($rcp->linkedObjectsIds['order_supplier'] as $key => $value) { $objecttmp->linked_objects['order_supplier'] = $value; } } $res = $objecttmp->create($user); // This should create the supplier invoice + links into $objecttmp->linked_objects + add a link to ->origin_id //var_dump($objecttmp->error);exit; if ($res > 0) { $nb_bills_created++; $lastref = $objecttmp->ref; $lastid = $objecttmp->id; $TFactThird[$rcp->socid] = $objecttmp; $TFactThirdNbLines[$rcp->socid] = 0; //init nblines to have lines ordered by expedition and rang } else { $langs->load("errors"); $errors[] = $rcp->ref.' : '.$langs->trans($objecttmp->error); $error++; } } if ($objecttmp->id > 0) { $res = $objecttmp->add_object_linked($objecttmp->origin, $id_reception); if ($res == 0) { $errors[] = $objecttmp->error; $error++; } if (!$error) { $lines = $rcp->lines; if (empty($lines) && method_exists($rcp, 'fetch_lines')) { $rcp->fetch_lines(); $lines = $rcp->lines; } $fk_parent_line = 0; $num = count($lines); for ($i = 0; $i < $num; $i++) { $desc = ($lines[$i]->desc ? $lines[$i]->desc : $lines[$i]->libelle); // If we build one invoice for several reception, we must put the ref of reception on the invoice line if (!empty($createbills_onebythird)) { $desc = dol_concatdesc($desc, $langs->trans("Reception").' '.$rcp->ref); $desc .= (!empty($rcp->date_reception) ? ' - '.dol_print_date($rcp->date_reception, 'day') : ''); } if ($lines[$i]->subprice < 0) { // Negative line, we create a discount line $discount = new DiscountAbsolute($db); $discount->fk_soc = $objecttmp->socid; $discount->socid = $objecttmp->socid; $discount->amount_ht = abs($lines[$i]->total_ht); $discount->amount_tva = abs($lines[$i]->total_tva); $discount->amount_ttc = abs($lines[$i]->total_ttc); $discount->tva_tx = $lines[$i]->tva_tx; $discount->fk_user = $user->id; $discount->description = $desc; $discountid = $discount->create($user); if ($discountid > 0) { $result = $objecttmp->insert_discount($discountid); //$result=$discount->link_to_invoice($lineid,$id); } else { setEventMessages($discount->error, $discount->errors, 'errors'); $error++; break; } } else { // Positive line $product_type = ($lines[$i]->product_type ? $lines[$i]->product_type : 0); // Date start $date_start = false; if ($lines[$i]->date_debut_prevue) { $date_start = $lines[$i]->date_debut_prevue; } if ($lines[$i]->date_debut_reel) { $date_start = $lines[$i]->date_debut_reel; } if ($lines[$i]->date_start) { $date_start = $lines[$i]->date_start; } //Date end $date_end = false; if ($lines[$i]->date_fin_prevue) { $date_end = $lines[$i]->date_fin_prevue; } if ($lines[$i]->date_fin_reel) { $date_end = $lines[$i]->date_fin_reel; } if ($lines[$i]->date_end) { $date_end = $lines[$i]->date_end; } // Reset fk_parent_line for no child products and special product if (($lines[$i]->product_type != 9 && empty($lines[$i]->fk_parent_line)) || $lines[$i]->product_type == 9) { $fk_parent_line = 0; } // Extrafields if (method_exists($lines[$i], 'fetch_optionals')) { $lines[$i]->fetch_optionals(); $array_options = $lines[$i]->array_options; } $objecttmp->context['createfromclone'] = 'createfromclone'; $rang = $i; //there may already be rows from previous receptions if (!empty($createbills_onebythird)) { $rang = $TFactThirdNbLines[$rcp->socid]; } $result = $objecttmp->addline( $desc, $lines[$i]->subprice, $lines[$i]->tva_tx, $lines[$i]->localtax1_tx, $lines[$i]->localtax2_tx, $lines[$i]->qty, $lines[$i]->fk_product, $lines[$i]->remise_percent, $date_start, $date_end, 0, $lines[$i]->info_bits, 'HT', $product_type, $rang, false, array(), null, $lines[$i]->rowid, 0, $lines[$i]->ref_supplier ); $rcp->add_object_linked('facture_fourn_det', $result); if ($result > 0) { $lineid = $result; if (!empty($createbills_onebythird)) { //increment rang to keep order $TFactThirdNbLines[$rcp->socid]++; } } else { $lineid = 0; $error++; break; } // Defined the new fk_parent_line if ($result > 0 && $lines[$i]->product_type == 9) { $fk_parent_line = $result; } } } } } //$rcp->classifyBilled($user); // Disabled. This behavior must be set or not using the workflow module. if (!empty($createbills_onebythird) && empty($TFactThird[$rcp->socid])) { $TFactThird[$rcp->socid] = $objecttmp; } else { $TFact[$objecttmp->id] = $objecttmp; } } // Build doc with all invoices $TAllFact = empty($createbills_onebythird) ? $TFact : $TFactThird; $toselect = array(); if (!$error && $validate_invoices) { $massaction = $action = 'builddoc'; foreach ($TAllFact as &$objecttmp) { $result = $objecttmp->validate($user); if ($result <= 0) { $error++; setEventMessages($objecttmp->error, $objecttmp->errors, 'errors'); break; } $id = $objecttmp->id; // For builddoc action $lastref = $objecttmp->ref; // generated ref $object = $objecttmp; // Fac builddoc $donotredirect = 1; $upload_dir = $conf->fournisseur->facture->dir_output; $permissiontoadd = ($user->hasRight('fournisseur', 'facture', 'creer') || $user->hasRight('supplier_invoice', 'creer')); // Call action to build doc $savobject = $object; $object = $objecttmp; include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php'; $object = $savobject; } $massaction = $action = 'confirm_createbills'; } if (!$error) { $db->commit(); if ($nb_bills_created == 1) { $texttoshow = $langs->trans('BillXCreated', '{s1}'); $texttoshow = str_replace('{s1}', ''.$lastref.'', $texttoshow); setEventMessages($texttoshow, null, 'mesgs'); } else { setEventMessages($langs->trans('BillCreated', $nb_bills_created), null, 'mesgs'); } } else { $db->rollback(); $action = 'create'; $_GET["origin"] = $_POST["origin"]; // Keep this ? $_GET["originid"] = $_POST["originid"]; // Keep this ? setEventMessages($object->error, $errors, 'errors'); $error++; } } } /* * View */ $now = dol_now(); $form = new Form($db); $companystatic = new Societe($db); $reception = new Reception($db); $formcompany = new FormCompany($db); $formfile = new FormFile($db); $helpurl = 'EN:Module_Receptions|FR:Module_Receptions|ES:Módulo_Receptiones'; llxHeader('', $langs->trans('ListOfReceptions'), $helpurl, '', 0, 0, '', '', '', 'bodyforlist mod-reception page-list'); $sql = "SELECT e.rowid, e.ref, e.ref_supplier, e.date_reception as date_reception, e.date_delivery as delivery_date, l.date_delivery as date_reception2, e.fk_statut as status, e.billed,"; $sql .= " s.rowid as socid, s.nom as name, s.town, s.zip, s.fk_pays, s.client, s.code_client,"; $sql .= " typent.code as typent_code,"; $sql .= " state.code_departement as state_code, state.nom as state_name,"; $sql .= " e.date_creation as date_creation, e.tms as date_modification"; // Add fields from extrafields if (!empty($extrafields->attributes[$object->table_element]['label'])) { foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) { $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key." as options_".$key : ''); } } // Add fields from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListSelect', $parameters); // Note that $action and $object may have been modified by hook $sql .= $hookmanager->resPrint; $sqlfields = $sql; // $sql fields to remove for count total $sql .= " FROM ".MAIN_DB_PREFIX."reception as e"; if (!empty($extrafields->attributes[$object->table_element]['label']) && is_array($extrafields->attributes[$object->table_element]['label']) && count($extrafields->attributes[$object->table_element]['label'])) { $sql .= " LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element."_extrafields as ef on (e.rowid = ef.fk_object)"; } $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = e.fk_soc"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_country as country on (country.rowid = s.fk_pays)"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_typent as typent on (typent.id = s.fk_typent)"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_departements as state on (state.rowid = s.fk_departement)"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."element_element as ee ON e.rowid = ee.fk_source AND ee.sourcetype = 'reception' AND ee.targettype = 'delivery'"; $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."delivery as l ON l.rowid = ee.fk_target"; // Add table from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListFrom', $parameters, $object); // Note that $action and $object may have been modified by hook $sql .= $hookmanager->resPrint; $sql .= " WHERE e.entity IN (".getEntity('reception').")"; if ($socid) { $sql .= " AND e.fk_soc = ".((int) $socid); } if ($search_status != '' && $search_status >= 0) { $sql .= " AND e.fk_statut = ".((int) $search_status); } if ($search_billed != '' && $search_billed >= 0) { $sql .= ' AND e.billed = '.((int) $search_billed); } if ($search_town) { $sql .= natural_search('s.town', $search_town); } if ($search_zip) { $sql .= natural_search("s.zip", $search_zip); } if ($search_state) { $sql .= natural_search("state.nom", $search_state); } if ($search_country) { $sql .= " AND s.fk_pays IN (".$db->sanitize($search_country).')'; } if ($search_type_thirdparty != '' && $search_type_thirdparty > 0) { $sql .= " AND s.fk_typent IN (".$db->sanitize($search_type_thirdparty).')'; } if ($search_date_delivery_start) { $sql .= " AND e.date_delivery >= '".$db->idate($search_date_delivery_start)."'"; } if ($search_date_delivery_end) { $sql .= " AND e.date_delivery <= '".$db->idate($search_date_delivery_end)."'"; } if ($search_date_create_start) { $sql .= " AND e.date_creation >= '".$db->idate($search_date_create_start)."'"; } if ($search_date_create_end) { $sql .= " AND e.date_creation <= '".$db->idate($search_date_create_end)."'"; } if ($search_ref_rcp) { $sql .= natural_search('e.ref', $search_ref_rcp); } if ($search_ref_liv) { $sql .= natural_search('l.ref', $search_ref_liv); } if ($search_company) { $sql .= natural_search('s.nom', $search_company); } if ($search_ref_supplier) { $sql .= natural_search('e.ref_supplier', $search_ref_supplier); } if ($search_all) { $sql .= natural_search(array_keys($fieldstosearchall), $search_all); } // Search on sale representative /* if ($search_sale && $search_sale != '-1') { if ($search_sale == -2) { $sql .= " AND NOT EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc WHERE sc.fk_soc = c.fk_soc)"; } elseif ($search_sale > 0) { $sql .= " AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc WHERE sc.fk_soc = c.fk_soc AND sc.fk_user = ".((int) $search_sale).")"; } } */ // Add where from extra fields include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php'; // Add where from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters); // Note that $action and $object may have been modified by hook $sql .= $hookmanager->resPrint; // Add HAVING from hooks $parameters = array(); $reshook = $hookmanager->executeHooks('printFieldListHaving', $parameters, $object); // Note that $action and $object may have been modified by hook $sql .= empty($hookmanager->resPrint) ? "" : " HAVING 1=1 ".$hookmanager->resPrint; $nbtotalofrecords = ''; if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) { /* The fast and low memory method to get and count full list converts the sql into a sql count */ $sqlforcount = preg_replace('/^'.preg_quote($sqlfields, '/').'/', 'SELECT COUNT(*) as nbtotalofrecords', $sql); $sqlforcount = preg_replace('/GROUP BY .*$/', '', $sqlforcount); $resql = $db->query($sqlforcount); if ($resql) { $objforcount = $db->fetch_object($resql); $nbtotalofrecords = $objforcount->nbtotalofrecords; } else { dol_print_error($db); } if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0 $page = 0; $offset = 0; } $db->free($resql); } // Complete request and execute it with limit $sql .= $db->order($sortfield, $sortorder); if ($limit) { $sql .= $db->plimit($limit + 1, $offset); } //print $sql; $resql = $db->query($sql); if (!$resql) { dol_print_error($db); exit; } $num = $db->num_rows($resql); $reception = new Reception($db); $arrayofselected = is_array($toselect) ? $toselect : array(); $param = ''; if (!empty($mode)) { $param .= '&mode='.urlencode($mode); } if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) { $param .= '&contextpage='.urlencode($contextpage); } if ($limit > 0 && $limit != $conf->liste_limit) { $param .= '&limit='.((int) $limit); } if ($search_all) { $param .= "&search_all=".urlencode($search_all); } if ($search_ref_rcp) { $param .= "&search_ref_rcp=".urlencode($search_ref_rcp); } if ($search_ref_liv) { $param .= "&search_ref_liv=".urlencode($search_ref_liv); } if ($search_company) { $param .= "&search_company=".urlencode($search_company); } if ($optioncss != '') { $param .= '&optioncss='.urlencode($optioncss); } if ($search_billed != '' && $search_billed >= 0) { $param .= "&search_billed=".urlencode((string) ($search_billed)); } if ($search_town) { $param .= "&search_town=".urlencode($search_town); } if ($search_zip) { $param .= "&search_zip=".urlencode($search_zip); } if ($search_state) { $param .= "&search_state=".urlencode($search_state); } if ($search_status != '') { $param .= "&search_status=".urlencode($search_status); } if ($search_country) { $param .= "&search_country=".urlencode((string) ($search_country)); } if ($search_type_thirdparty) { $param .= "&search_type_thirdparty=".urlencode((string) ($search_type_thirdparty)); } if ($search_date_delivery_startday) { $param .= '&search_date_delivery_startday='.urlencode((string) ($search_date_delivery_startday)); } if ($search_date_delivery_startmonth) { $param .= '&search_date_delivery_startmonth='.urlencode((string) ($search_date_delivery_startmonth)); } if ($search_date_delivery_startyear) { $param .= '&search_date_delivery_startyear='.urlencode((string) ($search_date_delivery_startyear)); } if ($search_date_delivery_endday) { $param .= '&search_date_delivery_endday='.urlencode((string) ($search_date_delivery_endday)); } if ($search_date_delivery_endmonth) { $param .= '&search_date_delivery_endmonth='.urlencode((string) ($search_date_delivery_endmonth)); } if ($search_date_delivery_endyear) { $param .= '&search_date_delivery_endyear='.urlencode((string) ($search_date_delivery_endyear)); } if ($search_date_create_startday) { $param .= '&search_date_create_startday='.urlencode((string) ($search_date_create_startday)); } if ($search_date_create_startmonth) { $param .= '&search_date_create_startmonth='.urlencode((string) ($search_date_create_startmonth)); } if ($search_date_create_startyear) { $param .= '&search_date_create_startyear='.urlencode((string) ($search_date_create_startyear)); } if ($search_date_create_endday) { $param .= '&search_date_create_endday='.urlencode((string) ($search_date_create_endday)); } if ($search_date_create_endmonth) { $param .= '&search_date_create_endmonth='.urlencode((string) ($search_date_create_endmonth)); } if ($search_date_create_endyear) { $param .= '&search_date_create_endyear='.urlencode((string) ($search_date_create_endyear)); } if ($search_ref_supplier) { $param .= "&search_ref_supplier=".urlencode($search_ref_supplier); } // Add $param from extra fields if ($search_array_options) { foreach ($search_array_options as $key => $val) { $crit = $val; $tmpkey = preg_replace('/search_options_/', '', $key); if (is_array($val) && array_key_exists('start', $val) && array_key_exists('end', $val)) { // date range from list filters is stored as array('start' => , 'end' => ) // start date $param .= '&search_options_'.$tmpkey.'_startyear='.dol_print_date($val['start'], '%Y'); $param .= '&search_options_'.$tmpkey.'_startmonth='.dol_print_date($val['start'], '%m'); $param .= '&search_options_'.$tmpkey.'_startday='.dol_print_date($val['start'], '%d'); $param .= '&search_options_'.$tmpkey.'_starthour='.dol_print_date($val['start'], '%H'); $param .= '&search_options_'.$tmpkey.'_startmin='.dol_print_date($val['start'], '%M'); // end date $param .= '&search_options_'.$tmpkey.'_endyear='.dol_print_date($val['end'], '%Y'); $param .= '&search_options_'.$tmpkey.'_endmonth='.dol_print_date($val['end'], '%m'); $param .= '&search_options_'.$tmpkey.'_endday='.dol_print_date($val['end'], '%d'); $param .= '&search_options_'.$tmpkey.'_endhour='.dol_print_date($val['end'], '%H'); $param .= '&search_options_'.$tmpkey.'_endmin='.dol_print_date($val['end'], '%M'); $val = ''; } if ($val != '') { $param .= '&search_options_'.$tmpkey.'='.urlencode($val); } } } $arrayofmassactions = array( 'builddoc' => img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"), // 'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"), ); if ($user->hasRight('fournisseur', 'facture', 'creer') || $user->hasRight('supplier_invoice', 'creer')) { $arrayofmassactions['createbills'] = $langs->trans("CreateInvoiceForThisReceptions"); } if (in_array($massaction, array('presend', 'createbills'))) { $arrayofmassactions = array(); } $massactionbutton = $form->selectMassAction('', $arrayofmassactions); // Currently: a sending can't create from sending list // $url = DOL_URL_ROOT.'/expedition/card.php?action=create'; // if (!empty($socid)) $url .= '&socid='.$socid; // $newcardbutton = dolGetButtonTitle($langs->trans('NewSending'), '', 'fa fa-plus-circle', $url, '', $user->rights->expedition->creer); $newcardbutton = ''; $newcardbutton .= dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-bars imgforviewmode', $_SERVER["PHP_SELF"].'?mode=common'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ((empty($mode) || $mode == 'common') ? 2 : 1), array('morecss' => 'reposition')); $newcardbutton .= dolGetButtonTitle($langs->trans('ViewKanban'), '', 'fa fa-th-list imgforviewmode', $_SERVER["PHP_SELF"].'?mode=kanban'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ($mode == 'kanban' ? 2 : 1), array('morecss' => 'reposition')); $newcardbutton .= dolGetButtonTitleSeparator(); $newcardbutton .= dolGetButtonTitle($langs->trans('NewReception'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/reception/card.php?action=create2', '', $user->hasRight('reception', 'creer')); $i = 0; print '
'."\n"; if ($optioncss != '') { print ''; } print ''; print ''; print ''; print ''; print ''; print ''; // @phan-suppress-next-line PhanPluginSuspiciousParamOrder print_barre_liste($langs->trans('ListOfReceptions'), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'dollyrevert', 0, $newcardbutton, '', $limit, 0, 0, 1); if ($massaction == 'createbills') { //var_dump($_REQUEST); print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print '
'; print $langs->trans('DateInvoice'); print ''; print $form->selectDate('', '', 0, 0, 0, '', 1, 1); print '
'; print $langs->trans('CreateOneBillByThird'); print ''; print $form->selectyesno('createbills_onebythird', '', 1); print '
'; print $langs->trans('ValidateInvoices'); print ''; if (isModEnabled('stock') && getDolGlobalString('STOCK_CALCULATE_ON_BILL')) { print $form->selectyesno('validate_invoices', 0, 1, 1); print ' ('.$langs->trans("AutoValidationNotPossibleWhenStockIsDecreasedOnInvoiceValidation").')'; } else { print $form->selectyesno('validate_invoices', 0, 1); } print '
'; print '
'; print '
'; print ' '; print ''; print '
'; print '
'; } if ($search_all) { foreach ($fieldstosearchall as $key => $val) { $fieldstosearchall[$key] = $langs->trans($val); } print '
'.$langs->trans("FilterOnInto", $search_all).implode(', ', $fieldstosearchall).'
'; } $moreforfilter = ''; if (!empty($moreforfilter)) { print '
'; print $moreforfilter; $parameters = array('type' => $type); $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters); // Note that $action and $object may have been modified by hook print $hookmanager->resPrint; print '
'; } $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage; $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')); if ($massactionbutton) { $selectedfields .= $form->showCheckAddButtons('checkforselect', 1); // This also change content of $arrayfields } print '
'; print ''."\n"; // Fields title search // -------------------------------------------------------------------- print ''; // Action column if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) { print ''; } // Ref if (!empty($arrayfields['e.ref']['checked'])) { print ''; } // Ref customer if (!empty($arrayfields['e.ref_supplier']['checked'])) { print ''; } // Thirdparty if (!empty($arrayfields['s.nom']['checked'])) { print ''; } // Town if (!empty($arrayfields['s.town']['checked'])) { print ''; } // Zip if (!empty($arrayfields['s.zip']['checked'])) { print ''; } // State if (!empty($arrayfields['state.nom']['checked'])) { print ''; } // Country if (!empty($arrayfields['country.code_iso']['checked'])) { print ''; } // Company type if (!empty($arrayfields['typent.code']['checked'])) { print ''; } // Date delivery planned if (!empty($arrayfields['e.date_delivery']['checked'])) { print ''; } if (!empty($arrayfields['l.ref']['checked'])) { // Delivery ref print ''; } // Extra fields include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php'; // Fields from hook $parameters = array('arrayfields' => $arrayfields); $reshook = $hookmanager->executeHooks('printFieldListOption', $parameters); // Note that $action and $object may have been modified by hook print $hookmanager->resPrint; // Date creation if (!empty($arrayfields['e.datec']['checked'])) { print ''; } // Date modification if (!empty($arrayfields['e.tms']['checked'])) { print ''; } // Status if (!empty($arrayfields['e.fk_statut']['checked'])) { print ''; } // Status billed if (!empty($arrayfields['e.billed']['checked'])) { print ''; } // Action column if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) { print ''; } print ''."\n"; $totalarray = array(); $totalarray['nbfield'] = 0; // Fields title label // -------------------------------------------------------------------- print ''; // Action column if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) { print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch '); $totalarray['nbfield']++; } if (!empty($arrayfields['e.ref']['checked'])) { print_liste_field_titre($arrayfields['e.ref']['label'], $_SERVER["PHP_SELF"], "e.ref", "", $param, '', $sortfield, $sortorder); $totalarray['nbfield']++; } if (!empty($arrayfields['e.ref_supplier']['checked'])) { print_liste_field_titre($arrayfields['e.ref_supplier']['label'], $_SERVER["PHP_SELF"], "e.ref_supplier", "", $param, '', $sortfield, $sortorder); $totalarray['nbfield']++; } if (!empty($arrayfields['s.nom']['checked'])) { print_liste_field_titre($arrayfields['s.nom']['label'], $_SERVER["PHP_SELF"], "s.nom", "", $param, '', $sortfield, $sortorder, 'left '); $totalarray['nbfield']++; } if (!empty($arrayfields['s.town']['checked'])) { print_liste_field_titre($arrayfields['s.town']['label'], $_SERVER["PHP_SELF"], 's.town', '', $param, '', $sortfield, $sortorder); $totalarray['nbfield']++; } if (!empty($arrayfields['s.zip']['checked'])) { print_liste_field_titre($arrayfields['s.zip']['label'], $_SERVER["PHP_SELF"], 's.zip', '', $param, '', $sortfield, $sortorder); $totalarray['nbfield']++; } if (!empty($arrayfields['state.nom']['checked'])) { print_liste_field_titre($arrayfields['state.nom']['label'], $_SERVER["PHP_SELF"], "state.nom", "", $param, '', $sortfield, $sortorder); $totalarray['nbfield']++; } if (!empty($arrayfields['country.code_iso']['checked'])) { print_liste_field_titre($arrayfields['country.code_iso']['label'], $_SERVER["PHP_SELF"], "country.code_iso", "", $param, '', $sortfield, $sortorder, 'center '); $totalarray['nbfield']++; } if (!empty($arrayfields['typent.code']['checked'])) { print_liste_field_titre($arrayfields['typent.code']['label'], $_SERVER["PHP_SELF"], "typent.code", "", $param, '', $sortfield, $sortorder, 'center '); $totalarray['nbfield']++; } if (!empty($arrayfields['e.date_delivery']['checked'])) { print_liste_field_titre($arrayfields['e.date_delivery']['label'], $_SERVER["PHP_SELF"], "e.date_delivery", "", $param, '', $sortfield, $sortorder, 'center '); $totalarray['nbfield']++; } if (!empty($arrayfields['l.ref']['checked'])) { print_liste_field_titre($arrayfields['l.ref']['label'], $_SERVER["PHP_SELF"], "l.ref", "", $param, '', $sortfield, $sortorder); $totalarray['nbfield']++; } if (!empty($arrayfields['l.date_delivery']['checked'])) { print_liste_field_titre($arrayfields['l.date_delivery']['label'], $_SERVER["PHP_SELF"], "l.date_delivery", "", $param, '', $sortfield, $sortorder, 'center '); $totalarray['nbfield']++; } // Extra fields include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php'; // Hook fields $parameters = array('arrayfields' => $arrayfields, 'param' => $param, 'sortfield' => $sortfield, 'sortorder' => $sortorder, '$totalarray' => &$totalarray); $reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object); // Note that $action and $object may have been modified by hook print $hookmanager->resPrint; if (!empty($arrayfields['e.datec']['checked'])) { print_liste_field_titre($arrayfields['e.datec']['label'], $_SERVER["PHP_SELF"], "e.date_creation", "", $param, '', $sortfield, $sortorder, 'center nowrap '); $totalarray['nbfield']++; } if (!empty($arrayfields['e.tms']['checked'])) { print_liste_field_titre($arrayfields['e.tms']['label'], $_SERVER["PHP_SELF"], "e.tms", "", $param, '', $sortfield, $sortorder, 'center nowrap '); $totalarray['nbfield']++; } if (!empty($arrayfields['e.fk_statut']['checked'])) { print_liste_field_titre($arrayfields['e.fk_statut']['label'], $_SERVER["PHP_SELF"], "e.fk_statut", "", $param, '', $sortfield, $sortorder, 'right '); $totalarray['nbfield']++; } if (!empty($arrayfields['e.billed']['checked'])) { print_liste_field_titre($arrayfields['e.billed']['label'], $_SERVER["PHP_SELF"], "e.billed", "", $param, '', $sortfield, $sortorder, 'center '); $totalarray['nbfield']++; } // Action column if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) { print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch '); $totalarray['nbfield']++; } print "\n"; // Loop on record // -------------------------------------------------------------------- $i = 0; $savnbfield = $totalarray['nbfield']; $totalarray = array(); $totalarray['nbfield'] = 0; $imaxinloop = ($limit ? min($num, $limit) : $num); while ($i < $imaxinloop) { $obj = $db->fetch_object($resql); if (empty($obj)) { break; // Should not happen } $reception->id = $obj->rowid; $reception->ref = $obj->ref; //$reception->ref_supplier = $obj->ref_supplier; $reception->statut = $obj->status; $reception->status = $obj->status; $reception->socid = $obj->socid; $reception->billed = $obj->billed; $reception->fetch_thirdparty(); $object = $reception; $companystatic->id = $obj->socid; $companystatic->ref = $obj->name; $companystatic->name = $obj->name; if ($mode == 'kanban') { if ($i == 0) { print ''; } } else { print ''; // Action column if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) { print ''; } // Ref if (!empty($arrayfields['e.ref']['checked'])) { print '\n"; if (!$i) { $totalarray['nbfield']++; } } // Ref supplier if (!empty($arrayfields['e.ref_supplier']['checked'])) { print '\n"; if (!$i) { $totalarray['nbfield']++; } } // Third party if (!empty($arrayfields['s.nom']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // Town if (!empty($arrayfields['s.town']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // Zip if (!empty($arrayfields['s.zip']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // State if (!empty($arrayfields['state.nom']['checked'])) { print "\n"; if (!$i) { $totalarray['nbfield']++; } } // Country if (!empty($arrayfields['country.code_iso']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // Type ent if (!empty($arrayfields['typent.code']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // Date delivery planned if (!empty($arrayfields['e.date_delivery']['checked'])) { print '\n"; if (!$i) { $totalarray['nbfield']++; } } if (!empty($arrayfields['l.ref']['checked']) || !empty($arrayfields['l.date_delivery']['checked'])) { $reception->fetchObjectLinked($reception->id, $reception->element); $receiving = ''; if (count($reception->linkedObjects['delivery']) > 0) { $receiving = reset($reception->linkedObjects['delivery']); } if (!empty($arrayfields['l.ref']['checked'])) { // Ref print ''; } if (!empty($arrayfields['l.date_delivery']['checked'])) { // Date received print ''."\n"; } } // Extra fields include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php'; // Fields from hook $parameters = array('arrayfields' => $arrayfields, 'obj' => $obj, 'i' => $i, 'totalarray' => &$totalarray); $reshook = $hookmanager->executeHooks('printFieldListValue', $parameters); // Note that $action and $object may have been modified by hook print $hookmanager->resPrint; // Date creation if (!empty($arrayfields['e.datec']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // Date modification if (!empty($arrayfields['e.tms']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // Status if (!empty($arrayfields['e.fk_statut']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // Billed if (!empty($arrayfields['e.billed']['checked'])) { print ''; if (!$i) { $totalarray['nbfield']++; } } // Action column if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) { print ''; } if (!$i) { $totalarray['nbfield']++; } print "\n"; } $i++; } // If no record found if ($num == 0) { $colspan = 1; foreach ($arrayfields as $key => $val) { if (!empty($val['checked'])) { $colspan++; } } print ''; } // Show total line include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php'; $parameters = array('arrayfields' => $arrayfields, 'totalarray' => $totalarray, 'sql' => $sql); $reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters); // Note that $action and $object may have been modified by hook print $hookmanager->resPrint; print "
'; $searchpicto = $form->showFilterButtons('left'); print $searchpicto; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; print $form->selectarray("search_type_thirdparty", $formcompany->typent_array(0), $search_type_thirdparty, 1, 0, 0, '', 0, 0, 0, (!getDolGlobalString('SOCIETE_SORT_ON_TYPEENT') ? 'ASC' : $conf->global->SOCIETE_SORT_ON_TYPEENT), '', 1); print ''; print '
'; print $form->selectDate($search_date_delivery_start ? $search_date_delivery_start : -1, 'search_date_delivery_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From')); print '
'; print '
'; print $form->selectDate($search_date_delivery_end ? $search_date_delivery_end : -1, 'search_date_delivery_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to')); print '
'; print '
'; print ''; } if (!empty($arrayfields['l.date_delivery']['checked'])) { // Date received print ' '; print '
'; print $form->selectDate($search_date_create_start ? $search_date_create_start : -1, 'search_date_create_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From')); print '
'; print '
'; print $form->selectDate($search_date_create_end ? $search_date_create_end : -1, 'search_date_create_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to')); print '
'; print '
'; print ''; print $form->selectarray('search_status', array('0' => $langs->trans('StatusReceptionDraftShort'), '1' => $langs->trans('StatusReceptionValidatedShort'), '2' => $langs->trans('StatusReceptionProcessedShort')), $search_status, 1, 0, 0, '', 0, 0, 0, '', 'search_status width100 onrightofpage'); print ''; print $form->selectyesno('search_billed', $search_billed, 1, 0, 1); print ''; $searchpicto = $form->showFilterButtons(); print $searchpicto; print '
'; print '
'; } $object->date_delivery = $obj->delivery_date; $object->town = $obj->town; // Output Kanban $selected = -1; if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined $selected = 0; if (in_array($object->id, $arrayofselected)) { $selected = 1; } } print $object->getKanbanView('', array('thirdparty' => $companystatic->getNomUrl(1), 'selected' => $selected)); if ($i == min($num, $limit) - 1) { print '
'; print '
'; if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined $selected = 0; if (in_array($obj->rowid, $arrayofselected)) { $selected = 1; } print ''; } print ''; print $reception->getNomUrl(1); $filename = dol_sanitizeFileName($reception->ref); $filedir = $conf->reception->dir_output.'/'.dol_sanitizeFileName($reception->ref); $urlsource = $_SERVER['PHP_SELF'].'?id='.$reception->id; print $formfile->getDocumentsLink($reception->element, $filename, $filedir); print "'; print dol_escape_htmltag($obj->ref_supplier); print "'; print $companystatic->getNomUrl(1); print ''; print dol_escape_htmltag($obj->town); print ''; print dol_escape_htmltag($obj->zip); print '".dol_escape_htmltag($obj->state_name)."'; $tmparray = getCountry($obj->fk_pays, 'all'); print dol_escape_htmltag($tmparray['label']); print ''; if (!isset($typenArray) || empty($typenArray)) { $typenArray = $formcompany->typent_array(1); } if (isset($typenArray[$obj->typent_code])) { print $typenArray[$obj->typent_code]; } print ''; print dol_print_date($db->jdate($obj->delivery_date), "day"); /*$now = time(); if ( ($now - $db->jdate($obj->date_reception)) > $conf->warnings->lim && $obj->statutid == 1 ) { }*/ print "'; print !empty($receiving) ? $receiving->getNomUrl($db) : ''; print ''; print dol_print_date($db->jdate($obj->date_reception), "day"); print ''; print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuserrel'); print ''; print dol_print_date($db->jdate($obj->date_modification), 'dayhour', 'tzuserrel'); print ''.$reception->LibStatut($obj->status, 5).''.yn($obj->billed).''; if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined $selected = 0; if (in_array($obj->rowid, $arrayofselected)) { $selected = 1; } print ''; } print '
'.$langs->trans("NoRecordFound").'
"; print "
"; print '
'; $db->free($resql); $hidegeneratedfilelistifempty = 1; if ($massaction == 'builddoc' || $action == 'remove_file' || $show_files) { $hidegeneratedfilelistifempty = 0; } // Show list of available documents $urlsource = $_SERVER['PHP_SELF'].'?sortfield='.$sortfield.'&sortorder='.$sortorder; $urlsource .= str_replace('&', '&', $param); $filedir = $diroutputmassaction; $genallowed = $user->hasRight('reception', 'lire'); $delallowed = $user->hasRight('reception', 'creer'); $title = ''; print $formfile->showdocuments('massfilesarea_receipts', '', $filedir, $urlsource, 0, $delallowed, '', 1, 1, 0, 48, 1, $param, $title, '', '', '', null, $hidegeneratedfilelistifempty); // End of page llxFooter(); $db->close();