MdPetIntercorrenteProcessoRN.php 61.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
<?
/**
 * ANATEL
 *
 * 25/11/2016 - criado por marcelo.bezerra - CAST
 *
 */

require_once dirname(__FILE__).'/../../../SEI.php';

class MdPetIntercorrenteProcessoRN extends MdPetProcessoRN {

	public static $FORMATO_DIGITALIZADO = 'D';
	public static $FORMATO_NATO_DIGITAL = 'N';


	private $objAcessoExternoDTO = null;
	private $objUsuarioDTO       = null;
	private $objCargoDTO         = null;
	private $objOrgaoDTO         = null;
	private $objUnidadeDTO       = null;
	private $objProcedimentoDTO  = null;
	private $senha               = null;
	private $reciboDTO           = null;
	private $participantesDTO    = null;
	private $documentoRecibo     = null;
	private $arrDocumentos       = array();

	//guarda o id da maior atividade de liberacao de acesso externo para comparar na hora de limpar o historico
	private $maxIdAtividade = 0;


	private $tipoConferenciaAlterado = false;

	public function __construct() {
		parent::__construct ();

	}

	protected function inicializarObjInfraIBanco() {
		return BancoSEI::getInstance ();
	}

	/**
	 * Short description of method validarUnidadeProcessoConectado
	 * Valida se as unidades dos processos abertos para esse procedimento estão ativas
	 * @access protected
	 * @author Jaqueline Mendes <jaqueline.mendes@cast.com.br>
	 * @param  ProcedimentoDTO $objProcedimentoDTO
	 * @return boolean
	 */
	protected function validarUnidadeProcessoConectado($objProcedimentoDTO){
		$objAtividadeRN  = new AtividadeRN();
		$arrObjUnidadeDTO = $objAtividadeRN->listarUnidadesTramitacao($objProcedimentoDTO);

		if(count($arrObjUnidadeDTO) == 0){
			return false;
		}

		return true;
	}

	/**
	 * Short description of method pesquisarProtocoloFormatadoConectado
	 * Pesquisa o processo exatamente como foi digitado SEM considerar a formatação
	 * @access protected
	 * @author Jaqueline Mendes <jaqueline.mendes@cast.com.br>
	 * @param  ProtocoloDTO $parObjProtocoloDTO
	 * @return mixed
	 */
	protected function pesquisarProtocoloFormatadoConectado(ProtocoloDTO $parObjProtocoloDTO){
		try{
			$objProtocoloRN = new ProtocoloRN();
			//busca pelo numero do processo
			$objProtocoloDTOPesquisa = new ProtocoloDTO();
			$objProtocoloDTOPesquisa->retDblIdProtocolo();
			$objProtocoloDTOPesquisa->retStrProtocoloFormatado();
			$objProtocoloDTOPesquisa->retStrStaProtocolo();
			$objProtocoloDTOPesquisa->retStrStaNivelAcessoGlobal();
			$objProtocoloDTOPesquisa->setNumMaxRegistrosRetorno(2);

			$strProtocoloPesquisa = InfraUtil::retirarFormatacao($parObjProtocoloDTO->getStrProtocoloFormatadoPesquisa(),false);

			$objProtocoloDTOPesquisa->setStrProtocoloFormatadoPesquisa($strProtocoloPesquisa);
			$objProtocoloDTOPesquisa->setStrStaProtocolo( ProtocoloRN::$TPP_PROCEDIMENTOS );
			$arrObjProtocoloDTO = $objProtocoloRN->listarRN0668($objProtocoloDTOPesquisa);

			if (count($arrObjProtocoloDTO) > 1) {
				return null;
			}

			if (count($arrObjProtocoloDTO) == 1) {
				return $arrObjProtocoloDTO[0];
			}


			return null;

		}catch(Exception $e){
			throw new InfraException('Erro pesquisando protocolo.',$e);
		}
	}

	/**
	 * Retorna a ultima unidade que o processo foi
	 * Pesquisa o processo exatamente como foi digitado SEM considerar a formatação
	 * @access protected
	 * @author Jaqueline Mendes <jaqueline.mendes@cast.com.br>
	 * @param  ProtocoloDTO $parObjProtocoloDTO
	 * @return mixed
	 */
	protected function retornaUltimaUnidadeProcessoConcluidoConectado(AtividadeDTO $objAtividadeDTO){

		$idUnidadeReabrirProcesso = null;
		$objAtividadeRN  = new AtividadeRN();
		$objAtividadeDTO->retDthConclusao();
		$objAtividadeDTO->retNumIdUnidade();
		$objAtividadeDTO->setOrdDthConclusao(InfraDTO::$TIPO_ORDENACAO_DESC);
		$arrObjAtividadeDTO = $objAtividadeRN->listarRN0036($objAtividadeDTO);
		$objUltimaAtvProcesso = count($arrObjAtividadeDTO) > 0 ? current($arrObjAtividadeDTO) : null;
		if(!is_null($objUltimaAtvProcesso)) {
			$idUnidadeReabrirProcesso = $objUltimaAtvProcesso->getNumIdUnidade();
		}

		return $idUnidadeReabrirProcesso;
	}

	protected function gerarProcedimentoApi($params)
	{

		$objProcedimentoDTO = $params[0];
		$objCriterioIntercorrenteDTO = $params[1];
		$especificacao = $params[2];

		$protocoloDTO = new ProtocoloDTO();
		$protocoloDTO->retTodos();
		$protocoloDTO->setDblIdProtocolo( $objProcedimentoDTO->getDblIdProcedimento() );
		$protocoloRN = new ProtocoloRN();
		$protocoloDTO = $protocoloRN->consultarRN0186( $protocoloDTO );

		// Verifica se o processo é anexado, se for, retorna a unidade do processo pai.
		if($objProcedimentoDTO->getStrStaEstadoProtocolo() == ProtocoloRN::$TE_PROCEDIMENTO_ANEXADO){
			$objRelProtocoloProtocoloDTO = new RelProtocoloProtocoloDTO();
			$objRelProtocoloProtocoloDTO->retDblIdProtocolo1();
			$objRelProtocoloProtocoloDTO->retStrProtocoloFormatadoProtocolo1();
			$objRelProtocoloProtocoloDTO->setDblIdProtocolo2($objProcedimentoDTO->getDblIdProcedimento());
			$objRelProtocoloProtocoloDTO->setStrStaAssociacao(RelProtocoloProtocoloRN::$TA_PROCEDIMENTO_ANEXADO);

			$objRelProtocoloProtocoloRN = new RelProtocoloProtocoloRN();
			$objRelProtocoloProtocoloDTO = $objRelProtocoloProtocoloRN->consultarRN0841($objRelProtocoloProtocoloDTO);


			$idUnidadeAbrirNovoProcesso = $this->retornaUltimaUnidadeProcessoAberto($objRelProtocoloProtocoloDTO->getDblIdProtocolo1());
		}else if($protocoloDTO->getStrStaNivelAcessoLocal() == ProtocoloRN::$NA_SIGILOSO ||
			$protocoloDTO->getStrStaNivelAcessoGlobal() ==  ProtocoloRN::$NA_SIGILOSO ){

			$objMdPetIntercorrenteAndamentoSigiloso = new MdPetIntercorrenteAndamentoSigilosoRN();

			$idUnidadeAbrirNovoProcesso = $objMdPetIntercorrenteAndamentoSigiloso->retornaIdUnidadeAberturaProcesso( $objProcedimentoDTO->getDblIdProcedimento() );

		}else{
			$idUnidadeAbrirNovoProcesso = $this->retornaUltimaUnidadeProcessoAberto($objProcedimentoDTO->getDblIdProcedimento());
		}

		// inicio da verificação da unidade ativa, caso não esteja tenta buscar uma unidade ativa para reabrir o processo.
		$unidadeDTO = new UnidadeDTO();
		$unidadeDTO->retTodos();
		$unidadeDTO->setBolExclusaoLogica(false);
		$unidadeDTO->setNumIdUnidade($idUnidadeAbrirNovoProcesso);
		$unidadeRN = new UnidadeRN();
		$objUnidadeDTO = $unidadeRN->consultarRN0125($unidadeDTO);

		if(!$objUnidadeDTO || $objUnidadeDTO->getStrSinAtivo() == 'N'){
			$idUnidadeAbrirNovoProcesso = null;
			$objAtividadeRN  = new MdPetIntercorrenteAtividadeRN();
			$arrObjUnidadeDTO = $objAtividadeRN->listarUnidadesTramitacao($objProcedimentoDTO);

			foreach ($arrObjUnidadeDTO as $itemObjUnidadeDTO) {
				if ($itemObjUnidadeDTO->getStrSinAtivo() == 'S') {
					$idUnidadeAbrirNovoProcesso = $itemObjUnidadeDTO->getNumIdUnidade();
				}
			}
		}


		if($idUnidadeAbrirNovoProcesso == null) {
			$objInfraException = new InfraException();
			$objInfraException->adicionarValidacao('O processo indicado não aceita peticionamento intercorrente. Utilize o Peticionamento de Processo Novo para protocolizar sua demanda.');
			$objInfraException->lancarValidacoes();
			return false;
		}
		// fim da verificação da unidade ativa

		// Salva um processo do tipo padrão selecionado
		$this->simularLogin($idUnidadeAbrirNovoProcesso);

		$objEntradaGerarProcedimentoAPI = new EntradaGerarProcedimentoAPI();
		$arrProcedimentoRelacionado = array($objProcedimentoDTO->getDblIdProcedimento());

		$objProcedimentoAPI = new ProcedimentoAPI();

		//Tipo Procedimento
		$objTipoProcedimentoDTO = new TipoProcedimentoDTO();
		$objTipoProcedimentoDTO->setBolExclusaoLogica(false);
		$objTipoProcedimentoDTO->setDistinct(true);
		$objTipoProcedimentoDTO->retStrSinAtivo();
		$objTipoProcedimentoDTO->setNumIdTipoProcedimento($objProcedimentoDTO->getNumIdTipoProcedimento());

		$objTipoProcedimentoRN = new TipoProcedimentoRN();
		$arrObjTipoProcedimentoDTO = $objTipoProcedimentoRN->listarRN0244($objTipoProcedimentoDTO);

		if (count($arrObjTipoProcedimentoDTO)==1 && $objCriterioIntercorrenteDTO->getStrSinCriterioPadrao()!='S') {
			$objTipoProcedimentoDTO = $arrObjTipoProcedimentoDTO[0];
			if ($objTipoProcedimentoDTO->getStrSinAtivo()=='S'){
				$objProcedimentoAPI->setIdTipoProcedimento($objProcedimentoDTO->getNumIdTipoProcedimento());
			}else{
				$objProcedimentoAPI->setIdTipoProcedimento($objCriterioIntercorrenteDTO->getNumIdTipoProcedimento());
			}
		}else{
			$objProcedimentoAPI->setIdTipoProcedimento($objCriterioIntercorrenteDTO->getNumIdTipoProcedimento());
		}
		// Tipo Procedimento - fim

		if ($especificacao!=null){
			$objProcedimentoAPI->setEspecificacao( $especificacao );
		}

		$objEntradaGerarProcedimentoAPI->setProcedimento($objProcedimentoAPI);
		$objEntradaGerarProcedimentoAPI->setProcedimentosRelacionados($arrProcedimentoRelacionado);

		$objSEIRN = new SeiRN();
		return $objSEIRN->gerarProcedimento($objEntradaGerarProcedimentoAPI);
	}

