28require
'../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/product/stock/class/entrepot.class.php';
32$langs->load(
"stocks");
34$sref =
GETPOST(
"sref",
'alpha');
35$snom =
GETPOST(
"snom",
'alpha');
36$sall = trim((
GETPOST(
'search_all',
'alphanohtml') !=
'') ?
GETPOST(
'search_all',
'alphanohtml') :
GETPOST(
'sall',
'alphanohtml'));
39$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
40$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
42if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
46$offset = $limit * $page;
65$sql =
"SELECT e.rowid, e.ref, e.statut, e.lieu, e.address, e.zip, e.town, e.fk_pays,";
66$sql .=
" SUM(ps.pmp * ps.reel) as estimatedvalue, SUM(p.price * ps.reel) as sellvalue";
67$sql .=
" FROM ".MAIN_DB_PREFIX.
"entrepot as e";
68$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product_stock as ps ON e.rowid = ps.fk_entrepot";
69$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product as p ON ps.fk_product = p.rowid";
70$sql .=
" WHERE e.entity IN (".getEntity(
'stock').
")";
75 $sql .=
" AND (e.ref LIKE '%".$db->escape($sall).
"%'";
76 $sql .=
" OR e.description LIKE '%".$db->escape($sall).
"%'";
77 $sql .=
" OR e.lieu LIKE '%".$db->escape($sall).
"%'";
78 $sql .=
" OR e.address LIKE '%".$db->escape($sall).
"%'";
79 $sql .=
" OR e.town LIKE '%".$db->escape($sall).
"%')";
81$sql .=
" GROUP BY e.rowid, e.ref, e.statut, e.lieu, e.address, e.zip, e.town, e.fk_pays";
82$sql .= $db->order($sortfield, $sortorder);
83$sql .= $db->plimit($limit + 1, $offset);
85$result = $db->query($sql);
87 $num = $db->num_rows($result);
91 $help_url =
'EN:Module_Stocks_En|FR:Module_Stock|ES:Módulo_Stocks';
92 llxHeader(
"", $langs->trans(
"EnhancedValueOfWarehouses"), $help_url,
'', 0, 0,
'',
'',
'',
'mod-product page-stock_valo');
94 print_barre_liste($langs->trans(
"EnhancedValueOfWarehouses"), $page, $_SERVER[
"PHP_SELF"],
"", $sortfield, $sortorder,
'', $num);
96 print
'<table class="noborder centpercent">';
97 print
"<tr class=\"liste_titre\">";
100 print_liste_field_titre(
"EstimatedStockValue", $_SERVER[
"PHP_SELF"],
"e.valo_pmp",
'',
'',
'', $sortfield, $sortorder,
'right ');
101 print_liste_field_titre(
"EstimatedStockValueSell", $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'right ');
102 print_liste_field_titre(
"Status", $_SERVER[
"PHP_SELF"],
"e.statut",
'',
'',
'', $sortfield, $sortorder,
'right ');
107 $total = $totalsell = 0;
109 while ($i < min($num, $limit)) {
110 $objp = $db->fetch_object($result);
111 print
'<tr class="oddeven">';
112 print
'<td><a href="card.php?id='.$objp->rowid.
'">'.
img_object($langs->trans(
"ShowWarehouse"),
'stock').
' '.$objp->ref.
'</a></td>';
113 print
'<td>'.$objp->lieu.
'</td>';
115 print
'<td class="right">';
116 if (
price2num($objp->estimatedvalue,
'MT')) {
123 print
'<td class="right">';
127 print $langs->trans(
"Variable");
131 print
'<td class="right">'.$entrepot->LibStatut($objp->statut, 5).
'</td>';
133 $total +=
price2num($objp->estimatedvalue,
'MU');
134 $totalsell +=
price2num($objp->sellvalue,
'MU');
139 print
'<tr class="liste_total">';
140 print
'<td colspan="2" class="right">'.$langs->trans(
"Total").
'</td>';
141 print
'<td class="right">'.price(
price2num($total,
'MT'), 1, $langs, 0, 0, -1, $conf->currency).
'</td>';
142 print
'<td class="right">'.price(
price2num($totalsell,
'MT'), 1, $langs, 0, 0, -1, $conf->currency).
'</td>';
143 print
'<td class="right"> </td>';
153 $file =
'entrepot-'.$year.
'.png';
154 if (file_exists($conf->stock->dir_temp.
'/'.$file)) {
155 $url = DOL_URL_ROOT.
'/viewimage.php?modulepart=graph_stock&file='.$file;
156 print
'<img src="'.$url.
'">';
159 $file =
'entrepot-'.((int) $year - 1).
'.png';
160 if (file_exists($conf->stock->dir_temp.
'/'.$file)) {
161 $url = DOL_URL_ROOT.
'/viewimage.php?modulepart=graph_stock&file='.$file;
162 print
'<br><img src="'.$url.
'">';
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 warehouses.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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.
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
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.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.