9 lines
365 B
SQL
9 lines
365 B
SQL
DO $$
|
|
BEGIN
|
|
insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
|
|
(nextval('funcion_sistema_seq'),2,'VDA > CAIXA > CONSULTA DE BILHETES > TROCAR POLTRONA BP-e','COM.RJCONSULTORES.VENTABOLETOS.GUI.CONSULTABOLETO.TROCAPOLTRONA',1,now(),1);
|
|
|
|
EXCEPTION WHEN unique_violation THEN NULL;
|
|
END
|
|
$$;
|