	/**
	 * Função responsável por Retornar a última unidade em que o processo ESTÁ aberto agora
	 * @param $idProcedimento
	 * @return  string $idUnidade
	 */
	protected function retornaUltimaUnidadeProcessoAbertoConectado($params){

		if (is_array($params)){
			$idProcedimento = $params[0];
			$idUnidadeEspecifica = $params[1];
			$retornarUsuarioAtribuicao = true;
		} else {
			$idProcedimento = $params;
		}

		$objSEIRN = new SeiRN();
		$objProcedimentoDTO = new ProcedimentoDTO();
		$objProcedimentoDTO->retTodos(true);
		$objProcedimentoDTO->setDblIdProcedimento($idProcedimento);
		$objProcedimentoRN = new ProcedimentoRN();
		$objProcedimentoDTO = $objProcedimentoRN->consultarRN0201($objProcedimentoDTO);

		$objEntradaConsultaProcApi = new EntradaConsultarProcedimentoAPI();
		$objEntradaConsultaProcApi->setIdProcedimento($idProcedimento);
		$objEntradaConsultaProcApi->setSinRetornarUnidadesProcedimentoAberto('S');
		$objEntradaConsultaProcApi->setSinRetornarUltimoAndamento('S');
		$objEntradaConsultaProcApi->setSinRetornarAndamentoConclusao('N');

		/**
		 * @var $saidaConsultarProcedimentoAPI SaidaConsultarProcedimentoAPI
		 */
		if($objProcedimentoDTO->getStrStaNivelAcessoGlobalProtocolo() == ProtocoloRN::$NA_SIGILOSO ||
			$objProcedimentoDTO->getStrStaNivelAcessoLocalProtocolo() == ProtocoloRN::$NA_SIGILOSO){
			$md = new MdPetIntercorrenteAndamentoSigilosoRN();
			$saidaConsultarProcedimentoAPI = $md->consultarProcedimento($objEntradaConsultaProcApi);
		} else {
			$saidaConsultarProcedimentoAPI = $objSEIRN->consultarProcedimento($objEntradaConsultaProcApi);
		}

		//informações da tarefa de conclusao de processo na unidade
		$tarefaRN = new TarefaRN();
		$tarefaDTO = new TarefaDTO();
		$tarefaDTO->retNumIdTarefa( );
		$tarefaDTO->retStrNome( );
		$tarefaDTO->setNumIdTarefa( TarefaRN::$TI_CONCLUSAO_PROCESSO_UNIDADE );
		$arrTarefaDTO = $tarefaRN->listar( $tarefaDTO );
		$tarefaDTO = $arrTarefaDTO[0];

		//lista de unidades nas quais o processo ainda encontra-se aberto
		$arrUnidadesAbertas = $saidaConsultarProcedimentoAPI->getUnidadesProcedimentoAberto();

		//o processo encontra-se aberto em pelo menos uma unidade
		if( is_array( $arrUnidadesAbertas ) && count( $arrUnidadesAbertas ) > 0 ){

			$arrIdUnidade = array();
			$arrIdUsuarioAtribuicao = array();

			foreach( $arrUnidadesAbertas as $unidadeAberta ){

				$unidadeIncluir = true;

				// mesma unidade da geradora
				if ($idUnidadeEspecifica && $idUnidadeEspecifica!=$unidadeAberta->getUnidade()->getIdUnidade()){
					$unidadeIncluir = false;
				}

				if ($unidadeIncluir){
					$arrIdUnidade[] = $unidadeAberta->getUnidade()->getIdUnidade();
					if ($retornarUsuarioAtribuicao) {
						if ( count($unidadeAberta->getUsuarioAtribuicao())>0 ) {
							$arrIdUsuarioAtribuicao[$unidadeAberta->getUnidade()->getIdUnidade()] = $unidadeAberta->getUsuarioAtribuicao()->getIdUsuario();
						}
					}
				}

			}

			$objEntradaAndamentos = new EntradaListarAndamentosAPI();
			$objEntradaAndamentos->setIdProcedimento( $idProcedimento );
			$objEntradaAndamentos->setTarefas( array( TarefaRN::$TI_GERACAO_PROCEDIMENTO , TarefaRN::$TI_REABERTURA_PROCESSO_UNIDADE, TarefaRN::$TI_PROCESSO_REMETIDO_UNIDADE ) );
			$arrAndamentos = $objSEIRN->listarAndamentos( $objEntradaAndamentos );

			foreach( $arrAndamentos as $andamento ){
				$idUnidadeAndamento = $andamento->getUnidade()->getIdUnidade();
				if( in_array( $idUnidadeAndamento, $arrIdUnidade ) ){
					if ($retornarUsuarioAtribuicao) {
						$arrUnidadeAndamento = array();
						$arrUnidadeAndamento[0] = $idUnidadeAndamento;
						$arrUnidadeAndamento[1] = $arrIdUsuarioAtribuicao[$idUnidadeAndamento];
						$idUnidadeAndamento = $arrUnidadeAndamento;
					}
					return $idUnidadeAndamento;
				}
			}

		}

		//o processo nao esta aberto em nenhuma unidade, nao ha id para ser retornado
		else {
			return null;
		}

	}

	/**
	 * Função responsável por Retornar todas as unidades em que o processo está aberto
	 *   buscado em: ProcedimentoINT.php - montarAcoesArvore() - linhas 766 a 870
	 * @param $idProcedimento
	 * @return AtividadeDTO $arrObjAtividadeDTO
	 * @since  07/03/2017
	 * @author CAST - castgroup.com.br
	 */
	protected function retornaUnidadesProcessoAbertoConectado($idProcedimento){

		$arrAtividade = array();

		$objProcedimentoDTO = new ProcedimentoDTO();
		$objProcedimentoDTO->setDblIdProcedimento($idProcedimento);
		$objProcedimentoDTO->retStrStaNivelAcessoGlobalProtocolo();
		$objProcedimentoDTO->retStrStaEstadoProtocolo();

		$objProcedimentoRN = new ProcedimentoRN();
		$objProcedimentoDTO = $objProcedimentoRN->consultarRN0201($objProcedimentoDTO);
		$strStaNivelAcessoGlobal = $objProcedimentoDTO->getStrStaNivelAcessoGlobalProtocolo();

		$bolFlagSobrestado = false;
		if ($objProcedimentoDTO->getStrStaEstadoProtocolo()==ProtocoloRN::$TE_PROCEDIMENTO_SOBRESTADO){
			$bolFlagSobrestado = true;
		}

		$objAtividadeRN = new AtividadeRN();
		$objAtividadeDTO = new AtividadeDTO();
		$objAtividadeDTO->setDistinct(true);
		$objAtividadeDTO->retNumIdUnidade();
		$objAtividadeDTO->retStrSiglaUnidade();
		$objAtividadeDTO->retStrDescricaoUnidade();

		$objAtividadeDTO->setOrdStrSiglaUnidade(InfraDTO::$TIPO_ORDENACAO_ASC);

		if ($strStaNivelAcessoGlobal==ProtocoloRN::$NA_SIGILOSO){
			$objAtividadeDTO->retNumIdUsuario();
			$objAtividadeDTO->retStrSiglaUsuario();
			$objAtividadeDTO->retStrNomeUsuario();
		}else{
			$objAtividadeDTO->retNumIdUsuarioAtribuicao();
			$objAtividadeDTO->retStrSiglaUsuarioAtribuicao();
			$objAtividadeDTO->retStrNomeUsuarioAtribuicao();

			//ordena descendente pois no envio de processo que já existe na unidade e está atribuído ficará com mais de um andamento em aberto
			//desta forma os andamentos com usuário nulo (envios do processo) serão listados depois
			$objAtividadeDTO->setOrdStrSiglaUsuarioAtribuicao(InfraDTO::$TIPO_ORDENACAO_DESC);
		}
		$objAtividadeDTO->setDblIdProtocolo($idProcedimento);
		$objAtividadeDTO->setDthConclusao(null);

		//sigiloso sem credencial nao considera o usuario atual
		if ($strStaNivelAcessoGlobal==ProtocoloRN::$NA_SIGILOSO){
			$objAcessoDTO = new AcessoDTO();
			$objAcessoDTO->setDistinct(true);
			$objAcessoDTO->retNumIdUsuario();
			$objAcessoDTO->setDblIdProtocolo($idProcedimento);
			$objAcessoDTO->setStrStaTipo(AcessoRN::$TA_CREDENCIAL_PROCESSO);

			$objAcessoRN = new AcessoRN();
			$arrObjAcessoDTO = $objAcessoRN->listar($objAcessoDTO);
			$objAtividadeDTO->setNumIdUsuario(InfraArray::converterArrInfraDTO($arrObjAcessoDTO,'IdUsuario'),InfraDTO::$OPER_IN);
		}

		$arrObjAtividadeDTO = $objAtividadeRN->listarRN0036($objAtividadeDTO);

		if ($strStaNivelAcessoGlobal!=ProtocoloRN::$NA_SIGILOSO){
			//filtra andamentos com indicação de usuário atribuído
			$arrObjAtividadeDTO = InfraArray::distinctArrInfraDTO($arrObjAtividadeDTO,'SiglaUnidade');
		}
		return $arrObjAtividadeDTO;
	}

