當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Core_Configuration::getSgdoceTipoArtefatoDossie方法代碼示例

本文整理匯總了PHP中Core_Configuration::getSgdoceTipoArtefatoDossie方法的典型用法代碼示例。如果您正苦於以下問題:PHP Core_Configuration::getSgdoceTipoArtefatoDossie方法的具體用法?PHP Core_Configuration::getSgdoceTipoArtefatoDossie怎麽用?PHP Core_Configuration::getSgdoceTipoArtefatoDossie使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Core_Configuration的用法示例。


在下文中一共展示了Core_Configuration::getSgdoceTipoArtefatoDossie方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: alterarArtefato

 /**
  * método para persistencia  - Grau de Acesso
  * @param \Core_Dto_Search $dto
  */
 public function alterarArtefato($dto)
 {
     $sqTipoDocumento = $this->_getRepository('app:TipoDocumento')->find($dto->getSqTipoDocumento());
     $criteria = array('sqAssunto' => $dto->getSqAssunto(), 'sqTipoArtefato' => \Core_Configuration::getSgdoceTipoArtefatoDossie());
     $sqTipoArtefatoAssunto = $this->_getRepository('app:TipoArtefatoAssunto')->findBy($criteria);
     $entity = $this->_getRepository('app:Artefato')->find($dto->getSqArtefato());
     $entity->setNuArtefato($dto->getNuArtefato());
     $entity->setSqTipoDocumento($sqTipoDocumento);
     $entity->setTxAssuntoComplementar($dto->getTxAssuntoComplementar());
     $entity->setSqTipoArtefatoAssunto($this->_getRepository('app:TipoArtefatoAssunto')->find($sqTipoArtefatoAssunto[0]->getSqTipoArtefatoAssunto()));
     $entityArtefatoDossie = $this->_getRepository('app:ArtefatoDossie')->find($dto->getSqArtefato());
     if (!$entityArtefatoDossie) {
         $entityArtefatoDossie = new \Sgdoce\Model\Entity\ArtefatoDossie();
     }
     $entityArtefatoDossie->setNoTitulo($dto->getNoTitulo());
     $entityArtefatoDossie->setTxObservacao($dto->getTxObservacao());
     $entityArtefatoDossie->setSqArtefato($entity);
     $this->getEntityManager()->persist($entityArtefatoDossie);
     $this->getEntityManager()->flush($entityArtefatoDossie);
     //Persistir PessoaAssinanteArtefato
     $this->persistPessoaAssinanteArtefato($entity, $dto);
     self::_salvaOrigem($entity, $dto);
     // RN - Caso não exista Grau de Acesso ao Artefato sera por default publico(1)
     if (!$dto->getSqGrauAcesso()) {
         $data = array('sqGrauAcesso' => \Core_Configuration::getSgdoceGrauAcessoPublico());
         $dto = new \Core_Dto_Mapping($data, array_keys($data));
         $sqGrauAcesso = $this->_getRepository('app:GrauAcesso')->find($dto->getSqGrauAcesso());
     } else {
         $sqGrauAcesso = $this->_getRepository('app:GrauAcesso')->find($dto->getSqGrauAcesso());
     }
     // realizando a persistencia do Grau de Acesso
     $test = $this->persistGrauAcessoArtefato($entity, $sqGrauAcesso);
     $this->getEntityManager()->persist($entity);
     $this->getEntityManager()->flush($entity);
 }
開發者ID:sgdoc,項目名稱:sgdoce-codigo,代碼行數:39,代碼來源:Dossie.php

示例2: listItemsTipoArtefato

 /**
  * método que pesquisa dados da grid
  * @param array $params
  * @return \Doctrine\ORM\QueryBuilder
  */
 public function listItemsTipoArtefato($tipo = NULL)
 {
     $tipoDocumento = \Core_Configuration::getSgdoceTipoArtefatoDocumento();
     $tipoProcesso = \Core_Configuration::getSgdoceTipoArtefatoProcesso();
     $tipoDossie = \Core_Configuration::getSgdoceTipoArtefatoDossie();
     $tipoAmbos = \Core_Configuration::getSgdoceTipoArtefatoAmbos();
     $queryBuilder = $this->_em->createQueryBuilder()->select('ta.sqTipoArtefato,ta.noTipoArtefato')->from('app:TipoArtefato', 'ta')->orderBy('ta.noTipoArtefato', 'ASC');
     if ($tipo == 'documento') {
         $queryBuilder->where($queryBuilder->expr()->in('ta.sqTipoArtefato', array($tipoDocumento, $tipoProcesso)));
     } else {
         if ($tipo == 'material') {
             $queryBuilder->where($queryBuilder->expr()->in('ta.sqTipoArtefato', array($tipoDocumento, $tipoDossie)));
         }
     }
     $out = array();
     $res = $queryBuilder->getQuery()->getArrayResult();
     foreach ($res as $item) {
         $out[$item['sqTipoArtefato']] = $item['noTipoArtefato'];
     }
     return $out;
 }
開發者ID:sgdoc,項目名稱:sgdoce-codigo,代碼行數:26,代碼來源:TipoArtefato.php

示例3: canUpload

 /**
  * @param integer $sqArtefato
  * @return boolean
  */
 public function canUpload($sqArtefato)
 {
     $artefatoEntity = $this->_getRepository('app:Artefato')->find($sqArtefato);
     if ($artefatoEntity instanceof ArtefatoEntity) {
         $tipoArtefatoAssuntoEntity = $artefatoEntity->getSqTipoArtefatoAssunto();
         if ($tipoArtefatoAssuntoEntity instanceof TipoArtefatoAssuntoEntity) {
             $tipoArtefatoEntity = $tipoArtefatoAssuntoEntity->getSqTipoArtefato();
             if ($tipoArtefatoEntity instanceof TipoArtefatoEntity) {
                 $allowedList = array(\Core_Configuration::getSgdoceTipoArtefatoDossie(), \Core_Configuration::getSgdoceTipoArtefatoDocumento());
                 return in_array($tipoArtefatoEntity->getSqTipoArtefato(), $allowedList);
             }
         }
     }
     return false;
 }
開發者ID:sgdoc,項目名稱:sgdoce-codigo,代碼行數:19,代碼來源:ArtefatoImagem.php


注:本文中的Core_Configuration::getSgdoceTipoArtefatoDossie方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。