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-87c2c4800839master
parent
c36bf5ca36
commit
f718536b00
|
@ -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;
|
|
@ -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
|
||||||
|
$$;
|
Loading…
Reference in New Issue