dolibarr/htdocs/compta/facture/list.php

2180 lines
92 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2002-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
* Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2005-2015 Regis Houssin <regis.houssin@inodbox.com>
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
2020-08-11 10:12:19 +02:00
* Copyright (C) 2010-2020 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr>
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
2013-09-10 16:43:06 +02:00
* Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
* Copyright (C) 2015-2021 Ferran Marcet <fmarcet@2byte.es>
* Copyright (C) 2017 Josep Lluís Amador <joseplluis@lliuretic.cat>
2018-12-01 23:44:24 +01:00
* Copyright (C) 2018 Charlene Benke <charlie@patas-monkey.com>
* Copyright (C) 2019-2021 Alexandre Spangaro <aspangaro@open-dsi.fr>
*
* 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/>.
*/
/**
* \file htdocs/compta/facture/list.php
* \ingroup facture
* \brief List of customer invoices
*/
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
2020-10-21 16:10:48 +02:00
if (!empty($conf->margin->enabled)) {
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formmargin.class.php';
}
require_once DOL_DOCUMENT_ROOT.'/core/modules/facture/modules_facture.php';
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/discount.class.php';
require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/invoice.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
2018-02-12 14:02:51 +01:00
require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
2021-02-23 21:09:01 +01:00
if (!empty($conf->commande->enabled)) {
require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
}
2018-02-12 14:02:51 +01:00
2018-05-27 09:27:09 +02:00
// Load translation files required by the page
2018-12-11 13:25:09 +01:00
$langs->loadLangs(array('bills', 'companies', 'products', 'categories'));
$sall = trim((GETPOST('search_all', 'alphanohtml') != '') ?GETPOST('search_all', 'alphanohtml') : GETPOST('sall', 'alphanohtml'));
$projectid = (GETPOST('projectid') ?GETPOST('projectid', 'int') : 0);
$id = (GETPOST('id', 'int') ?GETPOST('id', 'int') : GETPOST('facid', 'int')); // For backward compatibility
$ref = GETPOST('ref', 'alpha');
$socid = GETPOST('socid', 'int');
2020-09-16 19:39:50 +02:00
$action = GETPOST('action', 'aZ09');
$massaction = GETPOST('massaction', 'alpha');
$show_files = GETPOST('show_files', 'int');
$confirm = GETPOST('confirm', 'alpha');
$toselect = GETPOST('toselect', 'array');
$contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'invoicelist';
2021-02-23 21:09:01 +01:00
if ($contextpage == 'poslist') {
$_GET['optioncss'] = 'print';
}
$lineid = GETPOST('lineid', 'int');
$userid = GETPOST('userid', 'int');
$search_product_category = GETPOST('search_product_category', 'int');
$search_ref = GETPOST('sf_ref') ?GETPOST('sf_ref', 'alpha') : GETPOST('search_ref', 'alpha');
$search_refcustomer = GETPOST('search_refcustomer', 'alpha');
$search_type = GETPOST('search_type', 'int');
$search_project_ref = GETPOST('search_project_ref', 'alpha');
$search_project = GETPOST('search_project', 'alpha');
$search_company = GETPOST('search_company', 'alpha');
$search_company_alias = GETPOST('search_company_alias', 'alpha');
$search_montant_ht = GETPOST('search_montant_ht', 'alpha');
$search_montant_vat = GETPOST('search_montant_vat', 'alpha');
$search_montant_localtax1 = GETPOST('search_montant_localtax1', 'alpha');
$search_montant_localtax2 = GETPOST('search_montant_localtax2', 'alpha');
$search_montant_ttc = GETPOST('search_montant_ttc', 'alpha');
$search_login = GETPOST('search_login', 'alpha');
$search_multicurrency_code = GETPOST('search_multicurrency_code', 'alpha');
$search_multicurrency_tx = GETPOST('search_multicurrency_tx', 'alpha');
$search_multicurrency_montant_ht = GETPOST('search_multicurrency_montant_ht', 'alpha');
$search_multicurrency_montant_vat = GETPOST('search_multicurrency_montant_vat', 'alpha');
$search_multicurrency_montant_ttc = GETPOST('search_multicurrency_montant_ttc', 'alpha');
$search_status = GETPOST('search_status', 'intcomma');
$search_paymentmode = GETPOST('search_paymentmode', 'int');
$search_paymentterms = GETPOST('search_paymentterms', 'int');
$search_module_source = GETPOST('search_module_source', 'alpha');
$search_pos_source = GETPOST('search_pos_source', 'alpha');
$search_town = GETPOST('search_town', 'alpha');
$search_zip = GETPOST('search_zip', 'alpha');
$search_state = GETPOST("search_state");
$search_country = GETPOST("search_country", 'int');
$search_type_thirdparty = GETPOST("search_type_thirdparty", 'int');
$search_user = GETPOST('search_user', 'int');
$search_sale = GETPOST('search_sale', 'int');
2021-03-31 18:39:59 +02:00
$search_date_startday = GETPOST('search_date_startday', 'int');
$search_date_startmonth = GETPOST('search_date_startmonth', 'int');
$search_date_startyear = GETPOST('search_date_startyear', 'int');
$search_date_endday = GETPOST('search_date_endday', 'int');
$search_date_endmonth = GETPOST('search_date_endmonth', 'int');
$search_date_endyear = GETPOST('search_date_endyear', 'int');
$search_date_start = dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear); // Use tzserver
$search_date_end = dol_mktime(23, 59, 59, $search_date_endmonth, $search_date_endday, $search_date_endyear);
$search_date_valid_startday = GETPOST('search_date_valid_startday', 'int');
$search_date_valid_startmonth = GETPOST('search_date_valid_startmonth', 'int');
$search_date_valid_startyear = GETPOST('search_date_valid_startyear', 'int');
$search_date_valid_endday = GETPOST('search_date_valid_endday', 'int');
$search_date_valid_endmonth = GETPOST('search_date_valid_endmonth', 'int');
$search_date_valid_endyear = GETPOST('search_date_valid_endyear', 'int');
$search_date_valid_start = dol_mktime(0, 0, 0, $search_date_valid_startmonth, $search_date_valid_startday, $search_date_valid_startyear); // Use tzserver
$search_date_valid_end = dol_mktime(23, 59, 59, $search_date_valid_endmonth, $search_date_valid_endday, $search_date_valid_endyear);
$search_datelimit_startday = GETPOST('search_datelimit_startday', 'int');
$search_datelimit_startmonth = GETPOST('search_datelimit_startmonth', 'int');
$search_datelimit_startyear = GETPOST('search_datelimit_startyear', 'int');
$search_datelimit_endday = GETPOST('search_datelimit_endday', 'int');
$search_datelimit_endmonth = GETPOST('search_datelimit_endmonth', 'int');
$search_datelimit_endyear = GETPOST('search_datelimit_endyear', 'int');
$search_datelimit_start = dol_mktime(0, 0, 0, $search_datelimit_startmonth, $search_datelimit_startday, $search_datelimit_startyear);
$search_datelimit_end = dol_mktime(23, 59, 59, $search_datelimit_endmonth, $search_datelimit_endday, $search_datelimit_endyear);
2021-06-12 15:44:03 +02:00
$search_categ_cus = GETPOST("search_categ_cus", 'int');
$search_btn = GETPOST('button_search', 'alpha');
$search_remove_btn = GETPOST('button_removefilter', 'alpha');
2021-06-10 20:53:29 +02:00
$optioncss = GETPOST('optioncss', 'alpha');
2021-03-31 18:39:59 +02:00
$option = GETPOST('search_option');
2017-09-26 11:55:19 +02:00
if ($option == 'late') {
$search_status = '1';
}
$filtre = GETPOST('filtre', 'alpha');
$limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
$sortfield = GETPOST("sortfield", 'alpha');
$sortorder = GETPOST("sortorder", 'alpha');
$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
2021-02-23 21:09:01 +01:00
if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
$page = 0;
} // If $page is not defined, or '' or -1 or if we click on clear filters
$offset = $limit * $page;
2021-02-23 21:09:01 +01:00
if (!$sortorder && !empty($conf->global->INVOICE_DEFAULT_UNPAYED_SORT_ORDER) && $search_status == '1') {
$sortorder = $conf->global->INVOICE_DEFAULT_UNPAYED_SORT_ORDER;
}
if (!$sortorder) {
$sortorder = 'DESC';
}
if (!$sortfield) {
$sortfield = 'f.datef';
}
$pageprev = $page - 1;
$pagenext = $page + 1;
// Security check
$fieldid = (!empty($ref) ? 'ref' : 'rowid');
2021-02-23 21:09:01 +01:00
if (!empty($user->socid)) {
$socid = $user->socid;
}
$result = restrictedArea($user, 'facture', $id, '', '', 'fk_soc', $fieldid);
$diroutputmassaction = $conf->facture->dir_output.'/temp/massgeneration/'.$user->id;
$object = new Facture($db);
$now = dol_now();
2017-06-10 12:56:28 +02:00
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
$object = new Facture($db);
2013-05-28 18:35:15 +02:00
$hookmanager->initHooks(array('invoicelist'));
$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(
2018-12-02 14:31:45 +01:00
'f.ref'=>'Ref',
'f.ref_client'=>'RefCustomer',
'pd.description'=>'Description',
's.nom'=>"ThirdParty",
2020-04-10 10:55:14 +02:00
's.name_alias'=>"AliasNameShort",
's.zip'=>"Zip",
's.town'=>"Town",
'f.note_public'=>'NotePublic',
);
2021-02-23 21:09:01 +01:00
if (empty($user->socid)) {
$fieldstosearchall["f.note_private"] = "NotePrivate";
}
$checkedtypetiers = 0;
$arrayfields = array(
'f.ref'=>array('label'=>"Ref", 'checked'=>1, 'position'=>5),
2021-03-17 18:24:37 +01:00
'f.ref_client'=>array('label'=>"RefCustomer", 'checked'=>-1, 'position'=>10),
'f.type'=>array('label'=>"Type", 'checked'=>0, 'position'=>15),
2021-03-28 19:15:59 +02:00
'f.datef'=>array('label'=>"DateInvoice", 'checked'=>1, 'position'=>20),
2020-04-06 23:38:30 +02:00
'f.date_valid'=>array('label'=>"DateValidation", 'checked'=>0, 'position'=>22),
'f.date_lim_reglement'=>array('label'=>"DateDue", 'checked'=>1, 'position'=>25),
'f.date_closing'=>array('label'=>"DateClosing", 'checked'=>0, 'position'=>30),
'p.ref'=>array('label'=>"ProjectRef", 'checked'=>1, 'enabled'=>(empty($conf->projet->enabled) ? 0 : 1), 'position'=>40),
2021-03-28 19:15:59 +02:00
'p.title'=>array('label'=>"ProjectLabel", 'checked'=>0, 'enabled'=>(empty($conf->projet->enabled) ? 0 : 1), 'position'=>41),
's.nom'=>array('label'=>"ThirdParty", 'checked'=>1, 'position'=>50),
2021-01-10 22:47:30 +01:00
's.name_alias'=>array('label'=>"AliasNameShort", 'checked'=>1, 'position'=>51),
2021-03-28 19:15:59 +02:00
's.town'=>array('label'=>"Town", 'checked'=>-1, 'position'=>55),
's.zip'=>array('label'=>"Zip", 'checked'=>1, 'position'=>60),
'state.nom'=>array('label'=>"StateShort", 'checked'=>0, 'position'=>65),
'country.code_iso'=>array('label'=>"Country", 'checked'=>0, 'position'=>70),
'typent.code'=>array('label'=>"ThirdPartyType", 'checked'=>$checkedtypetiers, 'position'=>75),
'f.fk_mode_reglement'=>array('label'=>"PaymentMode", 'checked'=>1, 'position'=>80),
'f.fk_cond_reglement'=>array('label'=>"PaymentConditionsShort", 'checked'=>1, 'position'=>85),
2021-03-28 19:15:59 +02:00
'f.module_source'=>array('label'=>"POSModule", 'checked'=>($contextpage == 'poslist' ? 1 : 0), 'enabled'=>((empty($conf->cashdesk->enabled) && empty($conf->takepos->enabled) && empty($conf->global->INVOICE_SHOW_POS)) ? 0 : 1), 'position'=>90),
'f.pos_source'=>array('label'=>"POSTerminal", 'checked'=>($contextpage == 'poslist' ? 1 : 0), 'enabled'=>((empty($conf->cashdesk->enabled) && empty($conf->takepos->enabled) && empty($conf->global->INVOICE_SHOW_POS)) ? 0 : 1), 'position'=>91),
'f.total_ht'=>array('label'=>"AmountHT", 'checked'=>1, 'position'=>95),
2021-02-22 05:58:46 +01:00
'f.total_tva'=>array('label'=>"AmountVAT", 'checked'=>0, 'position'=>100),
'f.total_localtax1'=>array('label'=>$langs->transcountry("AmountLT1", $mysoc->country_code), 'checked'=>0, 'enabled'=>($mysoc->localtax1_assuj == "1"), 'position'=>110),
'f.total_localtax2'=>array('label'=>$langs->transcountry("AmountLT2", $mysoc->country_code), 'checked'=>0, 'enabled'=>($mysoc->localtax2_assuj == "1"), 'position'=>120),
'f.total_ttc'=>array('label'=>"AmountTTC", 'checked'=>0, 'position'=>130),
'dynamount_payed'=>array('label'=>"Received", 'checked'=>0, 'position'=>140),
'rtp'=>array('label'=>"Rest", 'checked'=>0, 'position'=>150), // Not enabled by default because slow
2021-03-28 19:15:59 +02:00
'u.login'=>array('label'=>"Author", 'checked'=>1, 'position'=>165),
'f.multicurrency_code'=>array('label'=>'Currency', 'checked'=>0, 'enabled'=>(empty($conf->multicurrency->enabled) ? 0 : 1), 'position'=>170),
'f.multicurrency_tx'=>array('label'=>'CurrencyRate', 'checked'=>0, 'enabled'=>(empty($conf->multicurrency->enabled) ? 0 : 1), 'position'=>171),
'f.multicurrency_total_ht'=>array('label'=>'MulticurrencyAmountHT', 'checked'=>0, 'enabled'=>(empty($conf->multicurrency->enabled) ? 0 : 1), 'position'=>180),
'f.multicurrency_total_vat'=>array('label'=>'MulticurrencyAmountVAT', 'checked'=>0, 'enabled'=>(empty($conf->multicurrency->enabled) ? 0 : 1), 'position'=>190),
'f.multicurrency_total_ttc'=>array('label'=>'MulticurrencyAmountTTC', 'checked'=>0, 'enabled'=>(empty($conf->multicurrency->enabled) ? 0 : 1), 'position'=>200),
'multicurrency_dynamount_payed'=>array('label'=>'MulticurrencyAlreadyPaid', 'checked'=>0, 'enabled'=>(empty($conf->multicurrency->enabled) ? 0 : 1), 'position'=>210),
'multicurrency_rtp'=>array('label'=>'MulticurrencyRemainderToPay', 'checked'=>0, 'enabled'=>(empty($conf->multicurrency->enabled) ? 0 : 1), 'position'=>220), // Not enabled by default because slow
'total_pa' => array('label' => ($conf->global->MARGIN_TYPE == '1' ? 'BuyingPrice' : 'CostPrice'), 'checked' => 0, 'position' => 300, 'enabled' => (empty($conf->margin->enabled) || !$user->rights->margins->liretous ? 0 : 1)),
'total_margin' => array('label' => 'Margin', 'checked' => 0, 'position' => 301, 'enabled' => (empty($conf->margin->enabled) || !$user->rights->margins->liretous ? 0 : 1)),
'total_margin_rate' => array('label' => 'MarginRate', 'checked' => 0, 'position' => 302, 'enabled' => (empty($conf->margin->enabled) || !$user->rights->margins->liretous || empty($conf->global->DISPLAY_MARGIN_RATES) ? 0 : 1)),
'total_mark_rate' => array('label' => 'MarkRate', 'checked' => 0, 'position' => 303, 'enabled' => (empty($conf->margin->enabled) || !$user->rights->margins->liretous || empty($conf->global->DISPLAY_MARK_RATES) ? 0 : 1)),
'f.datec'=>array('label'=>"DateCreation", 'checked'=>0, 'position'=>500),
'f.tms'=>array('label'=>"DateModificationShort", 'checked'=>0, 'position'=>502),
'f.note_public'=>array('label'=>'NotePublic', 'checked'=>0, 'position'=>510, 'enabled'=>(empty($conf->global->MAIN_LIST_ALLOW_PUBLIC_NOTES))),
'f.note_private'=>array('label'=>'NotePrivate', 'checked'=>0, 'position'=>511, 'enabled'=>(empty($conf->global->MAIN_LIST_ALLOW_PRIVATE_NOTES))),
'f.fk_statut'=>array('label'=>"Status", 'checked'=>1, 'position'=>1000),
);
2018-09-27 15:38:43 +02:00
2021-02-23 21:09:01 +01:00
if ($conf->global->INVOICE_USE_SITUATION && $conf->global->INVOICE_USE_RETAINED_WARRANTY) {
$arrayfields['f.retained_warranty'] = array('label'=>$langs->trans("RetainedWarranty"), 'checked'=>0, 'position'=>86);
2018-09-27 15:38:43 +02:00
}
2021-03-28 19:15:59 +02:00
// Overwrite $arrayfields from columns into ->fields (transition before removal of $arrayoffields)
foreach ($object->fields as $key => $val) {
// If $val['visible']==0, then we never show the field
if (!empty($val['visible'])) {
$visible = (int) dol_eval($val['visible'], 1);
$newkey = '';
if (array_key_exists($key, $arrayfields)) { $newkey = $key; } elseif (array_key_exists('t.'.$key, $arrayfields)) { $newkey = 't.'.$key; } elseif (array_key_exists('f.'.$key, $arrayfields)) { $newkey = 'f.'.$key; } elseif (array_key_exists('s.'.$key, $arrayfields)) { $newkey = 's.'.$key; }
if ($newkey) {
$arrayfields[$newkey] = array(
'label'=>$val['label'],
'checked'=>(($visible < 0) ? 0 : 1),
'enabled'=>($visible != 3 && dol_eval($val['enabled'], 1)),
'position'=>$val['position'],
2021-06-10 20:53:29 +02:00
'help' => empty($val['help']) ? '' : $val['help'],
2021-03-28 19:15:59 +02:00
);
}
}
}
// Extra fields
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
2019-09-02 03:58:00 +02:00
$object->fields = dol_sort_array($object->fields, 'position');
$arrayfields = dol_sort_array($arrayfields, 'position');
/*
* Actions
*/
2021-02-23 21:09:01 +01:00
if (GETPOST('cancel', 'alpha')) {
2021-03-01 20:37:16 +01:00
$action = 'list';
$massaction = '';
2021-02-23 21:09:01 +01:00
}
if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
$massaction = '';
}
$parameters = array('socid'=>$socid);
$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
2021-02-23 21:09:01 +01:00
if ($reshook < 0) {
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
}
include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
// Do we click on purge search criteria ?
2021-02-23 21:09:01 +01:00
if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter', 'alpha') || GETPOST('button_removefilter.x', 'alpha')) { // All tests are required to be compatible with all browsers
$search_user = '';
$search_sale = '';
$search_product_category = '';
$search_ref = '';
$search_refcustomer = '';
$search_type = '';
$search_project_ref = '';
$search_project = '';
$search_company = '';
$search_company_alias = '';
$search_montant_ht = '';
$search_montant_vat = '';
$search_montant_localtax1 = '';
$search_montant_localtax2 = '';
$search_montant_ttc = '';
$search_login = '';
$search_multicurrency_code = '';
$search_multicurrency_tx = '';
$search_multicurrency_montant_ht = '';
$search_multicurrency_montant_vat = '';
$search_multicurrency_montant_ttc = '';
$search_status = '';
$search_paymentmode = '';
$search_paymentterms = '';
$search_module_source = '';
$search_pos_source = '';
$search_town = '';
$search_zip = "";
$search_state = "";
$search_type = '';
$search_country = '';
$search_type_thirdparty = '';
2021-03-31 18:39:59 +02:00
$search_date_startday = '';
$search_date_startmonth = '';
$search_date_startyear = '';
$search_date_endday = '';
$search_date_endmonth = '';
$search_date_endyear = '';
$search_date_start = '';
$search_date_end = '';
2021-03-31 18:39:59 +02:00
$search_date_valid_startday = '';
$search_date_valid_startmonth = '';
$search_date_valid_startyear = '';
$search_date_valid_endday = '';
$search_date_valid_endmonth = '';
$search_date_valid_endyear = '';
2020-04-06 23:38:30 +02:00
$search_date_valid_start = '';
$search_date_valid_end = '';
$search_datelimit_startday = '';
$search_datelimit_startmonth = '';
$search_datelimit_startyear = '';
$search_datelimit_endday = '';
$search_datelimit_endmonth = '';
$search_datelimit_endyear = '';
$search_datelimit_start = '';
$search_datelimit_end = '';
$option = '';
$filter = '';
$toselect = '';
$search_array_options = array();
$search_categ_cus = 0;
}
2021-02-23 21:09:01 +01:00
if (empty($reshook)) {
$objectclass = 'Facture';
$objectlabel = 'Invoices';
$permissiontoread = $user->rights->facture->lire;
$permissiontoadd = $user->rights->facture->creer;
$permissiontodelete = $user->rights->facture->supprimer;
$uploaddir = $conf->facture->dir_output;
include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
}
if ($massaction == 'makepayment_confirm') {
$arrayofselected = is_array($toselect) ? $toselect : array();
2020-05-05 09:44:46 +02:00
$loc = dol_buildpath('/compta/paiement.php', 2).'?action=create&facids='.implode(',', $arrayofselected);
header('Location: '.$loc);
exit;
2020-11-25 12:47:10 +01:00
} elseif ($massaction == 'withdrawrequest') {
$langs->load("withdrawals");
2020-11-25 12:47:10 +01:00
if (!$user->rights->prelevement->bons->creer) {
$error++;
setEventMessages($langs->trans("NotEnoughPermissions"), null, 'errors');
2020-05-21 15:05:19 +02:00
} else {
//Checking error
$error = 0;
$arrayofselected = is_array($toselect) ? $toselect : array();
$listofbills = array();
2021-02-23 21:09:01 +01:00
foreach ($arrayofselected as $toselectid) {
$objecttmp = new Facture($db);
$result = $objecttmp->fetch($toselectid);
2020-11-25 12:47:10 +01:00
if ($result > 0) {
$totalpaye = $objecttmp->getSommePaiement();
$totalcreditnotes = $objecttmp->getSumCreditNotesUsed();
$totaldeposits = $objecttmp->getSumDepositsUsed();
$objecttmp->resteapayer = price2num($objecttmp->total_ttc - $totalpaye - $totalcreditnotes - $totaldeposits, 'MT');
2021-05-25 21:21:09 +02:00
if ($objecttmp->statut == Facture::STATUS_DRAFT) {
$error++;
setEventMessages($objecttmp->ref.' '.$langs->trans("Draft"), $objecttmp->errors, 'errors');
} elseif ($objecttmp->paye || $objecttmp->resteapayer == 0) {
$error++;
setEventMessages($objecttmp->ref.' '.$langs->trans("AlreadyPaid"), $objecttmp->errors, 'errors');
} elseif ($objecttmp->resteapayer < 0) {
$error++;
setEventMessages($objecttmp->ref.' '.$langs->trans("AmountMustBePositive"), $objecttmp->errors, 'errors');
}
$rsql = "SELECT pfd.rowid, pfd.traite, pfd.date_demande as date_demande";
$rsql .= " , pfd.date_traite as date_traite";
$rsql .= " , pfd.amount";
$rsql .= " , u.rowid as user_id, u.lastname, u.firstname, u.login";
$rsql .= " FROM ".MAIN_DB_PREFIX."prelevement_facture_demande as pfd";
$rsql .= " , ".MAIN_DB_PREFIX."user as u";
$rsql .= " WHERE fk_facture = ".((int) $objecttmp->id);
$rsql .= " AND pfd.fk_user_demande = u.rowid";
$rsql .= " AND pfd.traite = 0";
$rsql .= " ORDER BY pfd.date_demande DESC";
$result_sql = $db->query($rsql);
2021-02-23 21:09:01 +01:00
if ($result_sql) {
$numprlv = $db->num_rows($result_sql);
}
if ($numprlv > 0) {
$error++;
2018-08-03 09:57:29 +02:00
setEventMessages($objecttmp->ref.' '.$langs->trans("RequestAlreadyDone"), $objecttmp->errors, 'warnings');
2020-05-21 15:05:19 +02:00
} elseif (!empty($objecttmp->mode_reglement_code) && $objecttmp->mode_reglement_code != 'PRE') {
$error++;
setEventMessages($objecttmp->ref.' '.$langs->trans("BadPaymentMethod"), $objecttmp->errors, 'errors');
2020-05-21 15:05:19 +02:00
} else {
$listofbills[] = $objecttmp; // $listofbills will only contains invoices with good payment method and no request already done
2018-08-03 09:57:29 +02:00
}
}
}
2018-08-03 09:57:29 +02:00
//Massive withdraw request for request with no errors
2021-02-23 21:09:01 +01:00
if (!empty($listofbills)) {
$nbwithdrawrequestok = 0;
2021-02-23 21:09:01 +01:00
foreach ($listofbills as $aBill) {
$db->begin();
2020-06-14 21:46:32 +02:00
$result = $aBill->demande_prelevement($user, $aBill->resteapayer, 'direct-debit', 'facture');
2021-02-23 21:09:01 +01:00
if ($result > 0) {
$db->commit();
$nbwithdrawrequestok++;
2020-05-21 15:05:19 +02:00
} else {
$db->rollback();
setEventMessages($aBill->error, $aBill->errors, 'errors');
}
}
2021-02-23 21:09:01 +01:00
if ($nbwithdrawrequestok > 0) {
setEventMessages($langs->trans("WithdrawRequestsDone", $nbwithdrawrequestok), null, 'mesgs');
}
}
}
}
/*
* View
*/
$form = new Form($db);
$formother = new FormOther($db);
$formfile = new FormFile($db);
2020-10-21 16:10:48 +02:00
$formmargin = null;
if (!empty($conf->margin->enabled)) {
$formmargin = new FormMargin($db);
}
$bankaccountstatic = new Account($db);
$facturestatic = new Facture($db);
$formcompany = new FormCompany($db);
2021-05-17 23:27:33 +02:00
$companystatic = new Societe($db);
$sql = 'SELECT';
2021-02-23 21:09:01 +01:00
if ($sall || $search_product_category > 0 || $search_user > 0) {
$sql = 'SELECT DISTINCT';
}
2021-06-10 20:53:29 +02:00
$sql .= ' f.rowid as id, f.ref, f.ref_client, f.fk_soc, f.type, f.note_private, f.note_public, f.increment, f.fk_mode_reglement, f.fk_cond_reglement, f.total_ht, f.total_tva, f.total_ttc,';
$sql .= ' f.localtax1 as total_localtax1, f.localtax2 as total_localtax2,';
$sql .= ' f.fk_user_author,';
$sql .= ' f.fk_multicurrency, f.multicurrency_code, f.multicurrency_tx, f.multicurrency_total_ht, f.multicurrency_total_tva as multicurrency_total_vat, f.multicurrency_total_ttc,';
2021-03-28 19:15:59 +02:00
$sql .= ' f.datef, f.date_valid, f.date_lim_reglement as datelimite, f.module_source, f.pos_source,';
$sql .= ' f.paye as paye, f.fk_statut, f.close_code,';
$sql .= ' f.datec as date_creation, f.tms as date_update, f.date_closing as date_closing,';
$sql .= ' f.retained_warranty, f.retained_warranty_date_limit, f.situation_final, f.situation_cycle_ref, f.situation_counter,';
2021-05-17 23:27:33 +02:00
$sql .= ' s.rowid as socid, s.nom as name, s.name_alias as alias, s.email, s.phone, s.fax, s.address, s.town, s.zip, s.fk_pays, s.client, s.fournisseur, s.code_client, s.code_fournisseur, s.code_compta as code_compta_client, s.code_compta_fournisseur,';
2021-05-17 23:54:31 +02:00
$sql .= ' typent.code as typent_code,';
$sql .= ' state.code_departement as state_code, state.nom as state_name,';
$sql .= ' country.code as country_code,';
$sql .= ' p.rowid as project_id, p.ref as project_ref, p.title as project_label,';
$sql .= ' u.login, u.lastname, u.firstname, u.email, u.statut, u.entity, u.photo, u.office_phone, u.office_fax, u.user_mobile, u.job, u.gender';
2016-11-30 15:19:16 +01:00
// We need dynamount_payed to be able to sort on status (value is surely wrong because we can count several lines several times due to other left join or link with contacts. But what we need is just 0 or > 0)
// TODO Better solution to be able to sort on already payed or remain to pay is to store amount_payed in a denormalized field.
2021-02-23 21:09:01 +01:00
if (!$sall) {
$sql .= ', SUM(pf.amount) as dynamount_payed, SUM(pf.multicurrency_amount) as multicurrency_dynamount_payed';
}
2021-05-20 13:45:52 +02:00
if ($search_categ_cus && $search_categ_cus!=-1) {
2021-02-23 21:09:01 +01:00
$sql .= ", cc.fk_categorie, cc.fk_soc";
}
// Add fields from extrafields
if (!empty($extrafields->attributes[$object->table_element]['label'])) {
2021-02-23 21:09:01 +01:00
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;
$sql .= ' FROM '.MAIN_DB_PREFIX.'societe as s';
$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)";
2021-05-20 13:45:52 +02:00
if (!empty($search_categ_cus) && $search_categ_cus!=-1) {
2021-02-23 21:09:01 +01:00
$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX."categorie_societe as cc ON s.rowid = cc.fk_soc"; // We'll need this table joined to the select in order to filter by categ
}
$sql .= ', '.MAIN_DB_PREFIX.'facture as f';
2021-02-23 21:09:01 +01:00
if (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 (f.rowid = ef.fk_object)";
}
if (!$sall) {
$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'paiement_facture as pf ON pf.fk_facture = f.rowid';
}
if ($sall || $search_product_category > 0) {
$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'facturedet as pd ON f.rowid=pd.fk_facture';
}
if ($search_product_category > 0) {
$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'categorie_product as cp ON cp.fk_product=pd.fk_product';
}
$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."projet as p ON p.rowid = f.fk_projet";
$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user AS u ON f.fk_user_author = u.rowid';
// We'll need this table joined to the select in order to filter by sale
2021-02-23 21:09:01 +01:00
if ($search_sale > 0 || (!$user->rights->societe->client->voir && !$socid)) {
$sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
}
if ($search_user > 0) {
$sql .= ", ".MAIN_DB_PREFIX."element_contact as ec";
$sql .= ", ".MAIN_DB_PREFIX."c_type_contact as tc";
}
2021-03-18 16:21:54 +01:00
// 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 f.fk_soc = s.rowid';
$sql .= ' AND f.entity IN ('.getEntity('invoice').')';
2021-02-23 21:09:01 +01:00
if (!$user->rights->societe->client->voir && !$socid) {
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".$user->id;
}
if ($search_product_category > 0) {
2021-06-09 15:36:47 +02:00
$sql .= " AND cp.fk_categorie = ".((int) $search_product_category);
2021-02-23 21:09:01 +01:00
}
if ($socid > 0) {
2021-04-26 19:12:23 +02:00
$sql .= ' AND s.rowid = '.((int) $socid);
2021-02-23 21:09:01 +01:00
}
if ($userid) {
if ($userid == -1) {
$sql .= ' AND f.fk_user_author IS NULL';
} else {
2021-03-22 13:31:06 +01:00
$sql .= ' AND f.fk_user_author = '.((int) $userid);
}
}
2021-02-23 21:09:01 +01:00
if ($search_ref) {
$sql .= natural_search('f.ref', $search_ref);
}
if ($search_refcustomer) {
$sql .= natural_search('f.ref_client', $search_refcustomer);
}
if ($search_type != '' && $search_type != '-1') {
$sql .= " AND f.type IN (".$db->sanitize($db->escape($search_type)).")";
}
if ($search_project_ref) {
$sql .= natural_search('p.ref', $search_project_ref);
}
if ($search_project) {
$sql .= natural_search('p.title', $search_project);
}
if ($search_company) {
$sql .= natural_search('s.nom', $search_company);
2021-02-23 21:09:01 +01:00
}
if ($search_company_alias) {
$sql .= natural_search('s.name_alias', $search_company_alias);
2021-02-23 21:09:01 +01:00
}
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($db->escape($search_country)).')';
}
if ($search_type_thirdparty != '' && $search_type_thirdparty != '-1') {
$sql .= " AND s.fk_typent IN (".$db->sanitize($db->escape($search_type_thirdparty)).')';
}
if ($search_company) {
$sql .= natural_search('s.nom', $search_company);
}
if ($search_company_alias) {
$sql .= natural_search('s.name_alias', $search_company_alias);
}
if ($search_montant_ht != '') {
$sql .= natural_search('f.total_ht', $search_montant_ht, 1);
2021-02-23 21:09:01 +01:00
}
if ($search_montant_vat != '') {
$sql .= natural_search('f.total_tva', $search_montant_vat, 1);
2021-02-23 21:09:01 +01:00
}
if ($search_montant_localtax1 != '') {
$sql .= natural_search('f.localtax1', $search_montant_localtax1, 1);
}
if ($search_montant_localtax2 != '') {
$sql .= natural_search('f.localtax2', $search_montant_localtax2, 1);
}
if ($search_montant_ttc != '') {
$sql .= natural_search('f.total_ttc', $search_montant_ttc, 1);
}
if ($search_multicurrency_code != '') {
$sql .= ' AND f.multicurrency_code = "'.$db->escape($search_multicurrency_code).'"';
}
if ($search_multicurrency_tx != '') {
$sql .= natural_search('f.multicurrency_tx', $search_multicurrency_tx, 1);
}
if ($search_multicurrency_montant_ht != '') {
$sql .= natural_search('f.multicurrency_total_ht', $search_multicurrency_montant_ht, 1);
}
if ($search_multicurrency_montant_vat != '') {
$sql .= natural_search('f.multicurrency_total_tva', $search_multicurrency_montant_vat, 1);
}
if ($search_multicurrency_montant_ttc != '') {
$sql .= natural_search('f.multicurrency_total_ttc', $search_multicurrency_montant_ttc, 1);
}
if ($search_login) {
2021-05-18 18:18:00 +02:00
$sql .= natural_search(array('u.login', 'u.firstname', 'u.lastname'), $search_login);
2021-02-23 21:09:01 +01:00
}
if ($search_categ_cus > 0) {
2021-06-09 15:36:47 +02:00
$sql .= " AND cc.fk_categorie = ".((int) $search_categ_cus);
2021-02-23 21:09:01 +01:00
}
if ($search_categ_cus == -2) {
$sql .= " AND cc.fk_categorie IS NULL";
}
if ($search_status != '-1' && $search_status != '') {
if (is_numeric($search_status) && $search_status >= 0) {
if ($search_status == '0') {
$sql .= " AND f.fk_statut = 0"; // draft
}
if ($search_status == '1') {
$sql .= " AND f.fk_statut = 1"; // unpayed
}
if ($search_status == '2') {
$sql .= " AND f.fk_statut = 2"; // payed Not that some corrupted data may contains f.fk_statut = 1 AND f.paye = 1 (it means payed too but should not happend. If yes, reopen and reclassify billed)
}
if ($search_status == '3') {
$sql .= " AND f.fk_statut = 3"; // abandonned
}
2020-05-21 15:05:19 +02:00
} else {
$sql .= " AND f.fk_statut IN (".$db->sanitize($db->escape($search_status)).")"; // When search_status is '1,2' for example
}
2016-07-05 18:33:13 +02:00
}
2021-02-23 21:09:01 +01:00
if ($search_paymentmode > 0) {
2021-06-09 15:36:47 +02:00
$sql .= " AND f.fk_mode_reglement = ".((int) $search_paymentmode);
2021-02-23 21:09:01 +01:00
}
if ($search_paymentterms > 0) {
2021-06-09 15:36:47 +02:00
$sql .= " AND f.fk_cond_reglement = ".((int) $search_paymentterms);
2021-02-23 21:09:01 +01:00
}
if ($search_module_source) {
$sql .= natural_search("f.module_source", $search_module_source);
}
if ($search_pos_source) {
$sql .= natural_search("f.pos_source", $search_pos_source);
}
if ($search_date_start) {
$sql .= " AND f.datef >= '".$db->idate($search_date_start)."'";
}
if ($search_date_end) {
$sql .= " AND f.datef <= '".$db->idate($search_date_end)."'";
}
if ($search_date_valid_start) {
$sql .= " AND f.date_valid >= '".$db->idate($search_date_valid_start)."'";
}
if ($search_date_valid_end) {
$sql .= " AND f.date_valid <= '".$db->idate($search_date_valid_end)."'";
}
if ($search_datelimit_start) {
$sql .= " AND f.date_lim_reglement >= '".$db->idate($search_datelimit_start)."'";
}
if ($search_datelimit_end) {
$sql .= " AND f.date_lim_reglement <= '".$db->idate($search_datelimit_end)."'";
}
if ($option == 'late') {
$sql .= " AND f.date_lim_reglement < '".$db->idate(dol_now() - $conf->facture->client->warning_delay)."'";
}
if ($search_sale > 0) {
2021-06-09 15:36:47 +02:00
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $search_sale);
2021-02-23 21:09:01 +01:00
}
if ($search_user > 0) {
2021-06-09 15:36:47 +02:00
$sql .= " AND ec.fk_c_type_contact = tc.rowid AND tc.element='facture' AND tc.source='internal' AND ec.element_id = f.rowid AND ec.fk_socpeople = ".((int) $search_user);
}
// Add where from extra fields
2017-11-27 15:24:29 +01:00
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;
2021-02-23 21:09:01 +01:00
if (!$sall) {
2021-06-14 01:11:39 +02:00
$sql .= ' GROUP BY f.rowid, f.ref, ref_client, f.fk_soc, f.type, f.note_private, f.note_public, f.increment, f.fk_mode_reglement, f.fk_cond_reglement, f.total_ht, f.total_tva, f.total_ttc,';
$sql .= ' f.localtax1, f.localtax2,';
2020-04-06 23:38:30 +02:00
$sql .= ' f.datef, f.date_valid, f.date_lim_reglement, f.module_source, f.pos_source,';
$sql .= ' f.paye, f.fk_statut, f.close_code,';
$sql .= ' f.datec, f.tms, f.date_closing,';
$sql .= ' f.retained_warranty, f.retained_warranty_date_limit, f.situation_final, f.situation_cycle_ref, f.situation_counter,';
2020-08-11 10:12:19 +02:00
$sql .= ' f.fk_user_author, f.fk_multicurrency, f.multicurrency_code, f.multicurrency_tx, f.multicurrency_total_ht, f.multicurrency_total_tva,';
$sql .= ' f.multicurrency_total_tva, f.multicurrency_total_ttc,';
2021-05-17 23:27:33 +02:00
$sql .= ' s.rowid, s.nom, s.name_alias, s.email, s.phone, s.fax, s.address, s.town, s.zip, s.fk_pays, s.client, s.fournisseur, s.code_client, s.code_fournisseur, s.code_compta, s.code_compta_fournisseur,';
$sql .= ' typent.code,';
$sql .= ' state.code_departement, state.nom,';
$sql .= ' country.code,';
$sql .= " p.rowid, p.ref, p.title,";
2021-05-18 13:20:14 +02:00
$sql .= " u.login, u.lastname, u.firstname, u.email, u.statut, u.entity, u.photo, u.office_phone, u.office_fax, u.user_mobile, u.job, u.gender";
2021-05-20 13:45:52 +02:00
if ($search_categ_cus && $search_categ_cus!=-1) {
2021-02-23 21:09:01 +01:00
$sql .= ", cc.fk_categorie, cc.fk_soc";
}
2018-09-04 11:19:31 +02:00
// Add fields from extrafields
if (!empty($extrafields->attributes[$object->table_element]['label'])) {
2021-02-23 21:09:01 +01:00
foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
$sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key : '');
}
}
2021-03-18 17:00:57 +01:00
// Add GroupBy from hooks
$parameters = array('all' => $all, 'fieldstosearchall' => $fieldstosearchall);
$reshook = $hookmanager->executeHooks('printFieldListGroupBy', $parameters, $object); // Note that $action and $object may have been modified by hook
$sql .= $hookmanager->resPrint;
2020-05-21 15:05:19 +02:00
} else {
$sql .= natural_search(array_keys($fieldstosearchall), $sall);
}
// Add HAVING from hooks
$parameters = array();
$reshook = $hookmanager->executeHooks('printFieldListHaving', $parameters, $object); // Note that $action and $object may have been modified by hook
2021-03-18 17:06:49 +01:00
$sql .= !empty($hookmanager->resPrint) ? (' HAVING 1=1 ' . $hookmanager->resPrint) : '';
$sql .= ' ORDER BY ';
$listfield = explode(',', $sortfield);
$listorder = explode(',', $sortorder);
2021-02-23 21:09:01 +01:00
foreach ($listfield as $key => $value) {
$sql .= $listfield[$key].' '.($listorder[$key] ? $listorder[$key] : 'DESC').',';
}
$sql .= ' f.rowid DESC ';
$nbtotalofrecords = '';
2021-02-23 21:09:01 +01:00
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
$result = $db->query($sql);
$nbtotalofrecords = $db->num_rows($result);
2021-02-23 21:09:01 +01:00
if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
$page = 0;
$offset = 0;
}
}
$sql .= $db->plimit($limit + 1, $offset);
$resql = $db->query($sql);
2021-02-23 21:09:01 +01:00
if ($resql) {
$num = $db->num_rows($resql);
$arrayofselected = is_array($toselect) ? $toselect : array();
2021-02-23 21:09:01 +01:00
if ($num == 1 && !empty($conf->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE) && $sall) {
$obj = $db->fetch_object($resql);
$id = $obj->id;
header("Location: ".DOL_URL_ROOT.'/compta/facture/card.php?facid='.$id);
exit;
}
llxHeader('', $langs->trans('CustomersInvoices'), 'EN:Customers_Invoices|FR:Factures_Clients|ES:Facturas_a_clientes');
2021-02-23 21:09:01 +01:00
if ($socid) {
$soc = new Societe($db);
$soc->fetch($socid);
if (empty($search_company)) {
$search_company = $soc->name;
2021-02-23 21:09:01 +01:00
}
}
2021-03-31 18:39:59 +02:00
$param = '&socid='.urlencode($socid);
2021-02-23 21:09:01 +01:00
if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
$param .= '&contextpage='.urlencode($contextpage);
}
if ($limit > 0 && $limit != $conf->liste_limit) {
$param .= '&limit='.urlencode($limit);
}
if ($sall) {
$param .= '&sall='.urlencode($sall);
}
2021-03-31 18:39:59 +02:00
if ($search_date_startday) {
$param .= '&search_date_startday='.urlencode($search_date_startday);
}
if ($search_date_startmonth) {
$param .= '&search_date_startmonth='.urlencode($search_date_startmonth);
}
if ($search_date_startyear) {
$param .= '&search_date_startyear='.urlencode($search_date_startyear);
}
if ($search_date_endday) {
$param .= '&search_date_endday='.urlencode($search_date_endday);
}
if ($search_date_endmonth) {
$param .= '&search_date_endmonth='.urlencode($search_date_endmonth);
}
if ($search_date_endyear) {
$param .= '&search_date_endyear='.urlencode($search_date_endyear);
}
if ($search_date_valid_startday) {
$param .= '&search_date_valid_startday='.urlencode($search_date_valid_startday);
}
if ($search_date_valid_startmonth) {
$param .= '&search_date_valid_startmonth='.urlencode($search_date_valid_startmonth);
}
if ($search_date_valid_startyear) {
$param .= '&search_date_valid_startyear='.urlencode($search_date_valid_startyear);
2021-02-23 21:09:01 +01:00
}
2021-03-31 18:39:59 +02:00
if ($search_date_valid_endday) {
$param .= '&search_date_valid_endday='.urlencode($search_date_valid_endday);
2021-02-23 21:09:01 +01:00
}
2021-03-31 18:39:59 +02:00
if ($search_date_valid_endmonth) {
$param .= '&search_date_valid_endmonth='.urlencode($search_date_valid_endmonth);
2021-02-23 21:09:01 +01:00
}
2021-03-31 18:39:59 +02:00
if ($search_date_valid_endyear) {
$param .= '&search_date_valid_endyear='.urlencode($search_date_valid_endyear);
2021-02-23 21:09:01 +01:00
}
2021-06-12 15:44:03 +02:00
if ($search_datelimit_startday) {
$param .= '&search_datelimit_startday='.urlencode($search_datelimit_startday);
}
if ($search_datelimit_startmonth) {
$param .= '&search_datelimit_startmonth='.urlencode($search_datelimit_startmonth);
}
if ($search_datelimit_startyear) {
$param .= '&search_datelimit_startyear='.urlencode($search_datelimit_startyear);
}
if ($search_datelimit_endday) {
$param .= '&search_datelimit_endday='.urlencode($search_datelimit_endday);
}
if ($search_datelimit_endmonth) {
$param .= '&search_datelimit_endmonth='.urlencode($search_datelimit_endmonth);
2021-02-23 21:09:01 +01:00
}
2021-06-12 15:44:03 +02:00
if ($search_datelimit_endyear) {
$param .= '&search_datelimit_endyear='.urlencode($search_datelimit_endyear);
2021-02-23 21:09:01 +01:00
}
if ($search_ref) {
$param .= '&search_ref='.urlencode($search_ref);
}
if ($search_refcustomer) {
$param .= '&search_refcustomer='.urlencode($search_refcustomer);
}
if ($search_project_ref) {
$param .= '&search_project_ref='.urlencode($search_project_ref);
}
if ($search_project) {
$param .= '&search_project='.urlencode($search_project);
}
if ($search_type != '') {
$param .= '&search_type='.urlencode($search_type);
}
if ($search_company) {
$param .= '&search_societe='.urlencode($search_company);
2021-02-23 21:09:01 +01:00
}
if ($search_company_alias) {
$param .= '&search_societe_alias='.urlencode($search_company_alias);
2021-02-23 21:09:01 +01:00
}
if ($search_town) {
$param .= '&search_town='.urlencode($search_town);
}
if ($search_zip) {
$param .= '&search_zip='.urlencode($search_zip);
}
if ($search_sale > 0) {
$param .= '&search_sale='.urlencode($search_sale);
}
if ($search_user > 0) {
$param .= '&search_user='.urlencode($search_user);
}
if ($search_login) {
$param .= '&search_login='.urlencode($search_login);
}
if ($search_product_category > 0) {
$param .= '&search_product_category='.urlencode($search_product_category);
}
if ($search_montant_ht != '') {
$param .= '&search_montant_ht='.urlencode($search_montant_ht);
}
if ($search_montant_vat != '') {
$param .= '&search_montant_vat='.urlencode($search_montant_vat);
}
if ($search_montant_localtax1 != '') {
$param .= '&search_montant_localtax1='.urlencode($search_montant_localtax1);
}
if ($search_montant_localtax2 != '') {
$param .= '&search_montant_localtax2='.urlencode($search_montant_localtax2);
}
if ($search_montant_ttc != '') {
$param .= '&search_montant_ttc='.urlencode($search_montant_ttc);
}
if ($search_multicurrency_code != '') {
$param .= '&search_multicurrency_code='.urlencode($search_multicurrency_code);
}
if ($search_multicurrency_tx != '') {
$param .= '&search_multicurrency_tx='.urlencode($search_multicurrency_tx);
}
if ($search_multicurrency_montant_ht != '') {
$param .= '&search_multicurrency_montant_ht='.urlencode($search_multicurrency_montant_ht);
}
if ($search_multicurrency_montant_vat != '') {
$param .= '&search_multicurrency_montant_vat='.urlencode($search_multicurrency_montant_vat);
}
if ($search_multicurrency_montant_ttc != '') {
$param .= '&search_multicurrency_montant_ttc='.urlencode($search_multicurrency_montant_ttc);
}
if ($search_status != '') {
$param .= '&search_status='.urlencode($search_status);
}
if ($search_paymentmode > 0) {
$param .= '&search_paymentmode='.urlencode($search_paymentmode);
}
if ($search_paymentterms > 0) {
$param .= '&search_paymentterms='.urlencode($search_paymentterms);
}
if ($search_module_source) {
$param .= '&search_module_source='.urlencode($search_module_source);
}
if ($search_pos_source) {
$param .= '&search_pos_source='.urlencode($search_pos_source);
}
if ($show_files) {
$param .= '&show_files='.urlencode($show_files);
}
if ($option) {
$param .= "&search_option=".urlencode($option);
}
if ($optioncss != '') {
$param .= '&optioncss='.urlencode($optioncss);
}
if ($search_categ_cus > 0) {
$param .= '&search_categ_cus='.urlencode($search_categ_cus);
}
2018-05-02 15:01:32 +02:00
// Add $param from extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
2021-03-18 16:21:54 +01:00
// Add $param from hooks
$parameters = array();
$reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object); // Note that $action and $object may have been modified by hook
$param .= $hookmanager->resPrint;
$arrayofmassactions = array(
2021-04-14 12:28:01 +02:00
'validate'=>img_picto('', 'check', 'class="pictofixedwidth"').$langs->trans("Validate"),
'generate_doc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("ReGeneratePDF"),
'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
2021-05-20 12:48:18 +02:00
//'makepayment'=>$langs->trans("InvoicePaymentsLimits"),
);
if ($conf->prelevement->enabled && !empty($user->rights->prelevement->bons->creer)) {
$langs->load("withdrawals");
2021-05-25 21:21:09 +02:00
$arrayofmassactions['withdrawrequest'] = img_picto('', 'payment', 'class="pictofixedwidth"').$langs->trans("MakeWithdrawRequest");
2018-05-05 14:25:44 +02:00
}
if ($user->rights->facture->supprimer) {
if (!empty($conf->global->INVOICE_CAN_REMOVE_DRAFT_ONLY)) {
2021-04-14 12:28:01 +02:00
$arrayofmassactions['predeletedraft'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Deletedraft");
2020-05-21 15:05:19 +02:00
} elseif (!empty($conf->global->INVOICE_CAN_ALWAYS_BE_REMOVED)) { // mass deletion never possible on invoices on such situation
2021-04-14 12:28:01 +02:00
$arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
}
}
2021-02-23 21:09:01 +01:00
if (in_array($massaction, array('presend', 'predelete'))) {
$arrayofmassactions = array();
}
$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
// Show the new button only when this page is not opend from the Extended POS
2021-02-23 21:09:01 +01:00
if ($contextpage != 'poslist') {
$url = DOL_URL_ROOT.'/compta/facture/card.php?action=create';
2021-02-23 21:09:01 +01:00
if (!empty($socid)) {
$url .= '&socid='.$socid;
}
$newcardbutton = dolGetButtonTitle($langs->trans('NewBill'), '', 'fa fa-plus-circle', $url, '', $user->rights->facture->creer);
}
$i = 0;
print '<form method="POST" name="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
2021-02-23 21:09:01 +01:00
if ($optioncss != '') {
print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
}
2019-12-01 10:20:11 +01:00
print '<input type="hidden" name="token" value="'.newToken().'">';
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
print '<input type="hidden" name="action" value="list">';
print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
2020-04-15 15:01:00 +02:00
print '<input type="hidden" name="search_status" value="'.$search_status.'">';
print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
2020-04-25 13:49:44 +02:00
print_barre_liste($langs->trans('BillsCustomers').' '.($socid ? ' '.$soc->name : ''), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'bill', 0, $newcardbutton, '', $limit, 0, 0, 1);
$topicmail = "SendBillRef";
$modelmail = "facture_send";
$objecttmp = new Facture($db);
$trackid = 'inv'.$object->id;
include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
2017-01-24 11:50:07 +01:00
2021-02-23 21:09:01 +01:00
if ($sall) {
foreach ($fieldstosearchall as $key => $val) {
$fieldstosearchall[$key] = $langs->trans($val);
}
print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $sall).join(', ', $fieldstosearchall).'</div>';
}
2021-02-23 21:09:01 +01:00
// If the user can view prospects other than his'
$moreforfilter = '';
2021-02-23 21:09:01 +01:00
if ($user->rights->societe->client->voir || $socid) {
$langs->load("commercial");
$moreforfilter .= '<div class="divsearchfield">';
2021-03-28 19:15:59 +02:00
$tmptitle = $langs->trans('ThirdPartiesOfSaleRepresentative');
$moreforfilter .= img_picto($tmptitle, 'user', 'class="pictofixedwidth"').$formother->select_salesrepresentatives($search_sale, 'search_sale', $user, 0, $tmptitle, 'maxwidth250');
2021-02-23 21:09:01 +01:00
$moreforfilter .= '</div>';
}
// If the user can view prospects other than his'
2021-02-23 21:09:01 +01:00
if ($user->rights->societe->client->voir || $socid) {
$moreforfilter .= '<div class="divsearchfield">';
2021-03-28 19:15:59 +02:00
$tmptitle = $langs->trans('LinkedToSpecificUsers');
$moreforfilter .= img_picto($tmptitle, 'user', 'class="pictofixedwidth"').$form->select_dolusers($search_user, 'search_user', $tmptitle, '', 0, '', '', 0, 0, 0, '', 0, '', 'maxwidth250');
2021-02-23 21:09:01 +01:00
$moreforfilter .= '</div>';
}
// If the user can view prospects other than his'
2021-02-23 21:09:01 +01:00
if (!empty($conf->categorie->enabled) && $user->rights->categorie->lire && ($user->rights->produit->lire || $user->rights->service->lire)) {
include_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
$moreforfilter .= '<div class="divsearchfield">';
2021-03-28 19:15:59 +02:00
$tmptitle = $langs->trans('IncludingProductWithTag');
$cate_arbo = $form->select_all_categories(Categorie::TYPE_PRODUCT, null, 'parent', null, null, 1);
2021-06-14 01:11:39 +02:00
$moreforfilter .= img_picto($tmptitle, 'category', 'class="pictofixedwidth"').$form->selectarray('search_product_category', $cate_arbo, $search_product_category, $tmptitle, 0, 0, '', 0, 0, 0, 0, 'maxwidth250', 1);
$moreforfilter .= '</div>';
}
2021-02-23 21:09:01 +01:00
if (!empty($conf->categorie->enabled) && $user->rights->categorie->lire) {
require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
$moreforfilter .= '<div class="divsearchfield">';
2021-03-28 19:15:59 +02:00
$tmptitle = $langs->trans('CustomersProspectsCategoriesShort');
$moreforfilter .= img_picto($tmptitle, 'category', 'class="pictofixedwidth"').$formother->select_categories('customer', $search_categ_cus, 'search_categ_cus', 1, $tmptitle);
2021-02-23 21:09:01 +01:00
$moreforfilter .= '</div>';
2018-05-02 15:01:32 +02:00
}
$parameters = array();
$reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters); // Note that $action and $object may have been modified by hook
2021-02-23 21:09:01 +01:00
if (empty($reshook)) {
$moreforfilter .= $hookmanager->resPrint;
} else {
$moreforfilter = $hookmanager->resPrint;
}
2021-02-23 21:09:01 +01:00
if ($moreforfilter) {
print '<div class="liste_titre liste_titre_bydiv centpercent">';
print $moreforfilter;
print '</div>';
}
$varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
$selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
2021-03-28 19:15:59 +02:00
// Show the massaction checkboxes only when this page is not opend from the Extended POS
2021-02-23 21:09:01 +01:00
if ($massactionbutton && $contextpage != 'poslist') {
$selectedfields .= $form->showCheckAddButtons('checkforselect', 1);
}
print '<div class="div-table-responsive">';
print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
// Filters lines
print '<tr class="liste_titre_filter">';
if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER_IN_LIST)) {
2020-04-08 11:23:31 +02:00
print '<td class="liste_titre">';
print '</td>';
}
// Ref
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.ref']['checked'])) {
print '<td class="liste_titre" align="left">';
print '<input class="flat maxwidth50imp" type="text" name="search_ref" value="'.dol_escape_htmltag($search_ref).'">';
print '</td>';
}
// Ref customer
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.ref_client']['checked'])) {
print '<td class="liste_titre">';
print '<input class="flat maxwidth50imp" type="text" name="search_refcustomer" value="'.dol_escape_htmltag($search_refcustomer).'">';
print '</td>';
}
// Type
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.type']['checked'])) {
2016-09-29 10:38:15 +02:00
print '<td class="liste_titre maxwidthonsmartphone">';
$listtype = array(
Facture::TYPE_STANDARD=>$langs->trans("InvoiceStandard"),
Facture::TYPE_REPLACEMENT=>$langs->trans("InvoiceReplacement"),
Facture::TYPE_CREDIT_NOTE=>$langs->trans("InvoiceAvoir"),
Facture::TYPE_DEPOSIT=>$langs->trans("InvoiceDeposit"),
);
2021-02-23 21:09:01 +01:00
if (!empty($conf->global->INVOICE_USE_SITUATION)) {
$listtype[Facture::TYPE_SITUATION] = $langs->trans("InvoiceSituation");
}
2016-09-29 10:38:15 +02:00
//$listtype[Facture::TYPE_PROFORMA]=$langs->trans("InvoiceProForma"); // A proformat invoice is not an invoice but must be an order.
print $form->selectarray('search_type', $listtype, $search_type, 1, 0, 0, '', 0, 0, 0, 'ASC', 'maxwidth100');
print '</td>';
}
// Date invoice
2021-03-28 19:15:59 +02:00
if (!empty($arrayfields['f.datef']['checked'])) {
print '<td class="liste_titre center">';
print '<div class="nowrap">';
2020-09-22 15:26:29 +02:00
print $form->selectDate($search_date_start ? $search_date_start : -1, 'search_date_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
print '</div>';
print '<div class="nowrap">';
2020-09-22 15:26:29 +02:00
print $form->selectDate($search_date_end ? $search_date_end : -1, 'search_date_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
print '</div>';
print '</td>';
}
2020-04-06 23:38:30 +02:00
// Date valid
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.date_valid']['checked'])) {
2020-04-06 23:38:30 +02:00
print '<td class="liste_titre center">';
print '<div class="nowrap">';
2020-09-22 15:26:29 +02:00
print $form->selectDate($search_date_valid_start ? $search_date_valid_start : -1, 'search_date_valid_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
2020-04-06 23:38:30 +02:00
print '</div>';
print '<div class="nowrap">';
2020-09-22 15:26:29 +02:00
print $form->selectDate($search_date_valid_end ? $search_date_valid_end : -1, 'search_date_valid_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
2020-04-06 23:38:30 +02:00
print '</div>';
print '</td>';
}
// Date due
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.date_lim_reglement']['checked'])) {
print '<td class="liste_titre center">';
print '<div class="nowrap">';
/*
print $langs->trans('From').' ';
print $form->selectDate($search_datelimit_start ? $search_datelimit_start : -1, 'search_datelimit_start', 0, 0, 1);
print '</div>';
print '<div class="nowrap">';
print $langs->trans('to').' ';*/
print $form->selectDate($search_datelimit_end ? $search_datelimit_end : -1, 'search_datelimit_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans("Before"));
print '<br><input type="checkbox" name="search_option" value="late"'.($option == 'late' ? ' checked' : '').'> '.$langs->trans("Alert");
print '</div>';
print '</td>';
}
2019-05-10 15:11:06 +02:00
// Project ref
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['p.ref']['checked'])) {
2019-05-10 15:11:06 +02:00
print '<td class="liste_titre"><input class="flat maxwidth50imp" type="text" name="search_project_ref" value="'.$search_project_ref.'"></td>';
}
// Project label
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['p.title']['checked'])) {
print '<td class="liste_titre"><input class="flat maxwidth50imp" type="text" name="search_project" value="'.$search_project.'"></td>';
}
// Thirdparty
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['s.nom']['checked'])) {
print '<td class="liste_titre"><input class="flat maxwidth75imp" type="text" name="search_company" value="'.$search_company.'"></td>';
}
2021-01-10 22:47:30 +01:00
// Alias
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['s.name_alias']['checked'])) {
print '<td class="liste_titre"><input class="flat maxwidth75imp" type="text" name="search_company_alias" value="'.$search_company_alias.'"></td>';
2021-01-10 22:47:30 +01:00
}
// Town
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['s.town']['checked'])) {
print '<td class="liste_titre"><input class="flat maxwidth75imp" type="text" name="search_town" value="'.dol_escape_htmltag($search_town).'"></td>';
}
// Zip
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['s.zip']['checked'])) {
print '<td class="liste_titre"><input class="flat maxwidth50imp" type="text" name="search_zip" value="'.dol_escape_htmltag($search_zip).'"></td>';
}
// State
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['state.nom']['checked'])) {
print '<td class="liste_titre">';
print '<input class="flat maxwidth50imp" type="text" name="search_state" value="'.dol_escape_htmltag($search_state).'">';
print '</td>';
}
// Country
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['country.code_iso']['checked'])) {
print '<td class="liste_titre" align="center">';
2019-03-02 12:57:07 +01:00
print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100');
print '</td>';
}
// Company type
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['typent.code']['checked'])) {
print '<td class="liste_titre maxwidthonsmartphone" align="center">';
2021-02-04 09:48:17 +01:00
print $form->selectarray("search_type_thirdparty", $formcompany->typent_array(0), $search_type_thirdparty, 1, 0, 0, '', 0, 0, 0, (empty($conf->global->SOCIETE_SORT_ON_TYPEENT) ? 'ASC' : $conf->global->SOCIETE_SORT_ON_TYPEENT), 'maxwidth100', 1);
print '</td>';
}
// Payment mode
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.fk_mode_reglement']['checked'])) {
print '<td class="liste_titre">';
$form->select_types_paiements($search_paymentmode, 'search_paymentmode', '', 0, 1, 1, 10);
print '</td>';
}
// Payment terms
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.fk_cond_reglement']['checked'])) {
print '<td class="liste_titre">';
2019-04-09 18:32:00 +02:00
$form->select_conditions_paiements($search_paymentterms, 'search_paymentterms', -1, 1, 1);
print '</td>';
}
// Module source
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.module_source']['checked'])) {
print '<td class="liste_titre">';
print '<input class="flat maxwidth75" type="text" name="search_module_source" value="'.dol_escape_htmltag($search_module_source).'">';
print '</td>';
}
// POS Terminal
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.pos_source']['checked'])) {
print '<td class="liste_titre">';
print '<input class="flat maxwidth50" type="text" name="search_pos_source" value="'.dol_escape_htmltag($search_pos_source).'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.total_ht']['checked'])) {
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">';
print '<input class="flat" type="text" size="4" name="search_montant_ht" value="'.dol_escape_htmltag($search_montant_ht).'">';
print '</td>';
}
if (!empty($arrayfields['f.total_tva']['checked'])) {
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">';
print '<input class="flat" type="text" size="4" name="search_montant_vat" value="'.dol_escape_htmltag($search_montant_vat).'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.total_localtax1']['checked'])) {
// Localtax1
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">';
print '<input class="flat" type="text" size="4" name="search_montant_localtax1" value="'.$search_montant_localtax1.'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.total_localtax2']['checked'])) {
// Localtax2
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">';
print '<input class="flat" type="text" size="4" name="search_montant_localtax2" value="'.$search_montant_localtax2.'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.total_ttc']['checked'])) {
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">';
print '<input class="flat" type="text" size="4" name="search_montant_ttc" value="'.dol_escape_htmltag($search_montant_ttc).'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['u.login']['checked'])) {
// Author
print '<td class="liste_titre" align="center">';
print '<input class="flat" size="4" type="text" name="search_login" value="'.dol_escape_htmltag($search_login).'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.retained_warranty']['checked'])) {
print '<td class="liste_titre" align="right">';
print '</td>';
2018-09-27 15:38:43 +02:00
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['dynamount_payed']['checked'])) {
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['rtp']['checked'])) {
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_code']['checked'])) {
// Currency
print '<td class="liste_titre">';
print $form->selectMultiCurrency($search_multicurrency_code, 'search_multicurrency_code', 1);
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_tx']['checked'])) {
// Currency rate
print '<td class="liste_titre">';
print '<input class="flat" type="text" size="4" name="search_multicurrency_tx" value="'.dol_escape_htmltag($search_multicurrency_tx).'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_total_ht']['checked'])) {
// Amount
print '<td class="liste_titre right">';
print '<input class="flat" type="text" size="4" name="search_multicurrency_montant_ht" value="'.dol_escape_htmltag($search_multicurrency_montant_ht).'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_total_vat']['checked'])) {
// Amount
print '<td class="liste_titre right">';
print '<input class="flat" type="text" size="4" name="search_multicurrency_montant_vat" value="'.dol_escape_htmltag($search_multicurrency_montant_vat).'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_total_ttc']['checked'])) {
// Amount
print '<td class="liste_titre right">';
print '<input class="flat" type="text" size="4" name="search_multicurrency_montant_ttc" value="'.dol_escape_htmltag($search_multicurrency_montant_ttc).'">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['multicurrency_dynamount_payed']['checked'])) {
print '<td class="liste_titre">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['multicurrency_rtp']['checked'])) {
print '<td class="liste_titre right">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['total_pa']['checked'])) {
2020-10-21 16:10:48 +02:00
print '<td class="liste_titre right">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['total_margin']['checked'])) {
2020-10-21 16:10:48 +02:00
print '<td class="liste_titre right">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['total_margin_rate']['checked'])) {
2020-10-21 16:10:48 +02:00
print '<td class="liste_titre right">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['total_mark_rate']['checked'])) {
2020-10-21 16:10:48 +02:00
print '<td class="liste_titre right">';
print '</td>';
}
2019-09-06 11:35:52 +02:00
// Extra fields
2017-11-27 15:24:29 +01:00
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
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.datec']['checked'])) {
print '<td class="liste_titre">';
print '</td>';
}
// Date modification
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.tms']['checked'])) {
print '<td class="liste_titre">';
print '</td>';
}
2021-04-13 17:21:51 +02:00
// Date closing
if (!empty($arrayfields['f.date_closing']['checked'])) {
2021-04-13 17:21:51 +02:00
print '<td class="liste_titre">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.note_public']['checked'])) {
// Note public
print '<td class="liste_titre">';
print '</td>';
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.note_private']['checked'])) {
// Note private
print '<td class="liste_titre">';
print '</td>';
}
// Status
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.fk_statut']['checked'])) {
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre maxwidthonsmartphone right">';
$liststatus = array('0'=>$langs->trans("BillShortStatusDraft"), '1'=>$langs->trans("BillShortStatusNotPaid"), '0,1'=>$langs->trans("BillShortStatusDraft").'+'.$langs->trans("BillShortStatusNotPaid"), '2'=>$langs->trans("BillShortStatusPaid"), '1,2'=>$langs->trans("BillShortStatusNotPaid").'+'.$langs->trans("BillShortStatusPaid"), '3'=>$langs->trans("BillShortStatusCanceled"));
2020-10-16 13:30:20 +02:00
print $form->selectarray('search_status', $liststatus, $search_status, 1, 0, 0, '', 0, 0, 0, '', '', 1);
print '</td>';
}
// Action column
print '<td class="liste_titre" align="middle">';
$searchpicto = $form->showFilterButtons();
2017-05-14 21:06:33 +02:00
print $searchpicto;
print '</td>';
print "</tr>\n";
print '<tr class="liste_titre">';
2021-02-23 21:09:01 +01:00
if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER_IN_LIST)) {
print_liste_field_titre('#', $_SERVER['PHP_SELF'], '', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.ref']['checked'])) {
print_liste_field_titre($arrayfields['f.ref']['label'], $_SERVER['PHP_SELF'], 'f.ref', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.ref_client']['checked'])) {
print_liste_field_titre($arrayfields['f.ref_client']['label'], $_SERVER["PHP_SELF"], 'f.ref_client', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.type']['checked'])) {
print_liste_field_titre($arrayfields['f.type']['label'], $_SERVER["PHP_SELF"], 'f.type', '', $param, '', $sortfield, $sortorder);
}
2021-03-28 19:15:59 +02:00
if (!empty($arrayfields['f.datef']['checked'])) {
2021-03-31 18:39:59 +02:00
print_liste_field_titre($arrayfields['f.datef']['label'], $_SERVER['PHP_SELF'], 'f.datef', '', $param, 'align="center"', $sortfield, $sortorder);
2021-02-23 21:09:01 +01:00
}
if (!empty($arrayfields['f.date_valid']['checked'])) {
print_liste_field_titre($arrayfields['f.date_valid']['label'], $_SERVER['PHP_SELF'], 'f.date_valid', '', $param, 'align="center"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.date_lim_reglement']['checked'])) {
print_liste_field_titre($arrayfields['f.date_lim_reglement']['label'], $_SERVER['PHP_SELF'], "f.date_lim_reglement", '', $param, 'align="center"', $sortfield, $sortorder);
}
if (!empty($arrayfields['p.ref']['checked'])) {
print_liste_field_titre($arrayfields['p.ref']['label'], $_SERVER['PHP_SELF'], "p.ref", '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['p.title']['checked'])) {
print_liste_field_titre($arrayfields['p.title']['label'], $_SERVER['PHP_SELF'], "p.title", '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['s.nom']['checked'])) {
print_liste_field_titre($arrayfields['s.nom']['label'], $_SERVER['PHP_SELF'], 's.nom', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['s.name_alias']['checked'])) {
print_liste_field_titre($arrayfields['s.name_alias']['label'], $_SERVER['PHP_SELF'], 's.name_alias', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['s.town']['checked'])) {
print_liste_field_titre($arrayfields['s.town']['label'], $_SERVER["PHP_SELF"], 's.town', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['s.zip']['checked'])) {
print_liste_field_titre($arrayfields['s.zip']['label'], $_SERVER["PHP_SELF"], 's.zip', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['state.nom']['checked'])) {
print_liste_field_titre($arrayfields['state.nom']['label'], $_SERVER["PHP_SELF"], "state.nom", "", $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['country.code_iso']['checked'])) {
print_liste_field_titre($arrayfields['country.code_iso']['label'], $_SERVER["PHP_SELF"], "country.code_iso", "", $param, 'align="center"', $sortfield, $sortorder);
}
if (!empty($arrayfields['typent.code']['checked'])) {
print_liste_field_titre($arrayfields['typent.code']['label'], $_SERVER["PHP_SELF"], "typent.code", "", $param, 'align="center"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.fk_mode_reglement']['checked'])) {
print_liste_field_titre($arrayfields['f.fk_mode_reglement']['label'], $_SERVER["PHP_SELF"], "f.fk_mode_reglement", "", $param, "", $sortfield, $sortorder);
}
if (!empty($arrayfields['f.fk_cond_reglement']['checked'])) {
print_liste_field_titre($arrayfields['f.fk_cond_reglement']['label'], $_SERVER["PHP_SELF"], "f.fk_cond_reglement", "", $param, "", $sortfield, $sortorder);
}
if (!empty($arrayfields['f.module_source']['checked'])) {
print_liste_field_titre($arrayfields['f.module_source']['label'], $_SERVER["PHP_SELF"], "f.module_source", "", $param, "", $sortfield, $sortorder);
}
if (!empty($arrayfields['f.pos_source']['checked'])) {
print_liste_field_titre($arrayfields['f.pos_source']['label'], $_SERVER["PHP_SELF"], "f.pos_source", "", $param, "", $sortfield, $sortorder);
}
if (!empty($arrayfields['f.total_ht']['checked'])) {
print_liste_field_titre($arrayfields['f.total_ht']['label'], $_SERVER['PHP_SELF'], 'f.total_ht', '', $param, 'class="right"', $sortfield, $sortorder);
2021-02-23 21:09:01 +01:00
}
if (!empty($arrayfields['f.total_tva']['checked'])) {
print_liste_field_titre($arrayfields['f.total_tva']['label'], $_SERVER['PHP_SELF'], 'f.total_tva', '', $param, 'class="right"', $sortfield, $sortorder);
2021-02-23 21:09:01 +01:00
}
if (!empty($arrayfields['f.total_localtax1']['checked'])) {
print_liste_field_titre($arrayfields['f.total_localtax1']['label'], $_SERVER['PHP_SELF'], 'f.localtax1', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.total_localtax2']['checked'])) {
print_liste_field_titre($arrayfields['f.total_localtax2']['label'], $_SERVER['PHP_SELF'], 'f.localtax2', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.total_ttc']['checked'])) {
print_liste_field_titre($arrayfields['f.total_ttc']['label'], $_SERVER['PHP_SELF'], 'f.total_ttc', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['u.login']['checked'])) {
print_liste_field_titre($arrayfields['u.login']['label'], $_SERVER["PHP_SELF"], 'u.login', '', $param, 'align="center"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.retained_warranty']['checked'])) {
print_liste_field_titre($arrayfields['f.retained_warranty']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'align="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['dynamount_payed']['checked'])) {
print_liste_field_titre($arrayfields['dynamount_payed']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['rtp']['checked'])) {
print_liste_field_titre($arrayfields['rtp']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.multicurrency_code']['checked'])) {
print_liste_field_titre($arrayfields['f.multicurrency_code']['label'], $_SERVER['PHP_SELF'], 'f.multicurrency_code', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.multicurrency_tx']['checked'])) {
print_liste_field_titre($arrayfields['f.multicurrency_tx']['label'], $_SERVER['PHP_SELF'], 'f.multicurrency_tx', '', $param, '', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.multicurrency_total_ht']['checked'])) {
print_liste_field_titre($arrayfields['f.multicurrency_total_ht']['label'], $_SERVER['PHP_SELF'], 'f.multicurrency_total_ht', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.multicurrency_total_vat']['checked'])) {
print_liste_field_titre($arrayfields['f.multicurrency_total_vat']['label'], $_SERVER['PHP_SELF'], 'f.multicurrency_total_tva', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.multicurrency_total_ttc']['checked'])) {
print_liste_field_titre($arrayfields['f.multicurrency_total_ttc']['label'], $_SERVER['PHP_SELF'], 'f.multicurrency_total_ttc', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['multicurrency_dynamount_payed']['checked'])) {
print_liste_field_titre($arrayfields['multicurrency_dynamount_payed']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['multicurrency_rtp']['checked'])) {
print_liste_field_titre($arrayfields['multicurrency_rtp']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['total_pa']['checked'])) {
print_liste_field_titre($arrayfields['total_pa']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['total_margin']['checked'])) {
print_liste_field_titre($arrayfields['total_margin']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['total_margin_rate']['checked'])) {
print_liste_field_titre($arrayfields['total_margin_rate']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'class="right"', $sortfield, $sortorder);
}
if (!empty($arrayfields['total_mark_rate']['checked'])) {
print_liste_field_titre($arrayfields['total_mark_rate']['label'], $_SERVER['PHP_SELF'], '', '', $param, 'class="right"', $sortfield, $sortorder);
}
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
// Hook fields
$parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder);
$reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters); // Note that $action and $object may have been modified by hook
print $hookmanager->resPrint;
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.datec']['checked'])) {
print_liste_field_titre($arrayfields['f.datec']['label'], $_SERVER["PHP_SELF"], "f.datec", "", $param, 'align="center" class="nowrap"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.tms']['checked'])) {
print_liste_field_titre($arrayfields['f.tms']['label'], $_SERVER["PHP_SELF"], "f.tms", "", $param, 'align="center" class="nowrap"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.date_closing']['checked'])) {
print_liste_field_titre($arrayfields['f.date_closing']['label'], $_SERVER["PHP_SELF"], "f.date_closing", "", $param, 'align="center" class="nowrap"', $sortfield, $sortorder);
}
if (!empty($arrayfields['f.note_public']['checked'])) {
print_liste_field_titre($arrayfields['f.note_public']['label'], $_SERVER["PHP_SELF"], "f.note_public", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
}
if (!empty($arrayfields['f.note_private']['checked'])) {
print_liste_field_titre($arrayfields['f.note_private']['label'], $_SERVER["PHP_SELF"], "f.note_private", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
}
if (!empty($arrayfields['f.fk_statut']['checked'])) {
print_liste_field_titre($arrayfields['f.fk_statut']['label'], $_SERVER["PHP_SELF"], "f.fk_statut,f.paye,f.type,dynamount_payed", "", $param, 'class="right"', $sortfield, $sortorder);
}
print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', 'align="center"', $sortfield, $sortorder, 'maxwidthsearch ');
print "</tr>\n";
$projectstatic = new Project($db);
$discount = new DiscountAbsolute($db);
$userstatic = new User($db);
2018-10-01 00:20:47 +02:00
2021-02-23 21:09:01 +01:00
if ($num > 0) {
$i = 0;
$totalarray = array();
2021-06-10 20:55:00 +02:00
$totalarray['nbfield'] = 0;
$totalarray['val'] = array();
$totalarray['val']['f.total_ht'] = 0;
$totalarray['val']['f.total_ttc'] = 0;
2021-02-23 21:09:01 +01:00
while ($i < min($num, $limit)) {
$obj = $db->fetch_object($resql);
$datelimit = $db->jdate($obj->datelimite);
$facturestatic->id = $obj->id;
$facturestatic->ref = $obj->ref;
2020-02-13 18:00:59 +01:00
$facturestatic->ref_client = $obj->ref_client;
$facturestatic->type = $obj->type;
$facturestatic->total_ht = $obj->total_ht;
2021-02-22 05:58:46 +01:00
$facturestatic->total_tva = $obj->total_tva;
$facturestatic->total_ttc = $obj->total_ttc;
$facturestatic->multicurrency_code = $obj->multicurrency_code;
$facturestatic->multicurrency_tx = $obj->multicurrency_tx;
$facturestatic->multicurrency_total_ht = $obj->multicurrency_total_ht;
$facturestatic->multicurrency_total_tva = $obj->multicurrency_total_vat;
$facturestatic->multicurrency_total_ttc = $obj->multicurrency_total_ttc;
$facturestatic->statut = $obj->fk_statut;
$facturestatic->close_code = $obj->close_code;
$facturestatic->total_ttc = $obj->total_ttc;
$facturestatic->paye = $obj->paye;
$facturestatic->fk_soc = $obj->fk_soc;
2020-04-06 23:38:30 +02:00
2021-03-28 19:15:59 +02:00
$facturestatic->date = $db->jdate($obj->datef);
$facturestatic->date_valid = $db->jdate($obj->date_valid);
$facturestatic->date_lim_reglement = $db->jdate($obj->datelimite);
2020-04-06 23:38:30 +02:00
$facturestatic->note_public = $obj->note_public;
$facturestatic->note_private = $obj->note_private;
2021-02-23 21:09:01 +01:00
if ($conf->global->INVOICE_USE_SITUATION && $conf->global->INVOICE_USE_RETAINED_WARRANTY) {
$facturestatic->retained_warranty = $obj->retained_warranty;
$facturestatic->retained_warranty_date_limit = $obj->retained_warranty_date_limit;
$facturestatic->situation_final = $obj->retained_warranty_date_limit;
$facturestatic->situation_final = $obj->retained_warranty_date_limit;
$facturestatic->situation_cycle_ref = $obj->situation_cycle_ref;
$facturestatic->situation_counter = $obj->situation_counter;
2018-10-04 12:01:24 +02:00
}
2021-05-17 23:27:33 +02:00
$companystatic->id = $obj->socid;
$companystatic->name = $obj->name;
$companystatic->name_alias = $obj->alias;
$companystatic->client = $obj->client;
$companystatic->fournisseur = $obj->fournisseur;
$companystatic->code_client = $obj->code_client;
$companystatic->code_compta_client = $obj->code_compta_client;
$companystatic->code_fournisseur = $obj->code_fournisseur;
$companystatic->code_compta_fournisseur = $obj->code_compta_fournisseur;
$companystatic->email = $obj->email;
$companystatic->phone = $obj->phone;
$companystatic->fax = $obj->fax;
$companystatic->address = $obj->address;
$companystatic->zip = $obj->zip;
$companystatic->town = $obj->town;
$companystatic->country_code = $obj->country_code;
$projectstatic->id = $obj->project_id;
$projectstatic->ref = $obj->project_ref;
$projectstatic->title = $obj->project_label;
2019-05-10 15:11:06 +02:00
$paiement = $facturestatic->getSommePaiement();
$totalcreditnotes = $facturestatic->getSumCreditNotesUsed();
$totaldeposits = $facturestatic->getSumDepositsUsed();
$totalpay = $paiement + $totalcreditnotes + $totaldeposits;
2019-06-18 17:42:45 +02:00
$remaintopay = price2num($facturestatic->total_ttc - $totalpay);
$multicurrency_paiement = $facturestatic->getSommePaiement(1);
$multicurrency_totalcreditnotes = $facturestatic->getSumCreditNotesUsed(1);
$multicurrency_totaldeposits = $facturestatic->getSumDepositsUsed(1);
$multicurrency_totalpay = $multicurrency_paiement + $multicurrency_totalcreditnotes + $multicurrency_totaldeposits;
$multicurrency_remaintopay = price2num($facturestatic->multicurrency_total_ttc - $multicurrency_totalpay);
if ($facturestatic->statut == Facture::STATUS_CLOSED && $facturestatic->close_code == 'discount_vat') { // If invoice closed with discount for anticipated payment
$remaintopay = 0;
$multicurrency_remaintopay = 0;
}
if ($facturestatic->type == Facture::TYPE_CREDIT_NOTE && $obj->paye == 1) { // If credit note closed, we take into account the amount not yet consummed
2021-05-17 23:27:33 +02:00
$remaincreditnote = $discount->getAvailableDiscounts($companystatic, '', 'rc.fk_facture_source='.$facturestatic->id);
$remaintopay = -$remaincreditnote;
2019-06-18 17:42:45 +02:00
$totalpay = price2num($facturestatic->total_ttc - $remaintopay);
2021-05-17 23:27:33 +02:00
$multicurrency_remaincreditnote = $discount->getAvailableDiscounts($companystatic, '', 'rc.fk_facture_source='.$facturestatic->id, 0, 0, 1);
$multicurrency_remaintopay = -$multicurrency_remaincreditnote;
$multicurrency_totalpay = price2num($facturestatic->multicurrency_total_ttc - $multicurrency_remaintopay);
}
2020-02-24 05:23:34 +01:00
$facturestatic->alreadypaid = $paiement;
2020-10-21 16:10:48 +02:00
$marginInfo = array();
if (!empty($conf->margin->enabled)) {
$facturestatic->fetch_lines();
$marginInfo = $formmargin->getMarginInfosArray($facturestatic);
}
print '<tr class="oddeven"';
2021-02-23 21:09:01 +01:00
if ($contextpage == 'poslist') {
print ' onclick="parent.$(\'#poslines\').load(\'invoice.php?action=history&placeid='.$obj->id.'\', function() {parent.$.colorbox.close();});"';
}
print '>';
2020-04-08 11:23:31 +02:00
// No
if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER_IN_LIST)) {
print '<td>'.(($offset * $limit) + $i).'</td>';
}
2020-04-08 11:23:31 +02:00
// Ref
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.ref']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td class="nowraponall">';
print '<table class="nobordernopadding"><tr class="nocellnopadd">';
2018-10-01 00:20:47 +02:00
print '<td class="nobordernopadding nowraponall">';
2021-02-23 21:09:01 +01:00
if ($contextpage == 'poslist') {
print $obj->ref;
} else {
print $facturestatic->getNomUrl(1, '', 200, 0, '', 0, 1);
}
$filename = dol_sanitizeFileName($obj->ref);
$filedir = $conf->facture->dir_output.'/'.dol_sanitizeFileName($obj->ref);
$urlsource = $_SERVER['PHP_SELF'].'?id='.$obj->id;
print $formfile->getDocumentsLink($facturestatic->element, $filename, $filedir);
print '</td>';
print '</tr>';
print '</table>';
print "</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Customer ref
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.ref_client']['checked'])) {
2020-02-13 18:00:59 +01:00
print '<td class="nowrap tdoverflowmax200">';
print $obj->ref_client;
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Type
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.type']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td class="nowraponall tdoverflowmax100" title="'.$facturestatic->getLibType().'">';
print $facturestatic->getLibType();
print "</td>";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Date
2021-03-28 19:15:59 +02:00
if (!empty($arrayfields['f.datef']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td align="center" class="nowraponall">';
2021-03-28 19:15:59 +02:00
print dol_print_date($db->jdate($obj->datef), 'day');
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
2020-04-06 23:38:30 +02:00
// Date
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.date_valid']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td align="center" class="nowraponall">';
2020-04-06 23:38:30 +02:00
print dol_print_date($db->jdate($obj->date_valid), 'day');
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
2020-04-06 23:38:30 +02:00
}
// Date limit
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.date_lim_reglement']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td align="center" class="nowraponall">'.dol_print_date($datelimit, 'day');
2021-02-23 21:09:01 +01:00
if ($facturestatic->hasDelay()) {
print img_warning($langs->trans('Alert').' - '.$langs->trans('Late'));
}
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
2019-05-10 15:11:06 +02:00
// Project ref
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['p.ref']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td class="nocellnopadd nowraponall">';
2021-02-23 21:09:01 +01:00
if ($obj->project_id > 0) {
print $projectstatic->getNomUrl(1);
}
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
2019-05-10 15:11:06 +02:00
// Project title
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['p.title']['checked'])) {
print '<td class="nowraponall">';
2021-02-23 21:09:01 +01:00
if ($obj->project_id > 0) {
print $projectstatic->title;
}
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
2019-05-10 15:11:06 +02:00
}
// Third party
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['s.nom']['checked'])) {
print '<td class="tdoverflowmax200">';
2021-02-23 21:09:01 +01:00
if ($contextpage == 'poslist') {
2021-05-17 23:27:33 +02:00
print $companystatic->name;
2020-05-21 15:05:19 +02:00
} else {
2021-05-17 23:27:33 +02:00
print $companystatic->getNomUrl(1, 'customer');
}
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
2021-01-10 22:47:30 +01:00
// Alias
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['s.name_alias']['checked'])) {
2021-02-21 13:12:16 +01:00
print '<td class="tdoverflowmax150" title="'.$obj->name_alias.'">';
2021-01-10 22:47:30 +01:00
print $obj->name_alias;
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
2021-01-10 22:47:30 +01:00
}
// Town
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['s.town']['checked'])) {
2019-06-19 15:51:48 +02:00
print '<td>';
print $obj->town;
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Zip
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['s.zip']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td class="nowraponall">';
print $obj->zip;
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// State
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['state.nom']['checked'])) {
print "<td>".$obj->state_name."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Country
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['country.code_iso']['checked'])) {
2019-12-12 10:31:08 +01:00
print '<td class="center">';
$tmparray = getCountry($obj->fk_pays, 'all');
print $tmparray['label'];
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Type ent
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['typent.code']['checked'])) {
2019-12-12 10:31:08 +01:00
print '<td class="center">';
2021-02-23 21:09:01 +01:00
if (!is_array($typenArray) || count($typenArray) == 0) {
$typenArray = $formcompany->typent_array(1);
}
print $typenArray[$obj->typent_code];
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Staff
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['staff.code']['checked'])) {
2019-12-12 10:31:08 +01:00
print '<td class="center">';
2021-02-23 21:09:01 +01:00
if (!is_array($staffArray) || count($staffArray) == 0) {
$staffArray = $formcompany->effectif_array(1);
}
print $staffArray[$obj->staff_code];
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Payment mode
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.fk_mode_reglement']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td class="tdoverflowmax100">';
$form->form_modes_reglement($_SERVER['PHP_SELF'], $obj->fk_mode_reglement, 'none', '', -1);
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Payment terms
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.fk_cond_reglement']['checked'])) {
print '<td>';
$form->form_conditions_reglement($_SERVER['PHP_SELF'], $obj->fk_cond_reglement, 'none');
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Module Source
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.module_source']['checked'])) {
print '<td>';
print $obj->module_source;
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// POS Terminal
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.pos_source']['checked'])) {
print '<td>';
print $obj->pos_source;
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Amount HT
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.total_ht']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.price($obj->total_ht)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
if (!$i) {
$totalarray['pos'][$totalarray['nbfield']] = 'f.total_ht';
}
2019-11-05 12:47:38 +01:00
$totalarray['val']['f.total_ht'] += $obj->total_ht;
}
// Amount VAT
if (!empty($arrayfields['f.total_tva']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.price($obj->total_vat)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
if (!$i) {
$totalarray['pos'][$totalarray['nbfield']] = 'f.total_tva';
2021-02-23 21:09:01 +01:00
}
2021-02-22 05:58:46 +01:00
$totalarray['val']['f.total_tva'] += $obj->total_tva;
}
// Amount LocalTax1
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.total_localtax1']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.price($obj->total_localtax1)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
if (!$i) {
$totalarray['pos'][$totalarray['nbfield']] = 'f.total_localtax1';
}
2019-11-05 12:47:38 +01:00
$totalarray['val']['f.total_localtax1'] += $obj->total_localtax1;
}
// Amount LocalTax2
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.total_localtax2']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.price($obj->total_localtax2)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
if (!$i) {
$totalarray['pos'][$totalarray['nbfield']] = 'f.total_localtax2';
}
2019-11-05 12:47:38 +01:00
$totalarray['val']['f.total_localtax2'] += $obj->total_localtax2;
}
// Amount TTC
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.total_ttc']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.price($obj->total_ttc)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
if (!$i) {
$totalarray['pos'][$totalarray['nbfield']] = 'f.total_ttc';
}
2019-11-05 12:47:38 +01:00
$totalarray['val']['f.total_ttc'] += $obj->total_ttc;
}
2021-05-17 23:54:31 +02:00
$userstatic->id = $obj->fk_user_author;
$userstatic->login = $obj->login;
$userstatic->lastname = $obj->lastname;
$userstatic->firstname = $obj->firstname;
$userstatic->email = $obj->email;
$userstatic->statut = $obj->statut;
$userstatic->entity = $obj->entity;
$userstatic->photo = $obj->photo;
$userstatic->office_phone = $obj->office_phone;
$userstatic->office_fax = $obj->office_fax;
$userstatic->user_mobile = $obj->user_mobile;
$userstatic->job = $obj->job;
$userstatic->gender = $obj->gender;
// Author
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['u.login']['checked'])) {
2021-05-18 18:18:00 +02:00
print '<td class="tdoverflowmax200">';
2021-02-23 21:09:01 +01:00
if ($userstatic->id) {
2021-05-17 18:04:21 +02:00
print $userstatic->getNomUrl(-1);
2021-02-23 21:09:01 +01:00
} else {
print '&nbsp;';
}
print "</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.retained_warranty']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td align="right amount">'.(!empty($obj->retained_warranty) ?price($obj->retained_warranty).'%' : '&nbsp;').'</td>';
2018-09-27 15:38:43 +02:00
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['dynamount_payed']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.(!empty($totalpay) ?price($totalpay, 0, $langs) : '&nbsp;').'</td>'; // TODO Use a denormalized field
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
if (!$i) {
$totalarray['pos'][$totalarray['nbfield']] = 'totalam';
}
2019-11-05 12:47:38 +01:00
$totalarray['val']['totalam'] += $totalpay;
}
// Pending amount
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['rtp']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">';
print (!empty($remaintopay) ? price($remaintopay, 0, $langs) : '&nbsp;');
print '</td>'; // TODO Use a denormalized field
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
if (!$i) {
$totalarray['pos'][$totalarray['nbfield']] = 'rtp';
}
2019-11-05 12:47:38 +01:00
$totalarray['val']['rtp'] += $remaintopay;
}
// Currency
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_code']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td class="nowraponall">'.$obj->multicurrency_code.' - '.$langs->trans('Currency'.$obj->multicurrency_code)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Currency rate
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_tx']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td class="nowraponall">';
$form->form_multicurrency_rate($_SERVER['PHP_SELF'].'?id='.$obj->rowid, $obj->multicurrency_tx, 'none', $obj->multicurrency_code);
print "</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Amount HT
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_total_ht']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.price($obj->multicurrency_total_ht)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Amount VAT
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_total_vat']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.price($obj->multicurrency_total_vat)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Amount TTC
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.multicurrency_total_ttc']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.price($obj->multicurrency_total_ttc)."</td>\n";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['multicurrency_dynamount_payed']['checked'])) {
2021-03-28 19:15:59 +02:00
print '<td class="right nowraponall amount">'.(!empty($multicurrency_totalpay) ?price($multicurrency_totalpay, 0, $langs) : '&nbsp;').'</td>'; // TODO Use a denormalized field
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Pending amount
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['multicurrency_rtp']['checked'])) {
2020-08-29 02:35:24 +02:00
print '<td class="right nowraponall">';
print (!empty($multicurrency_remaintopay) ? price($multicurrency_remaintopay, 0, $langs) : '&nbsp;');
print '</td>'; // TODO Use a denormalized field
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
2020-10-21 16:10:48 +02:00
// Total buying or cost price
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['total_pa']['checked'])) {
print '<td class="right nowrap">'.price($marginInfo['pa_total']).'</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
2020-10-21 16:10:48 +02:00
}
// Total margin
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['total_margin']['checked'])) {
print '<td class="right nowrap">'.price($marginInfo['total_margin']).'</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
if (!$i) {
$totalarray['pos'][$totalarray['nbfield']] = 'total_margin';
}
2020-12-28 16:20:59 +01:00
$totalarray['val']['total_margin'] += $marginInfo['total_margin'];
2020-10-21 16:10:48 +02:00
}
// Total margin rate
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['total_margin_rate']['checked'])) {
print '<td class="right nowrap">'.(($marginInfo['total_margin_rate'] == '') ? '' : price($marginInfo['total_margin_rate'], null, null, null, null, 2).'%').'</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
2020-10-21 16:10:48 +02:00
}
// total mark rate
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['total_mark_rate']['checked'])) {
print '<td class="right nowrap">'.(($marginInfo['total_mark_rate'] == '') ? '' : price($marginInfo['total_mark_rate'], null, null, null, null, 2).'%').'</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
2020-10-21 16:10:48 +02:00
}
// Extra fields
2017-11-27 15:24:29 +01:00
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
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.datec']['checked'])) {
print '<td align="center" class="nowrap">';
print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuser');
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Date modification
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.tms']['checked'])) {
print '<td align="center" class="nowrap">';
print dol_print_date($db->jdate($obj->date_update), 'dayhour', 'tzuser');
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
2019-09-29 15:42:39 +02:00
// Date closing
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.date_closing']['checked'])) {
2019-09-06 11:35:52 +02:00
print '<td align="center" class="nowrap">';
2019-09-29 15:42:39 +02:00
print dol_print_date($db->jdate($obj->date_closing), 'dayhour', 'tzuser');
2019-09-06 11:35:52 +02:00
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
2019-09-06 11:35:52 +02:00
}
// Note public
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.note_public']['checked'])) {
print '<td class="center">';
print dol_escape_htmltag($obj->note_public);
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Note private
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.note_private']['checked'])) {
print '<td class="center">';
print dol_escape_htmltag($obj->note_private);
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Status
2021-02-23 21:09:01 +01:00
if (!empty($arrayfields['f.fk_statut']['checked'])) {
2019-02-10 10:21:54 +01:00
print '<td class="nowrap right">';
print $facturestatic->LibStatut($obj->paye, $obj->fk_statut, 5, $paiement, $obj->type);
print "</td>";
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
}
// Action column (Show the massaction button only when this page is not opend from the Extended POS)
print '<td class="nowrap" align="center">';
2021-02-23 21:09:01 +01:00
if (($massactionbutton || $massaction) && $contextpage != 'poslist') { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
$selected = 0;
2021-02-23 21:09:01 +01:00
if (in_array($obj->id, $arrayofselected)) {
$selected = 1;
}
print '<input id="cb'.$obj->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->id.'"'.($selected ? ' checked="checked"' : '').'>';
}
print '</td>';
2021-02-23 21:09:01 +01:00
if (!$i) {
$totalarray['nbfield']++;
}
print "</tr>\n";
$i++;
}
// Show total line
2019-11-05 12:47:38 +01:00
include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
}
$db->free($resql);
$parameters = array('arrayfields'=>$arrayfields, 'sql'=>$sql);
$reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters); // Note that $action and $object may have been modified by hook
print $hookmanager->resPrint;
print "</table>\n";
print '</div>';
print "</form>\n";
// Show the file area only when this page is not opend from the Extended POS
if ($contextpage != 'poslist') {
$hidegeneratedfilelistifempty = 1;
2021-02-23 21:09:01 +01:00
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('&amp;', '&', $param);
$filedir = $diroutputmassaction;
$genallowed = $user->rights->facture->lire;
$delallowed = $user->rights->facture->creer;
$title = '';
print $formfile->showdocuments('massfilesarea_invoices', '', $filedir, $urlsource, 0, $delallowed, '', 1, 1, 0, 48, 1, $param, $title, '', '', '', null, $hidegeneratedfilelistifempty);
}
2020-05-21 15:05:19 +02:00
} else {
dol_print_error($db);
}
2018-07-30 17:28:44 +02:00
// End of page
llxFooter();
$db->close();