0018330: Impressão de taxa de embarque W2I = null - AD-70

bug#18330
dev:thiago
qua:junia

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@100292 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdir 2020-02-19 12:47:07 +00:00
parent 752ded3278
commit 4f6faf2d3a
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
declare
begin
execute immediate 'insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
(FUNCION_SISTEMA_SEQ.NEXTVAL,1,''ADM > CALCULO DE PRECO > ESTOQUE TAXA DE EMBARQUE W2I'', ''COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.ESTOQUEW2I'',1,SYSDATE,-1)';
exception when others then null;
end;

View File

@ -0,0 +1,6 @@
DO $$
BEGIN
insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
(FUNCION_SISTEMA_SEQ.NEXTVAL,1,'ADM > CALCULO DE PRECO > ESTOQUE TAXA DE EMBARQUE W2I', 'COM.RJCONSULTORES.ADMINISTRACION.GUI.ESQUEMAOPERACIONAL.ESTOQUEW2I',1,SYSDATE,-1)
END
$$;