0000618: Affichage des stocks

This commit is contained in:
Dany De Bontridder 2012-06-16 00:00:01 +00:00
parent dcd1095130
commit 43c484eaa9
7 changed files with 240 additions and 10 deletions

View file

@ -643,6 +643,16 @@ class HtmlInput
from stock_repository join user_sec_repository using (r_id)
where
ur_right='W' and p_id=".sql_string($profile).
" order by 2" );
return $sel;
}
if ($p_mode == 'R')
{
$sel->value=$p_cn->make_array("
select r_id,r_name
from stock_repository join user_sec_repository using (r_id)
where
p_id=".sql_string($profile).
" order by 2" );
return $sel;
}