13764: Relatório Venda Embarcada

bug#13764
dev:valdir
qua:jose

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@92304 d1611594-4594-4d17-8e1d-87c2c4800839
master
leonardo 2019-04-25 17:36:24 +00:00
parent c36bf5ca36
commit f718536b00
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'INSERT INTO funcion_sistema VALUES (funcion_sistema_seq.NEXTVAL, 1, ''ADM > RELATORIOS > RELATORIOS ESTATISTICOS > VENDA EMBARCADA'',
''COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOVENDAEMBARCADA'', 1, SYSDATE, 1)';
end;

View File

@ -0,0 +1,7 @@
DO $$
BEGIN
INSERT INTO funcion_sistema VALUES (funcion_sistema_seq.NEXTVAL, 1, 'ADM > RELATORIOS > RELATORIOS ESTATISTICOS > VENDA EMBARCADA',
'COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOVENDAEMBARCADA', 1, SYSDATE, 1);
EXCEPTION WHEN unique_violation THEN NULL;
END
$$;