	protected function incluirDocumentosApi($objProcedimentoDTO, $arrObjDocumentoAPI, $idUnidadeRespostaIntimacao)
	{

		$arrObjReciboDocPet = array();
		$objSEIRN = new SeiRN();

		/**
		* Identifica se a ação é para resposta a intimação
		*/
		if(is_null($idUnidadeRespostaIntimacao)){
			$idUnidadeProcesso = $this->retornaUltimaUnidadeProcessoAberto($objProcedimentoDTO->getDblIdProcedimento());
		}else{
			$idUnidadeProcesso = $idUnidadeRespostaIntimacao;
		}

		// inicio da verificação da unidade ativa, caso não esteja tenta buscar uma unidade ativa para reabrir o processo.
		if (is_numeric($idUnidadeProcesso)){
			$unidadeDTO = new UnidadeDTO();
			$unidadeDTO->retTodos();
			$unidadeDTO->setBolExclusaoLogica(false);
			$unidadeDTO->retStrSinAtivo();
			$unidadeDTO->setNumIdUnidade($idUnidadeProcesso);
			$unidadeRN = new UnidadeRN();
			$objUnidadeDTO = $unidadeRN->consultarRN0125($unidadeDTO);
		}

		//resolver um problema de " Call to a member function getStrSinAtivo() on null"
		if( $objUnidadeDTO == null || !$objUnidadeDTO->isSetStrSinAtivo() || $objUnidadeDTO->getStrSinAtivo() == 'N'){
			$idUnidadeProcesso = null;

			$objMdPetAtividadeRN = new MdPetAtividadeRN();
			$arrObjMdPetAtividadeDTO = $objMdPetAtividadeRN->listarUnidadesTramitacao($objProcedimentoDTO);

			foreach ($arrObjMdPetAtividadeDTO as $itemObjMdPetAtividadeDTO) {
				$unidadeDTO = new UnidadeDTO();
				$unidadeDTO->retTodos();
				$unidadeDTO->setBolExclusaoLogica(false);
				$unidadeDTO->setNumIdUnidade($itemObjMdPetAtividadeDTO->getNumIdUnidade());
				$unidadeRN = new UnidadeRN();
				$objUnidadeDTO = $unidadeRN->consultarRN0125($unidadeDTO);
				if ($objUnidadeDTO->getStrSinAtivo() == 'S') {
					$idUnidadeProcesso = $objUnidadeDTO->getNumIdUnidade();
				}
			}
		}

		if( $idUnidadeProcesso == null ){
			//trata-se de processo sigiloso global
			$objMdPetIntercorrenteAndamentoSigilosoRN = new MdPetIntercorrenteAndamentoSigilosoRN();
			$idUnidadeProcesso = $objMdPetIntercorrenteAndamentoSigilosoRN->retornaIdUnidadeAberturaProcesso( $_POST['id_procedimento'] );
		}

		// SIGILOSO - conceder credencial
		if ($objProcedimentoDTO->getStrStaNivelAcessoGlobalProtocolo() == ProtocoloRN::$NA_SIGILOSO
			|| $objProcedimentoDTO->getStrStaNivelAcessoLocalProtocolo() == ProtocoloRN::$NA_SIGILOSO){
			if (is_numeric(SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno())){
				$objMdPetProcedimentoRN = new MdPetProcedimentoRN();
				$objConcederCredencial = $objMdPetProcedimentoRN->concederCredencial( array($objProcedimentoDTO, $idUnidadeProcesso) );
				if (count($objConcederCredencial)>0){
					$numIdUsuarioExterno = $objConcederCredencial[4];
					$idUnidade = $objConcederCredencial[6];
					SessaoSEI::getInstance()->simularLogin(null, null, $numIdUsuarioExterno, $idUnidade);
				}
			}
		}else{
			SessaoSEI::getInstance()->simularLogin(null, null, SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno(), $idUnidadeProcesso);
			$idUnidade = $idUnidadeProcesso;
		}

		// SIGILOSO - conceder credencial - FIM

		// se não usar o //$this->simularLogin($idUnidadeProcesso);
		$this->setUnidadeDTO($idUnidade);

		foreach ($arrObjDocumentoAPI as $documentoAPI) {

			$saidaIncluirDocumentoAPI = $objSEIRN->incluirDocumento($documentoAPI);

			// Remententes
			$idsParticipantes = array();
			$idsInteressados = array();

			$objParticipante  = new ParticipanteDTO();
			$objParticipante->setDblIdProtocolo($saidaIncluirDocumentoAPI->getIdDocumento());
			$objParticipante->setNumIdContato($this->getContatoDTOUsuarioLogado()->getNumIdContato());
			$objParticipante->setNumIdUnidade($idUnidadeProcesso);
			$objParticipante->setStrStaParticipacao(ParticipanteRN::$TP_REMETENTE);
			$objParticipante->setNumSequencia(0);
			$idsParticipantes[] = $objParticipante;

			$objMdPetParticipanteRN = new MdPetParticipanteRN();
			$arrInteressado = array();
			$arrInteressado[0] = $saidaIncluirDocumentoAPI->getIdDocumento();
			$arrInteressado[1] = $idsParticipantes;

			$objMdPetParticipanteRN->setInteressadosRemetentesProcedimentoDocumento( $arrInteressado );
			// Processo - Interessados - FIM

			$formato = MdPetIntercorrenteINT::retornaTipoFormatoDocumento($saidaIncluirDocumentoAPI);

			$objReciboDocAnexPetDTO = MdPetIntercorrenteINT::retornaObjReciboDocPreenchido(array($saidaIncluirDocumentoAPI->getIdDocumento(), $formato));

			array_push($arrObjReciboDocPet, $objReciboDocAnexPetDTO);

			$this->assinarETravarDocumento($saidaIncluirDocumentoAPI);

			//Participantes - Atualizando
			$this->setParticipante($idsInteressados);

		}
		// SIGILOSO - cassarcredencial 
		if ($objProcedimentoDTO->getStrStaNivelAcessoGlobalProtocolo() == ProtocoloRN::$NA_SIGILOSO
			|| $objProcedimentoDTO->getStrStaNivelAcessoLocalProtocolo() == ProtocoloRN::$NA_SIGILOSO){    			
			if (is_numeric(SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno())){
				$objMdPetProcedimentoRN = new MdPetProcedimentoRN();
				$objCassarCredencial = $objMdPetProcedimentoRN->cassarCredencial( $objConcederCredencial );
				$objMdPetProcedimentoRN->excluirAndamentoCredencial( $objConcederCredencial );
			}
		}
		// SIGILOSO - cassarcredencial - FIM

		return $arrObjReciboDocPet;
	}

	private function abrirDocumentoParaAssinatura($dblIdDocumento)
	{
		$documentoRN = new DocumentoRN();
		$documentoBD = new DocumentoBD( $this->getObjInfraIBanco() );

		$documentoDTO = new DocumentoDTO();
		$documentoDTO->retTodos(true);
		$documentoDTO->setDblIdDocumento( $dblIdDocumento );
		$documentoDTO = $documentoRN->consultarRN0005( $documentoDTO );

		$this->tipoConferenciaAlterado = false;
		//setar temporariamente e depois remover da entidade
		if(! $documentoDTO->getNumIdTipoConferencia() ){
			// buscando o menor tipo de conferencia
			$tipoConferenciaDTOConsulta = new TipoConferenciaDTO();
			$tipoConferenciaDTOConsulta->retTodos();
			$tipoConferenciaDTOConsulta->setStrSinAtivo('S');
			$tipoConferenciaDTOConsulta->setOrd('IdTipoConferencia', InfraDTO::$TIPO_ORDENACAO_ASC);
			$tipoConferenciaRN = new TipoConferenciaRN();
			$arrTipoConferenciaDTO = $tipoConferenciaRN->listar($tipoConferenciaDTOConsulta);
			$numIdTipoConferencia = $arrTipoConferenciaDTO[0]->getNumIdTipoConferencia();
			// fim buscando o menor tipo de conferencia

			//setando um tipo de conferencia padrao (que sera removido depois), apenas para passar na validação
			$documentoDTO->setNumIdTipoConferencia($numIdTipoConferencia);
			$documentoAlteracaoDTO = new DocumentoDTO();
			$documentoAlteracaoDTO->retDblIdDocumento();
			$documentoAlteracaoDTO->retNumIdTipoConferencia();
			$documentoAlteracaoDTO->setDblIdDocumento( $documentoDTO->getDblIdDocumento() );
			$documentoAlteracaoDTO = $documentoRN->consultarRN0005( $documentoAlteracaoDTO );

			$documentoAlteracaoDTO->setNumIdTipoConferencia($numIdTipoConferencia);
			$documentoBD->alterar( $documentoAlteracaoDTO );
			$this->tipoConferenciaAlterado = true;
		}
		return $documentoDTO;
	}

	private function fecharDocumentoParaAssinatura($documentoDTO)
	{
		$documentoBD = new DocumentoBD( $this->getObjInfraIBanco() );
		if( $this->tipoConferenciaAlterado ){
			$documentoDTO->setNumIdTipoConferencia(null);
			$documentoBD->alterar( $documentoDTO );
		}
		//nao aplicando metodo alterar da RN de Documento por conta de regras de negocio muito especificas aplicadas ali
		$documentoDTO->setStrSinBloqueado('S');
		$documentoBD->alterar( $documentoDTO );
		//remover a liberação de acesso externo //AcessoRN.excluir nao permite exclusao, por isso chame AcessoExternoBD diretamente daqui
	}

