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


PHP Core_Configuration::getSgdoceStatusRecebida方法代碼示例

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


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

示例1: addFilterStatus

 /**
  *
  * Método que adiciona filtro de acordo com a caixa de minutas
  * @param \Doctrine\ORM\QueryBuilder $queryBuilder
  * @param \Core_Dto_Search $dto
  */
 protected function addFilterStatus(\Doctrine\ORM\QueryBuilder &$queryBuilder, \Core_Dto_Search $dto)
 {
     switch ($dto->getView()) {
         default:
             // RECEBIDAS E DEMAIS
             $queryBuilder->andWhere('((vcm.sqStatusArtefato = :sqStatusArtefato2')->setParameter('sqStatusArtefato2', \Core_Configuration::getSgdoceStatusRecebida())->orWhere('vcm.sqStatusArtefato = :sqStatusArtefato4))')->setParameter('sqStatusArtefato4', \Core_Configuration::getSgdoceStatusDevolvida())->andWhere('vcm.sqPessoa = :sqPessoa')->setParameter('sqPessoa', $dto->getSqPessoa());
             break;
         case self::TIPO_VISUALIZACAO_ENVIADA:
             // ENVIADA
             $queryBuilder->andWhere('(vcm.sqStatusArtefato = :sqStatusArtefato201')->setParameter('sqStatusArtefato201', self::ZER)->andWhere('vcm.sqPessoa = :sqPessoa)')->setParameter('sqPessoa', $dto->getSqPessoa());
             break;
         case self::TIPO_VISUALIZACAO_EM_ACOMPANHAMENTO:
             // EM ACOMPANHAMENTO
             $queryBuilder->andWhere('(vcm.sqPessoa = :sqPessoa)')->setParameter('sqPessoa', $dto->getSqPessoa());
             break;
         case self::TIPO_VISUALIZACAO_PRODUZIDA:
             // PRODUZIDA
             $queryBuilder->andWhere('(vcm.sqStatusArtefato = :sqStatusArtefato49')->setParameter('sqStatusArtefato49', \Core_Configuration::getSgdoceStatusProduzida())->andWhere('vcm.sqPessoa = :sqPessoa)')->setParameter('sqPessoa', $dto->getSqPessoa());
             break;
     }
 }
開發者ID:sgdoc,項目名稱:sgdoce-codigo,代碼行數:27,代碼來源:VwCaixaMinuta.php

示例2: encaminharMinutaAssinaturaAction

 /**
  * Método que encaminha minutas para assinatura
  * @return NULL
  */
 public function encaminharMinutaAssinaturaAction()
 {
     $params = $this->_getAllParams();
     if ($this->getRequest()->isPost()) {
         $paramArtefato = $this->_getParam('sqArtefato');
         $res = NULL;
         foreach ($paramArtefato as $dados) {
             $dados = array('sqArtefato' => $dados);
             $dtoEntity = $this->dtoOptionHistoricoArtefato($dados);
             $data = $this->getService()->findCaixaMinuta($dtoEntity);
             $params = NULL;
             switch ($data) {
                 case TRUE:
                     $params['sqStatusArtefato'] = \Core_Configuration::getSgdoceStatusRecebida();
                     $params['sqUnidadeOrg'] = $this->_getParam('sqUnidadeOrgCorp');
                     $params['sqArtefato'] = $data['sqArtefato'];
                     $params['sqPessoa'] = $this->_getParam('sqPessoa');
                     $params['sqOcorrencia'] = $this->_getParam('sqOcorrencia');
                     break;
             }
             $assinantes = $this->getService('Artefato')->findOneBy($dados)->getSqPessoaAssinanteArtefato();
             if ($assinantes->count() == 0) {
                 $res = $this->alteraHistoricoArtefato($params);
             } else {
                 $podeAssinar = $this->getService('Artefato')->verificaPermissaoAssinatura($params);
                 if ($podeAssinar) {
                     $res = $this->alteraHistoricoArtefato($params);
                 } else {
                     $res = FALSE;
                 }
             }
         }
         switch ($res) {
             case TRUE:
                 $this->getMessaging()->addSuccessMessage('MN013');
                 return $this->_redirectActionDefault('index/view/' . $this->_getParam('view'));
             case FALSE:
                 return $this->_redirectActionDefault('index/view/' . $this->_getParam('view'));
                 break;
         }
         return NULL;
     }
     $this->view->sqArtefato = !empty($params['sqArtefato']) ? $params['sqArtefato'] : '';
     $this->_helper->layout->disableLayout();
 }
開發者ID:sgdoc,項目名稱:sgdoce-codigo,代碼行數:49,代碼來源:VisualizarCaixaMinutaController.php


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