123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253 |
- <?php
- /* Copyright (C) 2001-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2019 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2012-2016 Marcos García <marcosgdf@gmail.com>
- * Copyright (C) 2013-2023 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2013-2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
- * Copyright (C) 2013 Jean Heimburger <jean@tiaris.info>
- * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
- * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
- * Copyright (C) 2013 Adolfo segura <adolfo.segura@gmail.com>
- * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
- * Copyright (C) 2016 Ferran Marcet <fmarcet@2byte.es>
- * Copyright (C) 2020-2021 Open-DSI <support@open-dsi.fr>
- * Copyright (C) 2022 Charlene Benke <charlene@patas-monkey.com>
- * Copyright (C) 2020-2023 Alexandre Spangaro <aspangaro@easya.solutions>
- *
- * 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/product/list.php
- * \ingroup produit
- * \brief Page to list products and services
- */
- // Load Dolibarr environment
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
- require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.product.class.php';
- require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
- require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
- if (isModEnabled('workstation')) {
- require_once DOL_DOCUMENT_ROOT.'/workstation/class/workstation.class.php';
- }
- if (isModEnabled('categorie')) {
- require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcategory.class.php';
- }
- // Load translation files required by the page
- $langs->loadLangs(array('products', 'stocks', 'suppliers', 'companies', 'margins'));
- if (isModEnabled('productbatch')) {
- $langs->load("productbatch");
- }
- // Get parameters
- $action = GETPOST('action', 'aZ09');
- $massaction = GETPOST('massaction', 'alpha');
- $show_files = GETPOST('show_files', 'int');
- $confirm = GETPOST('confirm', 'alpha');
- $toselect = GETPOST('toselect', 'array');
- // Search Criterias
- $sall = trim((GETPOST('search_all', 'alphanohtml') != '') ? GETPOST('search_all', 'alphanohtml') : GETPOST('sall', 'alphanohtml'));
- $search_id = GETPOST("search_id", 'alpha');
- $search_ref = GETPOST("search_ref", 'alpha');
- $search_ref_supplier = GETPOST("search_ref_supplier", 'alpha');
- $search_barcode = GETPOST("search_barcode", 'alpha');
- $search_label = GETPOST("search_label", 'alpha');
- $search_default_workstation = GETPOST("search_default_workstation", 'alpha');
- $search_type = GETPOST("search_type", 'int');
- $search_vatrate = GETPOST("search_vatrate", 'alpha');
- $searchCategoryProductOperator = 0;
- if (GETPOSTISSET('formfilteraction')) {
- $searchCategoryProductOperator = GETPOSTINT('search_category_product_operator');
- } elseif (getDolGlobalString('MAIN_SEARCH_CAT_OR_BY_DEFAULT')) {
- $searchCategoryProductOperator = $conf->global->MAIN_SEARCH_CAT_OR_BY_DEFAULT;
- }
- $searchCategoryProductList = GETPOST('search_category_product_list', 'array');
- $catid = GETPOST('catid', 'int');
- if (!empty($catid) && empty($searchCategoryProductList)) {
- $searchCategoryProductList = array($catid);
- }
- $search_tosell = GETPOST("search_tosell", 'int');
- $search_tobuy = GETPOST("search_tobuy", 'int');
- $search_country = GETPOST("search_country", 'int');
- $search_state = GETPOST("state_id", 'int');
- $fourn_id = GETPOST("fourn_id", 'int');
- $search_tobatch = GETPOST("search_tobatch", 'int');
- $search_accountancy_code_sell = GETPOST("search_accountancy_code_sell", 'alpha');
- $search_accountancy_code_sell_intra = GETPOST("search_accountancy_code_sell_intra", 'alpha');
- $search_accountancy_code_sell_export = GETPOST("search_accountancy_code_sell_export", 'alpha');
- $search_accountancy_code_buy = GETPOST("search_accountancy_code_buy", 'alpha');
- $search_accountancy_code_buy_intra = GETPOST("search_accountancy_code_buy_intra", 'alpha');
- $search_accountancy_code_buy_export = GETPOST("search_accountancy_code_buy_export", 'alpha');
- $search_finished = GETPOST("search_finished", 'int');
- $search_units = GETPOST('search_units', 'int');
- $optioncss = GETPOST('optioncss', 'alpha');
- $type = GETPOST("type", "int");
- $mode = GETPOST('mode', 'alpha');
- // Show/hide child product variants
- $show_childproducts = 0;
- if (isModEnabled('variants')) {
- $show_childproducts = GETPOST('search_show_childproducts');
- }
- $diroutputmassaction = $conf->product->dir_output.'/temp/massgeneration/'.$user->id;
- // Load variable for pagination
- $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 < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
- // If $page is not defined, or '' or -1 or if we click on clear filters
- $page = 0;
- }
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (!$sortfield) {
- $sortfield = "p.ref";
- }
- if (!$sortorder) {
- $sortorder = "ASC";
- }
- // Initialize context for list
- $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'productservicelist';
- if ((string) $type == '1') {
- $contextpage = 'servicelist';
- if ($search_type == '') {
- $search_type = '1';
- }
- }
- if ((string) $type == '0') {
- $contextpage = 'productlist';
- if ($search_type == '') {
- $search_type = '0';
- }
- }
- // Initialize technical object to manage hooks. Note that conf->hooks_modules contains array of hooks
- $object = new Product($db);
- $hookmanager->initHooks(array('productservicelist'));
- $extrafields = new ExtraFields($db);
- $form = new Form($db);
- $formcompany = new FormCompany($db);
- $formproduct = new FormProduct($db);
- // fetch optionals attributes and labels
- $extrafields->fetch_name_optionals_label($object->table_element);
- $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
- if (empty($action)) {
- $action = 'list';
- }
- // Get object canvas (By default, this is not defined, so standard usage of dolibarr)
- $canvas = GETPOST("canvas");
- $objcanvas = null;
- if (!empty($canvas)) {
- require_once DOL_DOCUMENT_ROOT.'/core/class/canvas.class.php';
- $objcanvas = new Canvas($db, $action);
- $objcanvas->getCanvas('product', 'list', $canvas);
- }
- // Define virtualdiffersfromphysical
- $virtualdiffersfromphysical = 0;
- if (getDolGlobalString('STOCK_CALCULATE_ON_SHIPMENT')
- || getDolGlobalString('STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER')
- || getDolGlobalString('STOCK_CALCULATE_ON_SHIPMENT_CLOSE')
- || getDolGlobalString('STOCK_CALCULATE_ON_RECEPTION')
- || getDolGlobalString('STOCK_CALCULATE_ON_RECEPTION_CLOSE')
- || isModEnabled('mrp')) {
- $virtualdiffersfromphysical = 1; // According to increase/decrease stock options, virtual and physical stock may differs.
- }
- // List of fields to search into when doing a "search in all"
- $fieldstosearchall = array(
- 'p.ref'=>"Ref",
- 'p.label'=>"ProductLabel",
- 'p.description'=>"Description",
- "p.note"=>"Note",
- 'pfp.ref_fourn'=>'RefSupplier'
- );
- // multilang
- if (getDolGlobalInt('MAIN_MULTILANGS')) {
- $fieldstosearchall['pl.label'] = 'ProductLabelTranslated';
- $fieldstosearchall['pl.description'] = 'ProductDescriptionTranslated';
- $fieldstosearchall['pl.note'] = 'ProductNoteTranslated';
- }
- if (isModEnabled('barcode')) {
- $fieldstosearchall['p.barcode'] = 'Gencod';
- $fieldstosearchall['pfp.barcode'] = 'GencodBuyPrice';
- }
- // Personalized search criterias. Example: $conf->global->PRODUCT_QUICKSEARCH_ON_FIELDS = 'p.ref=ProductRef;p.label=ProductLabel;p.description=Description;p.note=Note;'
- if (getDolGlobalString('PRODUCT_QUICKSEARCH_ON_FIELDS')) {
- $fieldstosearchall = dolExplodeIntoArray($conf->global->PRODUCT_QUICKSEARCH_ON_FIELDS);
- }
- if (!getDolGlobalString('PRODUIT_MULTIPRICES')) {
- $titlesellprice = $langs->trans("SellingPrice");
- if (getDolGlobalString('PRODUIT_CUSTOMER_PRICES')) {
- $titlesellprice = $form->textwithpicto($langs->trans("SellingPrice"), $langs->trans("DefaultPriceRealPriceMayDependOnCustomer"));
- }
- }
- $isInEEC = isInEEC($mysoc);
- $alias_product_perentity = !getDolGlobalString('MAIN_PRODUCT_PERENTITY_SHARED') ? "p" : "ppe";
- // Definition of array of fields for columns
- $arrayfields = array(
- 'p.rowid'=>array('type'=>'integer', 'label'=>'TechnicalID', 'enabled'=>1, 'visible'=>-2, 'noteditable'=>1, 'notnull'=> 1, 'index'=>1, 'position'=>1, 'comment'=>'Id', 'css'=>'left'),
- 'p.ref'=>array('label'=>'ProductRef', 'checked'=>1, 'position'=>10),
- //'pfp.ref_fourn'=>array('label'=>$langs->trans("RefSupplier"), 'checked'=>1, 'enabled'=>(isModEnabled('barcode'))),
- 'thumbnail'=>array('label'=>'Photo', 'checked'=>0, 'position'=>10),
- 'p.description'=>array('label'=>'Description', 'checked'=>0, 'position'=>10),
- 'p.label'=>array('label'=>"Label", 'checked'=>1, 'position'=>10),
- 'p.fk_product_type'=>array('label'=>"Type", 'checked'=>0, 'enabled'=>(isModEnabled("product") && isModEnabled("service")), 'position'=>11),
- 'p.barcode'=>array('label'=>"Gencod", 'checked'=>1, 'enabled'=>(isModEnabled('barcode')), 'position'=>12),
- 'p.duration'=>array('label'=>"Duration", 'checked'=>($contextpage != 'productlist'), 'enabled'=>(isModEnabled("service") && (string) $type == '1'), 'position'=>13),
- 'pac.fk_product_parent' => array('label'=>"ParentProductOfVariant", 'checked'=>-1, 'enabled'=>(isModEnabled('variants')), 'position'=>14),
- 'p.finished'=>array('label'=>"Nature", 'checked'=>0, 'enabled'=>(isModEnabled("product") && $type != '1'), 'position'=>19),
- 'p.weight'=>array('label'=>'Weight', 'checked'=>0, 'enabled'=>(isModEnabled("product") && $type != '1'), 'position'=>20),
- 'p.weight_units'=>array('label'=>'WeightUnits', 'checked'=>0, 'enabled'=>(isModEnabled("product") && $type != '1'), 'position'=>21),
- 'p.length'=>array('label'=>'Length', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_SIZE') && $type != '1'), 'position'=>22),
- 'p.length_units'=>array('label'=>'LengthUnits', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_SIZE') && $type != '1'), 'position'=>23),
- 'p.width'=>array('label'=>'Width', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_SIZE') && $type != '1'), 'position'=>24),
- 'p.width_units'=>array('label'=>'WidthUnits', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_SIZE') && $type != '1'), 'position'=>25),
- 'p.height'=>array('label'=>'Height', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_SIZE') && $type != '1'), 'position'=>26),
- 'p.height_units'=>array('label'=>'HeightUnits', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_SIZE') && $type != '1'), 'position'=>27),
- 'p.surface'=>array('label'=>'Surface', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_SURFACE') && $type != '1'), 'position'=>28),
- 'p.surface_units'=>array('label'=>'SurfaceUnits', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_SURFACE') && $type != '1'), 'position'=>29),
- 'p.volume'=>array('label'=>'Volume', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_VOLUME') && $type != '1'), 'position'=>30),
- 'p.volume_units'=>array('label'=>'VolumeUnits', 'checked'=>0, 'enabled'=>(isModEnabled("product") && !getDolGlobalString('PRODUCT_DISABLE_VOLUME') && $type != '1'), 'position'=>31),
- 'cu.label'=>array('label'=>"DefaultUnitToShow", 'checked'=>0, 'enabled'=>(isModEnabled("product") && getDolGlobalString('PRODUCT_USE_UNITS')), 'position'=>32),
- 'p.fk_default_workstation'=>array('label'=>'DefaultWorkstation', 'checked'=>0, 'enabled'=>isModEnabled('workstation') && $type == 1, 'position'=>33),
- 'p.sellprice'=>array('label'=>"SellingPrice", 'checked'=>1, 'enabled'=>!getDolGlobalString('PRODUIT_MULTIPRICES'), 'position'=>40),
- 'p.tva_tx'=>array('label'=>"VATRate", 'checked'=>0, 'enabled'=>!getDolGlobalString('PRODUIT_MULTIPRICES'), 'position'=>41),
- 'p.minbuyprice'=>array('label'=>"BuyingPriceMinShort", 'checked'=>1, 'enabled'=>(!empty($user->rights->fournisseur->lire)), 'position'=>42),
- 'p.numbuyprice'=>array('label'=>"BuyingPriceNumShort", 'checked'=>0, 'enabled'=>(!empty($user->rights->fournisseur->lire)), 'position'=>43),
- 'p.pmp'=>array('label'=>"PMPValueShort", 'checked'=>0, 'enabled'=>(!empty($user->rights->fournisseur->lire)), 'position'=>44),
- 'p.cost_price'=>array('label'=>"CostPrice", 'checked'=>0, 'enabled'=>(!empty($user->rights->fournisseur->lire)), 'position'=>45),
- 'p.seuil_stock_alerte'=>array('label'=>"StockLimit", 'checked'=>0, 'enabled'=>(isModEnabled('stock') && $user->hasRight('stock', 'lire') && ($contextpage != 'servicelist' || getDolGlobalString('STOCK_SUPPORTS_SERVICES'))), 'position'=>50),
- 'p.desiredstock'=>array('label'=>"DesiredStock", 'checked'=>1, 'enabled'=>(isModEnabled('stock') && $user->hasRight('stock', 'lire') && ($contextpage != 'servicelist' || getDolGlobalString('STOCK_SUPPORTS_SERVICES'))), 'position'=>51),
- 'p.stock'=>array('label'=>"PhysicalStock", 'checked'=>1, 'enabled'=>(isModEnabled('stock') && $user->hasRight('stock', 'lire') && ($contextpage != 'servicelist' || getDolGlobalString('STOCK_SUPPORTS_SERVICES'))), 'position'=>52),
- 'stock_virtual'=>array('label'=>"VirtualStock", 'checked'=>1, 'enabled'=>(isModEnabled('stock') && $user->hasRight('stock', 'lire') && ($contextpage != 'servicelist' || getDolGlobalString('STOCK_SUPPORTS_SERVICES')) && $virtualdiffersfromphysical), 'position'=>53),
- 'p.tobatch'=>array('label'=>"ManageLotSerial", 'checked'=>0, 'enabled'=>(isModEnabled('productbatch')), 'position'=>60),
- 'p.fk_country'=>array('label'=>"Country", 'checked'=>0, 'position'=>100),
- 'p.fk_state'=>array('label'=>"State", 'checked'=>0, 'position'=>101),
- $alias_product_perentity . '.accountancy_code_sell'=>array('label'=>"ProductAccountancySellCode", 'checked'=>0, 'enabled'=>!getDolGlobalString('PRODUCT_DISABLE_ACCOUNTING'), 'position'=>400),
- $alias_product_perentity . '.accountancy_code_sell_intra'=>array('label'=>"ProductAccountancySellIntraCode", 'checked'=>0, 'enabled'=>$isInEEC && !getDolGlobalString('PRODUCT_DISABLE_ACCOUNTING'), 'position'=>401),
- $alias_product_perentity . '.accountancy_code_sell_export'=>array('label'=>"ProductAccountancySellExportCode", 'checked'=>0, 'enabled'=>!getDolGlobalString('PRODUCT_DISABLE_ACCOUNTING'), 'position'=>402),
- $alias_product_perentity . '.accountancy_code_buy'=>array('label'=>"ProductAccountancyBuyCode", 'checked'=>0, 'enabled'=>!getDolGlobalString('PRODUCT_DISABLE_ACCOUNTING'), 'position'=>403),
- $alias_product_perentity . '.accountancy_code_buy_intra'=>array('label'=>"ProductAccountancyBuyIntraCode", 'checked'=>0, 'enabled'=>$isInEEC && !getDolGlobalString('PRODUCT_DISABLE_ACCOUNTING'), 'position'=>404),
- $alias_product_perentity . '.accountancy_code_buy_export'=>array('label'=>"ProductAccountancyBuyExportCode", 'checked'=>0, 'enabled'=>!getDolGlobalString('PRODUCT_DISABLE_ACCOUNTING'), 'position'=>405),
- 'p.datec'=>array('label'=>"DateCreation", 'checked'=>0, 'position'=>500),
- 'p.tms'=>array('label'=>"DateModificationShort", 'checked'=>0, 'position'=>500),
- 'p.tosell'=>array('label'=>$langs->transnoentitiesnoconv("Status").' ('.$langs->transnoentitiesnoconv("Sell").')', 'checked'=>1, 'position'=>1000),
- 'p.tobuy'=>array('label'=>$langs->transnoentitiesnoconv("Status").' ('.$langs->transnoentitiesnoconv("Buy").')', 'checked'=>1, 'position'=>1000)
- );
- /*foreach ($object->fields as $key => $val) {
- // If $val['visible']==0, then we never show the field
- if (!empty($val['visible'])) {
- $visible = dol_eval($val['visible'], 1, 1, '1');
- $arrayfields['p.'.$key] = array(
- 'label'=>$val['label'],
- 'checked'=>(($visible < 0) ? 0 : 1),
- 'enabled'=>($visible != 3 && dol_eval($val['enabled'], 1, 1, '1')),
- 'position'=>$val['position']
- );
- }
- }*/
- // MultiPrices
- if (getDolGlobalString('PRODUIT_MULTIPRICES')) {
- for ($i = 1; $i <= $conf->global->PRODUIT_MULTIPRICES_LIMIT; $i++) {
- $keyforlabel = 'PRODUIT_MULTIPRICES_LABEL'.$i;
- if (!empty($conf->global->$keyforlabel)) {
- $labelp = $i.' - '.$langs->transnoentitiesnoconv($conf->global->$keyforlabel);
- } else {
- $labelp = $langs->transnoentitiesnoconv("SellingPrice")." ".$i;
- }
- $arrayfields['p.sellprice'.$i] = array('label'=>$labelp, 'checked'=>($i == 1 ? 1 : 0), 'enabled'=>$conf->global->PRODUIT_MULTIPRICES, 'position'=>(float) ('40.'.sprintf('%03s', $i)));
- $arraypricelevel[$i] = array($i);
- }
- }
- //var_dump($arraypricelevel);
- // 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');
- // Security check
- if ($search_type == '0') {
- $result = restrictedArea($user, 'produit', '', '', '', '', '', 0);
- } elseif ($search_type == '1') {
- $result = restrictedArea($user, 'service', '', '', '', '', '', 0);
- } else {
- $result = restrictedArea($user, 'produit|service', '', '', '', '', '', 0);
- }
- /*
- * Actions
- */
- if (GETPOST('cancel', 'alpha')) {
- $action = 'list';
- $massaction = '';
- }
- if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
- $massaction = '';
- }
- $parameters = array();
- $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');
- }
- $rightskey = 'produit';
- if ($type == Product::TYPE_SERVICE) {
- $rightskey = 'service';
- }
- if (empty($reshook)) {
- // Selection of new fields
- include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
- // Purge search criteria
- if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
- $sall = "";
- $search_id = '';
- $search_ref = "";
- $search_ref_supplier = "";
- $search_label = "";
- $search_default_workstation = "";
- $search_barcode = "";
- $searchCategoryProductOperator = 0;
- $searchCategoryProductList = array();
- $search_tosell = "";
- $search_tobuy = "";
- $search_tobatch = '';
- $search_country = "";
- $search_state = "";
- $search_vatrate = "";
- $search_finished = '';
- //$search_type=''; // There is 2 types of list: a list of product and a list of services. No list with both. So when we clear search criteria, we must keep the filter on type.
- $show_childproducts = '';
- $search_accountancy_code_sell = '';
- $search_accountancy_code_sell_intra = '';
- $search_accountancy_code_sell_export = '';
- $search_accountancy_code_buy = '';
- $search_accountancy_code_buy_intra = '';
- $search_accountancy_code_buy_export = '';
- $search_array_options = array();
- $search_units = '';
- }
- // Mass actions
- $objectclass = 'Product';
- if ((string) $search_type == '1') {
- $objectlabel = 'Services';
- }
- if ((string) $search_type == '0') {
- $objectlabel = 'Products';
- }
- $permissiontoread = $user->hasRight($rightskey, 'lire');
- $permissiontodelete = $user->hasRight($rightskey, 'supprimer');
- $permissiontoadd = $user->hasRight($rightskey, 'creer');
- $uploaddir = $conf->product->dir_output;
- include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
- if (!$error && $massaction == 'switchonsalestatus' && $permissiontoadd) {
- $product = new Product($db);
- foreach ($toselect as $toselectid) {
- $result = $product->fetch($toselectid);
- if ($result > 0 && $product->id > 0) {
- if ($product->setStatut($product->status ? 0 : 1, null, 'product', 'PRODUCT_MODIFY', 'tosell') < 0) {
- setEventMessages($product->error, $product->errors, 'errors');
- }
- }
- }
- }
- if (!$error && $massaction == 'switchonpurchasestatus' && $permissiontoadd) {
- $product = new Product($db);
- foreach ($toselect as $toselectid) {
- $result = $product->fetch($toselectid);
- if ($result > 0 && $product->id > 0) {
- if ($product->setStatut($product->status_buy ? 0 : 1, null, 'product', 'PRODUCT_MODIFY', 'tobuy') < 0) {
- setEventMessages($product->error, $product->errors, 'errors');
- }
- }
- }
- }
- }
- /*
- * View
- */
- $product_static = new Product($db);
- if (isModEnabled('workstation')) {
- $workstation_static = new Workstation($db);
- }
- $product_fourn = new ProductFournisseur($db);
- $title = $langs->trans("ProductsAndServices");
- if ($search_type != '' && $search_type != '-1') {
- if ($search_type == 1) {
- $title = $langs->trans("Services");
- } else {
- $title = $langs->trans("Products");
- }
- }
- // Build and execute select
- // --------------------------------------------------------------------
- $sql = 'SELECT p.rowid, p.ref, p.description, p.label, p.fk_product_type, p.barcode, p.price, p.tva_tx, p.price_ttc, p.price_base_type, p.entity,';
- $sql .= ' p.fk_product_type, p.duration, p.finished, p.tosell, p.tobuy, p.seuil_stock_alerte, p.desiredstock,';
- $sql .= ' p.tobatch, ';
- if (isModEnabled('workstation')) {
- $sql .= ' p.fk_default_workstation, ws.status as status_workstation, ws.ref as ref_workstation, ';
- }
- if (!getDolGlobalString('MAIN_PRODUCT_PERENTITY_SHARED')) {
- $sql .= " p.accountancy_code_sell, p.accountancy_code_sell_intra, p.accountancy_code_sell_export, p.accountancy_code_buy, p.accountancy_code_buy_intra, p.accountancy_code_buy_export,";
- } else {
- $sql .= " ppe.accountancy_code_sell, ppe.accountancy_code_sell_intra, ppe.accountancy_code_sell_export, ppe.accountancy_code_buy, ppe.accountancy_code_buy_intra, ppe.accountancy_code_buy_export,";
- }
- $sql .= ' p.datec as date_creation, p.tms as date_update, p.pmp, p.stock, p.cost_price,';
- $sql .= ' p.weight, p.weight_units, p.length, p.length_units, p.width, p.width_units, p.height, p.height_units, p.surface, p.surface_units, p.volume, p.volume_units, fk_country, fk_state,';
- if (getDolGlobalString('PRODUCT_USE_UNITS')) {
- $sql .= ' p.fk_unit, cu.label as cu_label,';
- }
- $sql .= ' MIN(pfp.unitprice) as bestpurchaseprice';
- if (isModEnabled('variants')) {
- $sql .= ', pac.rowid as prod_comb_id';
- $sql .= ', pac.fk_product_parent';
- }
- // 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, $object, $action); // Note that $action and $object may have been modified by hook
- $sql .= $hookmanager->resPrint;
- $sql = preg_replace('/,\s*$/', '', $sql);
- $sqlfields = $sql; // $sql fields to remove for count total
- $sql .= ' FROM '.MAIN_DB_PREFIX.'product as p';
- if (isModEnabled('workstation')) {
- $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "workstation_workstation as ws ON (p.fk_default_workstation = ws.rowid)";
- }
- if (getDolGlobalString('MAIN_PRODUCT_PERENTITY_SHARED')) {
- $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "product_perentity as ppe ON ppe.fk_product = p.rowid AND ppe.entity = " . ((int) $conf->entity);
- }
- 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."product_extrafields as ef on (p.rowid = ef.fk_object)";
- }
- $linktopfp = " LEFT JOIN ".MAIN_DB_PREFIX."product_fournisseur_price as pfp ON p.rowid = pfp.fk_product";
- $sql .= $linktopfp;
- // multilang
- if (getDolGlobalInt('MAIN_MULTILANGS')) {
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product_lang as pl ON pl.fk_product = p.rowid AND pl.lang = '".$db->escape($langs->getDefaultLang())."'";
- }
- if (isModEnabled('variants')) {
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product_attribute_combination pac ON pac.fk_product_child = p.rowid";
- }
- if (getDolGlobalString('PRODUCT_USE_UNITS')) {
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_units cu ON cu.rowid = p.fk_unit";
- }
- $sql .= ' WHERE p.entity IN ('.getEntity('product').')';
- if ($sall) {
- // Clean $fieldstosearchall
- $newfieldstosearchall = $fieldstosearchall;
- unset($newfieldstosearchall['pfp.ref_fourn']);
- unset($newfieldstosearchall['pfp.barcode']);
- $sql .= ' AND (';
- $sql .= natural_search(array_keys($newfieldstosearchall), $sall, 0, 1);
- // Search also into a supplier reference 'pfp.ref_fourn'="RefSupplier"
- $sql .= ' OR EXISTS (SELECT rowid FROM '.MAIN_DB_PREFIX.'product_fournisseur_price as pfp WHERE pfp.fk_product = p.rowid';
- $sql .= ' AND ('.natural_search('pfp.ref_fourn', $sall, 0, 1);
- if (isModEnabled('barcode')) {
- // Search also into a supplier barcode 'pfp.barcode'='GencodBuyPrice';
- $sql .= ' OR '.natural_search('pfp.barcode', $sall, 0, 1);
- }
- $sql .= ')))';
- }
- // if the type is not 1, we show all products (type = 0,2,3)
- if (dol_strlen($search_type) && $search_type != '-1') {
- if ($search_type == 1) {
- $sql .= " AND p.fk_product_type = 1";
- } else {
- $sql .= " AND p.fk_product_type <> 1";
- }
- }
- if (isModEnabled('variants') && !$show_childproducts) {
- $sql .= " AND pac.rowid IS NULL";
- }
- if ($search_id) {
- $sql .= natural_search('p.rowid', $search_id, 1);
- }
- if ($search_ref) {
- $sql .= natural_search('p.ref', $search_ref);
- }
- if ($search_label) {
- $sql .= natural_search('p.label', $search_label);
- }
- if ($search_default_workstation) {
- $sql .= natural_search('ws.ref', $search_default_workstation);
- }
- if ($search_barcode) {
- $sql .= natural_search('p.barcode', $search_barcode);
- }
- if (isset($search_tosell) && dol_strlen($search_tosell) > 0 && $search_tosell != -1) {
- $sql .= " AND p.tosell = ".((int) $search_tosell);
- }
- if (isset($search_tobuy) && dol_strlen($search_tobuy) > 0 && $search_tobuy != -1) {
- $sql .= " AND p.tobuy = ".((int) $search_tobuy);
- }
- if (isset($search_tobatch) && dol_strlen($search_tobatch) > 0 && $search_tobatch != -1) {
- $sql .= " AND p.tobatch = ".((int) $search_tobatch);
- }
- if ($search_vatrate) {
- $sql .= natural_search('p.tva_tx', $search_vatrate, 1);
- }
- if (dol_strlen($canvas) > 0) {
- $sql .= " AND p.canvas = '".$db->escape($canvas)."'";
- }
- // Search for tag/category ($searchCategoryProductList is an array of ID)
- if (!empty($searchCategoryProductList)) {
- $searchCategoryProductSqlList = array();
- $listofcategoryid = '';
- foreach ($searchCategoryProductList as $searchCategoryProduct) {
- if (intval($searchCategoryProduct) == -2) {
- $searchCategoryProductSqlList[] = "NOT EXISTS (SELECT ck.fk_product FROM ".MAIN_DB_PREFIX."categorie_product as ck WHERE p.rowid = ck.fk_product)";
- } elseif (intval($searchCategoryProduct) > 0) {
- if ($searchCategoryProductOperator == 0) {
- $searchCategoryProductSqlList[] = " EXISTS (SELECT ck.fk_product FROM ".MAIN_DB_PREFIX."categorie_product as ck WHERE p.rowid = ck.fk_product AND ck.fk_categorie = ".((int) $searchCategoryProduct).")";
- } else {
- $listofcategoryid .= ($listofcategoryid ? ', ' : '') .((int) $searchCategoryProduct);
- }
- }
- }
- if ($listofcategoryid) {
- $searchCategoryProductSqlList[] = " EXISTS (SELECT ck.fk_product FROM ".MAIN_DB_PREFIX."categorie_product as ck WHERE p.rowid = ck.fk_product AND ck.fk_categorie IN (".$db->sanitize($listofcategoryid)."))";
- }
- if ($searchCategoryProductOperator == 1) {
- if (!empty($searchCategoryProductSqlList)) {
- $sql .= " AND (".implode(' OR ', $searchCategoryProductSqlList).")";
- }
- } else {
- if (!empty($searchCategoryProductSqlList)) {
- $sql .= " AND (".implode(' AND ', $searchCategoryProductSqlList).")";
- }
- }
- }
- if ($fourn_id > 0) {
- $sql .= " AND pfp.fk_soc = ".((int) $fourn_id);
- }
- if ($search_country) {
- $sql .= " AND p.fk_country = ".((int) $search_country);
- }
- if ($search_state) {
- $sql .= " AND p.fk_state = ".((int) $search_state);
- }
- if ($search_finished >= 0 && $search_finished !== '') {
- $sql .= " AND p.finished = ".((int) $search_finished);
- }
- if ($search_accountancy_code_sell) {
- $sql .= natural_search($alias_product_perentity . '.accountancy_code_sell', clean_account($search_accountancy_code_sell));
- }
- if ($search_accountancy_code_sell_intra) {
- $sql .= natural_search($alias_product_perentity . '.accountancy_code_sell_intra', clean_account($search_accountancy_code_sell_intra));
- }
- if ($search_accountancy_code_sell_export) {
- $sql .= natural_search($alias_product_perentity . '.accountancy_code_sell_export', clean_account($search_accountancy_code_sell_export));
- }
- if ($search_accountancy_code_buy) {
- $sql .= natural_search($alias_product_perentity . '.accountancy_code_buy', clean_account($search_accountancy_code_buy));
- }
- if ($search_accountancy_code_buy_intra) {
- $sql .= natural_search($alias_product_perentity . '.accountancy_code_buy_intra', clean_account($search_accountancy_code_buy_intra));
- }
- if ($search_accountancy_code_buy_export) {
- $sql .= natural_search($alias_product_perentity . '.accountancy_code_buy_export', clean_account($search_accountancy_code_buy_export));
- }
- if (getDolGlobalString('PRODUCT_USE_UNITS') && $search_units) {
- $sql .= natural_search('cu.rowid', $search_units);
- }
- // 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, $object, $action); // Note that $action and $object may have been modified by hook
- $sql .= $hookmanager->resPrint;
- $sql .= " GROUP BY p.rowid, p.ref, p.description, p.label, p.barcode, p.price, p.tva_tx, p.price_ttc, p.price_base_type,";
- $sql .= " p.fk_product_type, p.duration, p.finished, p.tosell, p.tobuy, p.seuil_stock_alerte, p.desiredstock,";
- $sql .= ' p.datec, p.tms, p.entity, p.tobatch, p.pmp, p.cost_price, p.stock,';
- if (!getDolGlobalString('MAIN_PRODUCT_PERENTITY_SHARED')) {
- $sql .= " p.accountancy_code_sell, p.accountancy_code_sell_intra, p.accountancy_code_sell_export, p.accountancy_code_buy, p.accountancy_code_buy_intra, p.accountancy_code_buy_export,";
- } else {
- $sql .= " ppe.accountancy_code_sell, ppe.accountancy_code_sell_intra, ppe.accountancy_code_sell_export, ppe.accountancy_code_buy, ppe.accountancy_code_buy_intra, ppe.accountancy_code_buy_export,";
- }
- $sql .= ' p.weight, p.weight_units, p.length, p.length_units, p.width, p.width_units, p.height, p.height_units, p.surface, p.surface_units, p.volume, p.volume_units, p.fk_country, p.fk_state';
- if (getDolGlobalString('PRODUCT_USE_UNITS')) {
- $sql .= ', p.fk_unit, cu.label';
- }
- if (isModEnabled('workstation')) {
- $sql .= ', p.fk_default_workstation, ws.status, ws.ref';
- }
- if (isModEnabled('variants')) {
- $sql .= ', pac.rowid';
- $sql .= ', pac.fk_product_parent';
- }
- // 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 groupby from hooks
- $parameters = array();
- $reshook = $hookmanager->executeHooks('printFieldListGroupBy', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
- $sql .= $hookmanager->resPrint;
- //if (GETPOST("toolowstock")) $sql.= " HAVING SUM(s.reel) < p.seuil_stock_alerte"; // Not used yet
- $nbtotalofrecords = '';
- if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
- /* The fast and low memory method to get and count full list converts the sql into a sql count */
- $sqlforcount = preg_replace('/^'.preg_quote($sqlfields, '/').'/', 'SELECT COUNT(*) as nbtotalofrecords', $sql);
- $sqlforcount = preg_replace('/'.preg_quote($linktopfp, '/').'/', '', $sqlforcount);
- $sqlforcount = preg_replace('/GROUP BY .*$/', '', $sqlforcount);
- $resql = $db->query($sqlforcount);
- if ($resql) {
- $objforcount = $db->fetch_object($resql);
- $nbtotalofrecords = $objforcount->nbtotalofrecords;
- } else {
- dol_print_error($db);
- }
- if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller than the paging size (filtering), goto and load page 0
- $page = 0;
- $offset = 0;
- }
- $db->free($resql);
- }
- // Complete request and execute it with limit
- $sql .= $db->order($sortfield, $sortorder);
- if ($limit) {
- $sql .= $db->plimit($limit + 1, $offset);
- }
- $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 && getDolGlobalString('MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $sall) {
- $obj = $db->fetch_object($resql);
- $id = $obj->rowid;
- header("Location: ".DOL_URL_ROOT.'/product/card.php?id='.$id);
- exit;
- }
- // Output page
- // --------------------------------------------------------------------
- $helpurl = '';
- if ($search_type != '') {
- if ($search_type == 0) {
- $helpurl = 'EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
- } elseif ($search_type == 1) {
- $helpurl = 'EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios';
- }
- }
- $paramsCat = '';
- foreach ($searchCategoryProductList as $searchCategoryProduct) {
- $paramsCat .= "&search_category_product_list[]=".urlencode($searchCategoryProduct);
- }
- //llxHeader('', $title, $helpurl, '', 0, 0, array(), array(), $paramsCat, 'classforhorizontalscrolloftabs');
- llxHeader('', $title, $helpurl, '', 0, 0, array(), array(), $paramsCat, '');
- $arrayofselected = is_array($toselect) ? $toselect : array();
- // Displays product removal confirmation
- if (GETPOST('delprod')) {
- setEventMessages($langs->trans("ProductDeleted", GETPOST('delprod')), null, 'mesgs');
- }
- $param = '';
- if (!empty($mode)) {
- $param .= '&mode='.urlencode($mode);
- }
- if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
- $param .= '&contextpage='.urlencode($contextpage);
- }
- if ($limit > 0 && $limit != $conf->liste_limit) {
- $param .= '&limit='.((int) $limit);
- }
- if ($optioncss != '') {
- $param .= '&optioncss='.urlencode($optioncss);
- }
- if ($sall) {
- $param .= "&sall=".urlencode($sall);
- }
- if ($searchCategoryProductOperator == 1) {
- $param .= "&search_category_product_operator=".urlencode($searchCategoryProductOperator);
- }
- foreach ($searchCategoryProductList as $searchCategoryProduct) {
- $param .= "&search_category_product_list[]=".urlencode($searchCategoryProduct);
- }
- if ($search_ref) {
- $param .= "&search_ref=".urlencode($search_ref);
- }
- if ($search_ref_supplier) {
- $param .= "&search_ref_supplier=".urlencode($search_ref_supplier);
- }
- if ($search_barcode) {
- $param .= ($search_barcode ? "&search_barcode=".urlencode($search_barcode) : "");
- }
- if ($search_label) {
- $param .= "&search_label=".urlencode($search_label);
- }
- if ($search_default_workstation) {
- $param .= "&search_default_workstation=".urlencode($search_default_workstation);
- }
- if ($search_tosell != '') {
- $param .= "&search_tosell=".urlencode($search_tosell);
- }
- if ($search_tobuy != '') {
- $param .= "&search_tobuy=".urlencode($search_tobuy);
- }
- if ($search_tobatch) {
- $param .= "&search_tobatch=".urlencode($search_tobatch);
- }
- if ($search_country != '') {
- $param .= "&search_country=".urlencode($search_country);
- }
- if ($search_state != '') {
- $param .= "&search_state=".urlencode($search_state);
- }
- if ($search_vatrate) {
- $param .= "&search_vatrate=".urlencode($search_vatrate);
- }
- if ($fourn_id > 0) {
- $param .= "&fourn_id=".urlencode($fourn_id);
- }
- if ($show_childproducts) {
- $param .= ($show_childproducts ? "&search_show_childproducts=".urlencode($show_childproducts) : "");
- }
- if ($type != '') {
- $param .= '&type='.urlencode($type);
- }
- if ($search_type != '') {
- $param .= '&search_type='.urlencode($search_type);
- }
- if ($search_accountancy_code_sell) {
- $param .= "&search_accountancy_code_sell=".urlencode($search_accountancy_code_sell);
- }
- if ($search_accountancy_code_sell_intra) {
- $param .= "&search_accountancy_code_sell_intra=".urlencode($search_accountancy_code_sell_intra);
- }
- if ($search_accountancy_code_sell_export) {
- $param .= "&search_accountancy_code_sell_export=".urlencode($search_accountancy_code_sell_export);
- }
- if ($search_accountancy_code_buy) {
- $param .= "&search_accountancy_code_buy=".urlencode($search_accountancy_code_buy);
- }
- if ($search_accountancy_code_buy_intra) {
- $param .= "&search_accountancy_code_buy_intra=".urlencode($search_accountancy_code_buy_intra);
- }
- if ($search_accountancy_code_buy_export) {
- $param .= "&search_accountancy_code_buy_export=".urlencode($search_accountancy_code_buy_export);
- }
- if ($search_finished) {
- $param .= "&search_finished=".urlencode($search_finished);
- }
- // Add $param from extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
- // Add $param from hooks
- $parameters = array();
- $reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
- $param .= $hookmanager->resPrint;
- // List of mass actions available
- $arrayofmassactions = array(
- 'generate_doc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("ReGeneratePDF"),
- 'edit_extrafields'=>img_picto('', 'edit', 'class="pictofixedwidth"').$langs->trans("ModifyValueExtrafields"),
- //'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
- //'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
- );
- if ($user->hasRight($rightskey, 'creer')) {
- $arrayofmassactions['preupdateprice'] = img_picto('', 'edit', 'class="pictofixedwidth"').$langs->trans("UpdatePrice");
- $arrayofmassactions['switchonsalestatus'] = img_picto('', 'stop-circle', 'class="pictofixedwidth"').$langs->trans("SwitchOnSaleStatus");
- $arrayofmassactions['switchonpurchasestatus'] = img_picto('', 'stop-circle', 'class="pictofixedwidth"').$langs->trans("SwitchOnPurchaseStatus");
- }
- if (isModEnabled('category') && $user->hasRight($rightskey, 'creer')) {
- $arrayofmassactions['preaffecttag'] = img_picto('', 'category', 'class="pictofixedwidth"').$langs->trans("AffectTag");
- }
- if (in_array($massaction, array('presend', 'predelete','preaffecttag', 'edit_extrafields', 'preupdateprice'))) {
- $arrayofmassactions = array();
- }
- if ($user->hasRight($rightskey, 'supprimer')) {
- $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
- }
- $massactionbutton = $form->selectMassAction('', $arrayofmassactions);
- $newcardbutton = '';
- $newcardbutton .= dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-bars imgforviewmode', $_SERVER["PHP_SELF"].'?mode=common'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ((empty($mode) || $mode == 'common') ? 2 : 1), array('morecss'=>'reposition'));
- $newcardbutton .= dolGetButtonTitle($langs->trans('ViewKanban'), '', 'fa fa-th-list imgforviewmode', $_SERVER["PHP_SELF"].'?mode=kanban'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ($mode == 'kanban' ? 2 : 1), array('morecss'=>'reposition'));
- if ($type === "") {
- $perm = ($user->hasRight('produit', 'creer') || $user->hasRight('service', 'creer'));
- } elseif ($type == Product::TYPE_SERVICE) {
- $perm = $user->hasRight('service', 'creer');
- } elseif ($type == Product::TYPE_PRODUCT) {
- $perm = $user->hasRight('produit', 'creer');
- }
- $oldtype = $type;
- $params = array();
- if ($type === "") {
- $params['forcenohideoftext'] = 1;
- }
- $newcardbutton .= dolGetButtonTitleSeparator();
- if ($type === "" || $type == Product::TYPE_PRODUCT) {
- $label = 'NewProduct';
- $newcardbutton .= dolGetButtonTitle($langs->trans($label), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/product/card.php?action=create&type=0', '', $perm, $params);
- }
- if ($type === "" || $type == Product::TYPE_SERVICE) {
- $label = 'NewService';
- $newcardbutton .= dolGetButtonTitle($langs->trans($label), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/product/card.php?action=create&type=1', '', $perm, $params);
- }
- print '<form id="searchFormList" action="'.$_SERVER["PHP_SELF"].'" method="POST" name="formulaire">';
- 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="page" value="'.$page.'">';
- print '<input type="hidden" name="type" value="'.$type.'">';
- print '<input type="hidden" name="page_y" value="">';
- print '<input type="hidden" name="mode" value="'.$mode.'">';
- if (empty($arrayfields['p.fk_product_type']['checked'])) {
- print '<input type="hidden" name="search_type" value="'.dol_escape_htmltag($search_type).'">';
- }
- $picto = 'product';
- if ($type == 1) {
- $picto = 'service';
- }
- print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, $picto, 0, $newcardbutton, '', $limit, 0, 0, 1);
- $topicmail = "Information";
- $modelmail = "product";
- $objecttmp = new Product($db);
- $trackid = 'prod'.$object->id;
- include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
- if (!empty($catid)) {
- print "<div id='ways'>";
- $c = new Categorie($db);
- $ways = $c->print_all_ways(' > ', 'product/list.php');
- print " > ".$ways[0]."<br>\n";
- print "</div><br>";
- }
- if ($sall) {
- $setupstring = '';
- foreach ($fieldstosearchall as $key => $val) {
- $fieldstosearchall[$key] = $langs->trans($val);
- $setupstring .= $key."=".$val.";";
- }
- print '<!-- Search done like if PRODUCT_QUICKSEARCH_ON_FIELDS = '.$setupstring.' -->'."\n";
- print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $sall).join(', ', $fieldstosearchall).'</div>'."\n";
- }
- // Filter on categories
- $moreforfilter = '';
- if (isModEnabled('categorie') && $user->hasRight('categorie', 'read')) {
- $formcategory = new FormCategory($db);
- $moreforfilter .= $formcategory->getFilterBox(Categorie::TYPE_PRODUCT, $searchCategoryProductList, 'minwidth300', $searchCategoryProductOperator ? $searchCategoryProductOperator : 0);
- }
- // Show/hide child variant products
- if (isModEnabled('variants')) {
- $moreforfilter .= '<div class="divsearchfield">';
- $moreforfilter .= '<input type="checkbox" id="search_show_childproducts" name="search_show_childproducts"'.($show_childproducts ? 'checked="checked"' : '').'>';
- $moreforfilter .= ' <label for="search_show_childproducts">'.$langs->trans('ShowChildProducts').'</label>';
- $moreforfilter .= '</div>';
- }
- $parameters = array();
- $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // 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 = ($mode != 'kanban' ? $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN', '')) : ''); // This also change content of $arrayfields
- $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
- print '<div class="div-table-responsive">';
- print '<table class="tagtable nobottomiftotal liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
- // Fields title search
- // --------------------------------------------------------------------
- print '<tr class="liste_titre_filter">';
- // Action column
- if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
- print '<td class="liste_titre center maxwidthsearch">';
- $searchpicto = $form->showFilterButtons('left');
- print $searchpicto;
- print '</td>';
- }
- if (!empty($arrayfields['p.rowid']['checked'])) {
- print '<td class="liste_titre left">';
- print '<input class="flat" type="text" name="search_id" size="4" value="'.dol_escape_htmltag($search_id).'">';
- print '</td>';
- }
- if (!empty($arrayfields['p.ref']['checked'])) {
- print '<td class="liste_titre left">';
- print '<input class="flat" type="text" name="search_ref" size="8" value="'.dol_escape_htmltag($search_ref).'">';
- print '</td>';
- }
- if (!empty($arrayfields['pfp.ref_fourn']['checked'])) {
- print '<td class="liste_titre left">';
- print '<input class="flat" type="text" name="search_ref_supplier" size="8" value="'.dol_escape_htmltag($search_ref_supplier).'">';
- print '</td>';
- }
- // Thumbnail
- if (!empty($arrayfields['thumbnail']['checked'])) {
- print '<td class="liste_titre center">';
- print '</td>';
- }
- if (!empty($arrayfields['p.label']['checked'])) {
- print '<td class="liste_titre left">';
- print '<input class="flat" type="text" name="search_label" size="12" value="'.dol_escape_htmltag($search_label).'">';
- print '</td>';
- }
- // Type
- if (!empty($arrayfields['p.fk_product_type']['checked'])) {
- print '<td class="liste_titre center">';
- $array = array('-1'=>' ', '0'=>$langs->trans('Product'), '1'=>$langs->trans('Service'));
- print $form->selectarray('search_type', $array, $search_type);
- print '</td>';
- }
- // Description
- if (!empty($arrayfields['p.description']['checked'])) {
- print '<td class="liste_titre left">';
- print '</td>';
- }
- // Barcode
- if (!empty($arrayfields['p.barcode']['checked'])) {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_barcode" size="6" value="'.dol_escape_htmltag($search_barcode).'">';
- print '</td>';
- }
- // Duration
- if (!empty($arrayfields['p.duration']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Parent
- if (!empty($arrayfields['pac.fk_product_parent']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Finished
- if (!empty($arrayfields['p.finished']['checked'])) {
- print '<td class="liste_titre">';
- print $formproduct->selectProductNature('search_finished', $search_finished);
- print '</td>';
- }
- // Weight
- if (!empty($arrayfields['p.weight']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Weight units
- if (!empty($arrayfields['p.weight_units']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Length
- if (!empty($arrayfields['p.length']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Length units
- if (!empty($arrayfields['p.length_units']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Width
- if (!empty($arrayfields['p.width']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Width units
- if (!empty($arrayfields['p.width_units']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Height
- if (!empty($arrayfields['p.height']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Height units
- if (!empty($arrayfields['p.height_units']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Surface
- if (!empty($arrayfields['p.surface']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Surface units
- if (!empty($arrayfields['p.surface_units']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Volume
- if (!empty($arrayfields['p.volume']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Volume units
- if (!empty($arrayfields['p.volume_units']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Unit
- if (!empty($arrayfields['cu.label']['checked'])) {
- print '<td class="liste_titre">';
- print $form->selectUnits($search_units, 'search_units', 1);
- print '</td>';
- }
- // Default workstation
- if (!empty($arrayfields['p.fk_default_workstation']['checked'])) {
- print '<td class="liste_titre">';
- print '<input class="flat width75" type="text" name="search_default_workstation" value="'.dol_escape_htmltag($search_default_workstation).'">';
- print '</td>';
- }
- // Sell price
- if (!empty($arrayfields['p.sellprice']['checked'])) {
- print '<td class="liste_titre right">';
- print '</td>';
- }
- // Multiprice
- if (getDolGlobalString('PRODUIT_MULTIPRICES')) {
- foreach ($arraypricelevel as $key => $value) {
- if (!empty($arrayfields['p.sellprice'.$key]['checked'])) {
- print '<td class="liste_titre right">';
- print '</td>';
- }
- }
- }
- // Minimum buying Price
- if (!empty($arrayfields['p.minbuyprice']['checked'])) {
- print '<td class="liste_titre">';
- print ' ';
- print '</td>';
- }
- // Number buying Price
- if (!empty($arrayfields['p.numbuyprice']['checked'])) {
- print '<td class="liste_titre">';
- print ' ';
- print '</td>';
- }
- // VAT or Sell Tax Rate
- if (!empty($arrayfields['p.tva_tx']['checked'])) {
- print '<td class="liste_titre right">';
- print '<input class="right flat maxwidth50" placeholder="%" type="text" name="search_vatrate" size="1" value="'.dol_escape_htmltag($search_vatrate).'">';
- print '</td>';
- }
- // WAP
- if (!empty($arrayfields['p.pmp']['checked'])) {
- print '<td class="liste_titre">';
- print ' ';
- print '</td>';
- }
- // cost_price
- if (!empty($arrayfields['p.cost_price']['checked'])) {
- print '<td class="liste_titre">';
- print ' ';
- print '</td>';
- }
- // Limit for alert
- if (!empty($arrayfields['p.seuil_stock_alerte']['checked'])) {
- print '<td class="liste_titre">';
- print ' ';
- print '</td>';
- }
- // Desired stock
- if (!empty($arrayfields['p.desiredstock']['checked'])) {
- print '<td class="liste_titre">';
- print ' ';
- print '</td>';
- }
- // Stock
- if (!empty($arrayfields['p.stock']['checked'])) {
- print '<td class="liste_titre"> </td>';
- }
- // Stock
- if (!empty($arrayfields['stock_virtual']['checked'])) {
- print '<td class="liste_titre"> </td>';
- }
- // To batch
- if (!empty($arrayfields['p.tobatch']['checked'])) {
- print '<td class="liste_titre center">';
- $statutarray = array(
- '-1' => '',
- '0' => $langs->trans("ProductStatusNotOnBatchShort"),
- '1' => $langs->trans("ProductStatusOnBatchShort"),
- '2' => $langs->trans("ProductStatusOnSerialShort")
- );
- print $form->selectarray('search_tobatch', $statutarray, $search_tobatch);
- print '</td>';
- }
- // Country
- if (!empty($arrayfields['p.fk_country']['checked'])) {
- print '<td class="liste_titre center">';
- print $form->select_country($search_country, 'search_country', '', 0);
- print '</td>';
- }
- // State
- if (!empty($arrayfields['p.fk_state']['checked'])) {
- print '<td class="liste_titre center">';
- print $formcompany->select_state($search_state, $search_country);
- print '</td>';
- }
- // Accountancy code sell
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell']['checked'])) {
- print '<td class="liste_titre"><input class="flat maxwidth75" type="text" name="search_accountancy_code_sell" value="'.dol_escape_htmltag($search_accountancy_code_sell).'"></td>';
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell_intra']['checked'])) {
- print '<td class="liste_titre"><input class="flat maxwidth75" type="text" name="search_accountancy_code_sell_intra" value="'.dol_escape_htmltag($search_accountancy_code_sell_intra).'"></td>';
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell_export']['checked'])) {
- print '<td class="liste_titre"><input class="flat maxwidth75" type="text" name="search_accountancy_code_sell_export" value="'.dol_escape_htmltag($search_accountancy_code_sell_export).'"></td>';
- }
- // Accountancy code buy
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy']['checked'])) {
- print '<td class="liste_titre"><input class="flat maxwidth75" type="text" name="search_accountancy_code_buy" value="'.dol_escape_htmltag($search_accountancy_code_buy).'"></td>';
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy_intra']['checked'])) {
- print '<td class="liste_titre"><input class="flat maxwidth75" type="text" name="search_accountancy_code_buy_intra" value="'.dol_escape_htmltag($search_accountancy_code_buy_intra).'"></td>';
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy_export']['checked'])) {
- print '<td class="liste_titre"><input class="flat maxwidth75" type="text" name="search_accountancy_code_buy_export" value="'.dol_escape_htmltag($search_accountancy_code_buy_export).'"></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, $object, $action); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- // Date creation
- if (!empty($arrayfields['p.datec']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Date modification
- if (!empty($arrayfields['p.tms']['checked'])) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- if (!empty($arrayfields['p.tosell']['checked'])) {
- print '<td class="liste_titre center parentonrightofpage">';
- print $form->selectarray('search_tosell', array('0'=>$langs->trans('ProductStatusNotOnSellShort'), '1'=>$langs->trans('ProductStatusOnSellShort')), $search_tosell, 1, 0, 0, '', 0, 0, 0, '', 'search_status width100 onrightofpage');
- print '</td>';
- }
- if (!empty($arrayfields['p.tobuy']['checked'])) {
- print '<td class="liste_titre center parentonrightofpage">';
- print $form->selectarray('search_tobuy', array('0'=>$langs->trans('ProductStatusNotOnBuyShort'), '1'=>$langs->trans('ProductStatusOnBuyShort')), $search_tobuy, 1, 0, 0, '', 0, 0, 0, '', 'search_status width100 onrightofpage');
- print '</td>';
- }
- // Action column
- if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
- print '<td class="liste_titre center maxwidthsearch">';
- $searchpicto = $form->showFilterButtons();
- print $searchpicto;
- print '</td>';
- }
- print '</tr>'."\n";
- $totalarray = array();
- $totalarray['nbfield'] = 0;
- // Fields title label
- // --------------------------------------------------------------------
- print '<tr class="liste_titre">';
- // Action column
- if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
- print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.rowid']['checked'])) {
- print_liste_field_titre($arrayfields['p.rowid']['label'], $_SERVER["PHP_SELF"], "p.rowid", "", $param, "", $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.ref']['checked'])) {
- print_liste_field_titre($arrayfields['p.ref']['label'], $_SERVER["PHP_SELF"], "p.ref", "", $param, "", $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['pfp.ref_fourn']['checked'])) {
- print_liste_field_titre($arrayfields['pfp.ref_fourn']['label'], $_SERVER["PHP_SELF"], "pfp.ref_fourn", "", $param, "", $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['thumbnail']['checked'])) {
- print_liste_field_titre($arrayfields['thumbnail']['label'], $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.label']['checked'])) {
- print_liste_field_titre($arrayfields['p.label']['label'], $_SERVER["PHP_SELF"], "p.label", "", $param, "", $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.fk_product_type']['checked'])) {
- print_liste_field_titre($arrayfields['p.fk_product_type']['label'], $_SERVER["PHP_SELF"], "p.fk_product_type", "", $param, "", $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.description']['checked'])) {
- print_liste_field_titre($arrayfields['p.description']['label'], $_SERVER["PHP_SELF"], "p.description", "", $param, "", $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.barcode']['checked'])) {
- print_liste_field_titre($arrayfields['p.barcode']['label'], $_SERVER["PHP_SELF"], "p.barcode", "", $param, "", $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.duration']['checked'])) {
- print_liste_field_titre($arrayfields['p.duration']['label'], $_SERVER["PHP_SELF"], "p.duration", "", $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['pac.fk_product_parent']['checked'])) {
- print_liste_field_titre($arrayfields['pac.fk_product_parent']['label'], $_SERVER["PHP_SELF"], "pac.fk_product_parent", "", $param, '', $sortfield, $sortorder, '', empty($arrayfields['pac.fk_product_parent']['help']) ? '' : $arrayfields['pac.fk_product_parent']['help']);
- }
- if (!empty($arrayfields['p.finished']['checked'])) {
- print_liste_field_titre($arrayfields['p.finished']['label'], $_SERVER["PHP_SELF"], "p.finished", "", $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.weight']['checked'])) {
- print_liste_field_titre($arrayfields['p.weight']['label'], $_SERVER['PHP_SELF'], 'p.weight', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.weight_units']['checked'])) {
- print_liste_field_titre($arrayfields['p.weight_units']['label'], $_SERVER['PHP_SELF'], 'p.weight_units', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.length']['checked'])) {
- print_liste_field_titre($arrayfields['p.length']['label'], $_SERVER['PHP_SELF'], 'p.length', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.length_units']['checked'])) {
- print_liste_field_titre($arrayfields['p.length_units']['label'], $_SERVER['PHP_SELF'], 'p.length_units', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.width']['checked'])) {
- print_liste_field_titre($arrayfields['p.width']['label'], $_SERVER['PHP_SELF'], 'p.width', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.width_units']['checked'])) {
- print_liste_field_titre($arrayfields['p.width_units']['label'], $_SERVER['PHP_SELF'], 'p.width_units', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.height']['checked'])) {
- print_liste_field_titre($arrayfields['p.height']['label'], $_SERVER['PHP_SELF'], 'p.height', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.height_units']['checked'])) {
- print_liste_field_titre($arrayfields['p.height_units']['label'], $_SERVER['PHP_SELF'], 'p.height_units', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.surface']['checked'])) {
- print_liste_field_titre($arrayfields['p.surface']['label'], $_SERVER['PHP_SELF'], "p.surface", '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.surface_units']['checked'])) {
- print_liste_field_titre($arrayfields['p.surface_units']['label'], $_SERVER['PHP_SELF'], 'p.surface_units', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.volume']['checked'])) {
- print_liste_field_titre($arrayfields['p.volume']['label'], $_SERVER['PHP_SELF'], 'p.volume', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.volume_units']['checked'])) {
- print_liste_field_titre($arrayfields['p.volume_units']['label'], $_SERVER['PHP_SELF'], 'p.volume_units', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['cu.label']['checked'])) {
- print_liste_field_titre($arrayfields['cu.label']['label'], $_SERVER['PHP_SELF'], '', '', $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.fk_default_workstation']['checked'])) {
- print_liste_field_titre($arrayfields['p.fk_default_workstation']['label'], $_SERVER['PHP_SELF'], 'ws.ref', '', $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.sellprice']['checked'])) {
- print_liste_field_titre($arrayfields['p.sellprice']['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- // Multiprices
- if (getDolGlobalString('PRODUIT_MULTIPRICES')) {
- foreach ($arraypricelevel as $key => $value) {
- if (!empty($arrayfields['p.sellprice'.$key]['checked'])) {
- print_liste_field_titre($arrayfields['p.sellprice'.$key]['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- }
- }
- if (!empty($arrayfields['p.minbuyprice']['checked'])) {
- print_liste_field_titre($arrayfields['p.minbuyprice']['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.numbuyprice']['checked'])) {
- print_liste_field_titre($arrayfields['p.numbuyprice']['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.tva_tx']['checked'])) {
- print_liste_field_titre($arrayfields['p.tva_tx']['label'], $_SERVER["PHP_SELF"], 'p.tva_tx', "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.pmp']['checked'])) {
- print_liste_field_titre($arrayfields['p.pmp']['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.cost_price']['checked'])) {
- print_liste_field_titre($arrayfields['p.cost_price']['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.seuil_stock_alerte']['checked'])) {
- print_liste_field_titre($arrayfields['p.seuil_stock_alerte']['label'], $_SERVER["PHP_SELF"], "p.seuil_stock_alerte", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.desiredstock']['checked'])) {
- print_liste_field_titre($arrayfields['p.desiredstock']['label'], $_SERVER["PHP_SELF"], "p.desiredstock", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.stock']['checked'])) {
- print_liste_field_titre($arrayfields['p.stock']['label'], $_SERVER["PHP_SELF"], "p.stock", "", $param, '', $sortfield, $sortorder, 'right ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['stock_virtual']['checked'])) {
- print_liste_field_titre($arrayfields['stock_virtual']['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'right ', 'VirtualStockDesc');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.tobatch']['checked'])) {
- print_liste_field_titre($arrayfields['p.tobatch']['label'], $_SERVER["PHP_SELF"], "p.tobatch", "", $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.fk_country']['checked'])) {
- print_liste_field_titre($arrayfields['p.fk_country']['label'], $_SERVER["PHP_SELF"], "p.fk_country", "", $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.fk_state']['checked'])) {
- print_liste_field_titre($arrayfields['p.fk_state']['label'], $_SERVER["PHP_SELF"], "p.fk_state", "", $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell']['checked'])) {
- print_liste_field_titre($arrayfields[$alias_product_perentity . '.accountancy_code_sell']['label'], $_SERVER["PHP_SELF"], $alias_product_perentity . ".accountancy_code_sell", "", $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell_intra']['checked'])) {
- print_liste_field_titre($arrayfields[$alias_product_perentity . '.accountancy_code_sell_intra']['label'], $_SERVER["PHP_SELF"], $alias_product_perentity . ".accountancy_code_sell_intra", "", $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell_export']['checked'])) {
- print_liste_field_titre($arrayfields[$alias_product_perentity . '.accountancy_code_sell_export']['label'], $_SERVER["PHP_SELF"], $alias_product_perentity . ".accountancy_code_sell_export", "", $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy']['checked'])) {
- print_liste_field_titre($arrayfields[$alias_product_perentity . '.accountancy_code_buy']['label'], $_SERVER["PHP_SELF"], $alias_product_perentity . ".accountancy_code_buy", "", $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy_intra']['checked'])) {
- print_liste_field_titre($arrayfields[$alias_product_perentity . '.accountancy_code_buy_intra']['label'], $_SERVER["PHP_SELF"], $alias_product_perentity . ".accountancy_code_buy_intra", "", $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy_export']['checked'])) {
- print_liste_field_titre($arrayfields[$alias_product_perentity . '.accountancy_code_buy_export']['label'], $_SERVER["PHP_SELF"], $alias_product_perentity . ".accountancy_code_buy_export", "", $param, '', $sortfield, $sortorder);
- $totalarray['nbfield']++;
- }
- // Extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
- // Hook fields
- $parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder, 'totalarray'=>&$totalarray);
- $reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- if (!empty($arrayfields['p.datec']['checked'])) {
- print_liste_field_titre($arrayfields['p.datec']['label'], $_SERVER["PHP_SELF"], "p.datec", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.tms']['checked'])) {
- print_liste_field_titre($arrayfields['p.tms']['label'], $_SERVER["PHP_SELF"], "p.tms", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.tosell']['checked'])) {
- print_liste_field_titre($arrayfields['p.tosell']['label'], $_SERVER["PHP_SELF"], "p.tosell", "", $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- if (!empty($arrayfields['p.tobuy']['checked'])) {
- print_liste_field_titre($arrayfields['p.tobuy']['label'], $_SERVER["PHP_SELF"], "p.tobuy", "", $param, '', $sortfield, $sortorder, 'center ');
- $totalarray['nbfield']++;
- }
- // Action column
- if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
- print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ');
- $totalarray['nbfield']++;
- }
- print '</tr>'."\n";
- // Loop on record
- // --------------------------------------------------------------------
- $i = 0;
- $savnbfield = $totalarray['nbfield'];
- $totalarray = array();
- $totalarray['nbfield'] = 0;
- $imaxinloop = ($limit ? min($num, $limit) : $num);
- while ($i < $imaxinloop) {
- $obj = $db->fetch_object($resql);
- if (empty($obj)) {
- break; // Should not happen
- }
- // Multilangs
- if (getDolGlobalInt('MAIN_MULTILANGS')) { // If multilang is enabled
- $sql = "SELECT label";
- $sql .= " FROM ".MAIN_DB_PREFIX."product_lang";
- $sql .= " WHERE fk_product = ".((int) $obj->rowid);
- $sql .= " AND lang = '".$db->escape($langs->getDefaultLang())."'";
- $sql .= " LIMIT 1";
- $result = $db->query($sql);
- if ($result) {
- $objtp = $db->fetch_object($result);
- if (!empty($objtp->label)) {
- $obj->label = $objtp->label;
- }
- }
- }
- $parameters = array('staticdata' => $obj);
- // Note that $action and $object may have been modified by hook
- // do product_static fetch in hook if wanted or anything else
- $reshook = $hookmanager->executeHooks('loadStaticObject', $parameters, $product_static, $action);
- if (empty($reshook)) {
- $product_static->id = $obj->rowid;
- $product_static->ref = $obj->ref;
- $product_static->description = $obj->description;
- $product_static->ref_fourn = empty($obj->ref_supplier) ? '' : $obj->ref_supplier; // deprecated
- $product_static->ref_supplier = empty($obj->ref_supplier) ? '' : $obj->ref_supplier;
- $product_static->label = $obj->label;
- $product_static->barcode = $obj->barcode;
- $product_static->finished = $obj->finished;
- $product_static->type = $obj->fk_product_type;
- $product_static->status_buy = $obj->tobuy;
- $product_static->status = $obj->tosell;
- $product_static->status_batch = $obj->tobatch;
- $product_static->entity = $obj->entity;
- $product_static->pmp = $obj->pmp;
- $product_static->accountancy_code_sell = $obj->accountancy_code_sell;
- $product_static->accountancy_code_sell_export = $obj->accountancy_code_sell_export;
- $product_static->accountancy_code_sell_intra = $obj->accountancy_code_sell_intra;
- $product_static->accountancy_code_buy = $obj->accountancy_code_buy;
- $product_static->accountancy_code_buy_intra = $obj->accountancy_code_buy_intra;
- $product_static->accountancy_code_buy_export = $obj->accountancy_code_buy_export;
- $product_static->length = $obj->length;
- $product_static->length_units = $obj->length_units;
- $product_static->width = $obj->width;
- $product_static->width_units = $obj->width_units;
- $product_static->height = $obj->height;
- $product_static->height_units = $obj->height_units;
- $product_static->weight = $obj->weight;
- $product_static->weight_units = $obj->weight_units;
- $product_static->volume = $obj->volume;
- $product_static->volume_units = $obj->volume_units;
- $product_static->surface = $obj->surface;
- $product_static->surface_units = $obj->surface_units;
- if (getDolGlobalString('PRODUCT_USE_UNITS')) {
- $product_static->fk_unit = $obj->fk_unit;
- }
- // STOCK_DISABLE_OPTIM_LOAD can be set to force load_stock whatever is permissions on stock.
- if ((isModEnabled('stock') && $user->hasRight('stock', 'lire') && $search_type != 1) || getDolGlobalString('STOCK_DISABLE_OPTIM_LOAD')) { // To optimize call of load_stock
- if ($product_static->type != 1 || getDolGlobalString('STOCK_SUPPORTS_SERVICES')) { // Not a service
- $option = 'nobatch';
- if (empty($arrayfields['stock_virtual']['checked'])) {
- $option .= ',novirtual';
- }
- $product_static->load_stock($option); // Load stock_reel + stock_warehouse. This can also call load_virtual_stock()
- }
- }
- }
- $product_static->price = $obj->price;
- $object = $product_static;
- $usercancreadprice = getDolGlobalString('MAIN_USE_ADVANCED_PERMS') ? $user->hasRight('product', 'product_advance', 'read_prices') : $user->hasRight('product', 'lire');
- if ($product_static->isService()) {
- $usercancreadprice = getDolGlobalString('MAIN_USE_ADVANCED_PERMS') ? $user->hasRight('service', 'service_advance', 'read_prices') : $user->hasRight('service', 'lire');
- }
- if ($mode == 'kanban') {
- if ($i == 0) {
- print '<tr class="trkanban"><td colspan="'.$savnbfield.'">';
- print '<div class="box-flex-container kanban">';
- }
- // Output Kanban
- $selected = -1;
- if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
- $selected = 0;
- if (in_array($object->id, $arrayofselected)) {
- $selected = 1;
- }
- }
- print $object->getKanbanView('', array('selected' => $selected));
- if ($i == ($imaxinloop - 1)) {
- print '</div>';
- print '</td></tr>';
- }
- } else {
- // Show line of result
- $j = 0;
- print '<tr data-rowid="'.$object->id.'" class="oddeven">';
- // Action column
- if (getDolGlobalString('MAIN_CHECKBOX_LEFT_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($object->id, $arrayofselected)) {
- $selected = 1;
- }
- print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.'"'.($selected ? ' checked="checked"' : '').'>';
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Rowid
- if (!empty($arrayfields['p.rowid']['checked'])) {
- print '<td class="nowraponall">';
- print $product_static->id;
- print "</td>\n";
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Ref
- if (!empty($arrayfields['p.ref']['checked'])) {
- print '<td class="tdoverflowmax250">';
- print $product_static->getNomUrl(1);
- print "</td>\n";
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Ref supplier
- if (!empty($arrayfields['pfp.ref_fourn']['checked'])) {
- print '<td class="tdoverflowmax200">';
- print $product_static->getNomUrl(1);
- print "</td>\n";
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Thumbnail
- if (!empty($arrayfields['thumbnail']['checked'])) {
- $product_thumbnail_html = '';
- if (!empty($product_static->entity)) {
- $product_thumbnail = $product_static->show_photos('product', $conf->product->multidir_output[$product_static->entity], 1, 1, 0, 0, 0, 80);
- if ($product_static->nbphoto > 0) {
- $product_thumbnail_html = $product_thumbnail;
- }
- }
- print '<td class="center">' . $product_thumbnail_html . '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Label
- if (!empty($arrayfields['p.label']['checked'])) {
- print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($product_static->label).'">'.$product_static->label.'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Type
- if (!empty($arrayfields['p.fk_product_type']['checked'])) {
- print '<td class="center">';
- $s = '';
- if ($product_static->type == 0) {
- $s .= img_picto($langs->trans("Product"), 'product', 'class="paddingleftonly paddingrightonly colorgrey"');
- } else {
- $s .= img_picto($langs->trans("Service"), 'service', 'class="paddingleftonly paddingrightonly colorgrey"');
- }
- print $s;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Description
- if (!empty($arrayfields['p.description']['checked'])) {
- print '<td class="left">';
- // Since description can be very large (several pages of HTML-
- // code) we limit to the first two rows
- print dolGetFirstLineofText($product_static->description, 2);
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Barcode
- if (!empty($arrayfields['p.barcode']['checked'])) {
- print '<td>'.$product_static->barcode.'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Duration
- if (!empty($arrayfields['p.duration']['checked'])) {
- print '<td class="center nowraponall">';
- if (preg_match('/([^a-z]+)[a-z]$/i', $obj->duration)) {
- $duration_value = substr($obj->duration, 0, dol_strlen($obj->duration) - 1);
- $duration_unit = substr($obj->duration, -1);
- if ((float) $duration_value > 1) {
- $dur = array("i"=>$langs->trans("Minutes"), "h"=>$langs->trans("Hours"), "d"=>$langs->trans("Days"), "w"=>$langs->trans("Weeks"), "m"=>$langs->trans("Months"), "y"=>$langs->trans("Years"));
- } elseif ((float) $duration_value > 0) {
- $dur = array("i"=>$langs->trans("Minute"), "h"=>$langs->trans("Hour"), "d"=>$langs->trans("Day"), "w"=>$langs->trans("Week"), "m"=>$langs->trans("Month"), "y"=>$langs->trans("Year"));
- }
- print $duration_value;
- print((!empty($duration_unit) && isset($dur[$duration_unit]) && $duration_value != '') ? ' '.$langs->trans($dur[$duration_unit]) : '');
- } elseif (!preg_match('/^[a-z]$/i', $obj->duration)) { // If duration is a simple char (like 's' of 'm'), we do not show value
- print $obj->duration;
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- if (!empty($arrayfields['pac.fk_product_parent']['checked'])) {
- print '<td class="nowraponall">';
- if ($obj->fk_product_parent > 0) {
- if (!empty($conf->cache['product'][$obj->fk_product_parent])) {
- $product_parent_static = $conf->cache['product'][$obj->fk_product_parent];
- } else {
- $product_parent_static= new Product($db);
- $product_parent_static->fetch($obj->fk_product_parent);
- $conf->cache['product'][$obj->fk_product_parent] = $product_parent_static;
- }
- print $product_parent_static->getNomUrl(1);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Finished
- if (!empty($arrayfields['p.finished']['checked'])) {
- print '<td class="center">';
- print $product_static->getLibFinished();
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Weight
- if (!empty($arrayfields['p.weight']['checked'])) {
- print '<td class="center">';
- print $product_static->weight;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Weight units
- if (!empty($arrayfields['p.weight_units']['checked'])) {
- print '<td class="center">';
- if ($product_static->weight != '') {
- print measuringUnitString(0, 'weight', $product_static->weight_units);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Length
- if (!empty($arrayfields['p.length']['checked'])) {
- print '<td class="center">';
- print $product_static->length;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Length units
- if (!empty($arrayfields['p.length_units']['checked'])) {
- print '<td class="center">';
- if ($product_static->length != '') {
- print measuringUnitString(0, 'size', $product_static->length_units);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Width
- if (!empty($arrayfields['p.width']['checked'])) {
- print '<td align="center">';
- print $product_static->width;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Width units
- if (!empty($arrayfields['p.width_units']['checked'])) {
- print '<td class="center">';
- if ($product_static->width != '') {
- print measuringUnitString(0, 'size', $product_static->width_units);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Height
- if (!empty($arrayfields['p.height']['checked'])) {
- print '<td align="center">';
- print $product_static->height;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Height units
- if (!empty($arrayfields['p.height_units']['checked'])) {
- print '<td class="center">';
- if ($product_static->height != '') {
- print measuringUnitString(0, 'size', $product_static->height_units);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Surface
- if (!empty($arrayfields['p.surface']['checked'])) {
- print '<td class="center">';
- print $product_static->surface;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Surface units
- if (!empty($arrayfields['p.surface_units']['checked'])) {
- print '<td class="center">';
- if ($product_static->surface != '') {
- print measuringUnitString(0, 'surface', $product_static->surface_units);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Volume
- if (!empty($arrayfields['p.volume']['checked'])) {
- print '<td class="center">';
- print $product_static->volume;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Volume units
- if (!empty($arrayfields['p.volume_units']['checked'])) {
- print '<td class="center">';
- if ($product_static->volume != '') {
- print measuringUnitString(0, 'volume', $product_static->volume_units);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Unit
- if (!empty($arrayfields['cu.label']['checked'])) {
- print '<td align="center">';
- if (!empty($obj->cu_label)) {
- print $langs->trans($obj->cu_label);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Default Workstation
- if (!empty($arrayfields['p.fk_default_workstation']['checked'])) {
- print '<td align="left">';
- if (isModEnabled('workstation') && !empty($obj->fk_default_workstation)) {
- $workstation_static->id = $obj->fk_default_workstation;
- $workstation_static->ref = $obj->ref_workstation;
- $workstation_static->status = $obj->status_workstation;
- print $workstation_static->getNomUrl(1);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Sell price
- if (!empty($arrayfields['p.sellprice']['checked'])) {
- print '<td class="right nowraponall">';
- if ($product_static->status && $usercancreadprice) {
- if ($obj->price_base_type == 'TTC') {
- print '<span class="amount">'.price($obj->price_ttc).' '.$langs->trans("TTC").'</span>';
- } else {
- print '<span class="amount">'.price($obj->price).' '.$langs->trans("HT").'</span>';
- }
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Multiprices
- if (getDolGlobalString('PRODUIT_MULTIPRICES')) {
- if (! isset($productpricescache)) {
- $productpricescache=array();
- }
- if (! isset($productpricescache[$obj->rowid])) {
- $productpricescache[$obj->rowid] = array();
- }
- if ($product_static->status && $usercancreadprice) {
- // Make 1 request for all price levels (without filter on price_level) and saved result into an cache array
- // then reuse the cache array if we need prices for other price levels
- $sqlp = "SELECT p.rowid, p.fk_product, p.price, p.price_ttc, p.price_level, p.date_price, p.price_base_type";
- $sqlp .= " FROM ".MAIN_DB_PREFIX."product_price as p";
- $sqlp .= " WHERE fk_product = ".((int) $obj->rowid);
- $sqlp .= " ORDER BY p.date_price DESC, p.rowid DESC, p.price_level ASC";
- $resultp = $db->query($sqlp);
- if ($resultp) {
- $nump = $db->num_rows($resultp);
- $j = 0;
- while ($j < $nump) {
- $objp = $db->fetch_object($resultp);
- if (empty($productpricescache[$obj->rowid][$objp->price_level])) {
- $productpricescache[$obj->rowid][$objp->price_level]['price'] = $objp->price;
- $productpricescache[$obj->rowid][$objp->price_level]['price_ttc'] = $objp->price_ttc;
- $productpricescache[$obj->rowid][$objp->price_level]['price_base_type'] = $objp->price_base_type;
- }
- $j++;
- }
- $db->free($resultp);
- } else {
- dol_print_error($db);
- }
- }
- foreach ($arraypricelevel as $key => $value) {
- if (!empty($arrayfields['p.sellprice'.$key]['checked'])) {
- print '<td class="right nowraponall">';
- if (!empty($productpricescache[$obj->rowid])) {
- if ($productpricescache[$obj->rowid][$key]['price_base_type'] == 'TTC') {
- print '<span class="amount">'.price($productpricescache[$obj->rowid][$key]['price_ttc']).' '.$langs->trans("TTC").'</span>';
- } else {
- print '<span class="amount">'.price($productpricescache[$obj->rowid][$key]['price']).' '.$langs->trans("HT").'</span>';
- }
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- }
- }
- // Better buy price
- if (!empty($arrayfields['p.minbuyprice']['checked'])) {
- print '<td class="right nowraponall">';
- if ($product_static->status_buy && $obj->bestpurchaseprice != '' && $usercancreadprice) {
- if ($product_fourn->find_min_price_product_fournisseur($obj->rowid) > 0) {
- if ($product_fourn->product_fourn_price_id > 0) {
- if ((isModEnabled("fournisseur") && $user->hasRight('fournisseur', 'lire') && !getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD')) || (isModEnabled("supplier_order") && $user->hasRight('supplier_order', 'lire')) || (isModEnabled("supplier_invoice") && $user->hasRight('supplier_invoice', 'lire'))) {
- $htmltext = $product_fourn->display_price_product_fournisseur(1, 1, 0, 1);
- print '<span class="amount">'.$form->textwithpicto(price($product_fourn->fourn_unitprice * (1 - $product_fourn->fourn_remise_percent / 100) - $product_fourn->fourn_remise).' '.$langs->trans("HT"), $htmltext).'</span>';
- } else {
- print '<span class="amount">'.price($product_fourn->fourn_unitprice).' '.$langs->trans("HT").'</span>';
- }
- }
- }
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Number of buy prices
- if (!empty($arrayfields['p.numbuyprice']['checked'])) {
- print '<td class="right">';
- if ($product_static->status_buy && $usercancreadprice) {
- if (count($productFournList = $product_fourn->list_product_fournisseur_price($obj->rowid)) > 0) {
- $htmltext = $product_fourn->display_price_product_fournisseur(1, 1, 0, 1, $productFournList);
- print $form->textwithpicto(count($productFournList), $htmltext);
- }
- }
- print '</td>';
- }
- // VAT or Sell Tax Rate
- if (!empty($arrayfields['p.tva_tx']['checked'])) {
- print '<td class="right">';
- print vatrate($obj->tva_tx, true);
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // WAP
- if (!empty($arrayfields['p.pmp']['checked'])) {
- print '<td class="nowrap right">';
- if ($usercancreadprice) {
- print '<span class="amount">'.price($product_static->pmp, 1, $langs)."</span>";
- }
- print '</td>';
- }
- // Cost price
- if (!empty($arrayfields['p.cost_price']['checked'])) {
- print '<td class="nowrap right">';
- //print $obj->cost_price;
- if ($usercancreadprice) {
- print '<span class="amount">'.price($obj->cost_price).' '.$langs->trans("HT").'</span>';
- }
- print '</td>';
- }
- // Limit alert
- if (!empty($arrayfields['p.seuil_stock_alerte']['checked'])) {
- print '<td class="right">';
- if ($product_static->type != 1) {
- print $obj->seuil_stock_alerte;
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Desired stock
- if (!empty($arrayfields['p.desiredstock']['checked'])) {
- print '<td class="right">';
- if ($product_static->type != 1) {
- print $obj->desiredstock;
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Stock real
- if (!empty($arrayfields['p.stock']['checked'])) {
- print '<td class="right">';
- if ($product_static->type != 1) {
- if ($obj->seuil_stock_alerte != '' && $product_static->stock_reel < (float) $obj->seuil_stock_alerte) {
- print img_warning($langs->trans("StockLowerThanLimit", $obj->seuil_stock_alerte)).' ';
- }
- if ($usercancreadprice) {
- if ($product_static->stock_reel < 0) {
- print '<span class="warning">';
- }
- print price(price2num($product_static->stock_reel, 'MS'), 0, $langs, 1, 0);
- if ($product_static->stock_reel < 0) {
- print '</span>';
- }
- }
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Stock virtual
- if (!empty($arrayfields['stock_virtual']['checked'])) {
- print '<td class="right">';
- if ($product_static->type != 1) {
- if ($obj->seuil_stock_alerte != '' && $product_static->stock_theorique < (float) $obj->seuil_stock_alerte) {
- print img_warning($langs->trans("StockLowerThanLimit", $obj->seuil_stock_alerte)).' ';
- }
- if ($usercancreadprice) {
- if ($product_static->stock_theorique < 0) {
- print '<span class="warning">';
- }
- print price(price2num($product_static->stock_theorique, 'MS'), 0, $langs, 1, 0);
- if ($product_static->stock_theorique < 0) {
- print '</span>';
- }
- }
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Lot/Serial
- if (!empty($arrayfields['p.tobatch']['checked'])) {
- print '<td class="center">';
- print $product_static->getLibStatut(1, 2);
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Country
- if (!empty($arrayfields['p.fk_country']['checked'])) {
- print '<td>'.getCountry($obj->fk_country, 0, $db).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // State
- if (!empty($arrayfields['p.fk_state']['checked'])) {
- print '<td>';
- if (!empty($obj->fk_state)) {
- print getState($obj->fk_state, 0, $db);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Accountancy code sell
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell']['checked'])) {
- print '<td>'.length_accountg($product_static->accountancy_code_sell).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell_intra']['checked'])) {
- print '<td>'.length_accountg($product_static->accountancy_code_sell_intra).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_sell_export']['checked'])) {
- print '<td>'.length_accountg($product_static->accountancy_code_sell_export).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Accountancy code buy
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy']['checked'])) {
- print '<td>'.length_accountg($product_static->accountancy_code_buy).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy_intra']['checked'])) {
- print '<td>'.length_accountg($product_static->accountancy_code_buy_intra).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- if (!empty($arrayfields[$alias_product_perentity . '.accountancy_code_buy_export']['checked'])) {
- print '<td>'.length_accountg($product_static->accountancy_code_buy_export).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // 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, $object, $action); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- // Date creation
- if (!empty($arrayfields['p.datec']['checked'])) {
- print '<td class="center nowraponall">';
- print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuser');
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Date modification
- if (!empty($arrayfields['p.tms']['checked'])) {
- print '<td class="center nowraponall">';
- print dol_print_date($db->jdate($obj->date_update), 'dayhour', 'tzuser');
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Status (to sell)
- if (!empty($arrayfields['p.tosell']['checked'])) {
- print '<td class="center nowrap">';
- if (!empty($conf->use_javascript_ajax) && $user->hasRight("produit", "creer") && getDolGlobalString('MAIN_DIRECT_STATUS_UPDATE')) {
- print ajax_object_onoff($product_static, 'status', 'tosell', 'ProductStatusOnSell', 'ProductStatusNotOnSell');
- } else {
- print $product_static->LibStatut($product_static->status, 5, 0);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Status (to buy)
- if (!empty($arrayfields['p.tobuy']['checked'])) {
- print '<td class="center nowrap">';
- if (!empty($conf->use_javascript_ajax) && $user->hasRight("produit", "creer") && getDolGlobalString('MAIN_DIRECT_STATUS_UPDATE')) {
- print ajax_object_onoff($product_static, 'status_buy', 'tobuy', 'ProductStatusOnBuy', 'ProductStatusNotOnBuy');
- } else {
- print $product_static->LibStatut($product_static->status_buy, 5, 1);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Action column
- if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_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($object->id, $arrayofselected)) {
- $selected = 1;
- }
- print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.'"'.($selected ? ' checked="checked"' : '').'>';
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- print '</tr>'."\n";
- }
- $i++;
- }
- // If no record found
- if ($num == 0) {
- $colspan = 1;
- foreach ($arrayfields as $key => $val) {
- if (!empty($val['checked'])) {
- $colspan++;
- }
- }
- print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
- }
- $db->free($resql);
- print '</table>'."\n";
- print '</div>'."\n";
- print '</form>'."\n";
- // End of page
- llxFooter();
- $db->close();
|