32require
'../../main.inc.php';
33require_once DOL_DOCUMENT_ROOT .
'/product/class/product.class.php';
34require_once DOL_DOCUMENT_ROOT .
'/societe/class/societe.class.php';
35require_once DOL_DOCUMENT_ROOT .
'/fourn/class/fournisseur.class.php';
39$langs->loadLangs(array(
'products',
'suppliers'));
42$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
43$toselect =
GETPOST(
'toselect',
'array:int');
44$optioncss =
GETPOST(
'optioncss',
'alpha');
47$sref =
GETPOST(
'sref',
'alphanohtml');
48$sRefSupplier =
GETPOST(
'srefsupplier');
49$snom =
GETPOST(
'snom',
'alphanohtml');
50$type =
GETPOST(
'type',
'alphanohtml');
54$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
55$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
57if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
61$offset = $limit * $page;
71$fourn_id =
GETPOST(
'fourn_id',
'intcomma');
73 $fourn_id = $user->socid;
76$catid =
GETPOST(
'catid',
'intcomma');
79$hookmanager->initHooks(array(
'supplierpricelist'));
82if (!$user->hasRight(
"produit",
"lire") && !$user->hasRight(
"service",
"lire")) {
87$permissiontoadd = ($user->hasRight(
'product',
'read') || $user->hasRight(
'service',
'read'));
94if (
GETPOST(
'cancel',
'alpha')) {
98if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
102$parameters = array();
104$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
109if (empty($reshook)) {
111 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
114 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
120 $search_date_creation =
'';
121 $search_date_modification =
'';
123 $search_array_options = array();
132$form =
new Form($db);
133$productstatic =
new Product($db);
134$companystatic =
new Societe($db);
136$title = $langs->trans(
'Supplier').
" - ".$langs->trans(
'ProductsAndServices');
140 $supplier->fetch($fourn_id);
146$sql =
"SELECT p.rowid, p.label, p.ref, p.fk_product_type, p.entity, p.tosell, p.tobuy, p.barcode, p.fk_barcode_type,";
147$sql .=
" ppf.fk_soc, ppf.ref_fourn, ppf.price as price, ppf.quantity as qty, ppf.unitprice,";
148$sql .=
" s.rowid as socid, s.nom as name";
150$parameters = array();
151$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
155$sql .= $hookmanager->resPrint;
159$sql .=
" FROM ".MAIN_DB_PREFIX.
"product as p";
161 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"categorie_product as cp ON cp.fk_product = p.rowid";
163$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product_fournisseur_price as ppf ON p.rowid = ppf.fk_product AND p.entity = ppf.entity";
164$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe as s ON ppf.fk_soc = s.rowid AND s.entity IN (".
getEntity(
'societe').
")";
165$sql .=
" WHERE p.entity IN (".getEntity(
'product').
")";
170 $sql .=
" AND p.fk_product_type = ".GETPOSTINT(
'type');
179 $sql .=
" AND cp.fk_categorie = ".((int) $catid);
182 $sql .=
" AND ppf.fk_soc = ".((int) $fourn_id);
186$parameters = array();
187$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters);
191$sql .= $hookmanager->resPrint;
194$nbtotalofrecords =
'';
197 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
198 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
199 $resql = $db->query($sqlforcount);
201 $objforcount = $db->fetch_object($resql);
202 $nbtotalofrecords = $objforcount->nbtotalofrecords;
207 if (($page * $limit) > $nbtotalofrecords) {
215$sql .= $db->order($sortfield, $sortorder);
217 $sql .= $db->plimit($limit + 1, $offset);
220dol_syslog(
"fourn/product/list.php:", LOG_DEBUG);
221$resql = $db->query($sql);
227$num = $db->num_rows($resql);
231if ($num == 1 && (
GETPOST(
"mode") ==
'search')) {
232 $objp = $db->fetch_object($resql);
233 header(
"Location: ".DOL_URL_ROOT.
"/product/card.php?id=".$objp->rowid);
237if (!empty($supplier->id)) {
238 $title = $langs->trans(
"ListOfSupplierProductForSupplier", $supplier->name);
240 $title = $langs->trans(
"List");
247llxHeader(
"", $title, $help_url,
'', 0, 0,
'',
'',
'',
'bodyforlist mod-fourn-product page-list');
249$arrayofselected = is_array($toselect) ? $toselect : array();
253 $param .=
'&mode='.urlencode($mode);
255if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
256 $param .=
'&contextpage='.urlencode($contextpage);
258if ($limit > 0 && $limit != $conf->liste_limit) {
259 $param .=
'&limit='.((int) $limit);
261if ($optioncss !=
'') {
262 $param .=
'&optioncss='.urlencode($optioncss);
264$param =
"&sref=".$sref.
"&snom=".$snom.
"&fourn_id=".$fourn_id.(isset($type) ?
"&type=".$type :
"").(empty($sRefSupplier) ?
"" :
"&srefsupplier=".$sRefSupplier);
267$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/product/list.php?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', (
int) $permissiontoadd);
269print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder,
'', $num, $nbtotalofrecords,
'generic', 0, $newcardbutton);
272 print
"<div id='ways'>";
274 $ways = $c->print_all_ways(
' > ',
'fourn/product/list.php');
275 print
" > ".$ways[0].
"<br>\n";
279$arrayofmassactions = array(
284if (!empty($permissiontodelete)) {
285 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
287if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
288 $arrayofmassactions = array();
290$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
292print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
293if ($optioncss !=
'') {
294 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
296print
'<input type="hidden" name="token" value="'.newToken().
'">';
298 print
'<input type="hidden" name="fourn_id" value="'.$fourn_id.
'">';
300print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
301print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
302print
'<input type="hidden" name="page" value="'.$page.
'">';
303print
'<input type="hidden" name="type" value="'.$type.
'">';
305$topicmail =
"Information";
306$modelmail =
"product";
308$trackid =
'prod'.$object->id;
309include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
311$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
312$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
313$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
314$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
316print
'<div class="div-table-responsive-no-min">';
317print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
321print
'<tr class="liste_titre_filter">';
325 print
'<td class="liste_titre center maxwidthsearch">';
326 $searchpicto = $form->showFilterButtons(
'left');
330print
'<td class="liste_titre">';
331print
'<input class="flat maxwidth100" type="text" name="sref" value="'.$sref.
'">';
333print
'<td class="liste_titre">';
334print
'<input class="flat maxwidth100" type="text" name="srefsupplier" value="'.$sRefSupplier.
'">';
336print
'<td class="liste_titre">';
337print
'<input class="flat maxwidth100" type="text" name="snom" value="'.$snom.
'">';
344$parameters = array();
345$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
349print $hookmanager->resPrint;
352 print
'<td class="liste_titre center maxwidthsearch">';
353 $searchpicto = $form->showFilterButtons();
361print
'<tr class="liste_titre">';
364 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
365 $totalarray[
'nbfield']++;
368print_liste_field_titre(
"RefSupplierShort", $_SERVER[
"PHP_SELF"],
"ppf.ref_fourn", $param,
"",
"", $sortfield, $sortorder);
370print_liste_field_titre(
"Supplier", $_SERVER[
"PHP_SELF"],
"ppf.fk_soc", $param,
"",
"", $sortfield, $sortorder);
371print_liste_field_titre(
"BuyingPrice", $_SERVER[
"PHP_SELF"],
"ppf.price", $param,
"",
'', $sortfield, $sortorder,
'right ');
372print_liste_field_titre(
"QtyMin", $_SERVER[
"PHP_SELF"],
"ppf.quantity", $param,
"",
'', $sortfield, $sortorder,
'right ');
373print_liste_field_titre(
"UnitPrice", $_SERVER[
"PHP_SELF"],
"ppf.unitprice", $param,
"",
'', $sortfield, $sortorder,
'right ');
375$parameters = array();
376$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
380print $hookmanager->resPrint;
383 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
384 $totalarray[
'nbfield']++;
391$savnbfield = $totalarray[
'nbfield'];
392$totalarray = array();
393$totalarray[
'nbfield'] = 0;
394$imaxinloop = ($limit ? min($num, $limit) : $num);
395while ($i < $imaxinloop) {
396 $objp = $db->fetch_object($resql);
401 $productstatic->id = $objp->rowid;
402 $productstatic->ref = $objp->ref;
403 $productstatic->type = $objp->fk_product_type;
404 $productstatic->entity = $objp->entity;
405 $productstatic->status = $objp->tosell;
406 $productstatic->status_buy = $objp->tobuy;
407 $productstatic->barcode = $objp->barcode;
408 $productstatic->barcode_type = $objp->fk_barcode_type;
410 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
414 print
'<td class="nowrap center">';
415 if ($massactionbutton || $massaction) {
417 if (in_array(
$object->id, $arrayofselected)) {
420 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
424 $totalarray[
'nbfield']++;
429 print $productstatic->getNomUrl(1,
'supplier');
432 print
'<td>'.$objp->ref_fourn.
'</td>';
434 print
'<td>'.$objp->label.
'</td>'.
"\n";
436 $companystatic->name = $objp->name;
437 $companystatic->id = $objp->socid;
439 if ($companystatic->id > 0) {
440 print $companystatic->getNomUrl(1,
'supplier');
444 print
'<td class="right">'.(isset($objp->price) ?
price($objp->price) :
'').
'</td>';
446 print
'<td class="right">'.$objp->qty.
'</td>';
448 print
'<td class="right">'.(isset($objp->unitprice) ?
price($objp->unitprice) :
'').
'</td>';
451 $parameters = array();
452 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $objp, $action);
456 print $hookmanager->resPrint;
460 print
'<td class="nowrap center">';
461 if ($massactionbutton || $massaction) {
463 if (in_array(
$object->id, $arrayofselected)) {
466 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
470 $totalarray[
'nbfield']++;
479include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
489 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
494$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
495$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
496print $hookmanager->resPrint;
498print
'</table>'.
"\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage categories.
Class to manage suppliers.
Class to manage products or services.
Class to manage third parties objects (customers, suppliers, prospects...)
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.