0000530: Ajouter la possibilité d'entrer une date par opération dans la saisie du journal de banque

This commit is contained in:
Dany De Bontridder 2012-06-18 19:15:06 +00:00
parent 42cdb4c902
commit bceebcce5c
6 changed files with 184 additions and 59 deletions

View file

@ -1561,4 +1561,33 @@ function stock_inv_detail(p_dossier,p_id)
}
}
);
}
function show_fin_chdate(obj_id)
{
try
{
var ch=$(obj_id).options[$(obj_id).selectedIndex].value;
if (ch == 2 ) {
$('chdate_ext').hide();
$('thdate').show();
}
if (ch == 1 ) {
$('chdate_ext').show();
$('thdate').hide();
}
var nb=$('nb_item').value;
for (i=0;i<nb;i++) {
if ( $('tdchdate'+i)) {
if (ch == 2) {
$('tdchdate'+i).show();
}
if (ch == 1 ) {
$('tdchdate'+i).hide();
}
}
}
}catch (e) {
alert(e.message);
}
}