Commit cc445ee24de1875ae69d8c1e3d86f293b5855b4a
1 parent
c905ee55
Exists in
master
and in
16 other branches
[Fixed #45] Correção de erro Encoding: object has no 'dataHoraDeRegistro' property
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
rn/ExpedirProcedimentoRN.php
| ... | ... | @@ -695,7 +695,7 @@ class ExpedirProcedimentoRN extends InfraRN { |
| 695 | 695 | |
| 696 | 696 | $objProcedimentoHistoricoDTO = new ProcedimentoHistoricoDTO(); |
| 697 | 697 | $objProcedimentoHistoricoDTO->setDblIdProcedimento($dblIdProcedimento); |
| 698 | - $objProcedimentoHistoricoDTO->setStrStaHistorico(ProcedimentoRN::$TH_PERSONALIZADO); | |
| 698 | + $objProcedimentoHistoricoDTO->setStrStaHistorico(ProcedimentoRN::$TH_TOTAL); | |
| 699 | 699 | $objProcedimentoHistoricoDTO->adicionarCriterio(array('IdTarefa','IdTarefa'), array(InfraDTO::$OPER_IGUAL,InfraDTO::$OPER_IGUAL), array(TarefaRN::$TI_GERACAO_PROCEDIMENTO, ProcessoeletronicoRN::$TI_PROCESSO_ELETRONICO_PROCESSO_RECEBIDO), InfraDTO::$OPER_LOGICO_OR); |
| 700 | 700 | $objProcedimentoHistoricoDTO->setStrSinGerarLinksHistorico('N'); |
| 701 | 701 | $objProcedimentoHistoricoDTO->setNumMaxRegistrosRetorno(1); |
| ... | ... | @@ -703,7 +703,7 @@ class ExpedirProcedimentoRN extends InfraRN { |
| 703 | 703 | |
| 704 | 704 | if(isset($dblIdDocumento)){ |
| 705 | 705 | $objProcedimentoHistoricoDTO->setDblIdDocumento($dblIdDocumento); |
| 706 | - $objProcedimentoHistoricoDTO->setNumIdTarefa(array(TarefaRN::$TI_GERACAO_DOCUMENTO, TarefaRN::$TI_RECEBIMENTO_DOCUMENTO), InfraDTO::$OPER_IN); | |
| 706 | + $objProcedimentoHistoricoDTO->setNumIdTarefa(array(TarefaRN::$TI_GERACAO_DOCUMENTO, TarefaRN::$TI_RECEBIMENTO_DOCUMENTO, TarefaRN::$TI_DOCUMENTO_MOVIDO_DO_PROCESSO), InfraDTO::$OPER_IN); | |
| 707 | 707 | } |
| 708 | 708 | |
| 709 | 709 | $objProcedimentoDTOHistorico = $this->objProcedimentoRN->consultarHistoricoRN1025($objProcedimentoHistoricoDTO); | ... | ... |