2013-07-26 11:35:00 +02:00
< ? php
2021-06-10 05:59:29 +02:00
/* Copyright ( C ) 2002 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
* Copyright ( C ) 2004 - 2019 Laurent Destailleur < eldy @ users . sourceforge . net >
* Copyright ( C ) 2005 - 2013 Regis Houssin < regis . houssin @ inodbox . com >
* Copyright ( C ) 2013 - 2019 Philippe Grand < philippe . grand @ atoo - net . com >
* Copyright ( C ) 2013 Florian Henry < florian . henry @ open - concept . pro >
* Copyright ( C ) 2013 Cédric Salvador < csalvador @ gpcsolutions . fr >
* Copyright ( C ) 2015 Marcos García < marcosgdf @ gmail . com >
* Copyright ( C ) 2015 - 2007 Juanjo Menent < jmenent @ 2 byte . es >
* Copyright ( C ) 2015 Abbes Bahfir < bafbes @ gmail . com >
* Copyright ( C ) 2015 - 2016 Ferran Marcet < fmarcet @ 2 byte . es >
* Copyright ( C ) 2017 Josep Lluís Amador < joseplluis @ lliuretic . cat >
* Copyright ( C ) 2018 Charlene Benke < charlie @ patas - monkey . com >
* Copyright ( C ) 2018 - 2020 Frédéric France < frederic . france @ netlogic . fr >
* Copyright ( C ) 2019 - 2021 Alexandre Spangaro < aspangaro @ open - dsi . fr >
2015-06-30 13:14:19 +02:00
*
2013-07-26 11:35:00 +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
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2013-07-26 11:35:00 +02:00
*/
/**
* \file htdocs / fourn / facture / list . php
* \ingroup fournisseur , facture
* \brief List of suppliers invoices
*/
require '../../main.inc.php' ;
2016-06-21 15:16:33 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formother.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/compta/bank/class/account.class.php' ;
2013-07-26 11:35:00 +02:00
require_once DOL_DOCUMENT_ROOT . '/fourn/class/fournisseur.facture.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/fourn/class/fournisseur.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php' ;
2016-06-21 15:16:33 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/company.lib.php' ;
2014-10-22 17:47:12 +02:00
require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
2013-07-26 11:35:00 +02:00
2018-06-24 16:20:27 +02:00
// Load translation files required by the page
$langs -> loadLangs ( array ( 'products' , 'bills' , 'companies' , 'projects' ));
2013-07-26 11:35:00 +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' );
2017-04-07 14:09:19 +02:00
$toselect = GETPOST ( 'toselect' , 'array' );
2019-01-27 11:55:16 +01:00
$optioncss = GETPOST ( 'optioncss' , 'alpha' );
2019-11-12 09:46:08 +01:00
$contextpage = GETPOST ( 'contextpage' , 'aZ' ) ? GETPOST ( 'contextpage' , 'aZ' ) : 'supplierinvoicelist' ;
2017-04-07 14:09:19 +02:00
2019-01-27 11:55:16 +01:00
$socid = GETPOST ( 'socid' , 'int' );
2013-07-26 11:35:00 +02:00
// Security check
2020-12-30 19:07:46 +01:00
if ( $user -> socid > 0 ) {
2019-11-12 09:46:08 +01:00
$action = '' ;
2017-10-13 13:28:26 +02:00
$_GET [ " action " ] = '' ;
2019-10-31 20:46:31 +01:00
$socid = $user -> socid ;
2013-07-26 11:35:00 +02:00
}
2020-10-08 19:22:21 +02:00
$mode = GETPOST ( " mode " , 'aZ09' );
2013-07-26 11:35:00 +02:00
2019-11-12 09:46:08 +01:00
$search_all = trim (( GETPOST ( 'search_all' , 'alphanohtml' ) != '' ) ? GETPOST ( 'search_all' , 'alphanohtml' ) : GETPOST ( 'sall' , 'alphanohtml' ));
2019-01-27 11:55:16 +01:00
$search_label = GETPOST ( " search_label " , " alpha " );
$search_amount_no_tax = GETPOST ( " search_amount_no_tax " , " alpha " );
$search_amount_all_tax = GETPOST ( " search_amount_all_tax " , " alpha " );
2019-11-12 09:46:08 +01:00
$search_product_category = GETPOST ( 'search_product_category' , 'int' );
$search_ref = GETPOST ( 'sf_ref' ) ? GETPOST ( 'sf_ref' , 'alpha' ) : GETPOST ( 'search_ref' , 'alpha' );
$search_refsupplier = GETPOST ( 'search_refsupplier' , 'alpha' );
$search_type = GETPOST ( 'search_type' , 'int' );
$search_project = GETPOST ( 'search_project' , 'alpha' );
$search_company = GETPOST ( 'search_company' , 'alpha' );
$search_montant_ht = GETPOST ( 'search_montant_ht' , 'alpha' );
$search_montant_vat = GETPOST ( 'search_montant_vat' , 'alpha' );
$search_montant_localtax1 = GETPOST ( 'search_montant_localtax1' , 'alpha' );
$search_montant_localtax2 = GETPOST ( 'search_montant_localtax2' , 'alpha' );
$search_montant_ttc = GETPOST ( 'search_montant_ttc' , 'alpha' );
2020-04-10 10:59:32 +02:00
$search_login = GETPOST ( 'search_login' , 'alpha' );
2020-03-03 09:38:05 +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' , 'int' );
$search_paymentmode = GETPOST ( 'search_paymentmode' , 'int' );
2020-10-08 19:22:21 +02:00
$search_paymentcond = GETPOST ( 'search_paymentcond' , 'int' );
2019-11-12 09:46:08 +01:00
$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 " );
2019-11-12 09:46:08 +01:00
$search_country = GETPOST ( " search_country " , 'int' );
$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-06-10 05:59:29 +02:00
$search_date_startday = GETPOST ( 'search_date_startday' , 'int' );
$search_date_startmonth = GETPOST ( 'search_date_startmonth' , 'int' );
$search_date_startyear = GETPOST ( 'search_date_startyear' , 'int' );
$search_date_endday = GETPOST ( 'search_date_endday' , 'int' );
$search_date_endmonth = GETPOST ( 'search_date_endmonth' , 'int' );
$search_date_endyear = GETPOST ( 'search_date_endyear' , 'int' );
$search_date_start = dol_mktime ( 0 , 0 , 0 , $search_date_startmonth , $search_date_startday , $search_date_startyear ); // Use tzserver
$search_date_end = dol_mktime ( 23 , 59 , 59 , $search_date_endmonth , $search_date_endday , $search_date_endyear );
$search_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' );
2021-06-10 06:03:51 +02:00
$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 );
2016-06-21 15:16:33 +02:00
$toselect = GETPOST ( 'toselect' , 'array' );
2019-11-12 09:46:08 +01:00
$search_btn = GETPOST ( 'button_search' , 'alpha' );
$search_remove_btn = GETPOST ( 'button_removefilter' , 'alpha' );
2020-11-04 12:06:23 +01:00
$search_categ_sup = trim ( GETPOST ( " search_categ_sup " , 'int' ));
2013-07-26 11:35:00 +02:00
2021-09-20 03:28:30 +02:00
$option = GETPOST ( 'search_option' );
2017-09-03 12:42:05 +02:00
if ( $option == 'late' ) {
2017-09-26 11:55:19 +02:00
$search_status = '1' ;
2017-09-03 12:42:05 +02:00
}
2019-01-27 11:55:16 +01:00
$filter = GETPOST ( 'filtre' , 'alpha' );
2013-07-26 11:35:00 +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-25 23:21:30 +01:00
if ( $page == - 1 || $page == null || ! empty ( $search_btn ) || ! empty ( $search_remove_btn ) || ( empty ( $toselect ) && $massaction === '0' )) {
$page = 0 ;
}
2019-11-12 09:46:08 +01:00
$offset = $limit * $page ;
2016-06-21 15:16:33 +02:00
$pageprev = $page - 1 ;
$pagenext = $page + 1 ;
2021-02-25 23:21:30 +01:00
if ( ! $sortorder ) {
$sortorder = " DESC " ;
}
if ( ! $sortfield ) {
$sortfield = " f.datef,f.rowid " ;
}
2016-06-21 15:16:33 +02:00
2019-11-12 09:46:08 +01:00
$diroutputmassaction = $conf -> fournisseur -> facture -> dir_output . '/temp/massgeneration/' . $user -> id ;
2016-06-21 15:16:33 +02:00
2019-11-12 09:46:08 +01:00
$now = dol_now ();
2016-06-21 15:16:33 +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 FactureFournisseur ( $db );
2016-06-21 15:16:33 +02:00
$hookmanager -> initHooks ( array ( 'supplierinvoicelist' ));
$extrafields = new ExtraFields ( $db );
// fetch optionals attributes and labels
2019-10-06 14:41:52 +02:00
$extrafields -> fetch_name_optionals_label ( $object -> table_element );
2019-11-12 09:46:08 +01:00
$search_array_options = $extrafields -> getOptionalsFromPost ( $object -> table_element , '' , 'search_' );
2013-07-26 11:35:00 +02:00
2015-10-17 02:41:09 +02:00
// List of fields to search into when doing a "search in all"
$fieldstosearchall = array (
2017-10-13 13:28:26 +02:00
'f.ref' => 'Ref' ,
'f.ref_supplier' => 'RefSupplier' ,
'pd.description' => 'Description' ,
's.nom' => " ThirdParty " ,
'f.note_public' => 'NotePublic' ,
2015-10-17 02:41:09 +02:00
);
2021-02-25 23:21:30 +01:00
if ( empty ( $user -> socid )) {
$fieldstosearchall [ " f.note_private " ] = " NotePrivate " ;
}
2016-06-21 15:16:33 +02:00
2019-11-12 09:46:08 +01:00
$checkedtypetiers = 0 ;
$arrayfields = array (
2021-08-24 14:54:46 +02:00
'f.ref' => array ( 'label' => " Ref " , 'checked' => 1 ),
'f.ref_supplier' => array ( 'label' => " RefSupplier " , 'checked' => 1 ),
'f.type' => array ( 'label' => " Type " , 'checked' => 0 ),
'f.label' => array ( 'label' => " Label " , 'checked' => 0 ),
'f.datef' => array ( 'label' => " DateInvoice " , 'checked' => 1 ),
'f.date_lim_reglement' => array ( 'label' => " DateDue " , 'checked' => 1 ),
'p.ref' => array ( 'label' => " ProjectRef " , 'checked' => 0 ),
's.nom' => array ( 'label' => " ThirdParty " , 'checked' => 1 ),
's.town' => array ( 'label' => " Town " , 'checked' =>- 1 ),
's.zip' => array ( 'label' => " Zip " , 'checked' => 1 ),
'state.nom' => array ( 'label' => " StateShort " , 'checked' => 0 ),
'country.code_iso' => array ( 'label' => " Country " , 'checked' => 0 ),
'typent.code' => array ( 'label' => " ThirdPartyType " , 'checked' => $checkedtypetiers ),
'f.fk_cond_reglement' => array ( 'label' => " PaymentTerm " , 'checked' => 1 , 'position' => 50 ),
'f.fk_mode_reglement' => array ( 'label' => " PaymentMode " , 'checked' => 1 , 'position' => 52 ),
'f.total_ht' => array ( 'label' => " AmountHT " , 'checked' => 1 , 'position' => 105 ),
'f.total_vat' => array ( 'label' => " AmountVAT " , 'checked' => 0 , 'position' => 110 ),
2020-09-25 17:11:54 +02:00
'f.total_localtax1' => array ( 'label' => $langs -> transcountry ( " AmountLT1 " , $mysoc -> country_code ), 'checked' => 0 , 'enabled' => $mysoc -> localtax1_assuj == " 1 " , 'position' => 95 ),
'f.total_localtax2' => array ( 'label' => $langs -> transcountry ( " AmountLT2 " , $mysoc -> country_code ), 'checked' => 0 , 'enabled' => $mysoc -> localtax2_assuj == " 1 " , 'position' => 100 ),
2021-08-24 14:54:46 +02:00
'f.total_ttc' => array ( 'label' => " AmountTTC " , 'checked' => 0 , 'position' => 115 ),
2020-04-01 17:09:01 +02:00
'u.login' => array ( 'label' => " Author " , 'checked' => 1 ),
2021-08-24 14:56:13 +02:00
'dynamount_payed' => array ( 'label' => " Paid " , 'checked' => 0 ),
2021-08-24 14:54:46 +02:00
'rtp' => array ( 'label' => " Rest " , 'checked' => 0 ),
2020-03-03 09:38:05 +01:00
'f.multicurrency_code' => array ( 'label' => 'Currency' , 'checked' => 0 , 'enabled' => ( empty ( $conf -> multicurrency -> enabled ) ? 0 : 1 )),
'f.multicurrency_tx' => array ( 'label' => 'CurrencyRate' , 'checked' => 0 , 'enabled' => ( empty ( $conf -> multicurrency -> enabled ) ? 0 : 1 )),
'f.multicurrency_total_ht' => array ( 'label' => 'MulticurrencyAmountHT' , 'checked' => 0 , 'enabled' => ( empty ( $conf -> multicurrency -> enabled ) ? 0 : 1 )),
'f.multicurrency_total_vat' => array ( 'label' => 'MulticurrencyAmountVAT' , 'checked' => 0 , 'enabled' => ( empty ( $conf -> multicurrency -> enabled ) ? 0 : 1 )),
'f.multicurrency_total_ttc' => array ( 'label' => 'MulticurrencyAmountTTC' , 'checked' => 0 , 'enabled' => ( empty ( $conf -> multicurrency -> enabled ) ? 0 : 1 )),
'multicurrency_dynamount_payed' => array ( 'label' => 'MulticurrencyAlreadyPaid' , 'checked' => 0 , 'enabled' => ( empty ( $conf -> multicurrency -> enabled ) ? 0 : 1 )),
'multicurrency_rtp' => array ( 'label' => 'MulticurrencyRemainderToPay' , 'checked' => 0 , 'enabled' => ( empty ( $conf -> multicurrency -> enabled ) ? 0 : 1 )), // Not enabled by default because slow
2021-08-24 14:54:46 +02:00
'f.datec' => array ( 'label' => " DateCreation " , 'checked' => 0 , 'position' => 500 ),
'f.tms' => array ( 'label' => " DateModificationShort " , 'checked' => 0 , 'position' => 500 ),
'f.fk_statut' => array ( 'label' => " Status " , 'checked' => 1 , 'position' => 1000 ),
2016-06-21 15:16:33 +02:00
);
// Extra fields
2020-12-23 19:14:47 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_array_fields.tpl.php' ;
2019-09-02 03:58:00 +02:00
$object -> fields = dol_sort_array ( $object -> fields , 'position' );
$arrayfields = dol_sort_array ( $arrayfields , 'position' );
2015-10-17 02:41:09 +02:00
2021-07-03 19:00:58 +02:00
if (( empty ( $conf -> fournisseur -> enabled ) && empty ( $conf -> global -> MAIN_USE_NEW_SUPPLIERMOD ))
|| ( empty ( $conf -> supplier_invoice -> enabled ) && ! empty ( $conf -> global -> MAIN_USE_NEW_SUPPLIERMOD ))) {
accessforbidden ();
}
if (( empty ( $user -> rights -> fournisseur -> facture -> lire ) && empty ( $conf -> global -> MAIN_USE_NEW_SUPPLIERMOD ))
|| ( empty ( $user -> rights -> supplier_invoice -> lire ) && ! empty ( $conf -> global -> MAIN_USE_NEW_SUPPLIERMOD ))) {
accessforbidden ();
}
2015-10-17 02:41:09 +02:00
2013-07-26 11:35:00 +02:00
/*
* Actions
*/
2021-02-25 23:21:30 +01:00
if ( GETPOST ( 'cancel' , 'alpha' )) {
$action = 'list' ; $massaction = '' ;
}
2022-04-25 14:28:57 +02:00
if ( ! GETPOST ( 'confirmmassaction' , 'alpha' ) && $massaction != 'presend' && $massaction != 'confirm_presend' ) {
2021-02-25 23:21:30 +01:00
$massaction = '' ;
}
2016-06-21 15:16:33 +02:00
2019-11-12 09:46:08 +01:00
$parameters = array ( 'socid' => $socid );
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
2021-02-25 23:21:30 +01:00
if ( $reshook < 0 ) {
setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
}
2016-06-21 15:16:33 +02:00
2021-02-25 23:21:30 +01:00
if ( empty ( $reshook )) {
2017-10-13 13:28:26 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php' ;
2017-06-14 11:28:42 +02:00
2021-02-25 23:21:30 +01:00
if ( GETPOST ( 'button_removefilter_x' , 'alpha' ) || GETPOST ( 'button_removefilter' , 'alpha' ) || GETPOST ( 'button_removefilter.x' , 'alpha' )) { // All tests must be present to be compatible with all browsers
2020-03-12 12:45:44 +01:00
$search_all = " " ;
$search_user = '' ;
$search_sale = '' ;
$search_product_category = '' ;
$search_ref = " " ;
$search_refsupplier = " " ;
$search_type = " " ;
$search_label = " " ;
$search_project = '' ;
$search_company = " " ;
$search_amount_no_tax = " " ;
$search_amount_all_tax = " " ;
$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-03-03 09:38:05 +01:00
$search_multicurrency_code = '' ;
$search_multicurrency_tx = '' ;
$search_multicurrency_montant_ht = '' ;
$search_multicurrency_montant_vat = '' ;
$search_multicurrency_montant_ttc = '' ;
2020-03-12 12:45:44 +01:00
$search_status = '' ;
$search_paymentmode = '' ;
2020-10-08 19:22:21 +02:00
$search_paymentcond = '' ;
2020-03-12 12:45:44 +01:00
$search_town = '' ;
$search_zip = " " ;
$search_state = " " ;
$search_type = '' ;
$search_country = '' ;
$search_type_thirdparty = '' ;
2021-06-10 05:59:29 +02:00
$search_date_startday = '' ;
$search_date_startmonth = '' ;
$search_date_startyear = '' ;
$search_date_endday = '' ;
$search_date_endmonth = '' ;
$search_date_endyear = '' ;
$search_date_start = '' ;
$search_date_end = '' ;
$search_datelimit_startday = '' ;
$search_datelimit_startmonth = '' ;
$search_datelimit_startyear = '' ;
$search_datelimit_endday = '' ;
$search_datelimit_endmonth = '' ;
$search_datelimit_endyear = '' ;
$search_datelimit_start = '' ;
$search_datelimit_end = '' ;
2022-05-08 18:25:22 +02:00
$toselect = array ();
2020-03-12 12:45:44 +01:00
$search_array_options = array ();
$filter = '' ;
$option = '' ;
$socid = " " ;
2020-11-04 12:06:23 +01:00
$search_categ_sup = 0 ;
2017-10-13 13:28:26 +02:00
}
2016-06-21 15:16:33 +02:00
2017-10-13 13:28:26 +02:00
// Mass actions
2020-03-12 12:45:44 +01:00
$objectclass = 'FactureFournisseur' ;
$objectlabel = 'SupplierInvoices' ;
2021-04-12 07:37:34 +02:00
$permissiontoread = ( $user -> rights -> fournisseur -> facture -> lire || $user -> rights -> supplier_invoice -> lire );
$permissiontoadd = ( $user -> rights -> fournisseur -> facture -> creer || $user -> rights -> supplier_invoice -> creer );
$permissiontodelete = ( $user -> rights -> fournisseur -> facture -> supprimer || $user -> rights -> supplier_invoice -> supprimer );
2017-10-13 13:28:26 +02:00
$uploaddir = $conf -> fournisseur -> facture -> dir_output ;
include DOL_DOCUMENT_ROOT . '/core/actions_massactions.inc.php' ;
2020-11-25 10:24:44 +01:00
2021-02-25 23:21:30 +01:00
if ( $massaction == 'banktransfertrequest' ) {
2020-11-25 10:24:44 +01:00
$langs -> load ( " withdrawals " );
2021-02-25 23:21:30 +01:00
if ( ! $user -> rights -> paymentbybanktransfer -> create ) {
2020-11-25 10:24:44 +01:00
$error ++ ;
setEventMessages ( $langs -> trans ( " NotEnoughPermissions " ), null , 'errors' );
} else {
//Checking error
$error = 0 ;
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
$listofbills = array ();
2021-02-25 23:21:30 +01:00
foreach ( $arrayofselected as $toselectid ) {
2020-11-25 10:24:44 +01:00
$objecttmp = new FactureFournisseur ( $db );
$result = $objecttmp -> fetch ( $toselectid );
2021-02-25 23:21:30 +01:00
if ( $result > 0 ) {
2022-05-22 17:09:08 +02:00
$totalpaid = $objecttmp -> getSommePaiement ();
2020-11-25 10:24:44 +01: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 == FactureFournisseur :: STATUS_DRAFT ) {
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " Draft " ), $objecttmp -> errors , 'errors' );
} elseif ( $objecttmp -> paye || $objecttmp -> resteapayer == 0 ) {
2020-11-25 10:24:44 +01:00
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " AlreadyPaid " ), $objecttmp -> errors , 'errors' );
} elseif ( $objecttmp -> resteapayer < 0 ) {
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " AmountMustBePositive " ), $objecttmp -> errors , 'errors' );
}
$rsql = " SELECT pfd.rowid, pfd.traite, pfd.date_demande as date_demande " ;
$rsql .= " , pfd.date_traite as date_traite " ;
$rsql .= " , pfd.amount " ;
$rsql .= " , u.rowid as user_id, u.lastname, u.firstname, u.login " ;
$rsql .= " FROM " . MAIN_DB_PREFIX . " prelevement_facture_demande as pfd " ;
$rsql .= " , " . MAIN_DB_PREFIX . " user as u " ;
2021-08-27 18:18:50 +02:00
$rsql .= " WHERE fk_facture_fourn = " . (( int ) $objecttmp -> id );
2020-11-25 10:24:44 +01: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-25 23:21:30 +01:00
if ( $result_sql ) {
2020-11-25 10:24:44 +01:00
$numprlv = $db -> num_rows ( $result_sql );
}
if ( $numprlv > 0 ) {
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " RequestAlreadyDone " ), $objecttmp -> errors , 'warnings' );
2021-06-10 16:29:56 +02:00
} elseif ( ! empty ( $objecttmp -> mode_reglement_code ) && $objecttmp -> mode_reglement_code != 'VIR' ) {
2020-11-25 10:24:44 +01:00
$error ++ ;
setEventMessages ( $objecttmp -> ref . ' ' . $langs -> trans ( " BadPaymentMethod " ), $objecttmp -> errors , 'errors' );
} else {
$listofbills [] = $objecttmp ; // $listofbills will only contains invoices with good payment method and no request already done
}
}
}
2021-05-25 21:21:09 +02:00
// Massive withdraw request for request with no errors
2021-02-25 23:21:30 +01:00
if ( ! empty ( $listofbills )) {
2020-11-25 10:24:44 +01:00
$nbwithdrawrequestok = 0 ;
2021-02-25 23:21:30 +01:00
foreach ( $listofbills as $aBill ) {
2020-11-25 10:24:44 +01:00
$db -> begin ();
$result = $aBill -> demande_prelevement ( $user , $aBill -> resteapayer , 'bank-transfer' , 'supplier_invoice' );
2021-02-25 23:21:30 +01:00
if ( $result > 0 ) {
2020-11-25 10:24:44 +01:00
$db -> commit ();
$nbwithdrawrequestok ++ ;
} else {
$db -> rollback ();
setEventMessages ( $aBill -> error , $aBill -> errors , 'errors' );
}
}
2021-02-25 23:21:30 +01:00
if ( $nbwithdrawrequestok > 0 ) {
2020-11-25 10:24:44 +01:00
setEventMessages ( $langs -> trans ( " WithdrawRequestsDone " , $nbwithdrawrequestok ), null , 'mesgs' );
}
}
}
}
2016-06-21 15:16:33 +02:00
}
2017-04-07 14:09:19 +02:00
2017-06-14 11:28:42 +02:00
2013-07-26 11:35:00 +02:00
/*
* View
*/
2019-11-12 09:46:08 +01:00
$form = new Form ( $db );
$formother = new FormOther ( $db );
2013-08-09 13:48:44 +02:00
$formfile = new FormFile ( $db );
2019-11-12 09:46:08 +01:00
$bankaccountstatic = new Account ( $db );
$facturestatic = new FactureFournisseur ( $db );
$formcompany = new FormCompany ( $db );
$thirdparty = new Societe ( $db );
2013-07-26 11:35:00 +02:00
2018-11-22 11:36:30 +01:00
// llxHeader('',$langs->trans("SuppliersInvoices"),'EN:Suppliers_Invoices|FR:FactureFournisseur|ES:Facturas_de_proveedores');
2013-07-26 11:35:00 +02:00
2016-06-21 15:16:33 +02:00
$sql = " SELECT " ;
2021-02-25 23:21:30 +01:00
if ( $search_all || $search_product_category > 0 ) {
$sql = 'SELECT DISTINCT' ;
}
2020-11-10 19:36:22 +01:00
$sql .= " f.rowid as facid, f.ref, f.ref_supplier, f.type, f.datef, f.date_lim_reglement as datelimite, f.fk_mode_reglement, f.fk_cond_reglement, " ;
2019-11-12 09:46:08 +01:00
$sql .= " f.total_ht, f.total_ttc, f.total_tva as total_vat, f.paye as paye, f.fk_statut as fk_statut, f.libelle as label, f.datec as date_creation, f.tms as date_update, " ;
$sql .= " f.localtax1 as total_localtax1, f.localtax2 as total_localtax2, " ;
2020-03-03 09:38:05 +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,' ;
2020-01-15 19:49:45 +01:00
$sql .= " f.note_public, f.note_private, " ;
2020-04-01 17:09:01 +02:00
$sql .= " f.fk_user_author, " ;
2019-11-12 09:46:08 +01:00
$sql .= " s.rowid as socid, s.nom as name, s.email, 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, " ;
$sql .= " typent.code as typent_code, " ;
$sql .= " state.code_departement as state_code, state.nom as state_name, " ;
$sql .= " country.code as country_code, " ;
2020-04-01 17:09:01 +02:00
$sql .= " p.rowid as project_id, p.ref as project_ref, p.title as project_label, " ;
2021-10-05 13:34:25 +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' ;
2021-03-22 11:30:18 +01:00
if ( $search_categ_sup && $search_categ_sup != '-1' ) {
$sql .= " , cs.fk_categorie, cs.fk_soc " ;
}
2017-05-21 03:23:44 +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)
// TODO Better solution to be able to sort on already payed or remain to pay is to store amount_payed in a denormalized field.
2021-02-25 23:21:30 +01:00
if ( ! $search_all ) {
$sql .= ', SUM(pf.amount) as dynamount_payed' ;
}
2016-06-21 15:16:33 +02:00
// Add fields from extrafields
2019-11-12 09:46:08 +01:00
if ( ! empty ( $extrafields -> attributes [ $object -> table_element ][ 'label' ])) {
2021-02-25 23:21:30 +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-25 23:21:30 +01:00
}
2019-10-16 03:34:32 +02:00
}
2016-06-21 15:16:33 +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:38:34 +02:00
if ( ! empty ( $search_categ_sup ) && $search_categ_supplier != '-1' ) {
2021-02-25 23:21:30 +01:00
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . " categorie_fournisseur as cs ON s.rowid = cs.fk_soc " ;
}
2020-11-04 12:06:23 +01:00
2019-11-12 09:46:08 +01:00
$sql .= ', ' . MAIN_DB_PREFIX . 'facture_fourn as f' ;
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-25 23:21:30 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . $object -> table_element . " _extrafields as ef on (f.rowid = ef.fk_object) " ;
}
if ( ! $search_all ) {
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'paiementfourn_facturefourn as pf ON pf.fk_facturefourn = f.rowid' ;
}
if ( $search_all || $search_product_category > 0 ) {
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'facture_fourn_det as pd ON f.rowid=pd.fk_facture_fourn' ;
}
if ( $search_product_category > 0 ) {
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'categorie_product as cp ON cp.fk_product=pd.fk_product' ;
}
2020-09-25 15:01:15 +02:00
$sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'user AS u ON f.fk_user_author = u.rowid' ;
2019-11-12 09:46:08 +01:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " projet as p ON p.rowid = f.fk_projet " ;
2016-06-21 15:16:33 +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-25 23:21:30 +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 " ;
2013-07-26 11:35:00 +02:00
}
2021-04-07 11:01:51 +02: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 ;
2019-11-12 09:46:08 +01:00
$sql .= ' WHERE f.fk_soc = s.rowid' ;
$sql .= ' AND f.entity IN (' . getEntity ( 'facture_fourn' ) . ')' ;
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-25 23:21:30 +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-25 23:21:30 +01:00
}
if ( $socid > 0 ) {
2021-06-09 15:36:47 +02:00
$sql .= ' AND s.rowid = ' . (( int ) $socid );
2013-07-26 11:35:00 +02:00
}
2021-02-25 23:21:30 +01:00
if ( $search_ref ) {
if ( is_numeric ( $search_ref )) {
$sql .= natural_search ( array ( 'f.ref' ), $search_ref );
} else {
$sql .= natural_search ( 'f.ref' , $search_ref );
}
}
if ( $search_ref ) {
$sql .= natural_search ( 'f.ref' , $search_ref );
}
if ( $search_refsupplier ) {
$sql .= natural_search ( 'f.ref_supplier' , $search_refsupplier );
}
if ( $search_type != '' && $search_type >= 0 ) {
if ( $search_type == '0' ) {
$sql .= " AND f.type = 0 " ; // standard
}
if ( $search_type == '1' ) {
$sql .= " AND f.type = 1 " ; // replacement
}
if ( $search_type == '2' ) {
$sql .= " AND f.type = 2 " ; // credit note
}
if ( $search_type == '3' ) {
$sql .= " AND f.type = 3 " ; // deposit
}
2018-02-21 17:51:44 +01:00
//if ($search_type == '4') $sql.=" AND f.type = 4"; // proforma
//if ($search_type == '5') $sql.=" AND f.type = 5"; // situation
}
2021-02-25 23:21:30 +01:00
if ( $search_project ) {
$sql .= natural_search ( 'p.ref' , $search_project );
}
if ( $search_company ) {
$sql .= natural_search ( 's.nom' , $search_company );
}
if ( $search_town ) {
$sql .= natural_search ( 's.town' , $search_town );
}
if ( $search_zip ) {
$sql .= natural_search ( " s.zip " , $search_zip );
}
if ( $search_state ) {
$sql .= natural_search ( " state.nom " , $search_state );
}
if ( $search_country ) {
2021-03-22 11:30:18 +01:00
$sql .= " AND s.fk_pays IN ( " . $db -> sanitize ( $search_country ) . ')' ;
2021-02-25 23:21:30 +01:00
}
if ( $search_type_thirdparty != '' && $search_type_thirdparty >= 0 ) {
2021-03-22 11:30:18 +01:00
$sql .= " AND s.fk_typent IN ( " . $db -> sanitize ( $search_type_thirdparty ) . ')' ;
2021-02-25 23:21:30 +01:00
}
if ( $search_montant_ht != '' ) {
$sql .= natural_search ( 'f.total_ht' , $search_montant_ht , 1 );
}
if ( $search_montant_vat != '' ) {
$sql .= natural_search ( 'f.total_tva' , $search_montant_vat , 1 );
}
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-25 23:21:30 +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-12-15 10:52:57 +01:00
$sql .= natural_search ( array ( 'u.lastname' , 'u.firstname' , 'u.login' ), $search_login );
2021-02-25 23:21:30 +01:00
}
if ( $search_status != '' && $search_status >= 0 ) {
2021-05-25 21:21:09 +02:00
$sql .= " AND f.fk_statut = " . (( int ) $search_status );
2021-02-25 23:21:30 +01:00
}
if ( $search_paymentmode > 0 ) {
$sql .= " AND f.fk_mode_reglement = " . (( int ) $search_paymentmode );
}
if ( $search_paymentcond > 0 ) {
$sql .= " AND f.fk_cond_reglement = " . (( int ) $search_paymentcond );
}
2021-06-10 05:59:29 +02:00
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_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 ) . " ' " ;
}
2021-02-25 23:21:30 +01:00
if ( $option == 'late' ) {
$sql .= " AND f.date_lim_reglement < ' " . $db -> idate ( dol_now () - $conf -> facture -> fournisseur -> warning_delay ) . " ' " ;
}
if ( $search_label ) {
$sql .= natural_search ( 'f.libelle' , $search_label );
}
if ( $search_categ_sup > 0 ) {
2021-08-23 18:56:46 +02:00
$sql .= " AND cs.fk_categorie = " . (( int ) $search_categ_sup );
2021-02-25 23:21:30 +01:00
}
if ( $search_categ_sup == - 2 ) {
$sql .= " AND cs.fk_categorie IS NULL " ;
}
if ( $search_status != '' && $search_status >= 0 ) {
2021-05-25 21:21:09 +02:00
$sql .= " AND f.fk_statut = " . (( int ) $search_status );
2015-03-23 13:40:55 +01:00
}
2021-02-25 23:21:30 +01:00
if ( $filter && $filter != - 1 ) {
2016-04-28 10:41:37 +02:00
$aFilter = explode ( ',' , $filter );
2021-02-25 23:21:30 +01:00
foreach ( $aFilter as $fil ) {
2016-04-28 10:41:37 +02:00
$filt = explode ( ':' , $fil );
2021-08-28 03:09:18 +02:00
$sql .= " AND " . $db -> escape ( trim ( $filt [ 0 ])) . " = ' " . $db -> escape ( trim ( $filt [ 1 ])) . " ' " ;
2016-04-28 10:41:37 +02:00
}
}
2021-02-25 23:21:30 +01:00
if ( $search_sale > 0 ) {
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . (( int ) $search_sale );
}
if ( $search_user > 0 ) {
2021-08-23 18:56:46 +02:00
$sql .= " AND ec.fk_c_type_contact = tc.rowid AND tc.element='invoice_supplier' AND tc.source='internal' AND ec.element_id = f.rowid AND ec.fk_socpeople = " . (( int ) $search_user );
2016-06-21 15:16:33 +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-06-21 15:16:33 +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-06-21 15:16:33 +02:00
2021-02-25 23:21:30 +01:00
if ( ! $search_all ) {
2020-11-11 01:25:04 +01:00
$sql .= " GROUP BY f.rowid, f.ref, f.ref_supplier, f.type, f.datef, f.date_lim_reglement, f.fk_mode_reglement, f.fk_cond_reglement, " ;
2019-11-12 09:46:08 +01:00
$sql .= " f.total_ht, f.total_ttc, f.total_tva, f.paye, f.fk_statut, f.libelle, f.datec, f.tms, " ;
$sql .= " f.localtax1, f.localtax2, " ;
2021-01-28 16:10:13 +01:00
$sql .= ' f.fk_multicurrency, f.multicurrency_code, f.multicurrency_tx, f.multicurrency_total_ht, f.multicurrency_total_tva, f.multicurrency_total_ttc,' ;
2020-01-15 19:49:45 +01:00
$sql .= " f.note_public, f.note_private, " ;
2021-01-28 16:10:13 +01:00
$sql .= " f.fk_user_author, " ;
2019-11-12 09:46:08 +01:00
$sql .= ' s.rowid, s.nom, s.email, s.town, s.zip, s.fk_pays, s.client, s.fournisseur, s.code_client, s.code_fournisseur, s.code_compta, s.code_compta_fournisseur,' ;
$sql .= " typent.code, " ;
$sql .= " state.code_departement, state.nom, " ;
$sql .= ' country.code,' ;
2020-06-25 20:43:41 +02:00
$sql .= " p.rowid, p.ref, p.title, " ;
2021-10-05 13:34:25 +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-03-22 11:30:18 +01:00
if ( $search_categ_sup && $search_categ_sup != '-1' ) {
$sql .= " , cs.fk_categorie, cs.fk_soc " ;
}
2019-11-12 09:46:08 +01:00
if ( ! empty ( $extrafields -> attributes [ $object -> table_element ][ 'label' ])) {
2019-10-26 13:28:06 +02:00
foreach ( $extrafields -> attributes [ $object -> table_element ][ 'label' ] as $key => $val ) {
//prevent error with sql_mode=only_full_group_by
2019-11-12 09:46:08 +01:00
$sql .= ( $extrafields -> attributes [ $object -> table_element ][ 'type' ][ $key ] != 'separate' ? " ,ef. " . $key : '' );
2019-10-26 13:28:06 +02:00
}
2017-10-13 13:28:26 +02:00
}
2021-04-07 11:01:51 +02:00
// Add GroupBy from hooks
$parameters = array ( 'all' => $all , 'fieldstosearchall' => $fieldstosearchall );
$reshook = $hookmanager -> executeHooks ( 'printFieldListGroupBy' , $parameters , $object ); // Note that $action and $object may have been modified by hook
$sql .= $hookmanager -> resPrint ;
2020-05-21 15:05:19 +02:00
} else {
2019-11-12 09:46:08 +01:00
$sql .= natural_search ( array_keys ( $fieldstosearchall ), $search_all );
2017-05-21 03:23:44 +02:00
}
2021-04-07 11:01:51 +02: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-04-07 11:01:51 +02:00
2019-11-12 09:46:08 +01:00
$sql .= $db -> order ( $sortfield , $sortorder );
2015-03-23 13:40:55 +01:00
2017-01-15 20:49:20 +01:00
$nbtotalofrecords = '' ;
2021-02-25 23:21:30 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_FULL_SCANLIST )) {
2014-05-12 11:00:58 +02:00
$result = $db -> query ( $sql );
$nbtotalofrecords = $db -> num_rows ( $result );
2021-02-25 23:21:30 +01:00
if (( $page * $limit ) > $nbtotalofrecords ) { // if total resultset is smaller then paging size (filtering), goto and load page 0
2018-04-24 11:37:57 +02:00
$page = 0 ;
$offset = 0 ;
}
2014-05-12 11:00:58 +02:00
}
2019-11-12 09:46:08 +01:00
$sql .= $db -> plimit ( $limit + 1 , $offset );
2016-06-21 15:16:33 +02:00
//print $sql;
2013-07-26 11:35:00 +02:00
$resql = $db -> query ( $sql );
2021-02-25 23:21:30 +01:00
if ( $resql ) {
2013-07-26 11:35:00 +02:00
$num = $db -> num_rows ( $resql );
2019-11-12 09:46:08 +01:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
2017-06-14 11:28:42 +02:00
2021-02-25 23:21:30 +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 -> facid ;
2018-11-27 11:09:47 +01:00
2018-11-22 11:36:30 +01:00
header ( " Location: " . DOL_URL_ROOT . '/fourn/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 ( " SuppliersInvoices " ), 'EN:Suppliers_Invoices|FR:FactureFournisseur|ES:Facturas_de_proveedores' );
2018-11-27 11:09:47 +01:00
2021-02-25 23:21:30 +01:00
if ( $socid ) {
2013-07-26 11:35:00 +02:00
$soc = new Societe ( $db );
$soc -> fetch ( $socid );
2021-02-25 23:21:30 +01:00
if ( empty ( $search_company )) {
$search_company = $soc -> name ;
}
2013-07-26 11:35:00 +02:00
}
2019-11-12 09:46:08 +01:00
$param = '&socid=' . $socid ;
2021-02-25 23:21:30 +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 ( $search_all ) {
$param .= '&search_all=' . urlencode ( $search_all );
}
2021-06-10 05:59:29 +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 );
2021-02-25 23:21:30 +01:00
}
2021-06-10 05:59:29 +02:00
if ( $search_datelimit_startday ) {
$param .= '&search_datelimit_startday=' . urlencode ( $search_datelimit_startday );
2021-02-25 23:21:30 +01:00
}
2021-06-10 05:59:29 +02:00
if ( $search_datelimit_startmonth ) {
$param .= '&search_datelimit_startmonth=' . urlencode ( $search_datelimit_startmonth );
2021-02-25 23:21:30 +01:00
}
2021-06-10 05:59:29 +02:00
if ( $search_datelimit_startyear ) {
$param .= '&search_datelimit_startyear=' . urlencode ( $search_datelimit_startyear );
2021-02-25 23:21:30 +01:00
}
2021-06-10 05:59:29 +02:00
if ( $search_datelimit_endday ) {
$param .= '&search_datelimit_endday=' . urlencode ( $search_datelimit_endday );
2021-02-25 23:21:30 +01:00
}
2021-06-10 05:59:29 +02:00
if ( $search_datelimit_endmonth ) {
$param .= '&search_datelimit_endmonth=' . urlencode ( $search_datelimit_endmonth );
}
if ( $search_datelimit_endyear ) {
$param .= '&search_datelimit_endyear=' . urlencode ( $search_datelimit_endyear );
2021-02-25 23:21:30 +01:00
}
if ( $search_ref ) {
$param .= '&search_ref=' . urlencode ( $search_ref );
}
if ( $search_refsupplier ) {
$param .= '&search_refsupplier=' . urlencode ( $search_refsupplier );
}
if ( $search_type != '' ) {
$param .= '&search_type=' . urlencode ( $search_type );
}
if ( $search_label ) {
$param .= '&search_label=' . urlencode ( $search_label );
}
if ( $search_company ) {
$param .= '&search_company=' . urlencode ( $search_company );
}
if ( $search_login ) {
$param .= '&search_login=' . urlencode ( $search_login );
}
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_amount_no_tax ) {
$param .= '&search_amount_no_tax=' . urlencode ( $search_amount_no_tax );
}
if ( $search_amount_all_tax ) {
$param .= '&search_amount_all_tax=' . urlencode ( $search_amount_all_tax );
}
if ( $search_status >= 0 ) {
$param .= " &search_status= " . urlencode ( $search_status );
}
if ( $show_files ) {
$param .= '&show_files=' . urlencode ( $show_files );
}
if ( $option ) {
2021-09-20 03:28:30 +02:00
$param .= " &search_option= " . urlencode ( $option );
2021-02-25 23:21:30 +01:00
}
if ( $optioncss != '' ) {
$param .= '&optioncss=' . urlencode ( $optioncss );
}
if ( $search_categ_sup > 0 ) {
$param .= '&search_categ_sup=' . urlencode ( $search_categ_sup );
}
if ( $search_type_thirdparty != '' && $search_type_thirdparty > 0 ) {
$param .= '&search_type_thirdparty=' . urlencode ( $search_type_thirdparty );
}
2020-11-06 11:52:48 +01:00
2016-06-21 15:16:33 +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-04-07 11:01:51 +02: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 ;
2017-06-14 11:28:42 +02:00
2017-04-07 14:09:19 +02:00
// List of mass actions available
2019-11-12 09:46:08 +01:00
$arrayofmassactions = array (
2021-04-14 14:45:55 +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"),
2017-04-07 14:09:19 +02:00
);
2022-04-25 14:43:58 +02:00
2020-11-25 10:24:44 +01:00
if ( ! empty ( $conf -> paymentbybanktransfer -> enabled ) && ! empty ( $user -> rights -> paymentbybanktransfer -> create )) {
$langs -> load ( 'withdrawals' );
2021-05-25 21:21:09 +02:00
$arrayofmassactions [ 'banktransfertrequest' ] = img_picto ( '' , 'payment' , 'class="pictofixedwidth"' ) . $langs -> trans ( " MakeBankTransferOrder " );
2020-11-25 10:24:44 +01:00
}
2021-02-25 23:21:30 +01:00
if ( $user -> rights -> fournisseur -> facture -> supprimer ) {
2021-04-14 14:45:55 +02:00
$arrayofmassactions [ 'predelete' ] = img_picto ( '' , 'delete' , 'class="pictofixedwidth"' ) . $langs -> trans ( " Delete " );
2021-02-25 23:21:30 +01:00
}
2022-04-25 14:28:57 +02:00
if ( in_array ( $massaction , array ( 'presend' , 'predelete' ))) {
2021-02-25 23:21:30 +01:00
$arrayofmassactions = array ();
}
2019-11-12 09:46:08 +01:00
$massactionbutton = $form -> selectMassAction ( '' , $arrayofmassactions );
2017-06-14 11:28:42 +02:00
2020-09-18 10:46:23 +02:00
$url = DOL_URL_ROOT . '/fourn/facture/card.php?action=create' ;
2021-02-25 23:21:30 +01:00
if ( ! empty ( $socid )) {
2021-05-25 21:21:09 +02:00
$url .= '&socid=' . urlencode ( $socid );
2021-02-25 23:21:30 +01:00
}
2021-04-12 07:37:34 +02:00
$newcardbutton = dolGetButtonTitle ( $langs -> trans ( 'NewBill' ), '' , 'fa fa-plus-circle' , $url , '' , ( $user -> rights -> fournisseur -> facture -> creer || $user -> rights -> supplier_invoice -> creer ));
2018-03-30 16:54:38 +02:00
2016-06-21 15:16:33 +02:00
$i = 0 ;
print '<form method="POST" name="searchFormList" action="' . $_SERVER [ " PHP_SELF " ] . '">' . " \n " ;
2021-02-25 23:21:30 +01:00
if ( $optioncss != '' ) {
print '<input type="hidden" name="optioncss" value="' . $optioncss . '">' ;
}
2019-12-18 23:12:31 +01:00
print '<input type="hidden" name="token" value="' . newToken () . '">' ;
2016-06-21 15:16:33 +02:00
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">' ;
2015-10-17 02:41:09 +02:00
print '<input type="hidden" name="action" value="list">' ;
print '<input type="hidden" name="sortfield" value="' . $sortfield . '">' ;
print '<input type="hidden" name="sortorder" value="' . $sortorder . '">' ;
2017-01-11 20:48:32 +01:00
print '<input type="hidden" name="socid" value="' . $socid . '">' ;
2015-10-17 02:41:09 +02:00
2020-04-25 13:49:44 +02:00
print_barre_liste ( $langs -> trans ( " BillsSuppliers " ) . ( $socid ? ' ' . $soc -> name : '' ), $page , $_SERVER [ " PHP_SELF " ], $param , $sortfield , $sortorder , $massactionbutton , $num , $nbtotalofrecords , 'supplier_invoice' , 0 , $newcardbutton , '' , $limit , 0 , 0 , 1 );
2017-06-14 11:28:42 +02:00
2019-11-12 09:46:08 +01:00
$topicmail = " SendBillRef " ;
$modelmail = " invoice_supplier_send " ;
$objecttmp = new FactureFournisseur ( $db );
$trackid = 'sinv' . $object -> id ;
2017-11-11 16:03:22 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/massactions_pre.tpl.php' ;
2017-09-16 15:39:52 +02:00
2021-02-25 23:21:30 +01:00
if ( $search_all ) {
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 " , $search_all ) . join ( ', ' , $fieldstosearchall ) . '</div>' ;
2017-10-13 13:28:26 +02:00
}
2017-06-14 11:28:42 +02:00
2021-02-25 23:21:30 +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-25 23:21:30 +01:00
$langs -> load ( " commercial " );
$moreforfilter .= '<div class="divsearchfield">' ;
2021-03-29 11:58:51 +02:00
$tmptitle = $langs -> trans ( 'ThirdPartiesOfSaleRepresentative' );
2022-05-03 17:05:14 +02:00
$moreforfilter .= img_picto ( $tmptitle , 'user' , 'class="pictofixedwidth"' ) . $formother -> select_salesrepresentatives ( $search_sale , 'search_sale' , $user , 0 , $tmptitle , 'maxwidth200' );
2021-02-25 23:21:30 +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-29 11:58:51 +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 , '' , 'maxwidth200' );
2021-02-25 23:21:30 +01:00
$moreforfilter .= '</div>' ;
2017-10-13 13:28:26 +02:00
}
2016-06-21 15:16:33 +02:00
// If the user can view prospects other than his'
2021-02-25 23:21:30 +01:00
if ( ! empty ( $conf -> categorie -> enabled ) && $user -> rights -> categorie -> lire && ( $user -> rights -> produit -> lire || $user -> rights -> service -> lire )) {
2016-06-21 15:16:33 +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-29 11:58:51 +02:00
$tmptitle = $langs -> trans ( 'IncludingProductWithTag' );
2016-06-21 15:16:33 +02:00
$cate_arbo = $form -> select_all_categories ( Categorie :: TYPE_PRODUCT , null , 'parent' , null , null , 1 );
2021-11-27 01:24:32 +01: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 , 'maxwidth300 widthcentpercentminusx' , 1 );
2019-11-12 09:46:08 +01:00
$moreforfilter .= '</div>' ;
2016-06-21 15:16:33 +02:00
}
2020-11-06 11:52:48 +01:00
2021-02-25 23:21:30 +01:00
if ( ! empty ( $conf -> categorie -> enabled )) {
2020-11-04 12:06:23 +01:00
require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php' ;
$moreforfilter .= '<div class="divsearchfield">' ;
2021-03-29 11:58:51 +02:00
$tmptitle = $langs -> trans ( 'SuppliersCategoriesShort' );
$moreforfilter .= img_picto ( $tmptitle , 'category' , 'class="pictofixedwidth"' ) . $formother -> select_categories ( 'supplier' , $search_categ_sup , 'search_categ_sup' , 1 , $tmptitle );
2020-11-04 12:06:23 +01:00
$moreforfilter .= '</div>' ;
}
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-25 23:21:30 +01:00
if ( empty ( $reshook )) {
$moreforfilter .= $hookmanager -> resPrint ;
} else {
$moreforfilter = $hookmanager -> resPrint ;
}
2016-06-21 15:16:33 +02:00
2021-02-25 23:21:30 +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>' ;
}
2016-06-21 15:16:33 +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-02-25 23:21:30 +01:00
if ( $massactionbutton ) {
$selectedfields .= $form -> showCheckAddButtons ( 'checkforselect' , 1 );
}
2017-06-14 11:28:42 +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 " ;
2013-07-26 11:35:00 +02:00
2015-04-06 19:11:31 +02:00
// Line for filters
2017-03-28 18:42:23 +02:00
print '<tr class="liste_titre_filter">' ;
2016-06-21 15:16:33 +02:00
// Ref
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.ref' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre left">' ;
2021-11-07 12:34:08 +01:00
print '<input class="flat maxwidth50" type="text" name="search_ref" value="' . dol_escape_htmltag ( $search_ref ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2015-01-24 21:41:40 +01:00
}
2016-06-21 15:16:33 +02:00
// Ref supplier
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.ref_supplier' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
2021-11-07 12:34:08 +01:00
print '<input class="flat maxwidth75" type="text" name="search_refsupplier" value="' . dol_escape_htmltag ( $search_refsupplier ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
2018-02-21 17:51:44 +01:00
// Type
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.type' ][ 'checked' ])) {
2018-02-21 17:51:44 +01:00
print '<td class="liste_titre maxwidthonsmartphone">' ;
2019-11-12 09:46:08 +01:00
$listtype = array (
2018-02-21 17:51:44 +01:00
FactureFournisseur :: TYPE_STANDARD => $langs -> trans ( " InvoiceStandard " ),
FactureFournisseur :: TYPE_REPLACEMENT => $langs -> trans ( " InvoiceReplacement " ),
FactureFournisseur :: TYPE_CREDIT_NOTE => $langs -> trans ( " InvoiceAvoir " ),
FactureFournisseur :: TYPE_DEPOSIT => $langs -> trans ( " InvoiceDeposit " ),
);
2020-10-31 14:32:18 +01:00
/*
2018-02-21 17:51:44 +01:00
if ( ! empty ( $conf -> global -> INVOICE_USE_SITUATION ))
{
$listtype [ Facture :: TYPE_SITUATION ] = $langs -> trans ( " InvoiceSituation " );
}
2021-02-25 23:21:30 +01:00
*/
2018-02-21 17:51:44 +01:00
//$listtype[Facture::TYPE_PROFORMA]=$langs->trans("InvoiceProForma"); // A proformat invoice is not an invoice but must be an order.
print $form -> selectarray ( 'search_type' , $listtype , $search_type , 1 , 0 , 0 , '' , 0 , 0 , 0 , 'ASC' , 'maxwidth100' );
print '</td>' ;
}
2016-06-21 15:16:33 +02:00
// Label
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.label' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
2021-11-07 12:34:08 +01:00
print '<input class="flat maxwidth75" type="text" name="search_label" value="' . dol_escape_htmltag ( $search_label ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
// Date invoice
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.datef' ][ 'checked' ])) {
2021-06-10 05:59:29 +02:00
print '<td class="liste_titre center">' ;
print '<div class="nowrap">' ;
print $form -> selectDate ( $search_date_start ? $search_date_start : - 1 , 'search_date_start' , 0 , 0 , 1 , '' , 1 , 0 , 0 , '' , '' , '' , '' , 1 , '' , $langs -> trans ( 'From' ));
print '</div>' ;
print '<div class="nowrap">' ;
print $form -> selectDate ( $search_date_end ? $search_date_end : - 1 , 'search_date_end' , 0 , 0 , 1 , '' , 1 , 0 , 0 , '' , '' , '' , '' , 1 , '' , $langs -> trans ( 'to' ));
print '</div>' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
// Date due
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.date_lim_reglement' ][ 'checked' ])) {
2021-06-10 05:59:29 +02:00
print '<td class="liste_titre center">' ;
print '<div class="nowrap">' ;
/*
print $langs -> trans ( 'From' ) . ' ' ;
print $form -> selectDate ( $search_datelimit_start ? $search_datelimit_start : - 1 , 'search_datelimit_start' , 0 , 0 , 1 );
print '</div>' ;
print '<div class="nowrap">' ;
print $langs -> trans ( 'to' ) . ' ' ; */
print $form -> selectDate ( $search_datelimit_end ? $search_datelimit_end : - 1 , 'search_datelimit_end' , 0 , 0 , 1 , '' , 1 , 0 , 0 , '' , '' , '' , '' , 1 , '' , $langs -> trans ( " Before " ));
print '<br><input type="checkbox" name="search_option" value="late"' . ( $option == 'late' ? ' checked' : '' ) . '> ' . $langs -> trans ( " Alert " );
print '</div>' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
// Project
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'p.ref' ][ 'checked' ])) {
2021-11-07 12:34:08 +01:00
print '<td class="liste_titre"><input class="flat maxwidth50" type="text" name="search_project" value="' . dol_escape_htmltag ( $search_project ) . '"></td>' ;
2016-06-21 15:16:33 +02:00
}
// Thirpdarty
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) {
2022-07-31 22:46:53 +02:00
print '<td class="liste_titre"><input class="flat maxwidth50" type="text" name="search_company" value="' . dol_escape_htmltag ( $search_company ) . '"' . ( $socid > 0 ? " disabled " : " " ) . '></td>' ;
2016-06-21 15:16:33 +02:00
}
// Town
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ])) {
print '<td class="liste_titre"><input class="flat maxwidth50" type="text" name="search_town" value="' . dol_escape_htmltag ( $search_town ) . '"></td>' ;
}
2016-06-21 15:16:33 +02:00
// Zip
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ])) {
print '<td class="liste_titre center"><input class="flat maxwidth50" type="text" name="search_zip" value="' . dol_escape_htmltag ( $search_zip ) . '"></td>' ;
}
2016-06-21 15:16:33 +02:00
// State
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
print '<input class="flat" size="4" type="text" name="search_state" value="' . dol_escape_htmltag ( $search_state ) . '">' ;
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
// Country
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre center">' ;
2019-03-02 12:57:07 +01:00
print $form -> select_country ( $search_country , 'search_country' , '' , 0 , 'minwidth100imp maxwidth100' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
// Company type
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre maxwidthonsmartphone center">' ;
2021-02-04 09:52:16 +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 ), '' , 1 );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
2020-10-08 19:22:21 +02:00
// Condition of payment
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_cond_reglement' ][ 'checked' ])) {
2020-10-08 19:22:21 +02:00
print '<td class="liste_titre left">' ;
$form -> select_conditions_paiements ( $search_paymentcond , 'search_paymentcond' , - 1 , 1 , 1 , 'maxwidth100' );
print '</td>' ;
}
2016-06-21 15:16:33 +02:00
// Payment mode
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_mode_reglement' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre left">' ;
2020-10-08 19:22:21 +02:00
$form -> select_types_paiements ( $search_paymentmode , 'search_paymentmode' , '' , 0 , 1 , 1 , 20 , 1 , 'maxwidth100' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ht' ][ 'checked' ])) {
2019-08-23 14:01:13 +02:00
// Amount without tax
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre right">' ;
2017-10-13 13:28:26 +02:00
print '<input class="flat" type="text" size="5" name="search_montant_ht" value="' . dol_escape_htmltag ( $search_montant_ht ) . '">' ;
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_vat' ][ 'checked' ])) {
2019-08-23 14:01:13 +02:00
// Amount vat
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre right">' ;
2017-10-13 13:28:26 +02:00
print '<input class="flat" type="text" size="5" name="search_montant_vat" value="' . dol_escape_htmltag ( $search_montant_vat ) . '">' ;
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax1' ][ 'checked' ])) {
2019-08-23 14:01:13 +02:00
// Amount tax 1
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre right">' ;
2021-11-07 12:34:08 +01:00
print '<input class="flat" type="text" size="5" name="search_montant_localtax1" value="' . dol_escape_htmltag ( $search_montant_localtax1 ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2017-04-13 09:12:01 +02:00
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax2' ][ 'checked' ])) {
2019-08-23 14:01:13 +02:00
// Amount tax 2
2021-02-25 23:21:30 +01:00
print '<td class="liste_titre right">' ;
2021-11-07 12:34:08 +01:00
print '<input class="flat" type="text" size="5" name="search_montant_localtax2" value="' . dol_escape_htmltag ( $search_montant_localtax2 ) . '">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ttc' ][ 'checked' ])) {
2019-08-23 14:01:13 +02:00
// Amount inc tac
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre right">' ;
2017-10-13 13:28:26 +02:00
print '<input class="flat" type="text" size="5" name="search_montant_ttc" value="' . dol_escape_htmltag ( $search_montant_ttc ) . '">' ;
print '</td>' ;
}
2021-02-25 23:21:30 +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-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'dynamount_payed' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre right">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'rtp' ][ 'checked' ])) {
2019-05-19 13:51:47 +02:00
print '<td class="liste_titre">' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
2014-10-22 17:47:12 +02:00
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_code' ][ 'checked' ])) {
2020-03-03 09:38:05 +01:00
// Currency
print '<td class="liste_titre">' ;
print $form -> selectMultiCurrency ( $search_multicurrency_code , 'search_multicurrency_code' , 1 );
print '</td>' ;
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_tx' ][ 'checked' ])) {
2020-03-03 09:38:05 +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-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_total_ht' ][ 'checked' ])) {
2020-03-03 09:38:05 +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-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_total_vat' ][ 'checked' ])) {
2020-03-03 09:38:05 +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-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_total_ttc' ][ 'checked' ])) {
2020-03-03 09:38:05 +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-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'multicurrency_dynamount_payed' ][ 'checked' ])) {
2020-03-03 09:38:05 +01:00
print '<td class="liste_titre">' ;
print '</td>' ;
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'multicurrency_rtp' ][ 'checked' ])) {
2020-03-03 09:38:05 +01:00
print '<td class="liste_titre right">' ;
print '</td>' ;
}
2016-06-21 15:16:33 +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-06-21 15:16:33 +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-06-21 15:16:33 +02:00
print $hookmanager -> resPrint ;
// Date creation
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.datec' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
// Date modification
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.tms' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="liste_titre">' ;
print '</td>' ;
2016-06-21 15:16:33 +02:00
}
// Status
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_statut' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre maxwidthonsmartphone right">' ;
2019-11-12 09:46:08 +01:00
$liststatus = array ( '0' => $langs -> trans ( " Draft " ), '1' => $langs -> trans ( " Unpaid " ), '2' => $langs -> trans ( " Paid " ));
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-06-21 15:16:33 +02:00
}
// Action column
2019-03-07 20:46:38 +01:00
print '<td class="liste_titre middle">' ;
2019-11-12 09:46:08 +01:00
$searchpicto = $form -> showFilterButtons ();
2017-05-14 21:06:33 +02:00
print $searchpicto ;
2013-07-26 11:35:00 +02:00
print '</td>' ;
2016-06-21 15:16:33 +02:00
2013-07-26 11:35:00 +02:00
print " </tr> \n " ;
2017-03-28 18:42:23 +02:00
print '<tr class="liste_titre">' ;
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.ref' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.ref' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.ref,f.rowid' , '' , $param , '' , $sortfield , $sortorder );
}
if ( ! empty ( $arrayfields [ 'f.ref_supplier' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.ref_supplier' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 'f.ref_supplier' , '' , $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 );
}
if ( ! empty ( $arrayfields [ 'f.label' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.label' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], " f.libelle,f.rowid " , '' , $param , '' , $sortfield , $sortorder );
}
if ( ! empty ( $arrayfields [ 'f.datef' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.datef' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.datef,f.rowid' , '' , $param , '' , $sortfield , $sortorder , 'center ' );
}
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 , '' , $sortfield , $sortorder , 'center ' );
}
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 [ 's.nom' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 's.nom' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 's.nom' , '' , $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 , 'center ' );
}
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 , '' , $sortfield , $sortorder , 'center ' );
}
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'typent.code' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " typent.code " , " " , $param , '' , $sortfield , $sortorder , 'center ' );
}
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.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.total_ht' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.total_ht' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.total_ht' , '' , $param , '' , $sortfield , $sortorder , 'right ' );
}
if ( ! empty ( $arrayfields [ 'f.total_vat' ][ 'checked' ])) {
2021-03-01 04:07:31 +01:00
print_liste_field_titre ( $arrayfields [ 'f.total_vat' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.total_tva' , '' , $param , '' , $sortfield , $sortorder , 'right ' );
2021-02-25 23:21:30 +01:00
}
if ( ! empty ( $arrayfields [ 'f.total_localtax1' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.total_localtax1' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.localtax1' , '' , $param , '' , $sortfield , $sortorder , 'right ' );
}
if ( ! empty ( $arrayfields [ 'f.total_localtax2' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.total_localtax2' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.localtax2' , '' , $param , '' , $sortfield , $sortorder , 'right ' );
}
if ( ! empty ( $arrayfields [ 'f.total_ttc' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.total_ttc' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], 'f.total_ttc' , '' , $param , '' , $sortfield , $sortorder , 'right ' );
}
if ( ! empty ( $arrayfields [ 'u.login' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'u.login' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 'u.login' , '' , $param , 'align="center"' , $sortfield , $sortorder );
}
if ( ! empty ( $arrayfields [ 'dynamount_payed' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'dynamount_payed' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], '' , '' , $param , '' , $sortfield , $sortorder , 'right ' );
}
if ( ! empty ( $arrayfields [ 'rtp' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'rtp' ][ 'label' ], $_SERVER [ 'PHP_SELF' ], '' , '' , $param , '' , $sortfield , $sortorder , 'right ' );
}
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 );
}
2017-03-28 18:42:23 +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-03-28 18:42:23 +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-03-28 18:42:23 +02:00
print $hookmanager -> resPrint ;
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.datec' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.datec' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.datec " , " " , $param , '' , $sortfield , $sortorder , 'center nowrap ' );
}
if ( ! empty ( $arrayfields [ 'f.tms' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.tms' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " f.tms " , " " , $param , '' , $sortfield , $sortorder , 'center nowrap ' );
}
if ( ! empty ( $arrayfields [ 'f.fk_statut' ][ 'checked' ])) {
print_liste_field_titre ( $arrayfields [ 'f.fk_statut' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " fk_statut,paye,type " , " " , $param , '' , $sortfield , $sortorder , 'right ' );
}
2019-03-07 20:46:38 +01:00
print_liste_field_titre ( $selectedfields , $_SERVER [ " PHP_SELF " ], " " , '' , '' , '' , $sortfield , $sortorder , 'center maxwidthsearch ' );
2017-06-14 11:28:42 +02:00
print " </tr> \n " ;
2019-11-12 09:46:08 +01:00
$facturestatic = new FactureFournisseur ( $db );
$supplierstatic = new Fournisseur ( $db );
$projectstatic = new Project ( $db );
2020-04-01 17:09:01 +02:00
$userstatic = new User ( $db );
2017-06-14 11:28:42 +02:00
2021-02-25 23:21:30 +01:00
if ( $num > 0 ) {
2019-11-12 09:46:08 +01:00
$i = 0 ;
$totalarray = array ();
2021-02-25 23:21:30 +01:00
while ( $i < min ( $num , $limit )) {
2016-06-21 15:16:33 +02:00
$obj = $db -> fetch_object ( $resql );
2017-06-14 11:28:42 +02:00
2019-11-12 09:46:08 +01:00
$datelimit = $db -> jdate ( $obj -> datelimite );
$facturestatic -> id = $obj -> facid ;
$facturestatic -> ref = $obj -> ref ;
$facturestatic -> type = $obj -> type ;
$facturestatic -> ref_supplier = $obj -> ref_supplier ;
2016-06-21 15:16:33 +02:00
$facturestatic -> date_echeance = $db -> jdate ( $obj -> datelimite );
$facturestatic -> statut = $obj -> fk_statut ;
2020-01-15 19:49:45 +01:00
$facturestatic -> note_public = $obj -> note_public ;
$facturestatic -> note_private = $obj -> note_private ;
2020-03-03 09:38:05 +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-02-18 12:28:18 +01:00
2019-11-12 09:46:08 +01:00
$thirdparty -> id = $obj -> socid ;
$thirdparty -> name = $obj -> name ;
$thirdparty -> client = $obj -> client ;
$thirdparty -> fournisseur = $obj -> fournisseur ;
$thirdparty -> code_client = $obj -> code_client ;
$thirdparty -> code_compta_client = $obj -> code_compta_client ;
$thirdparty -> code_fournisseur = $obj -> code_fournisseur ;
$thirdparty -> code_compta_fournisseur = $obj -> code_compta_fournisseur ;
$thirdparty -> email = $obj -> email ;
$thirdparty -> country_code = $obj -> country_code ;
2018-01-17 16:26:24 +01:00
2017-05-21 03:23:44 +02:00
$paiement = $facturestatic -> getSommePaiement ();
$totalcreditnotes = $facturestatic -> getSumCreditNotesUsed ();
$totaldeposits = $facturestatic -> getSumDepositsUsed ();
$totalpay = $paiement + $totalcreditnotes + $totaldeposits ;
$remaintopay = $obj -> total_ttc - $totalpay ;
2020-03-03 09:38:05 +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 );
2017-06-14 11:28:42 +02:00
2020-02-24 05:23:34 +01:00
$facturestatic -> alreadypaid = ( $paiement ? $paiement : 0 );
2020-05-19 23:22:40 +02:00
$facturestatic -> paye = $obj -> paye ;
$facturestatic -> statut = $obj -> fk_statut ;
$facturestatic -> type = $obj -> type ;
2020-02-24 05:23:34 +01:00
2020-10-31 14:32:18 +01:00
//If invoice has been converted and the conversion has been used, we dont have remain to pay on invoice
if ( $facturestatic -> type == FactureFournisseur :: TYPE_CREDIT_NOTE ) {
if ( $facturestatic -> isCreditNoteUsed ()) {
$remaintopay = - $facturestatic -> getSumFromThisCreditNotesNotUsed ();
}
}
2019-02-18 12:28:18 +01:00
2017-10-13 13:28:26 +02:00
print '<tr class="oddeven">' ;
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.ref' ][ 'checked' ])) {
2021-11-27 01:11:59 +01:00
print '<td class="nowraponall">' ;
2017-10-13 13:28:26 +02:00
print '<table class="nobordernopadding"><tr class="nocellnopadd">' ;
// Picto + Ref
2021-11-27 01:24:32 +01:00
print '<td class="nobordernopadding nowraponall">' ;
2020-01-15 19:49:45 +01:00
print $facturestatic -> getNomUrl ( 1 , '' , 0 , 0 , '' , 0 , - 1 , 1 );
2019-11-12 09:46:08 +01:00
$filename = dol_sanitizeFileName ( $obj -> ref );
$filedir = $conf -> fournisseur -> facture -> dir_output . '/' . get_exdir ( $obj -> facid , 2 , 0 , 0 , $facturestatic , 'invoice_supplier' ) . dol_sanitizeFileName ( $obj -> ref );
2019-01-27 11:55:16 +01:00
$subdir = get_exdir ( $obj -> facid , 2 , 0 , 0 , $facturestatic , 'invoice_supplier' ) . dol_sanitizeFileName ( $obj -> ref );
2016-07-01 02:39:29 +02:00
print $formfile -> getDocumentsLink ( 'facture_fournisseur' , $subdir , $filedir );
2016-08-05 12:18:51 +02:00
print '</td></tr></table>' ;
2017-06-14 11:28:42 +02:00
2017-10-13 13:28:26 +02:00
print " </td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2017-06-14 11:28:42 +02:00
2018-01-17 16:26:24 +01:00
// Supplier ref
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.ref_supplier' ][ 'checked' ])) {
2021-04-06 20:28:00 +02:00
print '<td class="nowrap tdoverflowmax150" title="' . dol_escape_htmltag ( $obj -> ref_supplier ) . '">' ;
2017-10-13 13:28:26 +02:00
print $obj -> ref_supplier ;
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2018-03-31 18:48:27 +02:00
2018-02-21 17:51:44 +01:00
// Type
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.type' ][ 'checked' ])) {
2018-02-21 17:51:44 +01:00
print '<td class="nowrap">' ;
print $facturestatic -> getLibType ();
print " </td> " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2018-02-21 17:51:44 +01:00
}
2017-06-14 11:28:42 +02:00
2016-06-21 15:16:33 +02:00
// Label
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.label' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="nowrap">' ;
print $obj -> label ;
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2017-06-14 11:28:42 +02:00
2016-06-21 15:16:33 +02:00
// Date
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.datef' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="center nowrap">' ;
2019-01-27 11:55:16 +01:00
print dol_print_date ( $db -> jdate ( $obj -> datef ), 'day' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Date limit
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.date_lim_reglement' ][ 'checked' ])) {
2021-09-20 03:28:30 +02:00
print '<td class="center nowraponall">' . dol_print_date ( $datelimit , 'day' );
2021-02-25 23:21:30 +01:00
if ( $facturestatic -> hasDelay ()) {
2021-09-20 03:28:30 +02:00
print img_warning ( $langs -> trans ( 'Alert' ) . ' - ' . $langs -> trans ( 'Late' ));
2017-10-13 13:28:26 +02:00
}
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Project
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'p.ref' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="nowrap">' ;
2021-02-25 23:21:30 +01:00
if ( $obj -> project_id > 0 ) {
2020-03-12 12:45:44 +01:00
$projectstatic -> id = $obj -> project_id ;
$projectstatic -> ref = $obj -> project_ref ;
$projectstatic -> title = $obj -> project_label ;
2017-10-13 13:28:26 +02:00
print $projectstatic -> getNomUrl ( 1 );
}
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Third party
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="tdoverflowmax200">' ;
2019-01-27 11:55:16 +01:00
print $thirdparty -> getNomUrl ( 1 , 'supplier' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Town
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print '<td class="nocellnopadd">' ;
print $obj -> town ;
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Zip
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ])) {
2022-08-13 15:08:36 +02:00
print '<td class="nocellnopadd center tdoverflowmax100" title="' . dol_escape_htmltag ( $obj -> zip ) . '">' ;
print dol_escape_htmltag ( $obj -> zip );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// State
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ])) {
2017-10-13 13:28:26 +02:00
print " <td> " . $obj -> state_name . " </td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Country
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="center">' ;
2020-03-12 12:45:44 +01:00
$tmparray = getCountry ( $obj -> fk_pays , 'all' );
2017-10-13 13:28:26 +02:00
print $tmparray [ 'label' ];
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Type ent
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="center">' ;
2021-02-25 23:21:30 +01:00
if ( empty ( $typenArray )) {
$typenArray = $formcompany -> typent_array ( 1 );
}
2017-10-13 13:28:26 +02:00
print $typenArray [ $obj -> typent_code ];
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
2020-10-08 19:22:21 +02:00
// Payment condition
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_cond_reglement' ][ 'checked' ])) {
2021-04-06 20:23:44 +02:00
print '<td class="tdoverflowmax125">' ;
2021-10-05 10:54:22 +02:00
$form -> form_conditions_reglement ( $_SERVER [ 'PHP_SELF' ], $obj -> fk_cond_reglement , 'none' , 1 );
2020-10-08 19:22:21 +02:00
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-10-08 19:22:21 +02:00
}
2017-10-13 13:28:26 +02:00
// Payment mode
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_mode_reglement' ][ 'checked' ])) {
2021-04-06 20:23:44 +02:00
print '<td class="tdoverflowmax125">' ;
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-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Amount HT
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ht' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . price ( $obj -> total_ht ) . " </span></td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
if ( ! $i ) {
$totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'f.total_ht' ;
}
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'f.total_ht' ] += $obj -> total_ht ;
2017-10-13 13:28:26 +02:00
}
// Amount VAT
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_vat' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . price ( $obj -> total_vat ) . " </span></td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
if ( ! $i ) {
$totalarray [ 'pos' ][ $totalarray [ 'nbfield' ]] = 'f.total_vat' ;
}
2019-11-05 12:47:38 +01:00
$totalarray [ 'val' ][ 'f.total_vat' ] += $obj -> total_vat ;
2017-10-13 13:28:26 +02:00
}
// Amount LocalTax1
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax1' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . price ( $obj -> total_localtax1 ) . " </span></td> \n " ;
2021-02-25 23:21:30 +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-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_localtax2' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . price ( $obj -> total_localtax2 ) . " </span></td> \n " ;
2021-02-25 23:21:30 +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-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.total_ttc' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . price ( $obj -> total_ttc ) . " </span></td> \n " ;
2021-02-25 23:21:30 +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-10-05 13:34:25 +02:00
$userstatic -> id = $obj -> fk_user_author ;
$userstatic -> login = $obj -> login ;
$userstatic -> lastname = $obj -> lastname ;
$userstatic -> firstname = $obj -> firstname ;
$userstatic -> email = $obj -> user_email ;
$userstatic -> statut = $obj -> user_statut ;
$userstatic -> entity = $obj -> entity ;
$userstatic -> photo = $obj -> photo ;
$userstatic -> office_phone = $obj -> office_phone ;
$userstatic -> office_fax = $obj -> office_fax ;
$userstatic -> user_mobile = $obj -> user_mobile ;
$userstatic -> job = $obj -> job ;
$userstatic -> gender = $obj -> gender ;
2020-04-01 17:09:01 +02:00
// Author
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'u.login' ][ 'checked' ])) {
2021-10-05 13:34:25 +02:00
print '<td class="tdoverflowmax200">' ;
2021-02-25 23:21:30 +01:00
if ( $userstatic -> id ) {
2021-10-05 13:34:25 +02:00
print $userstatic -> getLoginUrl ( - 1 );
2021-02-25 23:21:30 +01:00
} else {
print ' ' ;
}
2020-04-01 17:09:01 +02:00
print " </td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-04-01 17:09:01 +02:00
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'dynamount_payed' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . ( ! empty ( $totalpay ) ? price ( $totalpay , 0 , $langs ) : '' ) . '</span></td>' ; // TODO Use a denormalized field
2021-02-25 23:21:30 +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
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'rtp' ][ 'checked' ])) {
2020-03-12 12:45:44 +01:00
print '<td class="right nowrap">' . ( ! empty ( $remaintopay ) ? price ( $remaintopay , 0 , $langs ) : ' ' ) . '</td>' ; // TODO Use a denormalized field
2021-02-25 23:21:30 +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-03-03 09:38:05 +01:00
// Currency
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_code' ][ 'checked' ])) {
2020-03-12 12:45:44 +01:00
print '<td class="nowrap">' . $obj -> multicurrency_code . ' - ' . $langs -> trans ( 'Currency' . $obj -> multicurrency_code ) . " </td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-03-03 09:38:05 +01:00
}
// Currency rate
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_tx' ][ 'checked' ])) {
2020-03-03 09:38:05 +01:00
print '<td class="nowrap">' ;
2020-03-12 12:45:44 +01:00
$form -> form_multicurrency_rate ( $_SERVER [ 'PHP_SELF' ] . '?id=' . $obj -> rowid , $obj -> multicurrency_tx , 'none' , $obj -> multicurrency_code );
2020-03-03 09:38:05 +01:00
print " </td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-03-03 09:38:05 +01:00
}
// Amount HT
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_total_ht' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . price ( $obj -> multicurrency_total_ht ) . " </span></td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-03-03 09:38:05 +01:00
}
// Amount VAT
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_total_vat' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . price ( $obj -> multicurrency_total_vat ) . " </span></td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-03-03 09:38:05 +01:00
}
// Amount TTC
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.multicurrency_total_ttc' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . price ( $obj -> multicurrency_total_ttc ) . " </span></td> \n " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-03-03 09:38:05 +01:00
}
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'multicurrency_dynamount_payed' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' . ( ! empty ( $multicurrency_totalpay ) ? price ( $multicurrency_totalpay , 0 , $langs ) : '' ) . '</span></td>' ; // TODO Use a denormalized field
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-03-03 09:38:05 +01:00
}
// Pending amount
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'multicurrency_rtp' ][ 'checked' ])) {
2021-04-03 02:11:16 +02:00
print '<td class="right nowrap"><span class="amount">' ;
print ( ! empty ( $multicurrency_remaintopay ) ? price ( $multicurrency_remaintopay , 0 , $langs ) : '' );
print '</span></td>' ; // TODO Use a denormalized field
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2020-03-03 09:38:05 +01: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-11-12 09:46:08 +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 ;
2021-04-03 02:11:16 +02:00
2017-10-13 13:28:26 +02:00
// Date creation
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.datec' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="center nowrap">' ;
2017-10-13 13:28:26 +02:00
print dol_print_date ( $db -> jdate ( $obj -> date_creation ), 'dayhour' , 'tzuser' );
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Date modification
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.tms' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="center nowrap">' ;
2017-10-13 13:28:26 +02:00
print dol_print_date ( $db -> jdate ( $obj -> date_update ), 'dayhour' , 'tzuser' );
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Status
2021-02-25 23:21:30 +01:00
if ( ! empty ( $arrayfields [ 'f.fk_statut' ][ 'checked' ])) {
2019-03-07 20:46:38 +01:00
print '<td class="right nowrap">' ;
2019-01-27 11:55:16 +01:00
print $facturestatic -> LibStatut ( $obj -> paye , $obj -> fk_statut , 5 , $paiement , $obj -> type );
2017-10-13 13:28:26 +02:00
print " </td> " ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
}
// Action column
2019-03-07 20:46:38 +01:00
print '<td class="nowrap center">' ;
2021-02-25 23:21:30 +01:00
if ( $massactionbutton || $massaction ) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
2019-11-12 09:46:08 +01:00
$selected = 0 ;
2021-02-25 23:21:30 +01:00
if ( in_array ( $obj -> facid , $arrayofselected )) {
$selected = 1 ;
}
2019-11-12 09:46:08 +01:00
print '<input id="cb' . $obj -> facid . '" class="flat checkforselect" type="checkbox" name="toselect[]" value="' . $obj -> facid . '"' . ( $selected ? ' checked="checked"' : '' ) . '>' ;
2017-10-13 13:28:26 +02:00
}
print '</td>' ;
2021-02-25 23:21:30 +01:00
if ( ! $i ) {
$totalarray [ 'nbfield' ] ++ ;
}
2017-06-14 11:28:42 +02:00
2013-07-26 11:35:00 +02:00
print " </tr> \n " ;
2017-06-14 11:28:42 +02:00
2016-06-21 15:16:33 +02:00
$i ++ ;
2013-07-26 11:35:00 +02:00
}
2017-06-14 11:28:42 +02:00
2017-10-13 13:28:26 +02:00
// Show total line
2019-11-05 12:47:38 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/list_print_total.tpl.php' ;
2013-07-26 11:35:00 +02:00
}
2016-06-21 15:16:33 +02:00
$db -> free ( $resql );
2017-06-14 11:28:42 +02:00
2019-11-12 09:46:08 +01:00
$parameters = array ( 'arrayfields' => $arrayfields , 'sql' => $sql );
$reshook = $hookmanager -> executeHooks ( 'printFieldListFooter' , $parameters ); // Note that $action and $object may have been modified by hook
2016-06-21 15:16:33 +02:00
print $hookmanager -> resPrint ;
2017-06-14 11:28:42 +02:00
2013-07-26 11:35:00 +02:00
print " </table> \n " ;
2017-10-13 13:28:26 +02:00
print '</div>' ;
2017-06-14 11:28:42 +02:00
2013-07-26 11:35:00 +02:00
print " </form> \n " ;
2017-06-14 11:28:42 +02:00
2019-11-12 09:46:08 +01:00
$hidegeneratedfilelistifempty = 1 ;
2021-02-25 23:21:30 +01:00
if ( $massaction == 'builddoc' || $action == 'remove_file' || $show_files ) {
$hidegeneratedfilelistifempty = 0 ;
}
2018-02-21 11:02:45 +01:00
2020-10-31 14:32:18 +01:00
// Show list of available documents
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?sortfield=' . $sortfield . '&sortorder=' . $sortorder ;
$urlsource .= str_replace ( '&' , '&' , $param );
2018-02-21 11:02:45 +01:00
2020-10-31 14:32:18 +01:00
$filedir = $diroutputmassaction ;
$genallowed = $user -> rights -> facture -> lire ;
$delallowed = $user -> rights -> facture -> creer ;
$title = '' ;
2018-02-21 11:02:45 +01:00
2020-10-31 14:32:18 +01:00
print $formfile -> showdocuments ( 'massfilesarea_supplier_invoice' , '' , $filedir , $urlsource , 0 , $delallowed , '' , 1 , 1 , 0 , 48 , 1 , $param , $title , '' , '' , '' , null , $hidegeneratedfilelistifempty );
2020-05-21 15:05:19 +02:00
} else {
2013-07-26 11:35:00 +02:00
dol_print_error ( $db );
}
2018-08-12 22:40:47 +02:00
// End of page
2013-07-26 11:35:00 +02:00
llxFooter ();
$db -> close ();