1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| go_item('marche.modifier_gle');
if :global.par_id_m is NUll
then
set_item_property('morale.rais_soc',visible,property_false);
set_item_property('physique.nom',visible,property_true);
set_item_property('physique.prenom',visible,property_true);
go_item('physique.nom');
end if;
if :global.par_id_p is NUll
then
set_item_property('morale.rais_soc',visible,property_true);
set_item_property('physique.nom',visible,property_false);
set_item_property('physique.prenom',visible,property_false);
go_item('morale.rais_soc');
end if; |
Partager