	private function abrirAcessoParaAssinatura($orgaoDTO, $documentoDTO, $objParticipanteDTO)
	{
		//liberando assinatura externa para o documento
		$objAcessoExternoDTO = new AcessoExternoDTO();

		//trocado de $TA_ASSINATURA_EXTERNA para $TA_SISTEMA para evitar o envio de email de notificação
		$objAcessoExternoDTO->setStrStaTipo(AcessoExternoRN::$TA_ASSINATURA_EXTERNA );
		$objAcessoExternoDTO->setStrEmailUnidade($orgaoDTO->getStrEmailContato() ); //informando o email do orgao associado a unidade
		$objAcessoExternoDTO->setDblIdDocumento( $documentoDTO->getDblIdDocumento() );
		$objAcessoExternoDTO->setNumIdParticipante( $objParticipanteDTO->getNumIdParticipante() );
		$objAcessoExternoDTO->setNumIdUsuarioExterno( SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno() );
		$objAcessoExternoDTO->setStrSinProcesso('N'); //visualizacao integral do processo

		$objMdPetAcessoExternoRN = new MdPetAcessoExternoRN();
		$this->objAcessoExternoDTO = $objMdPetAcessoExternoRN->cadastrarAcessoExternoCore($objAcessoExternoDTO);
	}

	private function fecharAcessoParaAssinatura()
	{
		$objAcessoExternoBD = new AcessoExternoBD($this->getObjInfraIBanco());
		$objAcessoExternoBD->excluir( $this->objAcessoExternoDTO );
	}

	private function retornarParticipante($objUsuarioDTO, $objUnidadeDTO, $objProcedimentoDTO)
	{
		$objParticipanteDTO = new ParticipanteDTO();
		$objParticipanteDTO->retTodos(true);
		$objParticipanteDTO->retStrSiglaContato();
		$objParticipanteDTO->retStrNomeContato();
		$objParticipanteDTO->retNumIdUnidade();
		$objParticipanteDTO->retDblIdProtocolo();
		$objParticipanteDTO->retNumIdParticipante();
		//FK de BD (ak1_participante) trata somente id_contato, id_protocolo, sta_participacao, então desconsiderar unidade
		$objParticipanteDTO->setNumIdContato( $objUsuarioDTO->getNumIdContato() );
		$objParticipanteDTO->setDblIdProtocolo( $objProcedimentoDTO->getDblIdProcedimento() );

		$objParticipanteRN = new ParticipanteRN();
		$arrObjParticipanteDTO = $objParticipanteRN->listarRN0189($objParticipanteDTO);

		if( $arrObjParticipanteDTO == null || count( $arrObjParticipanteDTO ) == 0){
			//cadastrar o participante
			$objParticipanteDTO = new ParticipanteDTO();
			$objParticipanteDTO->setNumIdContato( $objUsuarioDTO->getNumIdContato() );
			$objParticipanteDTO->setDblIdProtocolo( $objProcedimentoDTO->getDblIdProcedimento() );
			$objParticipanteDTO->setStrStaParticipacao( ParticipanteRN::$TP_ACESSO_EXTERNO );
			$objParticipanteDTO->setNumIdUnidade( $objUnidadeDTO->getNumIdUnidade() );
			$objParticipanteDTO->setNumSequencia(0);

			$participanteDTO = $objParticipanteRN->cadastrarRN0170( $objParticipanteDTO );

			$objParticipanteDTO = new ParticipanteDTO();
			$objParticipanteDTO->retTodos(true);
			$objParticipanteDTO->setNumIdParticipante( $participanteDTO->getNumIdParticipante() );
			$ret = $objParticipanteRN->consultarRN1008($objParticipanteDTO);
		} else {
			$ret = $arrObjParticipanteDTO[0];
		}
		$this->setParticipante($ret);
		return $ret;
	}



	public function assinarETravarDocumento($documento)
	{
		//consultar email da unidade (orgao)
		$orgaoDTO           = $this->getOrgaoDTO();
		$cargoDTO           = $this->getCargoDTO();
		$objUsuarioDTO      = $this->getUsuarioDTO();
		$objUnidadeDTO      = $this->getUnidadeDTO();
		$objProcedimentoDTO = $this->getProcedimentoDTO();

		$documentoDTO = $documento;
		if($documento instanceof SaidaIncluirDocumentoAPI){
			$dlbIdDocumento = $documento->getIdDocumento();
		} else {
			$dlbIdDocumento = $documento->getDblIdDocumento();
		}
		$documentoDTO = $this->abrirDocumentoParaAssinatura($dlbIdDocumento);
		$objParticipanteDTO = $this->retornarParticipante($objUsuarioDTO, $objUnidadeDTO, $objProcedimentoDTO);

		$this->abrirAcessoParaAssinatura($orgaoDTO, $documentoDTO, $objParticipanteDTO);
		$objAssinaturaDTO = new AssinaturaDTO();
		$objAssinaturaDTO->setStrStaFormaAutenticacao(AssinaturaRN::$TA_SENHA);
		$objAssinaturaDTO->setNumIdUsuario(SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno() );
		$objAssinaturaDTO->setStrSenhaUsuario( $this->getSenha() );
		$objAssinaturaDTO->setStrCargoFuncao( "Usuário Externo - " . $cargoDTO->getStrExpressao() );
		$objAssinaturaDTO->setArrObjDocumentoDTO(array($documentoDTO));

		$objMdPetDocumentoRN = new MdPetDocumentoRN();
		$objAssinaturaDTO = $objMdPetDocumentoRN->assinar($objAssinaturaDTO);
		$this->addDocumentos($documentoDTO);
		$this->fecharDocumentoParaAssinatura($documentoDTO);
		$this->fecharAcessoParaAssinatura();
		return $objAssinaturaDTO;
	}

	private function retornarDocumentosRecibo($objSaidaGerarProcedimentoAPI) {
		$arrObjReciboDocPet = array();
		$objRetornoDocs = $objSaidaGerarProcedimentoAPI->getRetornoInclusaoDocumentos();
		$arrRetornoTpFormato = MdPetIntercorrenteINT::retornaTipoFormatoDocumento($objRetornoDocs);

		$formato = null;
		foreach($objRetornoDocs as $doc){
			if(array_key_exists($doc->getIdDocumento(), $arrRetornoTpFormato)){
				$formato =  $arrRetornoTpFormato[$doc->getIdDocumento()];
			}
			$objReciboDocAnexPetDTO = MdPetIntercorrenteINT::retornaObjReciboDocPreenchido(array($doc->getIdDocumento(), $formato));
			array_push($arrObjReciboDocPet, $objReciboDocAnexPetDTO);
		}
		return $arrObjReciboDocPet;
	}

	/**
	 * Gera o documento recibo que vai dentro do processo
	 * @param $params
	 * @return DocumentoDTO
	 */
	private function montarReciboIntercorrente($params)
	{
		$arrParams = array(
			$params,
			$this->getUnidadeDTO(),
			$this->getProcedimentoDTO(),
			$this->getParticipanteDTO(),
			$this->getReciboDTO(),
			$this->getDocumentos()
		);

		$objMdPetReciboIntercorrenteRN = new MdPetReciboIntercorrenteRN();
		return $objMdPetReciboIntercorrenteRN->montarRecibo($arrParams);
	}

	/*
	 * Gera registro em banco de dados de documentos anexos referente ao recibo (diferente do documento recibo que vai dentro do processo)
	 *
	 */
	protected function cadastrarReciboDocumentoAnexoConectado($params)
	{
		$objMdPetReciboDTO = $params[0];
		$arrObjReciboDocPet = $params[1];

		$objMdPetRelReciboDocumentoAnexoRN = new MdPetRelReciboDocumentoAnexoRN();

		$numIdReciboPeticionamento = $objMdPetReciboDTO->getNumIdReciboPeticionamento();

		//Gerar Recibo Docs
		foreach($arrObjReciboDocPet as $objReciboDocPet){
			//Remover Depois - Campo está como NOT NULL, deve ser NULL na adaptação
			$objReciboDocPet->setStrClassificacaoDocumento('A');
			$objReciboDocPet->setNumIdReciboPeticionamento($numIdReciboPeticionamento);
			$objMdPetRelReciboDocumentoAnexoRN->cadastrar($objReciboDocPet);
		}
	}

	/*
	 * Responsável por enviar emails ao final do processo do peticionamento intercorrente
	 * */
	protected function enviarEmailConectado($params)
	{
		$arrParams = array();
		$arrParams[0] = $params;
		$arrParams[1] = $this->getUnidadeDTO();
		$arrParams[2] = $this->getProcedimentoDTO();
		$arrParams[3] = array($this->getParticipanteDTO());
		$arrParams[4] = $this->getReciboDTO();
		$arrParams[5] = $this->getDocumentoRecibo();

		$emailMdPetEmailNotificacaoIntercorrenteRN = new MdPetEmailNotificacaoIntercorrenteRN();
		return $emailMdPetEmailNotificacaoIntercorrenteRN->notificaoPeticionamentoExterno( $arrParams );

	}

