Fix: add extra tabs in stock view
This commit is contained in:
parent
4969d9feef
commit
31ad232a2a
@ -108,6 +108,7 @@ class modMyModule extends DolibarrModules
|
|||||||
// 'invoice' to add a tab in customer invoice view
|
// 'invoice' to add a tab in customer invoice view
|
||||||
// 'order' to add a tab in customer order view
|
// 'order' to add a tab in customer order view
|
||||||
// 'product' to add a tab in product view
|
// 'product' to add a tab in product view
|
||||||
|
// 'stock' to add a tab in stock view
|
||||||
// 'propal' to add a tab in propal view
|
// 'propal' to add a tab in propal view
|
||||||
// 'member' to add a tab in fundation member view
|
// 'member' to add a tab in fundation member view
|
||||||
// 'contract' to add a tab in contract view
|
// 'contract' to add a tab in contract view
|
||||||
|
|||||||
@ -26,28 +26,28 @@
|
|||||||
/**
|
/**
|
||||||
* Enter description here...
|
* Enter description here...
|
||||||
*
|
*
|
||||||
* @param $entrepot
|
* @param $object
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
function stock_prepare_head($entrepot)
|
function stock_prepare_head($object)
|
||||||
{
|
{
|
||||||
global $langs, $conf;
|
global $langs, $conf;
|
||||||
|
|
||||||
$h = 0;
|
$h = 0;
|
||||||
$head = array();
|
$head = array();
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/product/stock/fiche.php?id='.$entrepot->id;
|
$head[$h][0] = DOL_URL_ROOT.'/product/stock/fiche.php?id='.$object->id;
|
||||||
$head[$h][1] = $langs->trans("WarehouseCard");
|
$head[$h][1] = $langs->trans("WarehouseCard");
|
||||||
$head[$h][2] = 'card';
|
$head[$h][2] = 'card';
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/product/stock/mouvement.php?id='.$entrepot->id;
|
$head[$h][0] = DOL_URL_ROOT.'/product/stock/mouvement.php?id='.$object->id;
|
||||||
$head[$h][1] = $langs->trans("StockMovements");
|
$head[$h][1] = $langs->trans("StockMovements");
|
||||||
$head[$h][2] = 'movements';
|
$head[$h][2] = 'movements';
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/product/stock/fiche-valo.php?id='.$entrepot->id;
|
$head[$h][0] = DOL_URL_ROOT.'/product/stock/fiche-valo.php?id='.$object->id;
|
||||||
$head[$h][1] = $langs->trans("EnhancedValue");
|
$head[$h][1] = $langs->trans("EnhancedValue");
|
||||||
$head[$h][2] = 'value';
|
$head[$h][2] = 'value';
|
||||||
$h++;
|
$h++;
|
||||||
@ -58,17 +58,34 @@ function stock_prepare_head($entrepot)
|
|||||||
{
|
{
|
||||||
// Should not be enabled by defaut because does not work yet correctly because
|
// Should not be enabled by defaut because does not work yet correctly because
|
||||||
// personnal stocks are not tagged into table llx_entrepot
|
// personnal stocks are not tagged into table llx_entrepot
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/product/stock/user.php?id='.$entrepot->id;
|
$head[$h][0] = DOL_URL_ROOT.'/product/stock/user.php?id='.$object->id;
|
||||||
$head[$h][1] = $langs->trans("Users");
|
$head[$h][1] = $langs->trans("Users");
|
||||||
$head[$h][2] = 'user';
|
$head[$h][2] = 'user';
|
||||||
$h++;
|
$h++;
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/product/stock/info.php?id='.$entrepot->id;
|
$head[$h][0] = DOL_URL_ROOT.'/product/stock/info.php?id='.$object->id;
|
||||||
$head[$h][1] = $langs->trans("Info");
|
$head[$h][1] = $langs->trans("Info");
|
||||||
$head[$h][2] = 'info';
|
$head[$h][2] = 'info';
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
|
// Show more tabs from modules
|
||||||
|
// Entries must be declared in modules descriptor with line
|
||||||
|
// $this->tabs = array('entity:MyModule:@mymodule:/mymodule/mypage.php?id=__ID__');
|
||||||
|
if (is_array($conf->tabs_modules['stock']))
|
||||||
|
{
|
||||||
|
$i=0;
|
||||||
|
foreach ($conf->tabs_modules['stock'] as $value)
|
||||||
|
{
|
||||||
|
$values=explode(':',$value);
|
||||||
|
if ($values[2]) $langs->load($values[2]);
|
||||||
|
$head[$h][0] = DOL_URL_ROOT . preg_replace('/__ID__/i',$object->id,$values[3]);
|
||||||
|
$head[$h][1] = $langs->trans($values[1]);
|
||||||
|
$head[$h][2] = 'tab'.$values[1];
|
||||||
|
$h++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return $head;
|
return $head;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user