Commit 596640c37a72e49b9287d8b4c6e0ff37ac831c51
1 parent
9c087ff6
Exists in
master
#4393 Correção de defeitos encontrados em homologação
Showing
4 changed files
with
6 additions
and
5 deletions
Show diff stats
cit-ecm-api/src/main/java/br/com/centralit/api/service/impl/AnexoGedServiceImpl.java
... | ... | @@ -105,9 +105,9 @@ public class AnexoGedServiceImpl extends GenericServiceImpl<AnexoGed, Long> impl |
105 | 105 | |
106 | 106 | // FAZ OCR DO DOCUMENTO ANEXADO E JÁ MANDA PARA INDEXAÇÃO |
107 | 107 | |
108 | - documentoGed.setConteudo(this.gedFileService.doOcr(anexo)); | |
108 | +// documentoGed.setConteudo(this.gedFileService.doOcr(anexo)); | |
109 | 109 | |
110 | - this.solrService.addDocumento(documentoGed); | |
110 | +// this.solrService.addDocumento(documentoGed); | |
111 | 111 | |
112 | 112 | anexo.setDocumentoGed(documentoGed); |
113 | 113 | ... | ... |
cit-ecm-api/src/main/java/br/com/centralit/api/service/impl/DocumentoGedServiceImpl.java
cit-ecm-web/src/main/webapp/assets/js/angular/custom/controller/DocumentoGedController.js
... | ... | @@ -175,7 +175,7 @@ citApp.controller('DocumentoGedController', ['$scope', 'DocumentoGedRepository', |
175 | 175 | $scope.$parent.$parent.closeWidget(); |
176 | 176 | $scope.atualizaProcesso(); |
177 | 177 | $scope.setLoadingSalva(false); |
178 | - }); | |
178 | + }, 300); | |
179 | 179 | |
180 | 180 | }); |
181 | 181 | |
... | ... | @@ -601,6 +601,7 @@ citApp.controller('DocumentoGedController', ['$scope', 'DocumentoGedRepository', |
601 | 601 | $scope.findSugestaoAssunto = function(tipoDocumento){ |
602 | 602 | |
603 | 603 | $scope.assuntos = []; |
604 | + $scope.sugestoes = []; | |
604 | 605 | TipoDocumentoPlanoClassificacaoRepository.findByIdJoin('tipoDocumento.id', tipoDocumento.id).then(function(result){ |
605 | 606 | angular.forEach(result, function (item) { |
606 | 607 | $scope.assuntos.push(item.planoClassificacao); | ... | ... |
cit-ecm-web/src/main/webapp/html/documentoGed/metadadosDocumentoEdit.html
... | ... | @@ -250,7 +250,7 @@ |
250 | 250 | |
251 | 251 | <div class="row" ng-show='uploader.queue[0]'> |
252 | 252 | <div class="col-sm-6"> |
253 | - <strong><label>{{ uploader.queue[0].file.name}}</label></strong> | |
253 | + <label>{{ uploader.queue[0].file.name}}</label> | |
254 | 254 | </div> |
255 | 255 | |
256 | 256 | <div class="col-sm-4"> | ... | ... |