123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026 |
- <?php
- /* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2020 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
- * Copyright (C) 2014-2019 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2015 Claudio Aschieri <c.aschieri@19.coop>
- * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
- * Copyright (C) 2016-2018 Ferran Marcet <fmarcet@2byte.es>
- * Copyright (C) 2019 Nicolas Zabouri <info@inovea-conseil.com>
- * Copyright (C) 2021 Alexandre Spangaro <aspangaro@open-dsi.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/contrat/list.php
- * \ingroup contrat
- * \brief Page to list contracts
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- // Load translation files required by the page
- $langs->loadLangs(array('contracts', 'products', 'companies', 'compta'));
- $action = GETPOST('action', 'aZ09');
- $massaction = GETPOST('massaction', 'alpha');
- $show_files = GETPOST('show_files', 'int');
- $confirm = GETPOST('confirm', 'alpha');
- $toselect = GETPOST('toselect', 'array');
- $contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'contractlist'; // To manage different context of search
- $search_name = GETPOST('search_name', 'alpha');
- $search_email = GETPOST('search_email', 'alpha');
- $search_town = GETPOST('search_town', 'alpha');
- $search_zip = GETPOST('search_zip', 'alpha');
- $search_state = GETPOST("search_state", 'alpha');
- $search_country = GETPOST("search_country", 'int');
- $search_type_thirdparty = GETPOST("search_type_thirdparty", 'int');
- $search_contract = GETPOST('search_contract', 'alpha');
- $search_ref_customer = GETPOST('search_ref_customer', 'alpha');
- $search_ref_supplier = GETPOST('search_ref_supplier', 'alpha');
- $sall = (GETPOST('search_all', 'alphanohtml') != '') ? GETPOST('search_all', 'alphanohtml') : GETPOST('sall', 'alphanohtml');
- $search_status = GETPOST('search_status', 'alpha');
- $socid = GETPOST('socid', 'int');
- $search_user = GETPOST('search_user', 'int');
- $search_sale = GETPOST('search_sale', 'int');
- $search_product_category = GETPOST('search_product_category', 'int');
- $search_dfmonth = GETPOST('search_dfmonth', 'int');
- $search_dfyear = GETPOST('search_dfyear', 'int');
- $search_op2df = GETPOST('search_op2df', 'alpha');
- $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);
- $optioncss = GETPOST('optioncss', 'alpha');
- $limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
- $sortfield = GETPOST('sortfield', 'aZ09comma');
- $sortorder = GETPOST('sortorder', 'aZ09comma');
- $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
- if (empty($page) || $page == -1) {
- $page = 0;
- } // If $page is not defined, or '' or -1
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (!$sortfield) {
- $sortfield = 'c.ref';
- }
- if (!$sortorder) {
- $sortorder = 'DESC';
- }
- // Security check
- $id = GETPOST('id', 'int');
- if ($user->socid) {
- $socid = $user->socid;
- }
- $result = restrictedArea($user, 'contrat', $id);
- $diroutputmassaction = $conf->contrat->dir_output.'/temp/massgeneration/'.$user->id;
- $staticcontrat = new Contrat($db);
- $staticcontratligne = new ContratLigne($db);
- if ($search_status == '') {
- $search_status = 1;
- }
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $object = new Contrat($db);
- $hookmanager->initHooks(array('contractlist'));
- $extrafields = new ExtraFields($db);
- // fetch optionals attributes and labels
- $extrafields->fetch_name_optionals_label($object->table_element);
- $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
- // List of fields to search into when doing a "search in all"
- $fieldstosearchall = array(
- 'c.ref'=>'Ref',
- 'c.ref_customer'=>'RefCustomer',
- 'c.ref_supplier'=>'RefSupplier',
- 's.nom'=>"ThirdParty",
- 'c.note_public'=>'NotePublic',
- );
- if (empty($user->socid)) {
- $fieldstosearchall["c.note_private"] = "NotePrivate";
- }
- $arrayfields = array(
- 'c.ref'=>array('label'=>$langs->trans("Ref"), 'checked'=>1, 'position'=>10),
- 'c.ref_customer'=>array('label'=>$langs->trans("RefCustomer"), 'checked'=>1, 'position'=>12),
- 'c.ref_supplier'=>array('label'=>$langs->trans("RefSupplier"), 'checked'=>1, 'position'=>14),
- 's.nom'=>array('label'=>$langs->trans("ThirdParty"), 'checked'=>1, 'position'=>30),
- 's.email'=>array('label'=>$langs->trans("ThirdPartyEmail"), 'checked'=>0, 'position'=>30),
- 's.town'=>array('label'=>$langs->trans("Town"), 'checked'=>0, 'position'=>31),
- 's.zip'=>array('label'=>$langs->trans("Zip"), 'checked'=>1, 'position'=>32),
- 'state.nom'=>array('label'=>$langs->trans("StateShort"), 'checked'=>0, 'position'=>33),
- 'country.code_iso'=>array('label'=>$langs->trans("Country"), 'checked'=>0, 'position'=>34),
- 'sale_representative'=>array('label'=>$langs->trans("SaleRepresentativesOfThirdParty"), 'checked'=>-1, 'position'=>80),
- 'c.date_contrat'=>array('label'=>$langs->trans("DateContract"), 'checked'=>1, 'position'=>45),
- 'c.datec'=>array('label'=>$langs->trans("DateCreation"), 'checked'=>0, 'position'=>500),
- 'c.tms'=>array('label'=>$langs->trans("DateModificationShort"), 'checked'=>0, 'position'=>500),
- 'lower_planned_end_date'=>array('label'=>$langs->trans("LowerDateEndPlannedShort"), 'checked'=>1, 'position'=>900, 'help'=>$langs->trans("LowerDateEndPlannedShort")),
- 'status'=>array('label'=>$langs->trans("Status"), 'checked'=>1, 'position'=>1000),
- );
- // Extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
- $object->fields = dol_sort_array($object->fields, 'position');
- $arrayfields = dol_sort_array($arrayfields, 'position');
- /*
- * Action
- */
- if (GETPOST('cancel', 'alpha')) {
- $action = 'list'; $massaction = '';
- }
- if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
- $massaction = '';
- }
- $parameters = array('socid'=>$socid);
- $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- }
- include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
- // Purge search criteria
- if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All test are required to be compatible with all browsers
- $search_dfmonth = '';
- $search_dfyear = '';
- $search_op2df = '';
- $search_name = "";
- $search_email = "";
- $search_town = '';
- $search_zip = "";
- $search_state = "";
- $search_type = '';
- $search_country = '';
- $search_contract = "";
- $search_ref_customer = "";
- $search_ref_supplier = "";
- $search_user = '';
- $search_sale = '';
- $search_product_category = '';
- $search_date_startday = '';
- $search_date_startmonth = '';
- $search_date_startyear = '';
- $search_date_endday = '';
- $search_date_endmonth = '';
- $search_date_endyear = '';
- $search_date_start = '';
- $search_date_end = '';
- $sall = "";
- $search_status = "";
- $toselect = array();
- $search_type_thirdparty = '';
- $search_array_options = array();
- }
- if (empty($reshook)) {
- $objectclass = 'Contrat';
- $objectlabel = 'Contracts';
- $permissiontoread = $user->rights->contrat->lire;
- $permissiontodelete = $user->rights->contrat->supprimer;
- $uploaddir = $conf->contrat->dir_output;
- include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
- }
- /*
- * View
- */
- $now = dol_now();
- $form = new Form($db);
- $formfile = new FormFile($db);
- $formother = new FormOther($db);
- $socstatic = new Societe($db);
- $formcompany = new FormCompany($db);
- $contracttmp = new Contrat($db);
- $title = "";
- $sql = 'SELECT';
- $sql .= " c.rowid, c.ref, c.datec as date_creation, c.tms as date_update, c.date_contrat, c.statut, c.ref_customer, c.ref_supplier, c.note_private, c.note_public, c.entity,";
- $sql .= ' s.rowid as socid, s.nom as name, s.name_alias, s.email, s.town, s.zip, s.fk_pays as country_id, s.client, s.code_client, s.status as company_status, s.logo as company_logo,';
- $sql .= " typent.code as typent_code,";
- $sql .= " state.code_departement as state_code, state.nom as state_name,";
- $sql .= " MIN(".$db->ifsql("cd.statut=4", "cd.date_fin_validite", "null").") as lower_planned_end_date,";
- $sql .= " SUM(".$db->ifsql("cd.statut=0", 1, 0).') as nb_initial,';
- $sql .= " SUM(".$db->ifsql("cd.statut=4 AND (cd.date_fin_validite IS NULL OR cd.date_fin_validite >= '".$db->idate($now)."')", 1, 0).') as nb_running,';
- $sql .= " SUM(".$db->ifsql("cd.statut=4 AND (cd.date_fin_validite IS NOT NULL AND cd.date_fin_validite < '".$db->idate($now)."')", 1, 0).') as nb_expired,';
- $sql .= " SUM(".$db->ifsql("cd.statut=4 AND (cd.date_fin_validite IS NOT NULL AND cd.date_fin_validite < '".$db->idate($now - $conf->contrat->services->expires->warning_delay)."')", 1, 0).') as nb_late,';
- $sql .= " SUM(".$db->ifsql("cd.statut=5", 1, 0).') as nb_closed';
- // Add fields from extrafields
- if (!empty($extrafields->attributes[$object->table_element]['label'])) {
- foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
- $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key." as options_".$key : '');
- }
- }
- // Add fields from hooks
- $parameters = array();
- $reshook = $hookmanager->executeHooks('printFieldListSelect', $parameters); // Note that $action and $object may have been modified by hook
- $sql .= $hookmanager->resPrint;
- $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)";
- if ($search_sale > 0 || (empty($user->rights->societe->client->voir) && !$socid)) {
- $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
- }
- $sql .= ", ".MAIN_DB_PREFIX."contrat as c";
- if (!empty($extrafields->attributes[$object->table_element]['label']) && is_array($extrafields->attributes[$object->table_element]['label']) && count($extrafields->attributes[$object->table_element]['label'])) {
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element."_extrafields as ef on (c.rowid = ef.fk_object)";
- }
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."contratdet as cd ON c.rowid = cd.fk_contrat";
- if ($search_product_category > 0) {
- $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'categorie_product as cp ON cp.fk_product=cd.fk_product';
- }
- if ($search_user > 0) {
- $sql .= ", ".MAIN_DB_PREFIX."element_contact as ec";
- $sql .= ", ".MAIN_DB_PREFIX."c_type_contact as tc";
- }
- $sql .= " WHERE c.fk_soc = s.rowid ";
- $sql .= ' AND c.entity IN ('.getEntity('contract').')';
- if ($search_type_thirdparty != '' && $search_type_thirdparty > 0) {
- $sql .= " AND s.fk_typent IN (".$db->sanitize($db->escape($search_type_thirdparty)).')';
- }
- if ($search_product_category > 0) {
- $sql .= " AND cp.fk_categorie = ".((int) $search_product_category);
- }
- if ($socid) {
- $sql .= " AND s.rowid = ".((int) $socid);
- }
- if (empty($user->rights->societe->client->voir) && !$socid) {
- $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
- }
- if ($search_date_start) {
- $sql .= " AND c.date_contrat >= '".$db->idate($search_date_start)."'";
- }
- if ($search_date_end) {
- $sql .= " AND c.date_contrat <= '".$db->idate($search_date_end)."'";
- }
- if ($search_name) {
- $sql .= natural_search('s.nom', $search_name);
- }
- if ($search_email) {
- $sql .= natural_search('s.email', $search_email);
- }
- if ($search_contract) {
- $sql .= natural_search(array('c.rowid', 'c.ref'), $search_contract);
- }
- if (!empty($search_ref_customer)) {
- $sql .= natural_search(array('c.ref_customer'), $search_ref_customer);
- }
- if (!empty($search_ref_supplier)) {
- $sql .= natural_search(array('c.ref_supplier'), $search_ref_supplier);
- }
- if ($search_zip) {
- $sql .= natural_search(array('s.zip'), $search_zip);
- }
- if ($search_town) {
- $sql .= natural_search(array('s.town'), $search_town);
- }
- if ($search_country && $search_country != '-1') {
- $sql .= " AND s.fk_pays IN (".$db->sanitize($search_country).')';
- }
- if ($search_sale > 0) {
- $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $search_sale);
- }
- if ($sall) {
- $sql .= natural_search(array_keys($fieldstosearchall), $sall);
- }
- if ($search_user > 0) {
- $sql .= " AND ec.fk_c_type_contact = tc.rowid AND tc.element='contrat' AND tc.source='internal' AND ec.element_id = c.rowid AND ec.fk_socpeople = ".((int) $search_user);
- }
- // Add where from extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
- // Add where from hooks
- $parameters = array();
- $reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters); // Note that $action and $object may have been modified by hook
- $sql .= $hookmanager->resPrint;
- $sql .= " GROUP BY c.rowid, c.ref, c.datec, c.tms, c.date_contrat, c.statut, c.ref_customer, c.ref_supplier, c.note_private, c.note_public, c.entity,";
- $sql .= ' s.rowid, s.nom, s.name_alias, s.email, s.town, s.zip, s.fk_pays, s.client, s.code_client, s.status, s.logo,';
- $sql .= " typent.code,";
- $sql .= " state.code_departement, state.nom";
- // Add fields from extrafields
- if (!empty($extrafields->attributes[$object->table_element]['label'])) {
- foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
- $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key : '');
- }
- }
- // Add where from hooks
- $parameters = array('search_dfyear' => $search_dfyear, 'search_op2df'=>$search_op2df);
- $reshook = $hookmanager->executeHooks('printFieldListGroupBy', $parameters, $object); // Note that $action and $object may have been modified by hook
- $sql .= $hookmanager->resPrint;
- // Add HAVING from hooks
- $parameters = array('search_dfyear' => $search_dfyear, 'search_op2df'=>$search_op2df);
- $reshook = $hookmanager->executeHooks('printFieldListHaving', $parameters, $object); // Note that $action and $object may have been modified by hook
- if (empty($reshook)) {
- if ($search_dfyear > 0 && $search_op2df) {
- if ($search_op2df == '<=') {
- $sql .= " HAVING MIN(".$db->ifsql("cd.statut=4", "cd.date_fin_validite", "null").") <= '".$db->idate(dol_get_last_day($search_dfyear, $search_dfmonth, false))."'";
- } elseif ($search_op2df == '>=') {
- $sql .= " HAVING MIN(".$db->ifsql("cd.statut=4", "cd.date_fin_validite", "null").") >= '".$db->idate(dol_get_first_day($search_dfyear, $search_dfmonth, false))."'";
- } else {
- $sql .= " HAVING MIN(".$db->ifsql("cd.statut=4", "cd.date_fin_validite", "null").") <= '".$db->idate(dol_get_last_day($search_dfyear, $search_dfmonth, false))."' AND MIN(".$db->ifsql("cd.statut=4", "cd.date_fin_validite", "null").") >= '".$db->idate(dol_get_first_day($search_dfyear, $search_dfmonth, false))."'";
- }
- }
- }
- $sql .= $hookmanager->resPrint;
- $nbtotalofrecords = '';
- if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
- //$result = $db->query($sql);
- //$nbtotalofrecords = $db->num_rows($result);
- if ($search_dfyear > 0 && $search_op2df) {
- $resql = $db->query($sql, 0, 'auto', 1);
- while ($db->fetch_object($resql)) {
- if (empty($nbtotalofrecords)) {
- $nbtotalofrecords = 1; // We can't make +1 because init value is ''
- } else {
- $nbtotalofrecords++;
- }
- }
- } else {
- $sqlforcount = preg_replace('/^SELECT[a-zA-Z0-9\._\s\(\),=<>\:\-\']+\sFROM/', 'SELECT COUNT(*) as nbtotalofrecords FROM', $sql);
- $sqlforcount = preg_replace('/LEFT JOIN '.MAIN_DB_PREFIX.'contratdet as cd ON c.rowid = cd.fk_contrat/', '', $sqlforcount);
- $sqlforcount = preg_replace('/LEFT JOIN '.MAIN_DB_PREFIX.'categorie_product as cp ON cp.fk_product=cd.fk_product/', '', $sqlforcount);
- $sqlforcount = preg_replace('/AND cp.fk_categorie = '.((int) $search_product_category).'/', '', $sqlforcount);
- $sqlforcount = preg_replace('/GROUP BY.*$/', '', $sqlforcount);
- $resql = $db->query($sqlforcount);
- $objforcount = $db->fetch_object($resql);
- $nbtotalofrecords = $objforcount->nbtotalofrecords;
- }
- if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
- $page = 0;
- $offset = 0;
- }
- }
- $sql .= $db->order($sortfield, $sortorder);
- if ($limit) {
- $sql .= $db->plimit($limit + 1, $offset);
- }
- $resql = $db->query($sql);
- if (!$resql) {
- dol_print_error($db);
- exit;
- }
- $num = $db->num_rows($resql);
- // Direct jump if only one record found
- if ($num == 1 && !empty($conf->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE) && $sall && !$page) {
- $obj = $db->fetch_object($resql);
- $id = $obj->rowid;
- header("Location: ".DOL_URL_ROOT.'/contrat/card.php?id='.$id);
- exit;
- }
- // Output page
- // --------------------------------------------------------------------
- llxHeader('', $langs->trans("Contracts"));
- $i = 0;
- $arrayofselected = is_array($toselect) ? $toselect : array();
- if ($socid > 0) {
- $soc = new Societe($db);
- $soc->fetch($socid);
- if (empty($search_name)) {
- $search_name = $soc->name;
- }
- }
- $param = '';
- if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
- $param .= '&contextpage='.urlencode($contextpage);
- }
- if ($limit > 0 && $limit != $conf->liste_limit) {
- $param .= '&limit='.urlencode($limit);
- }
- if ($sall != '') {
- $param .= '&sall='.urlencode($sall);
- }
- if ($search_contract != '') {
- $param .= '&search_contract='.urlencode($search_contract);
- }
- if ($search_name != '') {
- $param .= '&search_name='.urlencode($search_name);
- }
- if ($search_email != '') {
- $param .= '&search_email='.urlencode($search_email);
- }
- if ($search_ref_customer != '') {
- $param .= '&search_ref_customer='.urlencode($search_ref_customer);
- }
- if ($search_ref_supplier != '') {
- $param .= '&search_ref_supplier='.urlencode($search_ref_supplier);
- }
- if ($search_op2df != '') {
- $param .= '&search_op2df='.urlencode($search_op2df);
- }
- if ($search_date_startday > 0) {
- $param .= '&search_date_startday='.urlencode($search_date_startday);
- }
- if ($search_date_startmonth > 0) {
- $param .= '&search_date_startmonth='.urlencode($search_date_startmonth);
- }
- if ($search_date_startyear > 0) {
- $param .= '&search_date_startyear='.urlencode($search_date_startyear);
- }
- if ($search_date_endday > 0) {
- $param .= '&search_date_endday='.urlencode($search_date_endday);
- }
- if ($search_date_endmonth > 0) {
- $param .= '&search_date_endmonth='.urlencode($search_date_endmonth);
- }
- if ($search_date_endyear > 0) {
- $param .= '&search_date_endyear='.urlencode($search_date_endyear);
- }
- if ($search_dfyear > 0) {
- $param .= '&search_dfyear='.urlencode($search_dfyear);
- }
- if ($search_dfmonth > 0) {
- $param .= '&search_dfmonth='.urlencode($search_dfmonth);
- }
- if ($search_sale > 0) {
- $param .= '&search_sale='.urlencode($search_sale);
- }
- if ($search_user > 0) {
- $param .= '&search_user='.urlencode($search_user);
- }
- if ($search_type_thirdparty > 0) {
- $param .= '&search_type_thirdparty='.urlencode($search_type_thirdparty);
- }
- if ($search_country != '') {
- $param .= "&search_country=".urlencode($search_country);
- }
- if ($search_product_category > 0) {
- $param .= '&search_product_category='.urlencode($search_product_category);
- }
- if ($show_files) {
- $param .= '&show_files='.urlencode($show_files);
- }
- if ($optioncss != '') {
- $param .= '&optioncss='.urlencode($optioncss);
- }
- // Add $param from extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
- // List of mass actions available
- $arrayofmassactions = array(
- '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"),
- );
- if ($user->rights->contrat->supprimer) {
- $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
- }
- if (in_array($massaction, array('presend', 'predelete'))) {
- $arrayofmassactions = array();
- }
- $massactionbutton = $form->selectMassAction('', $arrayofmassactions);
- $url = DOL_URL_ROOT.'/contrat/card.php?action=create';
- if (!empty($socid)) {
- $url .= '&socid='.((int) $socid);
- }
- $newcardbutton = dolGetButtonTitle($langs->trans('NewContractSubscription'), '', 'fa fa-plus-circle', $url, '', $user->rights->contrat->creer);
- print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
- if ($optioncss != '') {
- print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
- }
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
- print '<input type="hidden" name="action" value="list">';
- print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
- print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
- print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
- print_barre_liste($langs->trans("ListOfContracts"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'contract', 0, $newcardbutton, '', $limit, 0, 0, 1);
- $topicmail = "SendContractRef";
- $modelmail = "contract";
- $objecttmp = new Contrat($db);
- $trackid = 'con'.$object->id;
- include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
- if ($sall) {
- foreach ($fieldstosearchall as $key => $val) {
- $fieldstosearchall[$key] = $langs->trans($val);
- }
- print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $sall).join(', ', $fieldstosearchall).'</div>';
- }
- $moreforfilter = '';
- // If the user can view prospects other than his'
- if ($user->rights->user->user->lire) {
- $langs->load("commercial");
- $moreforfilter .= '<div class="divsearchfield">';
- $tmptitle = $langs->trans('ThirdPartiesOfSaleRepresentative');
- $moreforfilter .= img_picto($tmptitle, 'user', 'class="pictofixedwidth"').$formother->select_salesrepresentatives($search_sale, 'search_sale', $user, 0, $tmptitle, 'widthcentpercentminusx maxwidth300');
- $moreforfilter .= '</div>';
- }
- // If the user can view other users
- if ($user->rights->user->user->lire) {
- $moreforfilter .= '<div class="divsearchfield">';
- $tmptitle = $langs->trans('LinkedToSpecificUsers');
- $moreforfilter .= img_picto($tmptitle, 'user', 'class="pictofixedwidth"').$form->select_dolusers($search_user, 'search_user', $tmptitle, '', 0, '', '', 0, 0, 0, '', 0, '', 'widthcentpercentminusx maxwidth300');
- $moreforfilter .= '</div>';
- }
- // If the user can view categories of products
- if (!empty($conf->categorie->enabled) && $user->rights->categorie->lire && ($user->rights->produit->lire || $user->rights->service->lire)) {
- include_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
- $moreforfilter .= '<div class="divsearchfield">';
- $tmptitle = $langs->trans('IncludingProductWithTag');
- $cate_arbo = $form->select_all_categories(Categorie::TYPE_PRODUCT, null, 'parent', null, null, 1);
- $moreforfilter .= img_picto($tmptitle, 'category', 'class="pictofixedwidth"').$form->selectarray('search_product_category', $cate_arbo, $search_product_category, $tmptitle, 0, 0, '', 0, 0, 0, 0, 'widthcentpercentminusx maxwidth300', 1);
- $moreforfilter .= '</div>';
- }
- $parameters = array();
- $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters); // Note that $action and $object may have been modified by hook
- if (empty($reshook)) {
- $moreforfilter .= $hookmanager->resPrint;
- } else {
- $moreforfilter = $hookmanager->resPrint;
- }
- if (!empty($moreforfilter)) {
- print '<div class="liste_titre liste_titre_bydiv centpercent">';
- print $moreforfilter;
- print '</div>';
- }
- $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
- $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
- if ($massactionbutton) {
- $selectedfields .= $form->showCheckAddButtons('checkforselect', 1);
- }
- print '<div class="div-table-responsive">';
- print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
- print '<tr class="liste_titre_filter">';
- if (!empty($arrayfields['c.ref']['checked'])) {
- print '<td class="liste_titre">';
- print '<input type="text" class="flat" size="3" name="search_contract" value="'.dol_escape_htmltag($search_contract).'">';
- print '</td>';
- }
- if (!empty($arrayfields['c.ref_customer']['checked'])) {
- print '<td class="liste_titre">';
- print '<input type="text" class="flat" size="6" name="search_ref_customer" value="'.dol_escape_htmltag($search_ref_customer).'">';
- print '</td>';
- }
- if (!empty($arrayfields['c.ref_supplier']['checked'])) {
- print '<td class="liste_titre">';
- print '<input type="text" class="flat" size="6" name="search_ref_supplier" value="'.dol_escape_htmltag($search_ref_supplier).'">';
- print '</td>';
- }
- if (!empty($arrayfields['s.nom']['checked'])) {
- print '<td class="liste_titre">';
- print '<input type="text" class="flat" size="8" name="search_name" value="'.dol_escape_htmltag($search_name).'">';
- print '</td>';
- }
- if (!empty($arrayfields['s.email']['checked'])) {
- print '<td class="liste_titre">';
- print '<input type="text" class="flat" size="6" name="search_email" value="'.dol_escape_htmltag($search_email).'">';
- print '</td>';
- }
- // Town
- if (!empty($arrayfields['s.town']['checked'])) {
- print '<td class="liste_titre"><input class="flat" type="text" size="6" name="search_town" value="'.dol_escape_htmltag($search_town).'"></td>';
- }
- // Zip
- if (!empty($arrayfields['s.zip']['checked'])) {
- print '<td class="liste_titre"><input class="flat" type="text" size="6" name="search_zip" value="'.dol_escape_htmltag($search_zip).'"></td>';
- }
- // State
- if (!empty($arrayfields['state.nom']['checked'])) {
- print '<td class="liste_titre">';
- print '<input class="flat" size="4" type="text" name="search_state" value="'.dol_escape_htmltag($search_state).'">';
- print '</td>';
- }
- // Country
- if (!empty($arrayfields['country.code_iso']['checked'])) {
- print '<td class="liste_titre center">';
- print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100');
- print '</td>';
- }
- // Company type
- if (!empty($arrayfields['typent.code']['checked'])) {
- print '<td class="liste_titre maxwidthonsmartphone center">';
- 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);
- print '</td>';
- }
- if (!empty($arrayfields['sale_representative']['checked'])) {
- print '<td class="liste_titre"></td>';
- }
- if (!empty($arrayfields['c.date_contrat']['checked'])) {
- 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>';
- print '</td>';
- }
- // Extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php';
- // Fields from hook
- $parameters = array('arrayfields'=>$arrayfields);
- $reshook = $hookmanager->executeHooks('printFieldListOption', $parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- // Date creation
- if (!empty($arrayfields['c.datec']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Date modification
- if (!empty($arrayfields['c.tms']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // First end date
- if (!empty($arrayfields['lower_planned_end_date']['checked'])) {
- print '<td class="liste_titre nowraponall center">';
- $arrayofoperators = array('0'=>'', '='=>'=', '<='=>'<=', '>='=>'>=');
- print $form->selectarray('search_op2df', $arrayofoperators, $search_op2df, 0, 0, 0, '', 0, 0, 0, '', 'maxwidth50imp');
- print '</br>';
- print $formother->select_month($search_dfmonth, 'search_dfmonth', 1, 0);
- print ' ';
- print $formother->selectyear($search_dfyear, 'search_dfyear', 1, 20, 5, 0, 0, '');
- print '</td>';
- }
- // Status
- if (!empty($arrayfields['status']['checked'])) {
- print '<td class="liste_titre right" colspan="4"></td>';
- }
- print '<td class="liste_titre center">';
- $searchpicto = $form->showFilterButtons();
- print $searchpicto;
- print '</td>';
- print "</tr>\n";
- print '<tr class="liste_titre">';
- if (!empty($arrayfields['c.ref']['checked'])) {
- print_liste_field_titre($arrayfields['c.ref']['label'], $_SERVER["PHP_SELF"], "c.ref", "", $param, '', $sortfield, $sortorder);
- }
- if (!empty($arrayfields['c.ref_customer']['checked'])) {
- print_liste_field_titre($arrayfields['c.ref_customer']['label'], $_SERVER["PHP_SELF"], "c.ref_customer", "", $param, '', $sortfield, $sortorder);
- }
- if (!empty($arrayfields['c.ref_supplier']['checked'])) {
- print_liste_field_titre($arrayfields['c.ref_supplier']['label'], $_SERVER["PHP_SELF"], "c.ref_supplier", "", $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.email']['checked'])) {
- print_liste_field_titre($arrayfields['s.email']['label'], $_SERVER["PHP_SELF"], "s.email", "", $param, '', $sortfield, $sortorder);
- }
- if (!empty($arrayfields['s.town']['checked'])) {
- print_liste_field_titre($arrayfields['s.town']['label'], $_SERVER["PHP_SELF"], 's.town', '', $param, '', $sortfield, $sortorder);
- }
- if (!empty($arrayfields['s.zip']['checked'])) {
- print_liste_field_titre($arrayfields['s.zip']['label'], $_SERVER["PHP_SELF"], 's.zip', '', $param, '', $sortfield, $sortorder);
- }
- if (!empty($arrayfields['state.nom']['checked'])) {
- print_liste_field_titre($arrayfields['state.nom']['label'], $_SERVER["PHP_SELF"], "state.nom", "", $param, '', $sortfield, $sortorder);
- }
- if (!empty($arrayfields['country.code_iso']['checked'])) {
- print_liste_field_titre($arrayfields['country.code_iso']['label'], $_SERVER["PHP_SELF"], "country.code_iso", "", $param, '', $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['sale_representative']['checked'])) {
- print_liste_field_titre($arrayfields['sale_representative']['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder);
- }
- if (!empty($arrayfields['c.date_contrat']['checked'])) {
- print_liste_field_titre($arrayfields['c.date_contrat']['label'], $_SERVER["PHP_SELF"], "c.date_contrat", "", $param, '', $sortfield, $sortorder, 'center ');
- }
- // Extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
- // Hook fields
- $parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder);
- $reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- if (!empty($arrayfields['c.datec']['checked'])) {
- print_liste_field_titre($arrayfields['c.datec']['label'], $_SERVER["PHP_SELF"], "c.datec", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
- }
- if (!empty($arrayfields['c.tms']['checked'])) {
- print_liste_field_titre($arrayfields['c.tms']['label'], $_SERVER["PHP_SELF"], "c.tms", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
- }
- if (!empty($arrayfields['lower_planned_end_date']['checked'])) {
- print_liste_field_titre($arrayfields['lower_planned_end_date']['label'], $_SERVER["PHP_SELF"], "lower_planned_end_date", "", $param, '', $sortfield, $sortorder, 'center ');
- }
- if (!empty($arrayfields['status']['checked'])) {
- print_liste_field_titre($staticcontratligne->LibStatut(0, 3, -1, 'class="nochangebackground"'), '', '', '', '', 'width="16"');
- print_liste_field_titre($staticcontratligne->LibStatut(4, 3, 0, 'class="nochangebackground"'), '', '', '', '', 'width="16"');
- print_liste_field_titre($staticcontratligne->LibStatut(4, 3, 1, 'class="nochangebackground"'), '', '', '', '', 'width="16"');
- print_liste_field_titre($staticcontratligne->LibStatut(5, 3, -1, 'class="nochangebackground"'), '', '', '', '', 'width="16"');
- }
- print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ');
- print "</tr>\n";
- $totalarray = array();
- $totalarray['nbfield'] = 0;
- $typenArray = array();
- $cacheCountryIDCode = array();
- while ($i < min($num, $limit)) {
- $obj = $db->fetch_object($resql);
- $contracttmp->ref = $obj->ref;
- $contracttmp->id = $obj->rowid;
- $contracttmp->ref_customer = $obj->ref_customer;
- $contracttmp->ref_supplier = $obj->ref_supplier;
- if ($obj->socid > 0) {
- $result = $socstatic->fetch($obj->socid);
- }
- /*$socstatic->id = $obj->socid;
- $socstatic->name = $obj->name;
- $socstatic->name_alias = $obj->name_alias;
- $socstatic->email = $obj->email;
- $socstatic->status = $obj->company_status;
- $socstatic->logo = $obj->logo;
- $socstatic->country_id = $obj->country_id;
- $socstatic->country_code = '';
- $socstatic->country = '';*/
- if ($obj->country_id > 0) {
- if (!isset($cacheCountryIDCode[$obj->country_id]['code'])) {
- $tmparray = getCountry($obj->country_id, 'all');
- $cacheCountryIDCode[$obj->country_id] = array('code'=> empty($tmparray['code']) ? '' : $tmparray['code'], 'label' => empty($tmparray['label']) ? '' : $tmparray['label']);
- }
- $socstatic->country_code = $cacheCountryIDCode[$obj->country_id]['code'];
- $socstatic->country = $cacheCountryIDCode[$obj->country_id]['label'];
- }
- print '<tr class="oddeven">';
- // Ref
- if (!empty($arrayfields['c.ref']['checked'])) {
- print '<td class="nowraponall">';
- print $contracttmp->getNomUrl(1);
- if ($obj->nb_late) {
- print img_warning($langs->trans("Late"));
- }
- if (!empty($obj->note_private) || !empty($obj->note_public)) {
- print ' <span class="note">';
- print '<a href="'.DOL_URL_ROOT.'/contrat/note.php?id='.$obj->rowid.'&save_lastsearch_values=1">'.img_picto($langs->trans("ViewPrivateNote"), 'note').'</a>';
- print '</span>';
- }
- $filename = dol_sanitizeFileName($obj->ref);
- $filedir = $conf->contrat->multidir_output[$obj->entity].'/'.dol_sanitizeFileName($obj->ref);
- $urlsource = $_SERVER['PHP_SELF'].'?id='.$obj->rowid;
- print $formfile->getDocumentsLink($contracttmp->element, $filename, $filedir);
- print '</td>';
- print '</td>';
- }
- // Ref thirdparty
- if (!empty($arrayfields['c.ref_customer']['checked'])) {
- print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag(dol_string_nohtmltag($contracttmp->getFormatedCustomerRef($obj->ref_customer))).'">'.$contracttmp->getFormatedCustomerRef($obj->ref_customer).'</td>';
- }
- if (!empty($arrayfields['c.ref_supplier']['checked'])) {
- print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($obj->ref_supplier).'">'.dol_escape_htmltag($obj->ref_supplier).'</td>';
- }
- if (!empty($arrayfields['s.nom']['checked'])) {
- print '<td class="tdoverflowmax150">';
- if ($obj->socid > 0) {
- // TODO Use a cache for this string
- print $socstatic->getNomUrl(1, '');
- }
- print '</td>';
- }
- // Email
- if (!empty($arrayfields['s.email']['checked'])) {
- print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($obj->email).'">'.dol_print_email($obj->email, 0, $obj->socid, 0, 0, 1, 1).'</td>';
- }
- // Town
- if (!empty($arrayfields['s.town']['checked'])) {
- print '<td class="nocellnopadd">';
- print $obj->town;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Zip
- if (!empty($arrayfields['s.zip']['checked'])) {
- print '<td class="nocellnopadd">';
- print $obj->zip;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // State
- if (!empty($arrayfields['state.nom']['checked'])) {
- print "<td>".$obj->state_name."</td>\n";
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Country
- if (!empty($arrayfields['country.code_iso']['checked'])) {
- print '<td class="center">';
- print $socstatic->country;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Type ent
- if (!empty($arrayfields['typent.code']['checked'])) {
- print '<td class="center">';
- if (count($typenArray) == 0) {
- $typenArray = $formcompany->typent_array(1);
- }
- print $typenArray[$obj->typent_code];
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- if (!empty($arrayfields['sale_representative']['checked'])) {
- // Sales representatives
- print '<td>';
- if ($obj->socid > 0) {
- $listsalesrepresentatives = $socstatic->getSalesRepresentatives($user);
- if ($listsalesrepresentatives < 0) {
- dol_print_error($db);
- }
- $nbofsalesrepresentative = count($listsalesrepresentatives);
- if ($nbofsalesrepresentative > 6) {
- // We print only number
- print $nbofsalesrepresentative;
- } elseif ($nbofsalesrepresentative > 0) {
- $userstatic = new User($db);
- $j = 0;
- foreach ($listsalesrepresentatives as $val) {
- $userstatic->id = $val['id'];
- $userstatic->lastname = $val['lastname'];
- $userstatic->firstname = $val['firstname'];
- $userstatic->email = $val['email'];
- $userstatic->statut = $val['statut'];
- $userstatic->entity = $val['entity'];
- $userstatic->photo = $val['photo'];
- $userstatic->login = $val['login'];
- $userstatic->phone = $val['phone'];
- $userstatic->job = $val['job'];
- $userstatic->gender = $val['gender'];
- //print '<div class="float">':
- print ($nbofsalesrepresentative < 2) ? $userstatic->getNomUrl(-1, '', 0, 0, 12) : $userstatic->getNomUrl(-2);
- $j++;
- if ($j < $nbofsalesrepresentative) {
- print ' ';
- }
- //print '</div>';
- }
- }
- //else print $langs->trans("NoSalesRepresentativeAffected");
- } else {
- print ' ';
- }
- print '</td>';
- }
- // Date
- if (!empty($arrayfields['c.date_contrat']['checked'])) {
- print '<td class="center">'.dol_print_date($db->jdate($obj->date_contrat), 'day', 'tzserver').'</td>';
- }
- // Extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
- // Fields from hook
- $parameters = array('arrayfields'=>$arrayfields, 'obj'=>$obj, 'i'=>$i, 'totalarray'=>&$totalarray);
- $reshook = $hookmanager->executeHooks('printFieldListValue', $parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- // Date creation
- if (!empty($arrayfields['c.datec']['checked'])) {
- print '<td class="center nowrap">';
- print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuser');
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Date modification
- if (!empty($arrayfields['c.tms']['checked'])) {
- print '<td class="center nowrap">';
- print dol_print_date($db->jdate($obj->date_update), 'dayhour', 'tzuser');
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Date lower end date
- if (!empty($arrayfields['lower_planned_end_date']['checked'])) {
- print '<td class="center nowrapforall">';
- print dol_print_date($db->jdate($obj->lower_planned_end_date), 'day', 'tzuser');
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Status
- if (!empty($arrayfields['status']['checked'])) {
- print '<td class="center">'.($obj->nb_initial > 0 ? $obj->nb_initial : '').'</td>';
- print '<td class="center">'.($obj->nb_running > 0 ? $obj->nb_running : '').'</td>';
- print '<td class="center">'.($obj->nb_expired > 0 ? $obj->nb_expired : '').'</td>';
- print '<td class="center">'.($obj->nb_closed > 0 ? $obj->nb_closed : '').'</td>';
- }
- // Action column
- print '<td class="nowrap center">';
- if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
- $selected = 0;
- if (in_array($obj->rowid, $arrayofselected)) {
- $selected = 1;
- }
- print '<input id="cb'.$obj->rowid.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.'"'.($selected ? ' checked="checked"' : '').'>';
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- print "</tr>\n";
- $i++;
- }
- $db->free($resql);
- $parameters = array('arrayfields'=>$arrayfields, 'sql'=>$sql);
- $reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- print '</table>';
- print '</div>';
- print '</form>';
- $hidegeneratedfilelistifempty = 1;
- if ($massaction == 'builddoc' || $action == 'remove_file' || $show_files) {
- $hidegeneratedfilelistifempty = 0;
- }
- // Show list of available documents
- $urlsource = $_SERVER['PHP_SELF'].'?sortfield='.$sortfield.'&sortorder='.$sortorder;
- $urlsource .= str_replace('&', '&', $param);
- $filedir = $diroutputmassaction;
- $genallowed = $user->rights->contrat->lire;
- $delallowed = $user->rights->contrat->lire;
- print $formfile->showdocuments('massfilesarea_contract', '', $filedir, $urlsource, 0, $delallowed, '', 1, 1, 0, 48, 1, $param, $title, '', '', '', null, $hidegeneratedfilelistifempty);
- llxFooter();
- $db->close();
|