Fix #16256
This commit is contained in:
parent
40c0a0ee26
commit
fac38e50d6
@ -99,6 +99,7 @@ VirtualStock=Virtual stock
|
|||||||
VirtualStockAtDate=Virtual stock at date
|
VirtualStockAtDate=Virtual stock at date
|
||||||
VirtualStockAtDateDesc=Virtual stock once all pending orders that are planned to be done before the date will be finished
|
VirtualStockAtDateDesc=Virtual stock once all pending orders that are planned to be done before the date will be finished
|
||||||
VirtualStockDesc=Virtual stock is the calculated stock available once all open/pending actions (that affect stocks) are closed (purchase orders received, sales orders shipped, manufacturing orders produced, etc)
|
VirtualStockDesc=Virtual stock is the calculated stock available once all open/pending actions (that affect stocks) are closed (purchase orders received, sales orders shipped, manufacturing orders produced, etc)
|
||||||
|
AtDate=At date
|
||||||
IdWarehouse=Id warehouse
|
IdWarehouse=Id warehouse
|
||||||
DescWareHouse=Description warehouse
|
DescWareHouse=Description warehouse
|
||||||
LieuWareHouse=Localisation warehouse
|
LieuWareHouse=Localisation warehouse
|
||||||
|
|||||||
@ -244,9 +244,11 @@ $title = $langs->trans('StockAtDate');
|
|||||||
$sql = 'SELECT p.rowid, p.ref, p.label, p.description, p.price,';
|
$sql = 'SELECT p.rowid, p.ref, p.label, p.description, p.price,';
|
||||||
$sql .= ' p.price_ttc, p.price_base_type, p.fk_product_type, p.desiredstock, p.seuil_stock_alerte,';
|
$sql .= ' p.price_ttc, p.price_base_type, p.fk_product_type, p.desiredstock, p.seuil_stock_alerte,';
|
||||||
$sql .= ' p.tms as datem, p.duration, p.tobuy, p.stock, ';
|
$sql .= ' p.tms as datem, p.duration, p.tobuy, p.stock, ';
|
||||||
$sql .= " SUM(p.pmp * ps.reel) as estimatedvalue, SUM(p.price * ps.reel) as sellvalue";
|
|
||||||
if ($fk_warehouse > 0) {
|
if ($fk_warehouse > 0) {
|
||||||
|
$sql .= " SUM(p.pmp * ps.reel) as estimatedvalue, SUM(p.price * ps.reel) as sellvalue";
|
||||||
$sql .= ', SUM(ps.reel) as stock_reel';
|
$sql .= ', SUM(ps.reel) as stock_reel';
|
||||||
|
} else {
|
||||||
|
$sql .= " SUM(p.pmp * p.stock) as estimatedvalue, SUM(p.price * p.stock) as sellvalue";
|
||||||
}
|
}
|
||||||
// Add fields from hooks
|
// Add fields from hooks
|
||||||
$parameters = array();
|
$parameters = array();
|
||||||
@ -272,6 +274,9 @@ if (!empty($canvas)) $sql .= ' AND p.canvas = "'.$db->escape($canvas).'"';
|
|||||||
if ($fk_warehouse > 0) {
|
if ($fk_warehouse > 0) {
|
||||||
$sql .= ' GROUP BY p.rowid, p.ref, p.label, p.description, p.price, p.price_ttc, p.price_base_type, p.fk_product_type, p.desiredstock, p.seuil_stock_alerte,';
|
$sql .= ' GROUP BY p.rowid, p.ref, p.label, p.description, p.price, p.price_ttc, p.price_base_type, p.fk_product_type, p.desiredstock, p.seuil_stock_alerte,';
|
||||||
$sql .= ' p.tms, p.duration, p.tobuy, p.stock';
|
$sql .= ' p.tms, p.duration, p.tobuy, p.stock';
|
||||||
|
} else {
|
||||||
|
$sql .= ' GROUP BY p.rowid, p.ref, p.label, p.description, p.price, p.price_ttc, p.price_base_type, p.fk_product_type, p.desiredstock, p.seuil_stock_alerte,';
|
||||||
|
$sql .= ' p.tms, p.duration, p.tobuy, p.stock';
|
||||||
}
|
}
|
||||||
// Add where from hooks
|
// Add where from hooks
|
||||||
$parameters = array();
|
$parameters = array();
|
||||||
@ -427,8 +432,6 @@ if ($fk_warehouse > 0) {
|
|||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print_liste_field_titre('Ref', $_SERVER["PHP_SELF"], 'p.ref', $param, '', '', $sortfield, $sortorder);
|
print_liste_field_titre('Ref', $_SERVER["PHP_SELF"], 'p.ref', $param, '', '', $sortfield, $sortorder);
|
||||||
print_liste_field_titre('Label', $_SERVER["PHP_SELF"], 'p.label', $param, '', '', $sortfield, $sortorder);
|
print_liste_field_titre('Label', $_SERVER["PHP_SELF"], 'p.label', $param, '', '', $sortfield, $sortorder);
|
||||||
print_liste_field_titre("EstimatedStockValue", $_SERVER["PHP_SELF"], "estimatedvalue", '', $param, '', $sortfield, $sortorder, 'right ');
|
|
||||||
print_liste_field_titre("EstimatedStockValueSell", $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ');
|
|
||||||
|
|
||||||
if ($mode == 'future') {
|
if ($mode == 'future') {
|
||||||
print_liste_field_titre('CurrentStock', $_SERVER["PHP_SELF"], $fieldtosortcurrentstock, $param, '', '', $sortfield, $sortorder, 'right ');
|
print_liste_field_titre('CurrentStock', $_SERVER["PHP_SELF"], $fieldtosortcurrentstock, $param, '', '', $sortfield, $sortorder, 'right ');
|
||||||
@ -437,6 +440,8 @@ if ($mode == 'future') {
|
|||||||
print_liste_field_titre('VirtualStock', $_SERVER["PHP_SELF"], '', $param, '', '', $sortfield, $sortorder, 'right ', 'VirtualStockDesc');
|
print_liste_field_titre('VirtualStock', $_SERVER["PHP_SELF"], '', $param, '', '', $sortfield, $sortorder, 'right ', 'VirtualStockDesc');
|
||||||
} else {
|
} else {
|
||||||
print_liste_field_titre($stocklabel, $_SERVER["PHP_SELF"], '', $param, '', '', $sortfield, $sortorder, 'right ');
|
print_liste_field_titre($stocklabel, $_SERVER["PHP_SELF"], '', $param, '', '', $sortfield, $sortorder, 'right ');
|
||||||
|
print_liste_field_titre("EstimatedStockValue", $_SERVER["PHP_SELF"], "estimatedvalue", '', $param, '', $sortfield, $sortorder, 'right ', $langs->trans("AtDate"));
|
||||||
|
print_liste_field_titre("EstimatedStockValueSell", $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ', $langs->trans("AtDate"));
|
||||||
print_liste_field_titre('', $_SERVER["PHP_SELF"]);
|
print_liste_field_titre('', $_SERVER["PHP_SELF"]);
|
||||||
print_liste_field_titre('CurrentStock', $_SERVER["PHP_SELF"], $fieldtosortcurrentstock, $param, '', '', $sortfield, $sortorder, 'right ');
|
print_liste_field_titre('CurrentStock', $_SERVER["PHP_SELF"], $fieldtosortcurrentstock, $param, '', '', $sortfield, $sortorder, 'right ');
|
||||||
}
|
}
|
||||||
@ -522,21 +527,6 @@ while ($i < ($limit ? min($num, $limit) : $num))
|
|||||||
print '<input type="hidden" name="desc'.$i.'" value="'.dol_escape_htmltag($objp->description).'">'; // TODO Remove this and make a fetch to get description when creating order instead of a GETPOST
|
print '<input type="hidden" name="desc'.$i.'" value="'.dol_escape_htmltag($objp->description).'">'; // TODO Remove this and make a fetch to get description when creating order instead of a GETPOST
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
// PMP value
|
|
||||||
print '<td class="right">';
|
|
||||||
if (price2num($objp->estimatedvalue, 'MT')) print price(price2num($objp->estimatedvalue, 'MT'), 1);
|
|
||||||
else print '';
|
|
||||||
print '</td>';
|
|
||||||
|
|
||||||
// Selling value
|
|
||||||
print '<td class="right">';
|
|
||||||
if (empty($conf->global->PRODUIT_MULTIPRICES)) print price(price2num($objp->sellvalue, 'MT'), 1);
|
|
||||||
else {
|
|
||||||
$htmltext = $langs->trans("OptionMULTIPRICESIsOn");
|
|
||||||
print $form->textwithtooltip($langs->trans("Variable"), $htmltext);
|
|
||||||
}
|
|
||||||
print'</td>';
|
|
||||||
|
|
||||||
if ($mode == 'future') {
|
if ($mode == 'future') {
|
||||||
// Current stock
|
// Current stock
|
||||||
print '<td class="right">'.$currentstock.'</td>';
|
print '<td class="right">'.$currentstock.'</td>';
|
||||||
@ -552,6 +542,21 @@ while ($i < ($limit ? min($num, $limit) : $num))
|
|||||||
// Stock at date
|
// Stock at date
|
||||||
print '<td class="right">'.($stock ? $stock : '<span class="opacitymedium">'.$stock.'</span>').'</td>';
|
print '<td class="right">'.($stock ? $stock : '<span class="opacitymedium">'.$stock.'</span>').'</td>';
|
||||||
|
|
||||||
|
// PMP value
|
||||||
|
print '<td class="right">';
|
||||||
|
if (price2num($objp->estimatedvalue, 'MT')) print price(price2num($objp->estimatedvalue, 'MT'), 1);
|
||||||
|
else print '';
|
||||||
|
print '</td>';
|
||||||
|
|
||||||
|
// Selling value
|
||||||
|
print '<td class="right">';
|
||||||
|
if (empty($conf->global->PRODUIT_MULTIPRICES)) print price(price2num($objp->sellvalue, 'MT'), 1);
|
||||||
|
else {
|
||||||
|
$htmltext = $langs->trans("OptionMULTIPRICESIsOn");
|
||||||
|
print $form->textwithtooltip($langs->trans("Variable"), $htmltext);
|
||||||
|
}
|
||||||
|
print'</td>';
|
||||||
|
|
||||||
print '<td class="right">';
|
print '<td class="right">';
|
||||||
if ($nbofmovement > 0) {
|
if ($nbofmovement > 0) {
|
||||||
print '<a href="'.DOL_URL_ROOT.'/product/stock/movement_list.php?idproduct='.$objp->rowid.($fk_warehouse > 0 ? '&search_warehouse='.$fk_warehouse : '').'">'.$langs->trans("Movements").'</a>';
|
print '<a href="'.DOL_URL_ROOT.'/product/stock/movement_list.php?idproduct='.$objp->rowid.($fk_warehouse > 0 ? '&search_warehouse='.$fk_warehouse : '').'">'.$langs->trans("Movements").'</a>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user