Série para venda embarcada

bug#13748
dev:trevezani
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@91388 d1611594-4594-4d17-8e1d-87c2c4800839
master
alberto 2019-03-29 20:14:11 +00:00
parent 229d44a544
commit a0f82b9a92
2 changed files with 9 additions and 0 deletions

View File

@ -4,4 +4,5 @@ declare
begin
execute immediate 'insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
(funcion_sistema_seq.nextval,2,''ADM > SEGURANCA > DISPOSITIVO VENDA EMBARCADA'',''COM.RJCONSULTORES.ADMINISTRACION.GUI.SEGURIDAD.MENU.DISPOSITIVOVENDAEMBARCADA'',1,sysdate,1)';
exception when dup_val_on_index then null;
end;

View File

@ -0,0 +1,8 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
(funcion_sistema_seq.nextval,2,''ADM > SEGURANCA > AUTORIZACAO DE USO DE SERIE POR DISPOSITIVO'',''COM.RJCONSULTORES.ADMINISTRACION.GUI.SEGURIDAD.MENU.AUTORIZACAOUSOSERIEEMBARCADA'',1,sysdate,1)';
exception when dup_val_on_index then null;
end;