	/*
	 * Método principal responsável por coordenar todo o processamento , regras e cadastros do
	 * peticionamento intercorrente e resposta a intimação 
	 * chamando várias classes e métodos auxiliares para realizar operaçoes especificas
	 * */
	protected function cadastrarControlado($params)
	{
		// Bloco de validações
		$this->validarCadastro($params);

		$atividadeRN = new AtividadeRN();

		// setando atributos que serão utilizados em outros métodos
		$this->setCargoDTO($params['selCargo']);
		$this->setSenha($params['senhaSEI']);

		$idProcedimentoProcesso = $params['id_procedimento'];
		//Busca o Procedimento Principal

		$objProcedimentoDTO = new ProcedimentoDTO();
		$objProcedimentoRN = new ProcedimentoRN();
		$objProcedimentoDTO->setDblIdProcedimento($params['id_procedimento']);
		$objProcedimentoDTO->retTodos(true);
		$objProcedimentoDTO = $objProcedimentoRN->consultarRN0201($objProcedimentoDTO);

		if($objProcedimentoDTO->getStrStaEstadoProtocolo() == ProtocoloRN::$TE_PROCEDIMENTO_ANEXADO) {
			$objRelProtocoloProtocoloDTO = new RelProtocoloProtocoloDTO();
			$objRelProtocoloProtocoloDTO->retDblIdProtocolo1();
			$objRelProtocoloProtocoloDTO->retStrProtocoloFormatadoProtocolo1();
			$objRelProtocoloProtocoloDTO->setDblIdProtocolo2($objProcedimentoDTO->getDblIdProcedimento());
			$objRelProtocoloProtocoloDTO->setStrStaAssociacao(RelProtocoloProtocoloRN::$TA_PROCEDIMENTO_ANEXADO);

			$objRelProtocoloProtocoloRN = new RelProtocoloProtocoloRN();
			$objRelProtocoloProtocoloDTO = $objRelProtocoloProtocoloRN->consultarRN0841($objRelProtocoloProtocoloDTO);

			$objProcedimentoDTO = new ProcedimentoDTO();
			$objProcedimentoRN = new ProcedimentoRN();
			$objProcedimentoDTO->setDblIdProcedimento($objRelProtocoloProtocoloDTO->getDblIdProtocolo1());

			$params['id_procedimento'] = $objRelProtocoloProtocoloDTO->getDblIdProtocolo1();

			$objProcedimentoDTO->retTodos(true);
			$objProcedimentoDTO = $objProcedimentoRN->consultarRN0201($objProcedimentoDTO);
		}

		$objMdPetCriterioRN = new MdPetCriterioRN();
		$objCriterioIntercorrenteDTO = $objMdPetCriterioRN->retornarCriterioPorTipoProcesso($params);

		// Verifica se o processo possui critério intercorrente cadastrado
		//Se não possui busca o padrão e cria um processo relacionado ao processo selecionado
		$arrObjReciboDocPet = array();
		$arrDadosRecibo = array();
		$arrDadosRecibo['idProcedimento'] = $params['id_procedimento'];

		// Remententes
		$contatoDTOUsuarioLogado = $this->getContatoDTOUsuarioLogado();
		$idsRemententes = array();
		$idsRemententes[] = $contatoDTOUsuarioLogado->getNumIdContato();

		$estadosReabrirRelacionado = array(ProtocoloRN::$TE_PROCEDIMENTO_SOBRESTADO, ProtocoloRN::$TE_PROCEDIMENTO_ANEXADO, ProtocoloRN::$TE_PROCEDIMENTO_BLOQUEADO);
		/**
		 * Verifica se:
		 * 1 - Se o processo eh sigiloso (nivel de acesso global ou local eh igual a 2)
		 * 2 - Se o Tipo do Processo do procedimento informado nao possui um intercorrente cadastrado(neste caso irah utilizar o Intercorrente Padrao)
		 */
		$params['diretoProcessoIndicado']=false;

		$arrUnidadeProcesso = null;

		if (!$params['isRespostaIntimacao'] == true && (($params['isRespostaIntercorrente'] == true  && $objCriterioIntercorrenteDTO->getStrSinAtivo() == "N") || $objCriterioIntercorrenteDTO->getStrSinCriterioPadrao() == 'S'
			|| in_array($objProcedimentoDTO->getStrStaEstadoProtocolo(), $estadosReabrirRelacionado))) {

			$especificacao = 'Peticionamento Intercorrente relacionado ao Processo nº ' . $objProcedimentoDTO->getStrProtocoloProcedimentoFormatado();
			$objSaidaGerarProcedimentoAPI = $this->gerarProcedimentoApi(array($objProcedimentoDTO, $objCriterioIntercorrenteDTO, $especificacao));

			$arrDadosRecibo['idProcedimentoRel'] = $params['id_procedimento'];
			$arrDadosRecibo['idProcedimento'] = $objSaidaGerarProcedimentoAPI->getIdProcedimento();
			$params['id_procedimento'] = $objSaidaGerarProcedimentoAPI->getIdProcedimento();
			//Se possui critérios intercorrentes setta os documentos no processo existente
			$this->setProcedimentoDTO($objSaidaGerarProcedimentoAPI->getIdProcedimento());

			//SE o criterio existe, e NAO é o criterio padrao, tenta incluir documento no proprio processo (caso o mesmo esteja aberto) ou reabrir o processo (caso o mesmo esteja fechado)
		}else if( $params['isRespostaIntimacao'] == true || ($objCriterioIntercorrenteDTO != null && $objCriterioIntercorrenteDTO->getStrSinCriterioPadrao() == 'N')) {

			//se for intimação
			if( isset($params['isRespostaIntimacao']) ){
				$objMdPetIntimacaoRN = new MdPetIntimacaoRN();
				$objUnidadeDTO = $objMdPetIntimacaoRN->getUnidadeIntimacao(array($params['id_intimacao']));

				//unidade esta ativa
				$unidadeDTO = new UnidadeDTO();
				$unidadeDTO->retTodos();
				$unidadeDTO->setBolExclusaoLogica(false);
				$unidadeDTO->setNumIdUnidade($objUnidadeDTO->getNumIdUnidade());
				$unidadeRN = new UnidadeRN();
				$objUnidadeDTO = $unidadeRN->consultarRN0125($unidadeDTO);

				if($objUnidadeDTO->getStrSinAtivo()=='S'){
					$arrUnidadeProcesso = $objMdPetIntimacaoRN->verificarUnidadeAberta( array($objProcedimentoDTO, $objUnidadeDTO->getNumIdUnidade()) );
					if (count($arrUnidadeProcesso)==0){
						$idUnidadeAberta = $objMdPetIntimacaoRN->reabrirUnidade( array($objProcedimentoDTO, $objUnidadeDTO->getNumIdUnidade()) );
						if (is_numeric($idUnidadeAberta)){
							$arrUnidadeProcesso = $objMdPetIntimacaoRN->verificarUnidadeAberta( array($objProcedimentoDTO, $idUnidadeAberta) );
						}
					}
				}
				//se for necessario, executar reabertura do processo
			}else{
				$reaberturaRN = new MdPetIntercorrenteReaberturaRN();

				if( $reaberturaRN->isNecessarioReabrirProcedimento( $objProcedimentoDTO ) ) {
					$reaberturaRN->reabrirProcessoApi($objProcedimentoDTO);
				}
			}


			$params['diretoProcessoIndicado']=true;
			$this->setProcedimentoDTO($params['id_procedimento']);

			//obter o id da maior atividade de liberacao de acesso externo para comparar na hora de limpar o historico
			$atividadeConsultaDTO = new AtividadeDTO();
			$atividadeConsultaDTO->retNumIdAtividade();

			$atividadeConsultaDTO->setDblIdProtocolo( $params['id_procedimento'] );
			$atividadeConsultaDTO->setNumIdTarefa(TarefaRN::$TI_ACESSO_EXTERNO_SISTEMA);
			$atividadeConsultaDTO->setOrd('IdAtividade', InfraDTO::$TIPO_ORDENACAO_DESC);

			$arrDTOAtividadesConsulta = $atividadeRN->listarRN0036( $atividadeConsultaDTO);

			if( $arrDTOAtividadesConsulta != null && is_array($arrDTOAtividadesConsulta) && count($arrDTOAtividadesConsulta)>0 ){
				$this->maxIdAtividade = $arrDTOAtividadesConsulta[0]->getNumIdAtividade();
			}

		}
		// 1) ANEXADO, vai pegar do ANEXADOR/PRINCIPAL
		if($objProcedimentoDTO->getStrStaEstadoProtocolo() == ProtocoloRN::$TE_PROCEDIMENTO_ANEXADO){
			$objRelProtocoloProtocoloDTO = new RelProtocoloProtocoloDTO();
			$objRelProtocoloProtocoloDTO->retDblIdProtocolo1();
			$objRelProtocoloProtocoloDTO->retStrProtocoloFormatadoProtocolo1();
			$objRelProtocoloProtocoloDTO->setDblIdProtocolo2($objProcedimentoDTO->getDblIdProcedimento());
			$objRelProtocoloProtocoloDTO->setStrStaAssociacao(RelProtocoloProtocoloRN::$TA_PROCEDIMENTO_ANEXADO);

			$objRelProtocoloProtocoloRN = new RelProtocoloProtocoloRN();
			$objRelProtocoloProtocoloDTO = $objRelProtocoloProtocoloRN->consultarRN0841($objRelProtocoloProtocoloDTO);

			if ( count($objRelProtocoloProtocoloDTO)==1 ){
				$arrUnidadeProcesso = $this->retornaUltimaUnidadeProcessoAberto( array($objRelProtocoloProtocoloDTO->getDblIdProtocolo1()) );
			}
			// 2) Última aberta
		}else if (count($arrUnidadeProcesso)==0){
			$arrUnidadeProcesso = $this->retornaUltimaUnidadeProcessoAberto( array($this->getProcedimentoDTO()->getDblIdProcedimento()) );
		}

		$idUnidadeProcesso = null;
		$idUsuarioAtribuicao = null;
		if ( count($arrUnidadeProcesso)>0 ){
			if( is_numeric($arrUnidadeProcesso[0]) ){
				$idUnidadeProcesso = $arrUnidadeProcesso[0];
				if( is_numeric($arrUnidadeProcesso[1]) ){
					$idUsuarioAtribuicao = $arrUnidadeProcesso[1];
				}
			}else{
				$idUnidadeProcesso = $arrUnidadeProcesso[0]->getNumIdUnidade();
				if ( $arrUnidadeProcesso[0]->isSetNumIdUsuarioAtribuicao() ){
					$idUsuarioAtribuicao = $arrUnidadeProcesso[0]->getNumIdUsuarioAtribuicao();
				}
			}
		}

		if( !is_numeric($idUnidadeProcesso) ){
			$mdPetAndamentoSigilosoRN = new MdPetIntercorrenteAndamentoSigilosoRN();
			$idUnidadeProcesso = $mdPetAndamentoSigilosoRN->retornaIdUnidadeAberturaProcesso( $this->getProcedimentoDTO()->getDblIdProcedimento() );
		}
		// Unidade - fim


		$idsParticipantes = array();

		//Interessados
		// Processo Principal - Interessados
		$objParticipanteProcPrincDTO = new ParticipanteDTO();
		$objParticipanteProcPrincDTO->retNumIdParticipante();
		$objParticipanteProcPrincDTO->retNumIdContato();
		$objParticipanteProcPrincDTO->retNumIdUnidade();
		$objParticipanteProcPrincDTO->retStrStaParticipacao();
		$objParticipanteProcPrincDTO->retStrNomeContato();
		$objParticipanteProcPrincDTO->retNumSequencia();
		$objParticipanteProcPrincDTO->setDblIdProtocolo($objProcedimentoDTO->getDblIdProcedimento());
		$objParticipanteProcPrincDTO->setStrStaParticipacao(ParticipanteRN::$TP_INTERESSADO);

		$objParticipanteProcPrincRN = new ParticipanteRN();
		$arrobjParticipanteProcPrinc = $objParticipanteProcPrincRN->listarRN0189($objParticipanteProcPrincDTO);
		// Processo Principal - Interessados - FIM

		// Processo - Interessados
		$i=0;
		foreach($arrobjParticipanteProcPrinc as $objParticipanteProcPrinc){
			$objParticipante  = new ParticipanteDTO();
			$objParticipante->setDblIdProtocolo($this->getProcedimentoDTO()->getDblIdProcedimento());
			$objParticipante->setNumIdContato($objParticipanteProcPrinc->getNumIdContato());
			$objParticipante->setNumIdUnidade($objParticipanteProcPrinc->getNumIdUnidade());
			$objParticipante->setStrStaParticipacao(ParticipanteRN::$TP_INTERESSADO);
			$objParticipante->setNumSequencia($i);
			$idsParticipantes[] = $objParticipante;
			$i++;
		}

		$objMdPetParticipanteRN = new MdPetParticipanteRN();
		$arrInteressado = array();
		$arrInteressado[0] = $this->getProcedimentoDTO()->getDblIdProcedimento();
		$arrInteressado[1] = $idsParticipantes;
		$objMdPetParticipanteRN->setInteressadosRemetentesProcedimentoDocumento( $arrInteressado );
		// Processo - Interessados - FIM

		$idUnidadeRespostaIntimacao = $params['isRespostaIntimacao'] ? $idUnidadeProcesso : null;

		$arrDocApi = MdPetIntercorrenteINT::montarArrDocumentoAPI($params['id_procedimento'],$params['hdnTbDocumento']);

		$arrObjReciboDocPet = $this->incluirDocumentosApi($this->getProcedimentoDTO(), $arrDocApi, $idUnidadeRespostaIntimacao);

		if( isset( $params['isRespostaIntimacao'] ) ){
			$arrDadosRecibo['isRespostaIntimacao'] = true;
		}

		$objMdPetReciboRN = new MdPetReciboRN();
		$arrDadosRecibo['id_intimacao'] = $params['id_intimacao'];
		$arrDadosRecibo['id_aceite'] = $params['id_aceite'];
		$arrDadosRecibo['id_tipo_resposta'] = $params['id_tipo_resposta'];
		$arrDadosRecibo['idProcedimentoProcesso'] = $idProcedimentoProcesso;
		$objReciboDTO = $objMdPetReciboRN->gerarReciboSimplificadoIntercorrente($arrDadosRecibo);

		if (count($objReciboDTO) > 0) {

			$this->setReciboDTO($objReciboDTO);
			$this->cadastrarReciboDocumentoAnexo(array($objReciboDTO, $arrObjReciboDocPet));

			$documentoReciboDTO = $this->montarReciboIntercorrente($params);

			//Remetentes
			$idsParticipantes = array();
			$objParticipante  = new ParticipanteDTO();
			$objParticipante->setDblIdProtocolo($documentoReciboDTO->getDblIdDocumento());
			$objParticipante->setNumIdContato($this->getContatoDTOUsuarioLogado()->getNumIdContato());
			$objParticipante->setNumIdUnidade($idUnidadeProcesso);
			$objParticipante->setStrStaParticipacao(ParticipanteRN::$TP_REMETENTE);
			$objParticipante->setNumSequencia(0);
			$idsParticipantes[] = $objParticipante;

			// Recibo - Interessados
			$i=0;
			foreach($arrobjParticipanteProcPrinc as $objParticipanteProcPrinc){
				$objParticipante  = new ParticipanteDTO();
				$objParticipante->setDblIdProtocolo($documentoReciboDTO->getDblIdDocumento());
				$objParticipante->setNumIdContato($objParticipanteProcPrinc->getNumIdContato());
				$objParticipante->setNumIdUnidade($objParticipanteProcPrinc->getNumIdUnidade());
				$objParticipante->setStrStaParticipacao(ParticipanteRN::$TP_INTERESSADO);
				$objParticipante->setNumSequencia($i);
				$idsParticipantes[] = $objParticipante;
				$i++;
			}

			$objMdPetParticipanteRN = new MdPetParticipanteRN();
			$arrInteressado = array();
			$arrInteressado[0] = $documentoReciboDTO->getDblIdDocumento();
			$arrInteressado[1] = $idsParticipantes;

			$objMdPetParticipanteRN->setInteressadosRemetentesProcedimentoDocumento( $arrInteressado );
			// Recibo - Interessados - FIM

			$this->setDocumentoRecibo($documentoReciboDTO);

			//apagando andamentos do tipo "Disponibilizado acesso externo para @INTERESSADO@"
			$objAtividadeDTOLiberacao = new AtividadeDTO();
			$objAtividadeDTOLiberacao->retTodos();
			$objAtividadeDTOLiberacao->setDblIdProtocolo( $this->getProcedimentoDTO()->getDblIdProcedimento() );
			$objAtividadeDTOLiberacao->setNumIdAtividade( $this->maxIdAtividade , InfraDTO::$OPER_MAIOR );
			$objAtividadeDTOLiberacao->setNumIdTarefa(TarefaRN::$TI_ACESSO_EXTERNO_SISTEMA);

			$arrDTOAtividades = $atividadeRN->listarRN0036( $objAtividadeDTOLiberacao );
			$atividadeRN->excluirRN0034( $arrDTOAtividades );

			// Andamento - Processo remetido pela unidade
			$unidadeDTO = new UnidadeDTO();
			$unidadeDTO->retTodos();
			$unidadeDTO->setBolExclusaoLogica(false);
			$unidadeDTO->setNumIdUnidade($idUnidadeProcesso);
			$unidadeRN = new UnidadeRN();
			$unidadeDTO = $unidadeRN->consultarRN0125($unidadeDTO);

			if( isset( $params['isRespostaIntimacao'] ) ){
				$this->salvarResposta( $params, $arrObjReciboDocPet, $unidadeDTO, $documentoReciboDTO );
			}else if(isset( $params['isRespostaIntercorrente'])){
				$this->_controlarAcessoExterno($arrDadosRecibo, $arrObjReciboDocPet, $objReciboDTO);
				$this->lancarAndamentoIntercorrenteControlado($documentoReciboDTO);
			}

			$arrObjAtributoAndamentoDTO = array();
			$objAtributoAndamentoDTO = new AtributoAndamentoDTO();
			$objAtributoAndamentoDTO->setStrNome('UNIDADE');
			$objAtributoAndamentoDTO->setStrValor($unidadeDTO->getStrSigla().' ¥ '.$unidadeDTO->getStrDescricao());
			$objAtributoAndamentoDTO->setStrIdOrigem($unidadeDTO->getNumIdUnidade());
			$arrObjAtributoAndamentoDTO[] = $objAtributoAndamentoDTO;


			$objAtividadeDTO = new AtividadeDTO();
			$objAtividadeDTO->setDblIdProtocolo( $this->getProcedimentoDTO()->getDblIdProcedimento() );
			$objAtividadeDTO->setNumIdUnidade( $unidadeDTO->getNumIdUnidade() );
			$objAtividadeDTO->setNumIdUnidadeOrigem( $unidadeDTO->getNumIdUnidade() );
			if ( !empty($idUsuarioAtribuicao) ){
				$objAtividadeDTO->setNumIdUsuarioAtribuicao( $idUsuarioAtribuicao );
			}
			$objAtividadeDTO->setArrObjAtributoAndamentoDTO($arrObjAtributoAndamentoDTO);
			$objAtividadeDTO->setNumIdTarefa(TarefaRN::$TI_PROCESSO_REMETIDO_UNIDADE);

			$objAtividadeRN = new AtividadeRN();
			$objAtividadeRN->gerarInternaRN0727($objAtividadeDTO);

			// obtendo a ultima atividade informada para o processo, para marcar
			// como nao visualizada, deixando assim o processo marcado como "vermelho"
			// (status de Nao Visualizado) na listagem da tela "Controle de processos"
			//trecho comentado para preservar apresentacao do "icone amarelo" na tela de Controle de Processos
			$atividadeRN = new AtividadeRN();
			$atividadeBD = new AtividadeBD( $this->getObjInfraIBanco() );
			$atividadeDTO = new AtividadeDTO();
			$atividadeDTO->retTodos();
			$atividadeDTO->setDblIdProtocolo( $this->getProcedimentoDTO()->getDblIdProcedimento() );
			$atividadeDTO->setOrd("IdAtividade", InfraDTO::$TIPO_ORDENACAO_DESC);
			$ultimaAtividadeDTO = $atividadeRN->listarRN0036( $atividadeDTO );

			//alterar a ultima atividade criada para nao visualizado
			if( $ultimaAtividadeDTO != null && count( $ultimaAtividadeDTO ) > 0){
				$ultimaAtividadeDTO[0]->setNumTipoVisualizacao( AtividadeRN::$TV_NAO_VISUALIZADO );
				$atividadeBD->alterar( $ultimaAtividadeDTO[0] );
			}

			$this->enviarEmail($params);

			//se for resposta, atualizar status da intimação



			// Temporários apagando
			$arquivos_enviados = PaginaSEIExterna::getInstance()->getArrItensTabelaDinamica($params['hdnTbDocumento']);
			foreach ($arquivos_enviados as $arquivo_enviado) {
				unlink(DIR_SEI_TEMP.'/'.$arquivo_enviado[7]);
			}

			return array(
				'recibo'    => $objReciboDTO,
				'documento' => $documentoReciboDTO
			);
			//Gerar Recibo e executar javascript para fechar janela filha e redirecionar janela pai para a tela de detalhes do recibo que foi gerado]

		}

		return false;
	}

