15 lines
420 B
SQL
15 lines
420 B
SQL
DO $$
|
|
BEGIN
|
|
insert into funcion_sistema (funcionsistema_id, sistema_id, nombfuncion, descruta, activo, fecmodif, usuario_id)
|
|
values (
|
|
nextval('funcion_sistema_seq'),
|
|
1,
|
|
'ADM > RELATORIOS >> POSICAO DE VENDA DO BILHETE IDOSO',
|
|
'COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOPOSICAOVENDABILHETEIDOSO',
|
|
1,
|
|
now(),
|
|
1);
|
|
|
|
EXCEPTION WHEN unique_violation THEN NULL;
|
|
END
|
|
$$; |