fixes bug#18326

dev:valdir
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@100205 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2020-02-13 18:53:15 +00:00
parent d43767e969
commit 97ee984539
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'update custom set sistema = ''2'' where chave = ''ocupaValidacionExternaAutobus''';
execute immediate 'update custom set sistema = ''2'' where chave = ''clienteProducto''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isValidarVigenciaAbierto''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isValidarUsuarioEstacaoMesmoPontoVenda''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isTarjetaViaje''';
execute immediate 'update custom set sistema = ''2'' where chave = ''envioAvituallamiento''';
execute immediate 'update custom set sistema = ''2'' where chave = ''copiaBloqueioSimilar''';
execute immediate 'update custom set sistema = ''2'' where chave = ''mostrarAutoBusMenorAsiento''';
execute immediate 'update custom set sistema = ''2'' where chave = ''trataReexpedicion''';
execute immediate 'update custom set sistema = ''2'' where chave = ''database.rds''';
execute immediate 'update custom set sistema = ''2'' where chave = ''ordenaCorridasPorHoraDestinoServico''';
execute immediate 'update custom set sistema = ''2'' where chave = ''ordenaCorridasPorHoraServico''';
execute immediate 'update custom set sistema = ''2'' where chave = ''reporteCorteAgenciaCentral''';
execute immediate 'update custom set sistema = ''2'' where chave = ''generaNumFolioSistemaVentaInternet''';
execute immediate 'update custom set sistema = ''2'' where chave = ''generaNumFolioSistemaAbertoPrePago''';
execute immediate 'update custom set sistema = ''2'' where chave = ''generaCajaOcupacion''';
execute immediate 'update custom set sistema = ''2'' where chave = ''tipoNumSistema''';
execute immediate 'update custom set sistema = ''2'' where chave = ''maxNumfoliosistema''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isVentaGratuidadeNinoSimilarParado''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isCodigoAgenciaMapaViagem''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isTaxaEmbarqueSocicamAgenciaOrigem''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isConsiderarSeguroOpcionalPreco''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isConsiderarICMSIntermunicipalIMatricial''';
execute immediate 'update custom set sistema = ''2'' where chave = ''isConsiderarICMSInterestadualIMatricial''';
execute immediate 'update custom set sistema = ''2'' where chave = ''imprimeApenasNroPuntoVenta''';
execute immediate 'update custom set sistema = ''2'' where chave = ''exibeNumRutaMapa''';
execute immediate 'update custom set sistema = ''2'' where chave = ''trataVoucher''';
exception when object_exists then null;
end;