	private function _controlarAcessoExterno($arrDados, $arrObjDocumentos, $objReciboDTO)
	{
		$idProcedimento = array_key_exists('idProcedimento', $arrDados) ? $arrDados['idProcedimento'] : null;

		$arrRetorno = array();

		if (count($arrObjDocumentos) > 0)
		{
			$arrRetorno = InfraArray::converterArrInfraDTO($arrObjDocumentos, 'IdDocumento');
		}

		if(!is_null($objReciboDTO))
		{
			$idDocumento = $objReciboDTO->getDblIdDocumento();
			array_push($arrRetorno, $idDocumento);
		}

		if(!is_null($idProcedimento))
		{
			$objMdPetAcessoExternoRN = new MdPetAcessoExternoRN();
			$objMdPetAcessoExternoRN->aplicarRegrasGeraisAcessoExterno($idProcedimento,  MdPetAcessoExternoRN::$MD_PET_PROCESSO_INTERCORRENTE, null, null, null, $arrRetorno);
		}
	}

	protected function lancarAndamentoIntercorrenteControlado($documentoDTO){

		$documentoRN = new DocumentoRN();
		$documentoReciboDTO = new DocumentoDTO();
		$documentoReciboDTO->retStrProtocoloDocumentoFormatado();
		$documentoReciboDTO->setDblIdDocumento( $documentoDTO->getDblIdDocumento());
		$documentoReciboDTO = $documentoRN->consultarRN0005( $documentoReciboDTO );

		$arrParametrosResp['idProcedimento']= $documentoDTO->getDblIdProcedimento();
		$arrParametrosResp['nomeTipoResposta']= MdPetIntDestRespostaRN::$PETICIONAMENTO_INTERCORRENTE;
		$arrParametrosResp['nomeDocumentoPrincipal']=$documentoReciboDTO->getStrProtocoloDocumentoFormatado();
		$arrParametrosResp['idUnidade']= $documentoDTO->getNumIdUnidadeResponsavel();
		$arrParametrosResp['idDocumento']= $documentoDTO->getDblIdDocumento();
	
		$objMdPetIntDestRespostaRN = new MdPetIntDestRespostaRN();
		$objMdPetIntDestRespostaRN->lancarAndamentoRecibo($arrParametrosResp);

	}

