2012-06-09 19:16:31 +02:00
< ? php
/* Copyright ( C ) 2002 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
* Copyright ( C ) 2004 Eric Seigne < eric . seigne @ ryxeo . com >
2016-02-09 11:56:12 +01:00
* Copyright ( C ) 2004 - 2016 Laurent Destailleur < eldy @ users . sourceforge . net >
2012-06-09 19:16:31 +02:00
* 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 >
2012-06-09 19:16:31 +02:00
* Copyright ( C ) 2006 Andre Cianfarani < acianfa @ free . fr >
2020-08-11 10:12:19 +02:00
* Copyright ( C ) 2010 - 2020 Juanjo Menent < jmenent @ 2 byte . es >
2012-06-09 19:16:31 +02:00
* Copyright ( C ) 2012 Christophe Battarel < christophe . battarel @ altairis . fr >
2017-04-13 08:30:48 +02:00
* 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 >
2017-04-13 08:30:48 +02:00
* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
2022-03-30 09:33:14 +02:00
* Copyright ( C ) 2015 - 2022 Ferran Marcet < fmarcet @ 2 byte . es >
2017-04-13 08:30:48 +02:00
* 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 >
2021-02-28 07:32:23 +01:00
* Copyright ( C ) 2019 - 2021 Alexandre Spangaro < aspangaro @ open - dsi . fr >
2012-06-09 19:16:31 +02:00
*
* 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
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2012-06-09 19:16:31 +02:00
* ( 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 />.
2012-06-09 19:16:31 +02:00
*/
/**
2012-06-11 19:28:04 +02:00
* \file htdocs / compta / facture / list . php
2012-06-09 19:16:31 +02:00
* \ingroup facture
2016-06-21 15:16:33 +02:00
* \brief List of customer invoices
2012-06-09 19:16:31 +02:00
*/
2012-08-22 23:24:21 +02:00
require '../../main.inc.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formother.class.php' ;
2016-04-08 01:00:02 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php' ;
2022-08-29 12:02:49 +02:00
if ( isModEnabled ( 'margin' )) {
2020-10-21 16:10:48 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formmargin.class.php' ;
}
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/modules/facture/modules_facture.php' ;
2016-06-21 15:16:33 +02:00
require_once DOL_DOCUMENT_ROOT . '/compta/bank/class/account.class.php' ;
2012-08-22 23:11:24 +02:00
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' ;
2022-04-15 11:32:53 +02:00
require_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facture-rec.class.php' ;
2012-08-22 23:11:24 +02:00
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' ;
2016-04-08 02:39:57 +02:00
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' ;
2022-08-29 12:02:49 +02:00
if ( isModEnabled ( 'commande' )) {
2021-02-23 21:09:01 +01:00
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' ));
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$sall = trim (( GETPOST ( 'search_all' , 'alphanohtml' ) != '' ) ? GETPOST ( 'search_all' , 'alphanohtml' ) : GETPOST ( 'sall' , 'alphanohtml' ));
$projectid = ( GETPOST ( 'projectid' ) ? GETPOST ( 'projectid' , 'int' ) : 0 );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$id = ( GETPOST ( 'id' , 'int' ) ? GETPOST ( 'id' , 'int' ) : GETPOST ( 'facid' , 'int' )); // For backward compatibility
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOST ( 'socid' , 'int' );
2016-07-25 19:43:07 +02:00
2020-09-16 19:39:50 +02:00
$action = GETPOST ( 'action' , 'aZ09' );
2019-11-12 09:46:08 +01:00
$massaction = GETPOST ( 'massaction' , 'alpha' );
$show_files = GETPOST ( 'show_files' , 'int' );
$confirm = GETPOST ( 'confirm' , 'alpha' );
2016-07-25 19:43:07 +02:00
$toselect = GETPOST ( 'toselect' , 'array' );
2019-11-12 09:46:08 +01:00
$contextpage = GETPOST ( 'contextpage' , 'aZ' ) ? GETPOST ( 'contextpage' , 'aZ' ) : 'invoicelist' ;
2019-01-27 11:55:16 +01:00
2021-02-23 21:09:01 +01:00
if ( $contextpage == 'poslist' ) {
2020-10-31 14:32:18 +01:00
$_GET [ 'optioncss' ] = 'print' ;
2019-04-28 18:12:33 +02:00
}
2019-11-12 09:46:08 +01:00
$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' );
2021-05-20 12:36:26 +02:00
$search_company = GETPOST ( 'search_company' , 'alpha' );
$search_company_alias = GETPOST ( 'search_company_alias' , 'alpha' );
2019-11-12 09:46:08 +01:00
$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' );
2020-04-10 10:59:32 +02:00
$search_login = GETPOST ( 'search_login' , 'alpha' );
2020-02-27 14:10:00 +01:00
$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' );
2019-11-12 09:46:08 +01:00
$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' );
2020-08-28 21:27:50 +02:00
$search_state = GETPOST ( " search_state " );
2021-08-30 13:56:31 +02:00
$search_country = GETPOST ( " search_country " , 'alpha' );
2019-11-12 09:46:08 +01:00
$search_type_thirdparty = GETPOST ( " search_type_thirdparty " , 'int' );
2019-01-27 11:55:16 +01:00
$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' );
2021-10-23 22:22:10 +02:00
$search_date_start = dol_mktime ( 0 , 0 , 0 , $search_date_startmonth , $search_date_startday , $search_date_startyear ); // Use tzserver
2021-03-31 18:39:59 +02:00
$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' );
2021-10-23 22:22:10 +02:00
$search_date_valid_start = dol_mktime ( 0 , 0 , 0 , $search_date_valid_startmonth , $search_date_valid_startday , $search_date_valid_startyear ); // Use tzserver
2021-03-31 18:39:59 +02:00
$search_date_valid_end = dol_mktime ( 23 , 59 , 59 , $search_date_valid_endmonth , $search_date_valid_endday , $search_date_valid_endyear );
2021-06-10 06:22:03 +02:00
$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 );
2020-08-28 21:27:50 +02:00
$search_categ_cus = GETPOST ( " search_categ_cus " , 'int' );
2022-04-27 08:50:58 +02:00
$search_fac_rec_source_title = GETPOST ( " search_fac_rec_source_title " , 'alpha' );
2019-11-12 09:46:08 +01:00
$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
2018-03-09 17:23:43 +01:00
$option = GETPOST ( 'search_option' );
2017-09-26 11:55:19 +02:00
if ( $option == 'late' ) {
$search_status = '1' ;
}
2019-11-12 09:46:08 +01:00
$filtre = GETPOST ( 'filtre' , 'alpha' );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$limit = GETPOST ( 'limit' , 'int' ) ? GETPOST ( 'limit' , 'int' ) : $conf -> liste_limit ;
2022-01-13 11:09:37 +01:00
$sortfield = GETPOST ( 'sortfield' , 'aZ09comma' );
$sortorder = GETPOST ( 'sortorder' , 'aZ09comma' );
2020-03-13 13:07:11 +01:00
$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
2015-12-16 19:38:40 +01:00
$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' ;
}
2012-06-09 19:16:31 +02:00
$pageprev = $page - 1 ;
$pagenext = $page + 1 ;
// Security check
2019-11-12 09:46:08 +01:00
$fieldid = ( ! empty ( $ref ) ? 'ref' : 'rowid' );
2021-02-23 21:09:01 +01:00
if ( ! empty ( $user -> socid )) {
$socid = $user -> socid ;
}
2019-01-27 11:55:16 +01:00
$result = restrictedArea ( $user , 'facture' , $id , '' , '' , 'fk_soc' , $fieldid );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$diroutputmassaction = $conf -> facture -> dir_output . '/temp/massgeneration/' . $user -> id ;
2016-02-08 18:04:42 +01:00
2019-11-12 09:46:08 +01:00
$object = new Facture ( $db );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$now = dol_now ();
2022-02-10 13:01:47 +01:00
$error = 0 ;
2016-04-08 01:00:02 +02:00
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
2018-03-31 18:48:27 +02:00
$object = new Facture ( $db );
2013-05-28 18:35:15 +02:00
$hookmanager -> initHooks ( array ( 'invoicelist' ));
2016-04-08 01:00:02 +02:00
$extrafields = new ExtraFields ( $db );
2012-06-09 19:16:31 +02:00
2016-04-08 01:00:02 +02:00
// fetch optionals attributes and labels
2020-08-04 12:47:09 +02:00
$extrafields -> fetch_name_optionals_label ( $object -> table_element );
2019-10-06 14:41:52 +02:00
2019-11-12 09:46:08 +01:00
$search_array_options = $extrafields -> getOptionalsFromPost ( $object -> table_element , '' , 'search_' );
2012-06-09 19:16:31 +02:00
2015-10-17 02:41:09 +02:00
// 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' ,
2017-10-13 13:28:26 +02:00
'f.ref_client' => 'RefCustomer' ,
2022-04-06 14:53:22 +02:00
'f.note_public' => 'NotePublic' ,
2017-10-13 13:28:26 +02:00
's.nom' => " ThirdParty " ,
2020-04-10 10:55:14 +02:00
's.name_alias' => " AliasNameShort " ,
's.zip' => " Zip " ,
's.town' => " Town " ,
2022-04-06 14:53:22 +02:00
'pd.description' => 'Description' ,
2015-10-17 02:41:09 +02:00
);
2021-02-23 21:09:01 +01:00
if ( empty ( $user -> socid )) {
$fieldstosearchall [ " f.note_private " ] = " NotePrivate " ;
}
2015-10-17 02:41:09 +02:00
2019-11-12 09:46:08 +01:00
$checkedtypetiers = 0 ;
$arrayfields = array (
2019-10-10 15:10:41 +02:00
'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 ),
2019-10-10 15:10:41 +02:00
'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 ),
2019-10-10 15:10:41 +02:00
'f.date_lim_reglement' => array ( 'label' => " DateDue " , 'checked' => 1 , 'position' => 25 ),
'f.date_closing' => array ( 'label' => " DateClosing " , 'checked' => 0 , 'position' => 30 ),
2022-06-14 17:53:17 +02:00
'p.ref' => array ( 'label' => " ProjectRef " , 'checked' => 1 , 'enabled' => ( empty ( $conf -> project -> enabled ) ? 0 : 1 ), 'position' => 40 ),
'p.title' => array ( 'label' => " ProjectLabel " , 'checked' => 0 , 'enabled' => ( empty ( $conf -> project -> enabled ) ? 0 : 1 ), 'position' => 41 ),
2019-10-10 15:10:41 +02:00
'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 ),
2019-10-10 15:10:41 +02:00
'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 ),
2019-10-10 15:10:41 +02:00
'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 ),
2019-11-12 09:46:08 +01:00
'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 ),
2019-10-10 15:10:41 +02:00
'f.total_ttc' => array ( 'label' => " AmountTTC " , 'checked' => 0 , 'position' => 130 ),
'dynamount_payed' => array ( 'label' => " Received " , 'checked' => 0 , 'position' => 140 ),
2019-11-12 09:46:08 +01:00
'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 ),
2021-05-18 18:45:07 +02:00
'sale_representative' => array ( 'label' => " SaleRepresentativesOfThirdParty " , 'checked' => 0 , 'position' => 166 ),
2022-08-29 12:02:49 +02:00
'f.multicurrency_code' => array ( 'label' => 'Currency' , 'checked' => 0 , 'enabled' => ( ! isModEnabled ( 'multicurrency' ) ? 0 : 1 ), 'position' => 280 ),
'f.multicurrency_tx' => array ( 'label' => 'CurrencyRate' , 'checked' => 0 , 'enabled' => ( ! isModEnabled ( 'multicurrency' ) ? 0 : 1 ), 'position' => 285 ),
'f.multicurrency_total_ht' => array ( 'label' => 'MulticurrencyAmountHT' , 'checked' => 0 , 'enabled' => ( ! isModEnabled ( 'multicurrency' ) ? 0 : 1 ), 'position' => 290 ),
'f.multicurrency_total_vat' => array ( 'label' => 'MulticurrencyAmountVAT' , 'checked' => 0 , 'enabled' => ( ! isModEnabled ( 'multicurrency' ) ? 0 : 1 ), 'position' => 291 ),
'f.multicurrency_total_ttc' => array ( 'label' => 'MulticurrencyAmountTTC' , 'checked' => 0 , 'enabled' => ( ! isModEnabled ( 'multicurrency' ) ? 0 : 1 ), 'position' => 292 ),
'multicurrency_dynamount_payed' => array ( 'label' => 'MulticurrencyAlreadyPaid' , 'checked' => 0 , 'enabled' => ( ! isModEnabled ( 'multicurrency' ) ? 0 : 1 ), 'position' => 295 ),
'multicurrency_rtp' => array ( 'label' => 'MulticurrencyRemainderToPay' , 'checked' => 0 , 'enabled' => ( ! isModEnabled ( 'multicurrency' ) ? 0 : 1 ), 'position' => 296 ), // Not enabled by default because slow
2022-05-21 17:27:52 +02:00
'total_pa' => array ( 'label' => (( isset ( $conf -> global -> MARGIN_TYPE ) && $conf -> global -> MARGIN_TYPE == '1' ) ? 'BuyingPrice' : 'CostPrice' ), 'checked' => 0 , 'position' => 300 , 'enabled' => ( empty ( $conf -> margin -> enabled ) || empty ( $user -> rights -> margins -> liretous ) ? 0 : 1 )),
2021-10-23 07:13:08 +02:00
'total_margin' => array ( 'label' => 'Margin' , 'checked' => 0 , 'position' => 301 , 'enabled' => ( empty ( $conf -> margin -> enabled ) || empty ( $user -> rights -> margins -> liretous ) ? 0 : 1 )),
'total_margin_rate' => array ( 'label' => 'MarginRate' , 'checked' => 0 , 'position' => 302 , 'enabled' => ( empty ( $conf -> margin -> enabled ) || empty ( $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 ) || empty ( $user -> rights -> margins -> liretous ) || empty ( $conf -> global -> DISPLAY_MARK_RATES ) ? 0 : 1 )),
2018-09-14 01:29:03 +02:00
'f.datec' => array ( 'label' => " DateCreation " , 'checked' => 0 , 'position' => 500 ),
2021-06-10 01:56:20 +02:00
'f.tms' => array ( 'label' => " DateModificationShort " , 'checked' => 0 , 'position' => 502 ),
2020-09-30 11:58:40 +02:00
'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 ))),
2022-04-15 11:32:53 +02:00
'f.fk_fac_rec_source' => array ( 'label' => 'GeneratedFromTemplate' , 'checked' => 0 , 'position' => 520 , 'enabled' => '1' ),
2018-09-14 01:29:03 +02:00
'f.fk_statut' => array ( 'label' => " Status " , 'checked' => 1 , 'position' => 1000 ),
2016-04-08 01:00:02 +02:00
);
2018-09-27 15:38:43 +02:00
2022-06-20 04:28:32 +02:00
if ( getDolGlobalString ( " INVOICE_USE_SITUATION " ) && ! empty ( $conf -> global -> INVOICE_USE_RETAINED_WARRANTY )) {
2019-10-10 15:10:41 +02:00
$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' ])) {
2022-03-01 16:38:06 +01:00
$visible = ( int ) dol_eval ( $val [ 'visible' ], 1 , 1 , '1' );
2021-03-28 19:15:59 +02:00
$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 ),
2022-03-01 16:38:06 +01:00
'enabled' => ( $visible != 3 && dol_eval ( $val [ 'enabled' ], 1 , 1 , '1' )),
2021-03-28 19:15:59 +02:00
'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
);
}
}
}
2016-04-08 01:00:02 +02:00
// Extra fields
2020-12-01 02:41:19 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_array_fields.tpl.php' ;
2020-11-06 12:19:45 +01:00
2019-09-02 03:58:00 +02:00
$object -> fields = dol_sort_array ( $object -> fields , 'position' );
$arrayfields = dol_sort_array ( $arrayfields , 'position' );
2016-04-08 01:00:02 +02:00
2012-06-09 19:16:31 +02:00
/*
* 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 = '' ;
}
2016-07-25 21:50:41 +02:00
2023-01-06 15:53:25 +01:00
$parameters = array ( 'socid' => $socid , 'arrayfields' =>& $arrayfields );
2019-11-12 09:46:08 +01:00
$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' );
}
2016-04-08 01:00:02 +02:00
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
2019-11-12 09:46:08 +01:00
$search_user = '' ;
$search_sale = '' ;
$search_product_category = '' ;
$search_ref = '' ;
$search_refcustomer = '' ;
$search_type = '' ;
$search_project_ref = '' ;
$search_project = '' ;
2021-05-20 12:36:26 +02:00
$search_company = '' ;
$search_company_alias = '' ;
2019-11-12 09:46:08 +01:00
$search_montant_ht = '' ;
$search_montant_vat = '' ;
$search_montant_localtax1 = '' ;
$search_montant_localtax2 = '' ;
$search_montant_ttc = '' ;
2020-04-10 10:59:32 +02:00
$search_login = '' ;
2020-02-27 14:10:00 +01:00
$search_multicurrency_code = '' ;
$search_multicurrency_tx = '' ;
$search_multicurrency_montant_ht = '' ;
$search_multicurrency_montant_vat = '' ;
$search_multicurrency_montant_ttc = '' ;
2019-11-12 09:46:08 +01:00
$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 = '' ;
2019-12-23 21:01:17 +01:00
$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 = '' ;
2021-06-10 06:22:03 +02:00
$search_datelimit_startday = '' ;
$search_datelimit_startmonth = '' ;
$search_datelimit_startyear = '' ;
$search_datelimit_endday = '' ;
$search_datelimit_endmonth = '' ;
$search_datelimit_endyear = '' ;
2019-12-23 21:01:17 +01:00
$search_datelimit_start = '' ;
$search_datelimit_end = '' ;
2022-04-27 08:50:58 +02:00
$search_fac_rec_source_title = '' ;
2022-05-08 18:25:22 +02:00
$toselect = array ();
2019-11-12 09:46:08 +01:00
$search_array_options = array ();
$search_categ_cus = 0 ;
2022-07-31 22:46:53 +02:00
$option = '' ;
$socid = 0 ;
2016-04-08 01:00:02 +02:00
}
2021-02-23 21:09:01 +01:00
if ( empty ( $reshook )) {
2019-11-12 09:46:08 +01:00
$objectclass = 'Facture' ;
$objectlabel = 'Invoices' ;
2019-11-04 15:33:49 +01:00
$permissiontoread = $user -> rights -> facture -> lire ;
$permissiontoadd = $user -> rights -> facture -> creer ;
$permissiontodelete = $user -> rights -> facture -> supprimer ;
2016-07-25 21:50:41 +02:00
$uploaddir = $conf -> facture -> dir_output ;
include DOL_DOCUMENT_ROOT . '/core/actions_massactions.inc.php' ;
2015-12-02 01:38:15 +01:00
}
2012-06-09 19:16:31 +02:00
2022-02-10 13:01:47 +01:00
if ( $action == 'makepayment_confirm' && ! empty ( $user -> rights -> facture -> paiement )) {
2021-05-20 14:00:43 +02:00
require_once DOL_DOCUMENT_ROOT . '/compta/paiement/class/paiement.class.php' ;
2020-10-31 14:32:18 +01:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
2021-05-20 14:00:43 +02:00
if ( ! empty ( $arrayofselected )) {
2021-10-23 22:22:10 +02:00
$bankid = GETPOST ( 'bankid' , 'int' );
$paiementid = GETPOST ( 'paiementid' , 'int' );
$paiementdate = dol_mktime ( 12 , 0 , 0 , GETPOST ( 'datepaimentmonth' , 'int' ), GETPOST ( 'datepaimentday' , 'int' ), GETPOST ( 'datepaimentyear' , 'year' ));
2022-02-10 13:01:47 +01:00
if ( empty ( $paiementdate )) {
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Date " )), null , 'errors' );
$error ++ ;
$action = 'makepayment' ;
}
if ( ! $error ) {
foreach ( $arrayofselected as $toselectid ) {
$errorpayment = 0 ;
$facture = new Facture ( $db );
$result = $facture -> fetch ( $toselectid );
$db -> begin ();
if ( $result < 0 ) {
setEventMessage ( $facture -> error , 'errors' );
$errorpayment ++ ;
} else {
if ( $facture -> type != Facture :: TYPE_CREDIT_NOTE && $facture -> statut == Facture :: STATUS_VALIDATED && $facture -> paye == 0 ) {
$paiementAmount = $facture -> getSommePaiement ();
$totalcreditnotes = $facture -> getSumCreditNotesUsed ();
$totaldeposits = $facture -> getSumDepositsUsed ();
$totalpay = $paiementAmount + $totalcreditnotes + $totaldeposits ;
$remaintopay = price2num ( $facture -> total_ttc - $totalpay );
if ( $remaintopay != 0 ) {
$resultBank = $facture -> setBankAccount ( $bankid );
if ( $resultBank < 0 ) {
setEventMessages ( $facture -> error , null , 'errors' );
2021-05-20 14:00:43 +02:00
$errorpayment ++ ;
2021-05-20 13:41:23 +02:00
} else {
2022-02-10 13:01:47 +01:00
$paiement = new Paiement ( $db );
$paiement -> datepaye = $paiementdate ;
$paiement -> amounts [ $facture -> id ] = $remaintopay ; // Array with all payments dispatching with invoice id
$paiement -> multicurrency_amounts [ $facture -> id ] = $remaintopay ;
$paiement -> paiementid = $paiementid ;
$paiement_id = $paiement -> create ( $user , 1 , $facture -> thirdparty );
if ( $paiement_id < 0 ) {
$langs -> load ( " errors " );
setEventMessages ( $facture -> ref . ' ' . $langs -> trans ( $paiement -> error ), $paiement -> errors , 'errors' );
2021-05-20 14:00:43 +02:00
$errorpayment ++ ;
2022-02-10 13:01:47 +01:00
} else {
$result = $paiement -> addPaymentToBank ( $user , 'payment' , '' , $bankid , '' , '' );
if ( $result < 0 ) {
$langs -> load ( " errors " );
setEventMessages ( $facture -> ref . ' ' . $langs -> trans ( $paiement -> error ), $paiement -> errors , 'errors' );
$errorpayment ++ ;
}
2021-05-20 13:41:23 +02:00
}
}
2022-02-10 13:01:47 +01:00
} else {
setEventMessage ( $langs -> trans ( 'NoPaymentAvailable' , $facture -> ref ), 'warnings' );
$errorpayment ++ ;
2021-05-20 13:41:23 +02:00
}
2021-05-20 14:00:43 +02:00
} else {
2022-02-10 13:01:47 +01:00
setEventMessage ( $langs -> trans ( 'BulkPaymentNotPossibleForInvoice' , $facture -> ref ), 'warnings' );
2021-05-20 14:00:43 +02:00
$errorpayment ++ ;
2021-05-20 13:41:23 +02:00
}
2022-02-10 13:01:47 +01:00
}
if ( empty ( $errorpayment )) {
setEventMessage ( $langs -> trans ( 'PaymentRegisteredAndInvoiceSetToPaid' , $facture -> ref ));
$db -> commit ();
2021-05-20 13:41:23 +02:00
} else {
2022-02-10 13:01:47 +01:00
$db -> rollback ();
2021-05-20 13:41:23 +02:00
}
}
}
2021-05-20 14:00:43 +02:00
}
2020-11-25 12:47:10 +01:00
} elseif ( $massaction == 'withdrawrequest' ) {
2017-10-13 13:28:26 +02:00
$langs -> load ( " withdrawals " );
2020-11-25 12:47:10 +01:00
if ( ! $user -> rights -> prelevement -> bons -> creer ) {
2017-10-13 13:28:26 +02:00
$error ++ ;
setEventMessages ( $langs -> trans ( " NotEnoughPermissions " ), null , 'errors' );
2020-05-21 15:05:19 +02:00
} else {
2017-10-13 13:28:26 +02:00
//Checking error
$error = 0 ;
2019-11-12 09:46:08 +01:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
$listofbills = array ();
2021-02-23 21:09:01 +01:00
foreach ( $arrayofselected as $toselectid ) {
2019-11-12 09:46:08 +01:00
$objecttmp = new Facture ( $db );
$result = $objecttmp -> fetch ( $toselectid );
2020-11-25 12:47:10 +01:00
if ( $result > 0 ) {
2022-05-22 17:09:08 +02:00
$totalpaid = $objecttmp -> getSommePaiement ();
2017-10-13 13:28:26 +02:00
$totalcreditnotes = $objecttmp -> getSumCreditNotesUsed ();
$totaldeposits = $objecttmp -> getSumDepositsUsed ();
2022-05-22 17:09:08 +02:00
$objecttmp -> resteapayer = price2num ( $objecttmp -> total_ttc - $totalpaid - $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 ) {
2017-10-13 13:28:26 +02:00
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " AlreadyPaid " ), $objecttmp -> errors , 'errors' );
2019-11-12 09:46:08 +01:00
} elseif ( $objecttmp -> resteapayer < 0 ) {
2017-10-13 13:28:26 +02:00
$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 " ;
2021-03-30 17:53:25 +02:00
$rsql .= " WHERE fk_facture = " . (( int ) $objecttmp -> id );
2017-10-13 13:28:26 +02:00
$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 ) {
2017-10-13 13:28:26 +02:00
$numprlv = $db -> num_rows ( $result_sql );
}
2019-11-12 09:46:08 +01:00
if ( $numprlv > 0 ) {
2017-10-13 13:28:26 +02:00
$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' ) {
2017-10-13 13:28:26 +02:00
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " BadPaymentMethod " ), $objecttmp -> errors , 'errors' );
2020-05-21 15:05:19 +02:00
} else {
2019-11-12 09:46:08 +01:00
$listofbills [] = $objecttmp ; // $listofbills will only contains invoices with good payment method and no request already done
2018-08-03 09:57:29 +02:00
}
2017-10-13 13:28:26 +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 )) {
2019-11-12 09:46:08 +01:00
$nbwithdrawrequestok = 0 ;
2021-02-23 21:09:01 +01:00
foreach ( $listofbills as $aBill ) {
2017-10-13 13:28:26 +02:00
$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 ) {
2017-10-13 13:28:26 +02:00
$db -> commit ();
$nbwithdrawrequestok ++ ;
2020-05-21 15:05:19 +02:00
} else {
2017-10-13 13:28:26 +02:00
$db -> rollback ();
setEventMessages ( $aBill -> error , $aBill -> errors , 'errors' );
}
}
2021-02-23 21:09:01 +01:00
if ( $nbwithdrawrequestok > 0 ) {
2017-10-13 13:28:26 +02:00
setEventMessages ( $langs -> trans ( " WithdrawRequestsDone " , $nbwithdrawrequestok ), null , 'mesgs' );
}
}
}
2017-01-27 01:21:20 +01:00
}
2017-06-13 18:50:31 +02:00
2012-06-09 19:16:31 +02:00
/*
* View
*/
$form = new Form ( $db );
2012-06-23 20:39:20 +02:00
$formother = new FormOther ( $db );
2012-06-09 19:16:31 +02:00
$formfile = new FormFile ( $db );
2020-10-21 16:10:48 +02:00
$formmargin = null ;
2022-08-29 12:02:49 +02:00
if ( isModEnabled ( 'margin' )) {
2020-10-21 16:10:48 +02:00
$formmargin = new FormMargin ( $db );
}
2019-11-12 09:46:08 +01:00
$bankaccountstatic = new Account ( $db );
$facturestatic = new Facture ( $db );
$formcompany = new FormCompany ( $db );
2021-05-17 23:27:33 +02:00
$companystatic = new Societe ( $db );
2012-06-09 19:16:31 +02:00
2015-07-02 22:07:13 +02:00
$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,' ;
2019-11-12 09:46:08 +01:00
$sql .= ' f.localtax1 as total_localtax1, f.localtax2 as total_localtax2,' ;
2020-04-01 17:09:01 +02:00
$sql .= ' f.fk_user_author,' ;
2020-02-27 14:10:00 +01:00
$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,' ;
2020-01-29 17:27:31 +01:00
$sql .= ' f.paye as paye, f.fk_statut, f.close_code,' ;
2019-11-12 09:46:08 +01:00
$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,' ;
2022-04-15 11:32:53 +02:00
$sql .= ' f.fk_fac_rec_source,' ;
2021-05-17 23:54:31 +02:00
$sql .= ' p.rowid as project_id, p.ref as project_ref, p.title as project_label,' ;
2021-09-24 11:16:34 +02:00
$sql .= ' u.login, u.lastname, u.firstname, u.email as user_email, u.statut as user_statut, u.entity, u.photo, u.office_phone, u.office_fax, u.user_mobile, u.job, u.gender' ;
2022-04-06 14:53:22 +02: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).
// A Better solution to be able to sort on already payed or remain to pay is to store amount_payed in a denormalized field.
// We disable this. It create a bug when searching with sall and sorting on status. Also it create performance troubles.
/*
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' ;
}
2022-04-06 14:53:22 +02:00
*/
2021-10-23 22:22:10 +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 " ;
}
2016-04-08 01:00:02 +02:00
// Add fields from extrafields
2019-11-12 09:46:08 +01:00
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 ) {
2021-08-27 22:42:04 +02:00
$sql .= ( $extrafields -> attributes [ $object -> table_element ][ 'type' ][ $key ] != 'separate' ? " , ef. " . $key . " as options_ " . $key : '' );
2021-02-23 21:09:01 +01:00
}
2019-10-26 18:13:20 +02:00
}
2016-04-08 01:00:02 +02:00
// Add fields from hooks
2019-11-12 09:46:08 +01:00
$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-09-27 11:36:40 +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
}
2019-11-12 09:46:08 +01:00
$sql .= ', ' . MAIN_DB_PREFIX . 'facture as f' ;
2022-04-06 17:32:56 +02:00
if ( $sortfield == " f.datef " ) {
$sql .= $db -> hintindex ( 'idx_facture_datef' );
}
2022-04-30 19:50:20 +02:00
if ( isset ( $extrafields -> attributes [ $object -> table_element ][ 'label' ]) && is_array ( $extrafields -> attributes [ $object -> table_element ][ 'label' ]) && count ( $extrafields -> attributes [ $object -> table_element ][ 'label' ])) {
2021-02-23 21:09:01 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . $object -> table_element . " _extrafields as ef on (f.rowid = ef.fk_object) " ;
}
2022-04-06 14:53:22 +02:00
// We disable this. It create a bug when searching with sall and sorting on status. Also it create performance troubles.
/*
2021-02-23 21:09:01 +01:00
if ( ! $sall ) {
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'paiement_facture as pf ON pf.fk_facture = f.rowid' ;
}
2022-04-06 14:53:22 +02:00
*/
2021-02-23 21:09:01 +01:00
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' ;
}
2022-04-27 08:50:58 +02:00
if ( ! empty ( $search_fac_rec_source_title )) {
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facture_rec as facrec ON f.fk_fac_rec_source=facrec.rowid' ;
}
2019-11-12 09:46:08 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " projet as p ON p.rowid = f.fk_projet " ;
2020-06-19 10:08:19 +02:00
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'user AS u ON f.fk_user_author = u.rowid' ;
2012-06-23 20:39:20 +02:00
// We'll need this table joined to the select in order to filter by sale
2021-10-22 22:15:59 +02:00
if ( $search_sale > 0 || ( empty ( $user -> rights -> societe -> client -> voir ) && ! $socid )) {
2021-02-23 21:09:01 +01:00
$sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
}
if ( $search_user > 0 ) {
2019-11-12 09:46:08 +01:00
$sql .= " , " . MAIN_DB_PREFIX . " element_contact as ec " ;
$sql .= " , " . MAIN_DB_PREFIX . " c_type_contact as tc " ;
2012-06-09 19:16:31 +02:00
}
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 ;
2020-06-19 10:08:19 +02:00
2019-11-12 09:46:08 +01:00
$sql .= ' WHERE f.fk_soc = s.rowid' ;
$sql .= ' AND f.entity IN (' . getEntity ( 'invoice' ) . ')' ;
2021-10-22 22:15:59 +02:00
if ( empty ( $user -> rights -> societe -> client -> voir ) && ! $socid ) {
2021-08-23 17:41:11 +02:00
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . (( int ) $user -> id );
2021-02-23 21:09:01 +01:00
}
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 );
2017-10-13 13:28:26 +02:00
}
2012-06-09 19:16:31 +02:00
}
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 );
}
2021-05-20 12:36:26 +02:00
if ( $search_company ) {
$sql .= natural_search ( 's.nom' , $search_company );
2021-02-23 21:09:01 +01:00
}
2021-05-20 12:36:26 +02: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 );
}
2021-08-30 13:56:31 +02:00
if ( strlen ( trim ( $search_country ))) {
$arrayofcode = getCountriesInEEC ();
$country_code_in_EEC = $country_code_in_EEC_without_me = '' ;
foreach ( $arrayofcode as $key => $value ) {
$country_code_in_EEC .= ( $country_code_in_EEC ? " , " : " " ) . " ' " . $value . " ' " ;
if ( $value != $mysoc -> country_code ) {
$country_code_in_EEC_without_me .= ( $country_code_in_EEC_without_me ? " , " : " " ) . " ' " . $value . " ' " ;
}
}
if ( $search_country == 'special_allnotme' ) {
$sql .= " AND country.code <> ' " . $db -> escape ( $mysoc -> country_code ) . " ' " ;
} elseif ( $search_country == 'special_eec' ) {
$sql .= " AND country.code IN ( " . $db -> sanitize ( $country_code_in_EEC , 1 ) . " ) " ;
} elseif ( $search_country == 'special_eecnotme' ) {
$sql .= " AND country.code IN ( " . $db -> sanitize ( $country_code_in_EEC_without_me , 1 ) . " ) " ;
} elseif ( $search_country == 'special_noteec' ) {
$sql .= " AND country.code NOT IN ( " . $db -> sanitize ( $country_code_in_EEC , 1 ) . " ) " ;
} else {
$sql .= natural_search ( " country.code " , $search_country );
}
2021-02-23 21:09:01 +01:00
}
if ( $search_type_thirdparty != '' && $search_type_thirdparty != '-1' ) {
$sql .= " AND s.fk_typent IN ( " . $db -> sanitize ( $db -> escape ( $search_type_thirdparty )) . ')' ;
}
if ( $search_montant_ht != '' ) {
2021-02-28 07:32:23 +01:00
$sql .= natural_search ( 'f.total_ht' , $search_montant_ht , 1 );
2021-02-23 21:09:01 +01:00
}
if ( $search_montant_vat != '' ) {
2021-02-28 07:32:23 +01:00
$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 != '' ) {
2021-08-27 23:36:06 +02:00
$sql .= " AND f.multicurrency_code = ' " . $db -> escape ( $search_multicurrency_code ) . " ' " ;
2021-02-23 21:09:01 +01:00
}
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 {
2020-09-18 17:24:31 +02:00
$sql .= " AND f.fk_statut IN ( " . $db -> sanitize ( $db -> escape ( $search_status )) . " ) " ; // When search_status is '1,2' for example
2018-06-26 11:18:31 +02:00
}
2016-07-05 18:33:13 +02:00
}
2019-12-23 21:01:17 +01: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 );
2012-06-09 19:16:31 +02:00
}
2022-04-27 08:50:58 +02:00
if ( ! empty ( $search_fac_rec_source_title )) {
$sql .= natural_search ( 'facrec.titre' , $search_fac_rec_source_title );
2022-04-15 11:32:53 +02:00
}
2016-04-08 01:00:02 +02:00
// 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' ;
2016-04-08 01:00:02 +02:00
// Add where from hooks
2019-11-12 09:46:08 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldListWhere' , $parameters ); // Note that $action and $object may have been modified by hook
$sql .= $hookmanager -> resPrint ;
2016-04-08 01:00:02 +02:00
2022-04-06 14:53:22 +02:00
// We disable this. It create a bug when searching with sall and sorting on status. Also it create performance troubles.
/*
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,' ;
2019-11-12 09:46:08 +01:00
$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,' ;
2020-01-29 17:27:31 +01:00
$sql .= ' f.paye, f.fk_statut, f.close_code,' ;
2019-11-12 09:46:08 +01:00
$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,' ;
2021-08-22 14:01:29 +02:00
$sql .= ' f.fk_user_author, f.fk_multicurrency, f.multicurrency_code, f.multicurrency_tx, f.multicurrency_total_ht,' ;
2020-08-11 10:12:19 +02:00
$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,' ;
2019-11-12 09:46:08 +01:00
$sql .= ' typent.code,' ;
$sql .= ' state.code_departement, state.nom,' ;
$sql .= ' country.code,' ;
2020-06-24 14:03:16 +02:00
$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-10-23 22:22:10 +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
2019-11-12 09:46:08 +01:00
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 : '' );
}
2017-10-13 13:28:26 +02:00
}
2021-03-18 17:00:57 +01:00
// Add GroupBy from hooks
2021-12-02 15:56:34 +01:00
$parameters = array ( 'all' => ! empty ( $all ) ? $all : 0 , 'fieldstosearchall' => $fieldstosearchall );
2021-03-18 17:00:57 +01:00
$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 {
2022-04-06 14:53:22 +02:00
*/
if ( $sall ) {
2017-10-13 13:28:26 +02:00
$sql .= natural_search ( array_keys ( $fieldstosearchall ), $sall );
2016-04-08 02:39:57 +02:00
}
2021-03-18 16:51:02 +01:00
// Add HAVING from hooks
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldListHaving' , $parameters , $object ); // Note that $action and $object may have been modified by hook
2021-12-09 17:19:31 +01:00
$sql .= empty ( $hookmanager -> resPrint ) ? " " : " HAVING 1=1 " . $hookmanager -> resPrint ;
2021-03-18 16:51:02 +01:00
2017-01-15 20:49:20 +01:00
$nbtotalofrecords = '' ;
2021-02-23 21:09:01 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_FULL_SCANLIST )) {
2022-04-06 11:34:49 +02:00
/* This old and fast method to get and count full list returns all record so use a high amount of memory .
2022-07-07 20:05:22 +02:00
$result = $db -> query ( $sql );
$nbtotalofrecords = $db -> num_rows ( $result );
*/
2022-04-06 11:34:49 +02:00
/* The fast and low memory method to get and count full list converts the sql into a sql count */
if ( $sall || $search_product_category > 0 || $search_user > 0 ) {
$sqlforcount = preg_replace ( '/^SELECT[a-zA-Z0-9\._\s\(\),=<>\:\-\']+\sFROM/' , 'SELECT COUNT(DISTINCT f.rowid) as nbtotalofrecords FROM' , $sql );
} else {
$sqlforcount = preg_replace ( '/^SELECT[a-zA-Z0-9\._\s\(\),=<>\:\-\']+\sFROM/' , 'SELECT COUNT(f.rowid) as nbtotalofrecords FROM' , $sql );
$sqlforcount = preg_replace ( '/LEFT JOIN ' . MAIN_DB_PREFIX . 'paiement_facture as pf ON pf.fk_facture = f.rowid/' , '' , $sqlforcount );
}
$sqlforcount = preg_replace ( '/GROUP BY.*$/' , '' , $sqlforcount );
$resql = $db -> query ( $sqlforcount );
2022-04-06 17:32:56 +02:00
if ( $resql ) {
$objforcount = $db -> fetch_object ( $resql );
$nbtotalofrecords = $objforcount -> nbtotalofrecords ;
} else {
dol_print_error ( $db );
}
2022-04-06 11:34:49 +02:00
if (( $page * $limit ) > $nbtotalofrecords ) { // if total of record found is smaller than page * limit, goto and load page 0
2018-04-24 11:37:57 +02:00
$page = 0 ;
$offset = 0 ;
}
2022-04-06 11:34:49 +02:00
$db -> free ( $resql );
2014-05-12 11:00:58 +02:00
}
2022-04-06 17:32:56 +02:00
// Complete request and execute it with limit
$sql .= ' ORDER BY ' ;
$listfield = explode ( ',' , $sortfield );
$listorder = explode ( ',' , $sortorder );
foreach ( $listfield as $key => $value ) {
$sql .= $listfield [ $key ] . ' ' . ( $listorder [ $key ] ? $listorder [ $key ] : 'DESC' ) . ',' ;
}
$sql .= ' f.rowid DESC ' ;
if ( $limit ) {
$sql .= $db -> plimit ( $limit + 1 , $offset );
}
2012-06-09 19:16:31 +02:00
$resql = $db -> query ( $sql );
2018-11-22 11:36:30 +01:00
2021-02-23 21:09:01 +01:00
if ( $resql ) {
2017-10-13 13:28:26 +02:00
$num = $db -> num_rows ( $resql );
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
2016-09-29 07:01:58 +02:00
2021-02-23 21:09:01 +01:00
if ( $num == 1 && ! empty ( $conf -> global -> MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE ) && $sall ) {
2018-11-22 11:36:30 +01:00
$obj = $db -> fetch_object ( $resql );
$id = $obj -> id ;
2018-11-27 11:09:47 +01:00
2018-11-22 11:36:30 +01:00
header ( " Location: " . DOL_URL_ROOT . '/compta/facture/card.php?facid=' . $id );
exit ;
}
2018-11-27 11:09:47 +01:00
2019-01-27 11:55:16 +01:00
llxHeader ( '' , $langs -> trans ( 'CustomersInvoices' ), 'EN:Customers_Invoices|FR:Factures_Clients|ES:Facturas_a_clientes' );
2018-11-27 11:09:47 +01:00
2022-07-31 22:46:53 +02:00
if ( $socid > 0 ) {
2017-10-13 13:28:26 +02:00
$soc = new Societe ( $db );
$soc -> fetch ( $socid );
2021-05-20 12:36:26 +02:00
if ( empty ( $search_company )) {
$search_company = $soc -> name ;
2021-02-23 21:09:01 +01:00
}
2017-10-13 13:28:26 +02:00
}
2012-06-09 19:16:31 +02: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-10-23 22:22:10 +02:00
if ( $search_datelimit_startday ) {
2021-06-12 15:44:03 +02:00
$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 );
2021-02-23 21:09:01 +01:00
}
2021-06-12 15:44:03 +02:00
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 );
}
2021-05-20 12:36:26 +02:00
if ( $search_company ) {
$param .= '&search_societe=' . urlencode ( $search_company );
2021-02-23 21:09:01 +01:00
}
2021-05-20 12:36:26 +02: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 );
}
2021-08-30 13:56:31 +02:00
if ( $search_country ) {
$param .= " &search_country= " . urlencode ( $search_country );
}
2021-02-23 21:09:01 +01:00
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 );
}
2022-04-27 08:50:58 +02:00
if ( ! empty ( $search_fac_rec_source_title )) {
2022-06-16 15:05:45 +02:00
$param .= '&search_fac_rec_source_title=' . urlencode ( $search_fac_rec_source_title );
2022-04-15 11:32:53 +02:00
}
2018-05-02 15:01:32 +02:00
2016-04-08 01:00:02 +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 ;
2016-09-29 07:01:58 +02:00
2019-11-12 09:46:08 +01:00
$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 " ),
2016-07-23 12:17:47 +02:00
);
2022-02-10 13:01:47 +01:00
if ( ! empty ( $user -> rights -> facture -> paiement )) {
$arrayofmassactions [ 'makepayment' ] = img_picto ( '' , 'payment' , 'class="pictofixedwidth"' ) . $langs -> trans ( " MakePaymentAndClassifyPayed " );
2021-05-20 13:15:32 +02:00
}
2022-05-21 17:27:52 +02:00
if ( ! empty ( $conf -> prelevement -> enabled ) && ! empty ( $user -> rights -> prelevement -> bons -> creer )) {
2022-07-07 20:05:22 +02:00
$langs -> load ( " withdrawals " );
$arrayofmassactions [ 'withdrawrequest' ] = img_picto ( '' , 'payment' , 'class="pictofixedwidth"' ) . $langs -> trans ( " MakeWithdrawRequest " );
2018-05-05 14:25:44 +02:00
}
2022-07-07 20:12:23 +02:00
if ( ! empty ( $user -> rights -> facture -> supprimer )) {
2018-05-05 14:25:44 +02:00
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 " );
2020-10-31 14:32:18 +01:00
}
}
2021-10-23 22:22:10 +02:00
if ( in_array ( $massaction , array ( 'presend' , 'predelete' , 'makepayment' ))) {
2021-02-23 21:09:01 +01:00
$arrayofmassactions = array ();
}
2019-11-12 09:46:08 +01:00
$massactionbutton = $form -> selectMassAction ( '' , $arrayofmassactions );
2016-09-29 07:01:58 +02:00
2020-09-23 08:59:30 +02:00
// 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' ) {
2020-09-23 08:59:30 +02:00
$url = DOL_URL_ROOT . '/compta/facture/card.php?action=create' ;
2021-02-23 21:09:01 +01:00
if ( ! empty ( $socid )) {
$url .= '&socid=' . $socid ;
}
2020-09-23 08:59:30 +02:00
$newcardbutton = dolGetButtonTitle ( $langs -> trans ( 'NewBill' ), '' , 'fa fa-plus-circle' , $url , '' , $user -> rights -> facture -> creer );
}
2018-03-30 16:54:38 +02:00
2017-10-13 13:28:26 +02:00
$i = 0 ;
print '<form method="POST" name="searchFormList" action="' . $_SERVER [ " PHP_SELF " ] . '">' . " \n " ;
2017-07-07 19:06:25 +02:00
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 () . '">' ;
2016-02-16 17:43:05 +01:00
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">' ;
2021-05-20 14:03:18 +02:00
if ( ! in_array ( $massaction , array ( 'makepayment' ))) {
2021-05-20 13:41:23 +02:00
print '<input type="hidden" name="action" value="list">' ;
}
2017-10-13 13:28:26 +02:00
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 . '">' ;
2017-10-13 13:28:26 +02:00
print '<input type="hidden" name="contextpage" value="' . $contextpage . '">' ;
2022-07-31 22:46:53 +02:00
print '<input type="hidden" name="socid" value="' . $socid . '">' ;
2016-09-29 07:01:58 +02:00
2022-07-31 22:46:53 +02:00
print_barre_liste ( $langs -> trans ( 'BillsCustomers' ) . ' ' . ( $socid > 0 ? ' ' . $soc -> name : '' ), $page , $_SERVER [ " PHP_SELF " ], $param , $sortfield , $sortorder , $massactionbutton , $num , $nbtotalofrecords , 'bill' , 0 , $newcardbutton , '' , $limit , 0 , 0 , 1 );
2015-12-02 01:38:15 +01:00
2019-11-12 09:46:08 +01:00
$topicmail = " SendBillRef " ;
$modelmail = " facture_send " ;
$objecttmp = new Facture ( $db );
$trackid = 'inv' . $object -> id ;
2017-11-11 16:03:22 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/massactions_pre.tpl.php' ;
2017-01-24 11:50:07 +01:00
2021-10-23 22:22:10 +02:00
if ( $massaction == 'makepayment' ) {
2021-05-20 13:15:32 +02:00
$formconfirm = '' ;
$formquestion = array (
// 'text' => $langs->trans("ConfirmClone"),
// array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
// array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1),
2022-02-10 13:01:47 +01:00
array ( 'type' => 'date' , 'name' => 'datepaiment' , 'label' => $langs -> trans ( " Date " ), 'datenow' => 1 ),
2021-05-20 14:00:43 +02:00
array ( 'type' => 'other' , 'name' => 'paiementid' , 'label' => $langs -> trans ( " PaymentMode " ), 'value' => $form -> select_types_paiements ( GETPOST ( 'search_paymentmode' ), 'paiementid' , '' , 0 , 0 , 1 , 0 , 1 , '' , 1 )),
2021-08-17 19:08:55 +02:00
array ( 'type' => 'other' , 'name' => 'bankid' , 'label' => $langs -> trans ( " BankAccount " ), 'value' => $form -> select_comptes ( '' , 'bankid' , 0 , '' , 0 , '' , 0 , '' , 1 )),
2021-05-20 13:15:32 +02:00
//array('type' => 'other', 'name' => 'invoicesid', 'label' => '', 'value'=>'<input type="hidden" id="invoicesid" name="invoicesid" value="'.implode('#',GETPOST('toselect','array')).'">'),
);
2022-02-10 13:01:47 +01:00
$formconfirm = $form -> formconfirm ( $_SERVER [ " PHP_SELF " ], $langs -> trans ( 'MakePaymentAndClassifyPayed' ), $langs -> trans ( 'EnterPaymentReceivedFromCustomer' ), 'makepayment_confirm' , $formquestion , 1 , 0 , 200 , 500 , 1 );
2021-05-20 13:15:32 +02:00
print $formconfirm ;
}
2021-02-23 21:09:01 +01:00
if ( $sall ) {
foreach ( $fieldstosearchall as $key => $val ) {
$fieldstosearchall [ $key ] = $langs -> trans ( $val );
}
2019-11-12 09:46:08 +01:00
print '<div class="divsearchfieldfilter">' . $langs -> trans ( " FilterOnInto " , $sall ) . join ( ', ' , $fieldstosearchall ) . '</div>' ;
2017-10-13 13:28:26 +02:00
}
2017-06-13 18:50:31 +02:00
2021-02-23 21:09:01 +01:00
// If the user can view prospects other than his'
2019-11-12 09:46:08 +01:00
$moreforfilter = '' ;
2022-05-03 17:05:14 +02:00
if ( $user -> rights -> user -> user -> lire ) {
2021-02-23 21:09:01 +01:00
$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>' ;
}
2017-10-13 13:28:26 +02:00
// If the user can view prospects other than his'
2022-05-03 17:05:14 +02:00
if ( $user -> rights -> user -> user -> lire ) {
2019-11-12 09:46:08 +01:00
$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>' ;
2017-10-13 13:28:26 +02:00
}
2021-07-14 14:32:05 +02:00
// Filter on product tags
2022-08-29 12:02:49 +02:00
if ( isModEnabled ( 'categorie' ) && $user -> rights -> categorie -> lire && ( $user -> rights -> produit -> lire || $user -> rights -> service -> lire )) {
2015-07-02 22:07:13 +02:00
include_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php' ;
2019-11-12 09:46:08 +01:00
$moreforfilter .= '<div class="divsearchfield">' ;
2021-03-28 19:15:59 +02:00
$tmptitle = $langs -> trans ( 'IncludingProductWithTag' );
2015-07-02 22:07:13 +02:00
$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 );
2019-11-12 09:46:08 +01:00
$moreforfilter .= '</div>' ;
2015-07-02 22:07:13 +02:00
}
2022-08-29 12:02:49 +02:00
if ( isModEnabled ( 'categorie' ) && $user -> rights -> categorie -> lire ) {
2019-11-12 09:46:08 +01:00
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
}
2019-11-12 09:46:08 +01: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 ;
}
2015-07-04 11:57:55 +02:00
2021-02-23 21:09:01 +01:00
if ( $moreforfilter ) {
print '<div class="liste_titre liste_titre_bydiv centpercent">' ;
2017-10-13 13:28:26 +02:00
print $moreforfilter ;
print '</div>' ;
}
2012-06-09 19:16:31 +02:00
2019-11-12 09:46:08 +01:00
$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
2020-09-23 08:59:30 +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 );
}
2017-06-13 18:50:31 +02:00
2017-10-13 13:28:26 +02:00
print '<div class="div-table-responsive">' ;
2019-11-12 09:46:08 +01:00
print '<table class="tagtable liste' . ( $moreforfilter ? " listwithfilterbefore " : " " ) . '">' . " \n " ;
2016-09-29 07:01:58 +02:00
2017-10-13 13:28:26 +02:00
// Filters lines
print '<tr class="liste_titre_filter">' ;
2020-04-10 10:59:32 +02:00
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>' ;
}
2016-04-08 01:00:02 +02:00
// Ref
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.ref' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre" align="left">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat maxwidth50imp" type="text" name="search_ref" value="' . dol_escape_htmltag ( $search_ref ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Ref customer
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.ref_client' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat maxwidth50imp" type="text" name="search_refcustomer" value="' . dol_escape_htmltag ( $search_refcustomer ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2016-09-29 07:01:58 +02:00
// 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">' ;
2019-11-12 09:46:08 +01:00
$listtype = array (
2017-10-13 13:28:26 +02:00
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 )) {
2018-01-11 01:03:13 +01:00
$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' );
2016-09-29 07:01:58 +02:00
print '</td>' ;
}
2016-04-08 01:00:02 +02:00
// Date invoice
2021-03-28 19:15:59 +02:00
if ( ! empty ( $arrayfields [ 'f.datef' ][ 'checked' ])) {
2019-11-07 06:35:58 +01:00
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' ));
2019-11-07 06:35:58 +01:00
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' ));
2019-11-07 06:35:58 +01:00
print '</div>' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
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>' ;
}
2016-04-08 01:00:02 +02:00
// Date due
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.date_lim_reglement' ][ 'checked' ])) {
2019-11-07 06:35:58 +01:00
print '<td class="liste_titre center">' ;
print '<div class="nowrap">' ;
2020-08-05 16:05:29 +02:00
/*
2022-07-07 20:05:22 +02:00
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' ) . ' ' ; */
2020-09-25 15:01:15 +02:00
print $form -> selectDate ( $search_datelimit_end ? $search_datelimit_end : - 1 , 'search_datelimit_end' , 0 , 0 , 1 , '' , 1 , 0 , 0 , '' , '' , '' , '' , 1 , '' , $langs -> trans ( " Before " ));
2020-08-05 16:05:29 +02:00
print '<br><input type="checkbox" name="search_option" value="late"' . ( $option == 'late' ? ' checked' : '' ) . '> ' . $langs -> trans ( " Alert " );
2019-11-07 06:35:58 +01:00
print '</div>' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
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' ])) {
2020-10-31 14:32:18 +01:00
print '<td class="liste_titre"><input class="flat maxwidth50imp" type="text" name="search_project" value="' . $search_project . '"></td>' ;
2017-05-21 03:23:44 +02:00
}
2019-11-07 06:35:58 +01:00
// Thirdparty
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) {
2022-07-31 22:46:53 +02:00
print '<td class="liste_titre"><input class="flat maxwidth75imp" type="text" name="search_company" value="' . $search_company . '"' . ( $socid > 0 ? " disabled " : " " ) . '></td>' ;
2016-04-08 01:00:02 +02:00
}
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-05-20 12:36:26 +02:00
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
}
2016-04-08 01:00:02 +02: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>' ;
}
2016-04-08 01:00:02 +02:00
// 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>' ;
}
2016-04-08 01:00:02 +02:00
// State
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat maxwidth50imp" type="text" name="search_state" value="' . dol_escape_htmltag ( $search_state ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Country
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre" align="center">' ;
2021-08-30 13:56:31 +02:00
print $form -> select_country ( $search_country , 'search_country' , '' , 0 , 'minwidth150imp maxwidth150' , 'code2' , 1 , 0 , 1 , null , 1 );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Company type
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
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 );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Payment mode
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_mode_reglement' ][ 'checked' ])) {
2019-10-10 15:10:41 +02:00
print '<td class="liste_titre">' ;
2018-03-07 19:00:38 +01:00
$form -> select_types_paiements ( $search_paymentmode , 'search_paymentmode' , '' , 0 , 1 , 1 , 10 );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2019-04-09 18:26:00 +02:00
// Payment terms
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_cond_reglement' ][ 'checked' ])) {
2019-10-10 15:10:41 +02:00
print '<td class="liste_titre">' ;
2019-04-09 18:32:00 +02:00
$form -> select_conditions_paiements ( $search_paymentterms , 'search_paymentterms' , - 1 , 1 , 1 );
2019-04-09 18:26:00 +02:00
print '</td>' ;
}
2019-10-10 15:10:41 +02:00
// Module source
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.module_source' ][ 'checked' ])) {
2019-10-10 15:10:41 +02:00
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' ])) {
2019-10-10 15:10:41 +02:00
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' ])) {
2017-10-13 13:28:26 +02:00
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_ht" value="' . dol_escape_htmltag ( $search_montant_ht ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2021-02-28 07:32:23 +01:00
if ( ! empty ( $arrayfields [ 'f.total_tva' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_vat" value="' . dol_escape_htmltag ( $search_montant_vat ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax1' ][ 'checked' ])) {
2018-03-07 19:00:38 +01:00
// Localtax1
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_localtax1" value="' . $search_montant_localtax1 . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2017-04-13 08:30:48 +02:00
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax2' ][ 'checked' ])) {
2018-03-07 19:00:38 +01:00
// Localtax2
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_localtax2" value="' . $search_montant_localtax2 . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2017-04-13 08:30:48 +02:00
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ttc' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
// Amount
2019-02-10 10:21:54 +01:00
print '<td class="liste_titre right">' ;
2019-03-17 00:32:39 +01:00
print '<input class="flat" type="text" size="4" name="search_montant_ttc" value="' . dol_escape_htmltag ( $search_montant_ttc ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'u.login' ][ 'checked' ])) {
2020-04-01 17:09:01 +02:00
// 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-05-17 18:31:19 +02:00
if ( ! empty ( $arrayfields [ 'sale_representative' ][ 'checked' ])) {
print '<td class="liste_titre"></td>' ;
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.retained_warranty' ][ 'checked' ])) {
2020-10-31 14:32:18 +01:00
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">' ;
2017-10-13 13:28:26 +02:00
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">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_code' ][ 'checked' ])) {
2020-02-27 14:10:00 +01:00
// 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' ])) {
2020-02-27 14:10:00 +01:00
// 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' ])) {
2020-02-27 14:10:00 +01:00
// 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' ])) {
2020-02-27 14:10:00 +01:00
// 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' ])) {
2020-02-27 14:10:00 +01:00
// 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' ])) {
2020-02-27 14:10:00 +01:00
print '<td class="liste_titre">' ;
print '</td>' ;
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'multicurrency_rtp' ][ 'checked' ])) {
2020-02-27 14:10:00 +01:00
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
2017-10-13 13:28:26 +02:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_input.tpl.php' ;
2016-04-08 01:00:02 +02:00
// Fields from hook
2019-11-12 09:46:08 +01:00
$parameters = array ( 'arrayfields' => $arrayfields );
$reshook = $hookmanager -> executeHooks ( 'printFieldListOption' , $parameters ); // Note that $action and $object may have been modified by hook
2016-04-08 01:00:02 +02:00
print $hookmanager -> resPrint ;
// Date creation
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.datec' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Date modification
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.tms' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
2021-04-13 17:21:51 +02:00
// Date closing
2021-04-15 12:04:08 +02:00
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' ])) {
2020-09-30 11:58:40 +02:00
// Note public
print '<td class="liste_titre">' ;
print '</td>' ;
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.note_private' ][ 'checked' ])) {
2020-09-30 11:58:40 +02:00
// Note private
print '<td class="liste_titre">' ;
print '</td>' ;
}
2022-04-15 11:32:53 +02:00
if ( ! empty ( $arrayfields [ 'f.fk_fac_rec_source' ][ 'checked' ])) {
// Template Invoice
print '<td class="liste_titre maxwidthonsmartphone right">' ;
2022-04-27 08:50:58 +02:00
print '<input class="flat maxwidth50imp" type="text" name="search_fac_rec_source_title" id="search_fac_rec_source_title" value="' . dol_escape_htmltag ( $search_fac_rec_source_title ) . '">' ;
2022-04-15 11:32:53 +02:00
print '</td>' ;
}
2016-04-08 01:00:02 +02:00
// 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">' ;
2022-08-13 12:03:41 +02:00
$liststatus = array ( '0' => $langs -> trans ( " BillShortStatusDraft " ), '0,1' => $langs -> trans ( " BillShortStatusDraft " ) . '+' . $langs -> trans ( " BillShortStatusNotPaid " ), '1' => $langs -> trans ( " BillShortStatusNotPaid " ), '1,2' => $langs -> trans ( " BillShortStatusNotPaid " ) . '+' . $langs -> trans ( " BillShortStatusPaid " ), '2' => $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 );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-04-08 01:00:02 +02:00
}
// Action column
2016-04-08 02:39:57 +02:00
print '<td class="liste_titre" align="middle">' ;
2019-11-12 09:46:08 +01:00
$searchpicto = $form -> showFilterButtons ();
2017-05-14 21:06:33 +02:00
print $searchpicto ;
2017-10-13 13:28:26 +02:00
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' ])) {
2021-02-28 07:32:23 +01:00
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
}
2021-02-28 07:32:23 +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 );
}
2021-05-17 18:31:19 +02:00
if ( ! empty ( $arrayfields [ 'sale_representative' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'sale_representative' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " " , " " , " $param " , '' , $sortfield , $sortorder );
}
2021-02-23 21:09:01 +01:00
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 );
}
2017-10-13 13:28:26 +02:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_title.tpl.php' ;
2017-10-13 13:28:26 +02:00
// Hook fields
2019-11-12 09:46:08 +01:00
$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
2017-10-13 13:28:26 +02:00
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 ' );
}
2022-04-15 11:32:53 +02:00
if ( ! empty ( $arrayfields [ 'f.fk_fac_rec_source' ][ 'checked' ])) {
2022-04-27 08:50:58 +02:00
print_liste_field_titre ( $arrayfields [ 'f.fk_fac_rec_source' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " facrec.titre " , " " , $param , '' , $sortfield , $sortorder );
2022-04-15 11:32:53 +02:00
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_statut' ][ 'checked' ])) {
2022-04-06 14:53:22 +02:00
print_liste_field_titre ( $arrayfields [ 'f.fk_statut' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.fk_statut,f.paye,f.type " , " " , $param , 'class="right"' , $sortfield , $sortorder );
2021-02-23 21:09:01 +01:00
}
2019-01-27 11:55:16 +01:00
print_liste_field_titre ( $selectedfields , $_SERVER [ " PHP_SELF " ], " " , '' , '' , 'align="center"' , $sortfield , $sortorder , 'maxwidthsearch ' );
2017-10-13 13:28:26 +02:00
print " </tr> \n " ;
2019-11-12 09:46:08 +01:00
$projectstatic = new Project ( $db );
2018-09-24 10:14:38 +02:00
$discount = new DiscountAbsolute ( $db );
2020-04-01 17:09:01 +02:00
$userstatic = new User ( $db );
2018-10-01 00:20:47 +02:00
2021-02-23 21:09:01 +01:00
if ( $num > 0 ) {
2019-11-12 09:46:08 +01:00
$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 ;
2022-02-03 10:39:03 +01:00
$with_margin_info = false ;
2022-08-29 12:02:49 +02:00
if ( isModEnabled ( 'margin' ) && (
2023-02-13 21:35:48 +01:00
! empty ( $arrayfields [ 'total_pa' ][ 'checked' ])
|| ! empty ( $arrayfields [ 'total_margin' ][ 'checked' ])
|| ! empty ( $arrayfields [ 'total_margin_rate' ][ 'checked' ])
|| ! empty ( $arrayfields [ 'total_mark_rate' ][ 'checked' ])
2023-02-15 18:22:06 +01:00
)
2022-02-03 10:39:03 +01:00
) {
$with_margin_info = true ;
}
2022-02-16 11:45:29 +01:00
$total_ht = 0 ;
$total_margin = 0 ;
2022-02-03 10:39:03 +01:00
2022-02-16 11:45:29 +01:00
$last_num = min ( $num , $limit );
while ( $i < $last_num ) {
2017-10-13 13:28:26 +02:00
$obj = $db -> fetch_object ( $resql );
2019-11-12 09:46:08 +01:00
$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 ;
2019-11-12 09:46:08 +01:00
$facturestatic -> type = $obj -> type ;
2020-10-31 14:32:18 +01:00
$facturestatic -> total_ht = $obj -> total_ht ;
2021-02-22 05:58:46 +01:00
$facturestatic -> total_tva = $obj -> total_tva ;
2020-10-31 14:32:18 +01:00
$facturestatic -> total_ttc = $obj -> total_ttc ;
2020-02-27 14:10:00 +01:00
$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 ;
2019-11-12 09:46:08 +01:00
$facturestatic -> statut = $obj -> fk_statut ;
2020-01-29 17:27:31 +01:00
$facturestatic -> close_code = $obj -> close_code ;
2019-11-12 09:46:08 +01:00
$facturestatic -> total_ttc = $obj -> total_ttc ;
2020-10-31 14:32:18 +01:00
$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 );
2020-10-31 14:32:18 +01:00
$facturestatic -> date_valid = $db -> jdate ( $obj -> date_valid );
$facturestatic -> date_lim_reglement = $db -> jdate ( $obj -> datelimite );
2020-04-06 23:38:30 +02:00
2020-10-31 14:32:18 +01:00
$facturestatic -> note_public = $obj -> note_public ;
2019-11-12 09:46:08 +01:00
$facturestatic -> note_private = $obj -> note_private ;
2021-12-02 15:56:34 +01:00
if ( ! empty ( $conf -> global -> INVOICE_USE_SITUATION ) && ! empty ( $conf -> global -> INVOICE_USE_RETAINED_WARRANTY )) {
2022-07-07 20:05:22 +02:00
$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
}
2022-08-13 12:03:41 +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 ;
2019-11-12 09:46:08 +01:00
$projectstatic -> id = $obj -> project_id ;
$projectstatic -> ref = $obj -> project_ref ;
$projectstatic -> title = $obj -> project_label ;
2019-05-10 15:11:06 +02:00
2017-10-13 13:28:26 +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 );
2020-02-27 14:10:00 +01:00
$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 );
2020-01-29 17:27:31 +01:00
if ( $facturestatic -> statut == Facture :: STATUS_CLOSED && $facturestatic -> close_code == 'discount_vat' ) { // If invoice closed with discount for anticipated payment
$remaintopay = 0 ;
2020-02-27 14:10:00 +01:00
$multicurrency_remaintopay = 0 ;
2020-01-29 17:27:31 +01:00
}
2022-12-06 19:56:49 +01:00
if ( $facturestatic -> type == Facture :: TYPE_CREDIT_NOTE && $obj -> paye == 1 ) { // If credit note closed, we take into account the amount not yet consumed
2021-05-17 23:27:33 +02:00
$remaincreditnote = $discount -> getAvailableDiscounts ( $companystatic , '' , 'rc.fk_facture_source=' . $facturestatic -> id );
2018-09-12 09:21:23 +02:00
$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 );
2020-02-27 14:10:00 +01:00
$multicurrency_remaintopay = - $multicurrency_remaincreditnote ;
$multicurrency_totalpay = price2num ( $facturestatic -> multicurrency_total_ttc - $multicurrency_remaintopay );
2018-09-12 09:21:23 +02:00
}
2017-10-13 13:28:26 +02:00
2020-02-24 05:23:34 +01:00
$facturestatic -> alreadypaid = $paiement ;
2020-10-21 16:10:48 +02:00
$marginInfo = array ();
2022-02-03 10:39:03 +01:00
if ( $with_margin_info === true ) {
2020-10-21 16:10:48 +02:00
$facturestatic -> fetch_lines ();
$marginInfo = $formmargin -> getMarginInfosArray ( $facturestatic );
2022-02-16 11:45:29 +01:00
$total_ht += $obj -> total_ht ;
$total_margin += $marginInfo [ 'total_margin' ];
2020-10-21 16:10:48 +02:00
}
2020-10-31 14:32:18 +01:00
print '<tr class="oddeven"' ;
2021-02-23 21:09:01 +01:00
if ( $contextpage == 'poslist' ) {
2021-10-23 16:07:47 +02:00
print ' onclick="parent.$(\'#poslines\').load(\'invoice.php?action=history&placeid=' . $obj -> id . '\', function() {parent.$.colorbox.close();' ;
if ( strpos ( $obj -> ref , 'PROV' ) !== false ) {
//If is a draft invoice, load var to be able to add products
$place = str_replace ( " ) " , " " , str_replace ( " (PROV-POS " . $_SESSION [ " takeposterminal " ] . " - " , " " , $obj -> ref ));
print 'parent.place=\'' . $place . '\'' ;
}
print '});"' ;
2020-10-31 14:32:18 +01:00
}
print '>' ;
2020-04-08 11:23:31 +02:00
2020-10-31 14:32:18 +01: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
2020-10-31 14:32:18 +01: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">' ;
2017-10-13 13:28:26 +02:00
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' ) {
2022-01-06 10:54:19 +01:00
print dol_escape_htmltag ( $obj -> ref );
2020-10-31 14:32:18 +01:00
} else {
print $facturestatic -> getNomUrl ( 1 , '' , 200 , 0 , '' , 0 , 1 );
}
2017-10-13 13:28:26 +02:00
2019-11-12 09:46:08 +01:00
$filename = dol_sanitizeFileName ( $obj -> ref );
$filedir = $conf -> facture -> dir_output . '/' . dol_sanitizeFileName ( $obj -> ref );
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?id=' . $obj -> id ;
2017-10-13 13:28:26 +02:00
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' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2016-09-29 07:01:58 +02:00
2013-10-07 21:58:12 +02:00
// 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">' ;
2022-01-06 10:54:19 +01:00
print dol_escape_htmltag ( $obj -> ref_client );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// 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 () . '">' ;
2017-10-13 13:28:26 +02:00
print $facturestatic -> getLibType ();
print " </td> " ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2016-09-29 07:01:58 +02:00
2013-10-07 21:58:12 +02:00
// 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' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
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
}
2017-10-13 13:28:26 +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 ()) {
2020-10-31 14:32:18 +01:00
print img_warning ( $langs -> trans ( 'Alert' ) . ' - ' . $langs -> trans ( 'Late' ));
2017-10-13 13:28:26 +02:00
}
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
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 ) {
2017-10-13 13:28:26 +02:00
print $projectstatic -> getNomUrl ( 1 );
}
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2019-05-10 15:11:06 +02:00
// Project title
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'p.title' ][ 'checked' ])) {
2020-10-31 14:32:18 +01:00
print '<td class="nowraponall">' ;
2021-02-23 21:09:01 +01:00
if ( $obj -> project_id > 0 ) {
2022-01-06 10:54:19 +01:00
print dol_escape_htmltag ( $projectstatic -> title );
2020-10-31 14:32:18 +01:00
}
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2019-05-10 15:11:06 +02:00
}
2017-10-13 13:28:26 +02:00
// Third party
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="tdoverflowmax200">' ;
2021-02-23 21:09:01 +01:00
if ( $contextpage == 'poslist' ) {
2022-01-06 10:54:19 +01:00
print dol_escape_htmltag ( $companystatic -> name );
2020-05-21 15:05:19 +02:00
} else {
2022-01-06 10:54:19 +01:00
print $companystatic -> getNomUrl ( 1 , 'customer' , 0 , 0 , - 1 , empty ( $arrayfields [ 's.name_alias' ][ 'checked' ]) ? 0 : 1 );
2019-10-10 15:10:41 +02:00
}
2017-10-13 13:28:26 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2021-01-10 22:47:30 +01:00
// Alias
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 's.name_alias' ][ 'checked' ])) {
2022-01-06 10:54:19 +01:00
print '<td class="tdoverflowmax150" title="' . dol_escape_htmltag ( $companystatic -> name_alias ) . '">' ;
print dol_escape_htmltag ( $companystatic -> name_alias );
2021-01-10 22:47:30 +01:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2021-01-10 22:47:30 +01:00
}
2017-10-13 13:28:26 +02:00
// Town
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ])) {
2021-10-01 18:54:14 +02:00
print '<td class="tdoverflowmax100" title="' . dol_escape_htmltag ( $obj -> town ) . '">' ;
print dol_escape_htmltag ( $obj -> town );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// 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">' ;
2021-10-01 18:54:14 +02:00
print dol_escape_htmltag ( $obj -> zip );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// State
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ])) {
2021-10-01 18:54:14 +02:00
print " <td> " . dol_escape_htmltag ( $obj -> state_name ) . " </td> \n " ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// 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">' ;
2019-12-16 13:06:25 +01:00
$tmparray = getCountry ( $obj -> fk_pays , 'all' );
2017-10-13 13:28:26 +02:00
print $tmparray [ 'label' ];
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// 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 );
}
2017-10-13 13:28:26 +02:00
print $typenArray [ $obj -> typent_code ];
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2018-09-14 01:29:03 +02:00
// 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">' ;
2022-01-06 10:54:19 +01:00
if ( ! is_array ( $conf -> cache [ 'staff' ]) || count ( $conf -> cache [ 'staff' ]) == 0 ) {
$conf -> cache [ 'staff' ] = $formcompany -> effectif_array ( 1 );
2021-02-23 21:09:01 +01:00
}
2022-01-06 10:54:19 +01:00
print $conf -> cache [ 'staff' ][ $obj -> staff_code ];
2018-09-14 01:29:03 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2018-09-14 01:29:03 +02:00
}
2017-10-13 13:28:26 +02:00
// 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">' ;
2017-10-13 13:28:26 +02:00
$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' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2019-04-09 18:26:00 +02:00
// Payment terms
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_cond_reglement' ][ 'checked' ])) {
2019-04-09 18:26:00 +02:00
print '<td>' ;
2019-04-09 18:37:36 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ], $obj -> fk_cond_reglement , 'none' );
2019-04-09 18:26:00 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2019-04-09 18:26:00 +02:00
}
2019-10-10 15:10:41 +02:00
// Module Source
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.module_source' ][ 'checked' ])) {
2019-10-10 15:10:41 +02:00
print '<td>' ;
2021-10-01 18:54:14 +02:00
print dol_escape_htmltag ( $obj -> module_source );
2019-10-10 15:10:41 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2019-10-10 15:10:41 +02:00
}
// POS Terminal
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.pos_source' ][ 'checked' ])) {
2019-10-10 15:10:41 +02:00
print '<td>' ;
2021-10-01 18:54:14 +02:00
print dol_escape_htmltag ( $obj -> pos_source );
2019-10-10 15:10:41 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2019-10-10 15:10:41 +02:00
}
2017-10-13 13:28:26 +02:00
// Amount HT
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ht' ][ 'checked' ])) {
2022-07-07 20:05:22 +02:00
print '<td class="right nowraponall">' . 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' ;
}
2022-07-07 20:05:22 +02:00
$totalarray [ 'val' ][ 'f.total_ht' ] += $obj -> total_ht ;
2017-10-13 13:28:26 +02:00
}
// Amount VAT
2021-02-28 07:32:23 +01:00
if ( ! empty ( $arrayfields [ 'f.total_tva' ][ 'checked' ])) {
2021-08-22 14:02:33 +02:00
print '<td class="right nowraponall amount">' . price ( $obj -> total_tva ) . " </td> \n " ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
if ( ! $i ) {
2021-02-28 07:32:23 +01:00
$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 ;
2017-10-13 13:28:26 +02:00
}
// 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 ;
2017-10-13 13:28:26 +02:00
}
// 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 ;
2017-10-13 13:28:26 +02:00
}
// 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 ;
2017-10-13 13:28:26 +02:00
}
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 ;
2021-09-24 11:16:34 +02:00
$userstatic -> email = $obj -> user_email ;
$userstatic -> statut = $obj -> user_statut ;
2021-05-17 23:54:31 +02:00
$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 ;
2020-04-01 17:09:01 +02:00
// 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 ' ' ;
}
2020-04-01 17:09:01 +02:00
print " </td> \n " ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-04-01 17:09:01 +02:00
}
2021-05-17 18:31:19 +02:00
if ( ! empty ( $arrayfields [ 'sale_representative' ][ 'checked' ])) {
// Sales representatives
print '<td>' ;
if ( $obj -> socid > 0 ) {
2022-03-30 09:33:14 +02:00
$listsalesrepresentatives = $companystatic -> getSalesRepresentatives ( $user );
2021-05-17 18:31:19 +02:00
if ( $listsalesrepresentatives < 0 ) {
dol_print_error ( $db );
}
$nbofsalesrepresentative = count ( $listsalesrepresentatives );
if ( $nbofsalesrepresentative > 6 ) {
// We print only number
print $nbofsalesrepresentative ;
} elseif ( $nbofsalesrepresentative > 0 ) {
$j = 0 ;
foreach ( $listsalesrepresentatives as $val ) {
$userstatic -> id = $val [ 'id' ];
$userstatic -> lastname = $val [ 'lastname' ];
$userstatic -> firstname = $val [ 'firstname' ];
$userstatic -> email = $val [ 'email' ];
$userstatic -> statut = $val [ 'statut' ];
$userstatic -> entity = $val [ 'entity' ];
$userstatic -> photo = $val [ 'photo' ];
$userstatic -> login = $val [ 'login' ];
$userstatic -> office_phone = $val [ 'office_phone' ];
$userstatic -> office_fax = $val [ 'office_fax' ];
$userstatic -> user_mobile = $val [ 'user_mobile' ];
$userstatic -> job = $val [ 'job' ];
$userstatic -> gender = $val [ 'gender' ];
//print '<div class="float">':
print ( $nbofsalesrepresentative < 2 ) ? $userstatic -> getNomUrl ( - 1 , '' , 0 , 0 , 12 ) : $userstatic -> getNomUrl ( - 2 );
$j ++ ;
if ( $j < $nbofsalesrepresentative ) {
print ' ' ;
}
//print '</div>';
}
}
//else print $langs->trans("NoSalesRepresentativeAffected");
} else {
print ' ' ;
}
print '</td>' ;
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
}
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.retained_warranty' ][ 'checked' ])) {
2022-01-06 10:54:19 +01:00
print '<td align="right">' . ( ! empty ( $obj -> retained_warranty ) ? price ( $obj -> retained_warranty ) . '%' : ' ' ) . '</td>' ;
2018-09-27 15:38:43 +02:00
}
2017-10-13 13:28:26 +02:00
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'dynamount_payed' ][ 'checked' ])) {
2022-01-06 10:54:19 +01:00
print '<td class="right nowraponall amount">' . ( ! empty ( $totalpay ) ? price ( $totalpay , 0 , $langs ) : ' ' ) . '</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 ;
2017-10-13 13:28:26 +02:00
}
2020-01-29 17:27:31 +01:00
// 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">' ;
2020-01-29 17:27:31 +01:00
print ( ! empty ( $remaintopay ) ? price ( $remaintopay , 0 , $langs ) : ' ' );
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 ;
2017-10-13 13:28:26 +02:00
}
2020-02-27 14:10:00 +01:00
// Currency
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_code' ][ 'checked' ])) {
2022-04-29 19:04:46 +02:00
print '<td class="nowraponall tdoverflowmax125" title="' . dol_escape_htmltag ( $obj -> multicurrency_code . ' - ' . $langs -> transnoentitiesnoconv ( 'Currency' . $obj -> multicurrency_code )) . '">' ;
2022-04-18 19:22:29 +02:00
if ( empty ( $conf -> global -> MAIN_SHOW_ONLY_CODE_MULTICURRENCY )) {
2022-04-29 19:04:46 +02:00
print $langs -> transnoentitiesnoconv ( 'Currency' . $obj -> multicurrency_code );
2022-04-18 19:22:29 +02:00
} else {
2022-04-29 19:04:46 +02:00
print dol_escape_htmltag ( $obj -> multicurrency_code );
2022-04-18 19:22:29 +02:00
}
2022-04-29 19:04:46 +02:00
print " </td> \n " ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-02-27 14:10:00 +01:00
}
// Currency rate
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_tx' ][ 'checked' ])) {
2022-07-07 20:05:22 +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' ] ++ ;
}
2020-02-27 14:10:00 +01:00
}
// Amount HT
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_total_ht' ][ 'checked' ])) {
2022-07-07 20:05:22 +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' ] ++ ;
}
2020-02-27 14:10:00 +01:00
}
// 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' ] ++ ;
}
2020-02-27 14:10:00 +01:00
}
// 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' ] ++ ;
}
2020-02-27 14:10:00 +01:00
}
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 ) : ' ' ) . '</td>' ; // TODO Use a denormalized field
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-02-27 14:10:00 +01:00
}
// 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">' ;
2020-02-27 14:10:00 +01:00
print ( ! empty ( $multicurrency_remaintopay ) ? price ( $multicurrency_remaintopay , 0 , $langs ) : ' ' );
print '</td>' ; // TODO Use a denormalized field
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-02-27 14:10:00 +01:00
}
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' ])) {
2020-10-31 14:32:18 +01:00
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' ])) {
2020-10-31 14:32:18 +01:00
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' ])) {
2020-10-31 14:32:18 +01:00
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
}
2022-02-03 10:39:03 +01:00
// Total mark rate
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'total_mark_rate' ][ 'checked' ])) {
2020-10-31 14:32:18 +01:00
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' ] ++ ;
}
2022-02-16 11:45:29 +01:00
if ( ! $i ) {
$totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'total_mark_rate' ;
}
if ( $i >= $last_num - 1 ) {
if ( ! empty ( $total_ht )) {
$totalarray [ 'val' ][ 'total_mark_rate' ] = price2num ( $total_margin * 100 / $total_ht , 'MT' );
} else {
$totalarray [ 'val' ][ 'total_mark_rate' ] = '' ;
}
}
2020-10-21 16:10:48 +02:00
}
2017-10-13 13:28:26 +02:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_print_fields.tpl.php' ;
2017-10-13 13:28:26 +02:00
// Fields from hook
2020-05-08 01:40:25 +02:00
$parameters = array ( 'arrayfields' => $arrayfields , 'obj' => $obj , 'i' => $i , 'totalarray' =>& $totalarray );
2019-12-16 13:06:25 +01:00
$reshook = $hookmanager -> executeHooks ( 'printFieldListValue' , $parameters ); // Note that $action and $object may have been modified by hook
2017-10-13 13:28:26 +02:00
print $hookmanager -> resPrint ;
// Date creation
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.datec' ][ 'checked' ])) {
2022-09-05 09:15:45 +02:00
print '<td class="nowraponall center">' ;
2017-10-13 13:28:26 +02:00
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' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Date modification
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.tms' ][ 'checked' ])) {
2022-09-05 09:15:45 +02:00
print '<td class="nowraponall center">' ;
2017-10-13 13:28:26 +02:00
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' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
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' ])) {
2022-09-05 09:15:45 +02:00
print '<td class="nowraponall center">' ;
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
}
2020-09-30 11:58:40 +02:00
// Note public
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.note_public' ][ 'checked' ])) {
2020-09-30 11:58:40 +02:00
print '<td class="center">' ;
2022-09-09 15:56:17 +02:00
print dol_string_nohtmltag ( $obj -> note_public );
2020-09-30 11:58:40 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-09-30 11:58:40 +02:00
}
// Note private
2021-02-23 21:09:01 +01:00
if ( ! empty ( $arrayfields [ 'f.note_private' ][ 'checked' ])) {
2020-09-30 11:58:40 +02:00
print '<td class="center">' ;
2022-09-09 15:56:17 +02:00
print dol_string_nohtmltag ( $obj -> note_private );
2020-09-30 11:58:40 +02:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-09-30 11:58:40 +02:00
}
2022-04-15 11:32:53 +02:00
// Template Invoice
if ( ! empty ( $arrayfields [ 'f.fk_fac_rec_source' ][ 'checked' ])) {
print '<td class="center">' ;
if ( ! empty ( $obj -> fk_fac_rec_source )) {
$facrec = new FactureRec ( $db );
$result = $facrec -> fetch ( $obj -> fk_fac_rec_source );
if ( $result < 0 ) {
setEventMessages ( $facrec -> error , $facrec -> errors , 'errors' );
} else {
print $facrec -> getNomUrl ();
}
}
print '</td>' ;
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
}
2017-10-13 13:28:26 +02:00
// 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">' ;
2022-08-13 12:03:41 +02:00
print $facturestatic -> getLibStatut ( 5 , $paiement );
2017-10-13 13:28:26 +02:00
print " </td> " ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2020-09-23 08:59:30 +02:00
// Action column (Show the massaction button only when this page is not opend from the Extended POS)
2017-10-13 13:28:26 +02:00
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
2019-12-16 13:06:25 +01:00
$selected = 0 ;
2021-02-23 21:09:01 +01:00
if ( in_array ( $obj -> id , $arrayofselected )) {
$selected = 1 ;
}
2019-12-16 13:06:25 +01:00
print '<input id="cb' . $obj -> id . '" class="flat checkforselect" type="checkbox" name="toselect[]" value="' . $obj -> id . '"' . ( $selected ? ' checked="checked"' : '' ) . '>' ;
2017-10-13 13:28:26 +02:00
}
2019-12-16 13:06:25 +01:00
print '</td>' ;
2021-02-23 21:09:01 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
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' ;
2017-10-13 13:28:26 +02:00
}
2022-05-10 11:38:56 +02:00
// If no record found
if ( $num == 0 ) {
$colspan = 1 ;
foreach ( $arrayfields as $key => $val ) {
if ( ! empty ( $val [ 'checked' ])) {
$colspan ++ ;
}
}
print '<tr><td colspan="' . $colspan . '"><span class="opacitymedium">' . $langs -> trans ( " NoRecordFound " ) . '</span></td></tr>' ;
}
2017-10-13 13:28:26 +02:00
$db -> free ( $resql );
2017-06-13 18:50:31 +02:00
2019-11-12 09:46:08 +01:00
$parameters = array ( 'arrayfields' => $arrayfields , 'sql' => $sql );
2022-05-10 11:38:56 +02:00
$reshook = $hookmanager -> executeHooks ( 'printFieldListFooter' , $parameters , $object ); // Note that $action and $object may have been modified by hook
2016-04-08 02:39:57 +02:00
print $hookmanager -> resPrint ;
2017-06-13 18:50:31 +02:00
2022-05-10 11:38:56 +02:00
print '</table>' . " \n " ;
print '</div>' . " \n " ;
2017-10-13 13:28:26 +02:00
2022-05-10 11:38:56 +02:00
print '</form>' . " \n " ;
2017-10-13 13:28:26 +02:00
2020-09-23 08:59:30 +02:00
// Show the file area only when this page is not opend from the Extended POS
2020-08-18 11:20:02 +02:00
if ( $contextpage != 'poslist' ) {
$hidegeneratedfilelistifempty = 1 ;
2021-02-23 21:09:01 +01:00
if ( $massaction == 'builddoc' || $action == 'remove_file' || $show_files ) {
$hidegeneratedfilelistifempty = 0 ;
}
2017-10-13 13:28:26 +02:00
2020-08-18 11:20:02 +02:00
// Show list of available documents
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?sortfield=' . $sortfield . '&sortorder=' . $sortorder ;
$urlsource .= str_replace ( '&' , '&' , $param );
2017-10-13 13:28:26 +02:00
2020-08-18 11:20:02 +02:00
$filedir = $diroutputmassaction ;
$genallowed = $user -> rights -> facture -> lire ;
$delallowed = $user -> rights -> facture -> creer ;
$title = '' ;
2018-02-21 11:02:45 +01:00
2020-08-18 11:20:02 +02:00
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 {
2017-10-13 13:28:26 +02:00
dol_print_error ( $db );
2012-06-09 19:16:31 +02:00
}
2018-07-30 17:28:44 +02:00
// End of page
2012-06-09 19:16:31 +02:00
llxFooter ();
$db -> close ();