	//metodo responsavel por gravar todo conteudo da resposta a intimacao de pessoa fisica
	private function salvarResposta( $params, $arrObjMdPetRelReciboDocumentoAnexoDTO, $unidadeDTO,  $documentoReciboDTO ){
		$objMdPetIntDestRespostaRN  = new MdPetIntDestRespostaRN();
		$objMdPetIntRelDestRN       = new MdPetIntRelDestinatarioRN();
		$objMdPetIntDestRespostaDTO = new MdPetIntDestRespostaDTO();
		$id_intimacao = $params['id_intimacao'];
		$id_tipo_resposta = $params['id_tipo_resposta'];
		$id_procedimento = $params['id_procedimento'];

		//o sistema nao retornou dados de usuario externo em consulta via SeiRN->listarUsuarios (motivo ainda desconhecido), apelando para o uso da classe UsuarioRN
		$usuarioRN = new UsuarioRN();
		$usuarioDTO = new UsuarioDTO();
		$usuarioDTO->retNumIdContato();
		$usuarioDTO->retStrNome();
		$usuarioDTO->setNumIdUsuario( SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno() );
		$usuarioDTO = $usuarioRN->consultarRN0489( $usuarioDTO );

		$rnDestinatario = new MdPetIntRelDestinatarioRN();
		$dtoDestinatario = new MdPetIntRelDestinatarioDTO();
		$dtoDestinatario->retTodos();
		$dtoDestinatario->setNumIdContato( $usuarioDTO->getNumIdContato() );
		$dtoDestinatario->setNumIdMdPetIntimacao( $id_intimacao );

		$arrDtoDestinatario = $rnDestinatario->listar( $dtoDestinatario );

		$idRelDest       = $arrDtoDestinatario[0]->getNumIdMdPetIntRelDestinatario();
		$idAcessoExterno = $arrDtoDestinatario[0]->getNumIdAcessoExterno();

		$objMdPetIntDestRespostaDTO->setNumIdMdPetIntRelDestinatario(	$idRelDest );

		$objMdPetIntDestRespostaDTO->setStrIp( InfraUtil::getStrIpUsuario());
		$objMdPetIntDestRespostaDTO->setDthData( InfraData::getStrDataHoraAtual() );
		$objMdPetIntDestRespostaDTO->setNumIdMdPetIntRelTipoResp( $id_tipo_resposta );

		//cadastrando a resposta do destinatario nesta intimação
		$objMdPetIntDestRespostaDTO = $objMdPetIntDestRespostaRN->cadastrar( $objMdPetIntDestRespostaDTO );

		//Atualiza o novo campo de Situação da Intimação
		$objMdPetIntRelDestRN->atualizarStatusIntimacao(array(MdPetIntimacaoRN::$INTIMACAO_RESPONDIDA, $idRelDest));

		//vinculado documentos anexados que compoem esta resposta
		$arquivos_enviados = PaginaSEIExterna::getInstance()->getArrItensTabelaDinamica($params['hdnTbDocumento']);

		$rnDocResposta = new MdPetIntRelRespDocRN();

		$rnIntimacao = new MdPetIntimacaoRN();
		$dtoIntimacao = new MdPetIntimacaoDTO();
		$dtoIntimacao->retTodos();
		$dtoIntimacao->setNumIdMdPetIntimacao( $id_intimacao );
		$dtoIntimacao = $rnIntimacao->consultar( $dtoIntimacao );

		$sinTipoAcesso = $this->_getTipoAcessoExterno($idAcessoExterno);

		if( is_array( $arrObjMdPetRelReciboDocumentoAnexoDTO ) && count( $arrObjMdPetRelReciboDocumentoAnexoDTO ) > 0 ){

			$arrDocAcessoExt = array( $documentoReciboDTO->getDblIdDocumento() );

			foreach( $arrObjMdPetRelReciboDocumentoAnexoDTO as $docDTO ){
				$arrDocAcessoExt[] = $docDTO->getNumIdDocumento();
			}


			$id_contato = $usuarioDTO->getNumIdContato();
			$contatoRN = new ContatoRN();
			$contatoDTO = new ContatoDTO();
			$contatoDTO->retStrEmail();
			$contatoDTO->retNumIdContato();
			$contatoDTO->setNumIdContato( $id_contato );

			$contatoDTO = $contatoRN->consultarRN0324( $contatoDTO );

			//so precisa intervir no acesso externo (para adicionar docs a mais nele, ou seja, ampliar o acesso ext) caso se trate de acesso ext parcial, para acesso integral nao é necessário intervir

			if(!is_null($sinTipoAcesso) && $sinTipoAcesso == MdPetIntAcessoExternoDocumentoRN::$ACESSO_PARCIAL ){

				$objRelDestRN = new MdPetIntRelDestinatarioRN();
				$objRelDestDTO = new MdPetIntRelDestinatarioDTO();
				$objRelDestDTO->retTodos();
				$objRelDestDTO->setStrSinAtivo('S');
				$objRelDestDTO->setNumIdContato( $id_contato );
				$objRelDestDTO->setNumIdMdPetIntimacao( $id_intimacao );
				$objRelDestDTO->setNumMaxRegistrosRetorno(1);
				$objRelDestDTO = $objRelDestRN->consultar( $objRelDestDTO );

				//recuperando o id do acesso ext parcial, para amplia-lo
				$idAcessoExtParcial = $objRelDestDTO->getNumIdAcessoExterno();

				$objRelAcessoExtProtocoloBD = new RelAcessoExtProtocoloBD( $this->getObjInfraIBanco() );

				foreach( $arrDocAcessoExt as $docResposta ){

					$objRelAcessoExtProtocoloDTO = new RelAcessoExtProtocoloDTO();
					$objRelAcessoExtProtocoloDTO->setNumIdAcessoExterno( $idAcessoExtParcial );
					$objRelAcessoExtProtocoloDTO->setDblIdProtocolo( $docResposta );
					$objRelAcessoExtProtocoloBD->cadastrar($objRelAcessoExtProtocoloDTO);
				}

			}

		}

		foreach( $arrObjMdPetRelReciboDocumentoAnexoDTO as $doc ){

			$dtoDocResposta = new MdPetIntRelRespDocDTO();
			$dtoDocResposta->setNumIdMdPetIntDestResposta( $objMdPetIntDestRespostaDTO->getNumIdMdPetIntDestResposta() );
			$dtoDocResposta->setDblIdDocumento( $doc->getNumIdDocumento() );
			$dtoDocResposta = $rnDocResposta->cadastrar( $dtoDocResposta );

		}


		$objMdPetReciboDTO = new MdPetReciboDTO();
		$objMdPetReciboDTO->retStrNumeroProcessoFormatadoDoc();
		$objMdPetReciboDTO->setDblIdDocumento($documentoReciboDTO->getDblIdDocumento());
		$objMdPetReciboRN = new MdPetReciboRN();

		$objMdPetRecibo = $objMdPetReciboRN->consultar($objMdPetReciboDTO);

		//Setando os parametros para lancar resposta andamento
		$arrParametros['idUnidade']= $unidadeDTO->getNumIdUnidade();
		$arrParametros['idDocumento']= $documentoReciboDTO->getDblIdDocumento();
		$arrParametros['nomeDocumentoPrincipal']= $objMdPetRecibo->getStrNumeroProcessoFormatadoDoc();
		$arrParametros['idMdPetIntimacao']= $id_intimacao;
		$arrParametros['idProcedimento']=$id_procedimento;
		$arrParametros['nomeTipoResposta']= MdPetIntDestRespostaRN::$TIPO_PETICIONAMENTO_INTIMACAO;

		$objMdPetIntDestRespostaRN = new MdPetIntDestRespostaRN();

		$objMdPetIntDestRespostaRN->lancarAndamentoRecibo($arrParametros);


	}
	
	private function _getTipoAcessoExterno($idAcessoExterno){
		$objMdPetAcessoExternoRN = new MdPetAcessoExternoRN();
		$arrRetorno = $objMdPetAcessoExternoRN->getTipoAcessoExternoPorAcessoExterno(array($idAcessoExterno));

		$tpAcesso = array_key_exists($idAcessoExterno, $arrRetorno) ? $arrRetorno[$idAcessoExterno] : null;

		return $tpAcesso;
	}


	private function getDocumentoRecibo()
	{
		return $this->documentoRecibo;
	}

	private function setDocumentoRecibo($documentoDTO)
	{
		$this->documentoRecibo = $documentoDTO;
	}

	private function simularLogin($idUnidade, $idUsuario=null)
	{
		$idUsuario = $idUsuario==null ? SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno() : $idUsuario;

		SessaoSEI::getInstance()->simularLogin(null, null, $idUsuario, $idUnidade);
		$this->setUnidadeDTO($idUnidade);
	}

	private function validarCadastro($params){
		// Bloco de validações
		$objInfraException = new InfraException();
		$this->validarSenhaSei($params['senhaSEI'], $objInfraException);
		$this->validarDocumentos($params['hdnTbDocumento'], $objInfraException);
		$this->validarNumIdProcedimento($params['id_procedimento'], $objInfraException);
		$this->validarNumIdTipoProcedimento($params['id_tipo_procedimento'], $objInfraException);
		$objInfraException->lancarValidacoes();
	}

	private function validarSenhaSei($senha, InfraException $objInfraException){
		if (InfraString::isBolVazia($senha)){
			$objInfraException->adicionarValidacao('Senha não informada.');
		}
		$objMdPetProcessoRN = new MdPetProcessoRN();
		$objMdPetProcessoRN->validarSenha(array('senhaSEI' => $senha));
	}

	private function validarDocumentos($hdnTbDocumento, InfraException $objInfraException){
		if (InfraString::isBolVazia($hdnTbDocumento)){
			$objInfraException->adicionarValidacao('Nenhum documento foi enviado.');
		}
	}

	private function validarNumIdProcedimento($numIdProcedimento, InfraException $objInfraException){
		if (InfraString::isBolVazia($numIdProcedimento)){
			$objInfraException->adicionarValidacao('Processo não informado.');
		}
	}

	private function validarNumIdTipoProcedimento($numIdTipoProcedimento, InfraException $objInfraException){
		if (InfraString::isBolVazia($numIdTipoProcedimento)){
			$objInfraException->adicionarValidacao('Senha não informada.');
		}
	}

	private function setUnidadeDTO($numIdUnidade)
	{
		$objUnidadeConsultaDTO = new UnidadeDTO();
		$objUnidadeConsultaDTO->retTodos(true);
		$objUnidadeConsultaDTO->setNumIdUnidade($numIdUnidade);
		$objUnidadeRN = new UnidadeRN();
		$this->objUnidadeDTO = $objUnidadeRN->consultarRN0125($objUnidadeConsultaDTO);
		$this->setOrgaoDTO($this->objUnidadeDTO->getNumIdOrgao());
	}

	private function getUnidadeDTO()
	{
		return $this->objUnidadeDTO;
	}

	private function setOrgaoDTO($numIdOrgao)
	{
		$orgaoDTO = new OrgaoDTO();
		$orgaoDTO->retTodos();
		$orgaoDTO->retStrEmailContato();
		$orgaoDTO->setNumIdOrgao( $numIdOrgao );
		$orgaoDTO->setStrSinAtivo('S');
		$orgaoRN = new OrgaoRN();
		$this->objOrgaoDTO = $orgaoRN->consultarRN1352($orgaoDTO);

	}

	private function getOrgaoDTO()
	{
		return $this->objOrgaoDTO;
	}

	private function setCargoDTO($numIdCargo)
	{
		$cargoDTO = new CargoDTO();
		$cargoDTO->retNumIdCargo();
		$cargoDTO->retStrExpressao();
		$cargoDTO->retStrSinAtivo();
		$cargoDTO->setNumIdCargo( $numIdCargo );
		$cargoDTO->setStrSinAtivo('S');
		$cargoRN = new CargoRN();
		$this->objCargoDTO = $cargoRN->consultarRN0301($cargoDTO);
	}

	private function getCargoDTO()
	{
		return $this->objCargoDTO;
	}

	private function getUsuarioDTO()
	{
		if($this->objUsuarioDTO === null){
			$objUsuarioDTO = new UsuarioDTO();
			$objUsuarioDTO->retTodos();
			$objUsuarioDTO->setNumIdUsuario( SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno() );

			$objUsuarioRN = new UsuarioRN();
			$this->objUsuarioDTO = $objUsuarioRN->consultarRN0489( $objUsuarioDTO );
		}
		return $this->objUsuarioDTO;

	}

	private function setProcedimentoDTO($idProcedimento)
	{
		$objProcedimentoDTO = new ProcedimentoDTO();
		$objProcedimentoRN = new ProcedimentoRN();
		$objProcedimentoDTO->setDblIdProcedimento($idProcedimento);
		$objProcedimentoDTO->retDblIdProcedimento();
		$objProcedimentoDTO->retStrProtocoloProcedimentoFormatado();
		$objProcedimentoDTO->retTodos(true);
		$this->objProcedimentoDTO = $objProcedimentoRN->consultarRN0201($objProcedimentoDTO);
	}

	private function getProcedimentoDTO()
	{
		return $this->objProcedimentoDTO;
	}

	private function getSenha(){
		return $this->senha;
	}

	private function setSenha($senha){
		$this->senha = $senha;
	}

	private function setReciboDTO($reciboDTO){
		$this->reciboDTO = $reciboDTO;
	}

	private function getReciboDTO()
	{
		return $this->reciboDTO;
	}

	private function setParticipante($participanteDTO)
	{
		$this->participantesDTO = $participanteDTO;
	}

	private function getParticipanteDTO()
	{
		return $this->participantesDTO;
	}

	private function addDocumentos($documento){
		$this->arrDocumentos[] = $documento;
	}

	private function getDocumentos(){
		return $this->arrDocumentos;
	}

	private function getContatoDTOUsuarioLogado(){

		$usuarioRN = new UsuarioRN();
		$usuarioDTO = new UsuarioDTO();
		$usuarioDTO->retNumIdUsuario();
		$usuarioDTO->setNumIdUsuario( SessaoSEIExterna::getInstance()->getNumIdUsuarioExterno() );
		$usuarioDTO->retNumIdContato();
		$usuarioDTO->retStrNomeContato();
		$usuarioDTO = $usuarioRN->consultarRN0489( $usuarioDTO );

		$contatoRN = new ContatoRN();
		$contatoDTO = new ContatoDTO();
		$contatoDTO->retTodos();
		$contatoDTO->setNumIdContato( $usuarioDTO->getNumIdContato() );
		$contatoDTO = $contatoRN->consultarRN0324( $contatoDTO );

		return $contatoDTO;
	}

	/**      $arquivos_enviados[0] recebe idLinha
	 *        $arquivos_enviados[1] recebe idTipoDocumento
	 *        $arquivos_enviados[2] recebe complementoTipoDocumento
	 *        $arquivos_enviados[3] recebe idNivelAcesso
	 *        $arquivos_enviados[4] recebe idHipoteseLegal
	 *        $arquivos_enviados[5] recebe idFormato
	 *        $arquivos_enviados[6] recebe idTipoConferencia
	 *        $arquivos_enviados[7] recebe nomeArquivoHash
	 *        $arquivos_enviados[8] recebe tamanhoArquivo
	 *        $arquivos_enviados[9] recebe nomeArquivo
	 *        $arquivos_enviados[10] recebe dataHora
	 *        $arquivos_enviados[11] recebe tamanhoArquivoFormatado
	 *        $arquivos_enviados[12] recebe documento
	 *        $arquivos_enviados[13] recebe nivelAcesso
	 *        $arquivos_enviados[14] recebe formato
	 */
	public static function removerArquivoIntecorrenteTemp($arquivos_enviado){
		//se for varios mandado pelo hdn
		if(is_string($arquivos_enviado)){
			$arquivos_enviados = PaginaSEIExterna::getInstance()->getArrItensTabelaDinamica($arquivos_enviado);

			$xml = null;
			foreach ($arquivos_enviados as $arquivo_enviado) {
				$arquivo = DIR_SEI_TEMP.'/'.$arquivo_enviado[7];
				if(file_exists($arquivo)){
					unlink($arquivo);
					$xml =  "<success>true</success>";
				}
			}
		}else{
			$arquivo = DIR_SEI_TEMP.'/'.$arquivos_enviado[7];
			if(file_exists($arquivo)){
				unlink($arquivo);
				$xml =  "<success>true</success>";
			}
		}

		if($xml)
			return $xml;

		return "<success>false</success>";
	}


	/**
	 * $arquivos_enviados[0] recebe nome,
	 * $arquivos_enviados[1] recebe dataHora,
	 * $arquivos_enviados[2] recebe tamanhoFormatado,
	 * $arquivos_enviados[3] recebe documento,
	 * $arquivos_enviados[4] recebe nivelAcesso,
	 * $arquivos_enviados[5] recebe hipoteseLegal,
	 * $arquivos_enviados[6] recebe formatoDocumento,
	 * $arquivos_enviados[7] recebe tipoConferencia,
	 * $arquivos_enviados[8] recebe nomeUpload,
	 * $arquivos_enviados[9] recebe idTpoPrincipal,
	 * $arquivos_enviados[10] recebe strComplemento,
	 * $arquivos_enviados[11] recebe formatoDocumentoLbl,
	 * $arquivos_enviados[12] recebe ''
	 */
	public static function removerArquivoTemp($arquivos_enviado){
		$arquivo = DIR_SEI_TEMP.'/'.$arquivos_enviado[8];
		if(file_exists($arquivo)){
			unlink($arquivo);
			return  "<success>true</success>";
		}

		return "<success>false</success>";
	}

}
?>