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


PHP Core_Configuration::getSgdocePadraoModeloDocumentoGeral方法代碼示例

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


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

示例1: visualizarMinutaAction

 public function visualizarMinutaAction()
 {
     $sqArtefato = $this->getRequest()->getParam('sqArtefato');
     // REGISTRO DE VISUALIZAÇÃO DE MINUTA NO HISTÓRICO. #HistoricoArtefato::save();
     $strMessage = $this->getServiceLocator()->getService('HistoricoArtefato')->getMessage('MH002');
     $this->_salvarHistoricoArtefato($sqArtefato, \Core_Configuration::getSgdoceSqOcorrenciaVisualizar(), $strMessage);
     if ($this->_getParam('abreProcesso')) {
         $nunup = $this->getNuNup();
         $criteria = array('sqArtefatoFilho' => $sqArtefato, 'sqTipoVinculoArtefato' => 7);
         $autuar = $this->getService('ArtefatoVinculo')->findBy($criteria);
         if (!$autuar && $nunup) {
             $this->view->abreProcesso = TRUE;
         } else {
             $this->view->abreProcesso = FALSE;
         }
     }
     // mapeamento da entidade 'pessoa'
     $this->view->sqArtefato = $sqArtefato;
     $dtoOptionArtefato = array('entity' => 'Sgdoce\\Model\\Entity\\Artefato');
     // transforma o array 'artefato' em objeto
     $dtoEntityArtefato = Core_Dto::factoryFromData(array('sqArtefato' => $sqArtefato), 'entity', $dtoOptionArtefato);
     $artefatoMinuta = $this->getService('ArtefatoMinuta')->find($sqArtefato);
     $dtoEntityModelo = Core_Dto::factoryFromData(array('sqModeloDocumento' => $artefatoMinuta->getSqModeloDocumento()->getSqModeloDocumento()), 'entity', array('entity' => 'Sgdoce\\Model\\Entity\\ModeloDocumento'));
     $this->view->view = $this->_getParam('view');
     $data = $this->getService('VisualizarCaixaMinuta')->createDocView($dtoEntityArtefato, $dtoEntityModelo);
     $modelo = $this->getService('VisualizarCaixaMinuta')->getModeloMinuta($dtoEntityModelo);
     $this->view->data = $data;
     switch ($modelo['sqPadraoModeloDocumento']) {
         case \Core_Configuration::getSgdocePadraoModeloDocumentoAtos():
             $this->render('visualizarMinutaAtos');
             break;
         case \Core_Configuration::getSgdocePadraoModeloDocumentoGeral():
             $this->render('visualizarMinutaGeral');
             break;
         case \Core_Configuration::getSgdocePadraoModeloDocumentoOficio():
             $this->render('visualizarMinutaOficio');
             break;
     }
 }
開發者ID:sgdoc,項目名稱:sgdoce-codigo,代碼行數:39,代碼來源:AreaTrabalhoController.php

示例2: visualizarMinutaAction

 /**
  * Método que prepara valores para inserir no arquivo pdf da minuta para visualização
  */
 public function visualizarMinutaAction()
 {
     $this->_helper->layout()->feriados = $this->getService()->getFeriados();
     $sqArtefato = $this->_getParam('sqArtefato');
     $viewAssinatura = $this->_getParam('viewFor');
     $registry = \Zend_Registry::get('configs');
     $options = array('path' => $registry['folder']['visualizaMinuta']);
     // mapeamento da entidade 'pessoa'
     $dtoOptionArtefato = array('entity' => 'Sgdoce\\Model\\Entity\\Artefato');
     // transforma o array 'artefato' em objeto
     $dtoEntityArtefato = Core_Dto::factoryFromData(array('sqArtefato' => $sqArtefato), 'entity', $dtoOptionArtefato);
     $artefatoMinuta = $this->getService('ArtefatoMinuta')->find($sqArtefato);
     $dtoEntityModelo = Core_Dto::factoryFromData(array('sqModeloDocumento' => $artefatoMinuta->getSqModeloDocumento()->getSqModeloDocumento()), 'entity', array('entity' => 'Sgdoce\\Model\\Entity\\ModeloDocumento'));
     $this->view->view = $this->_getParam('view');
     try {
         if ($viewAssinatura) {
             $data = $this->getService()->createDocView($dtoEntityArtefato, $dtoEntityModelo);
         } else {
             $data = $this->getService()->createDocPdf($dtoEntityArtefato, $dtoEntityModelo);
         }
         if (!$viewAssinatura) {
             $this->_helper->download($data, $options);
         } else {
             $modelo = $this->getService()->getModeloMinuta($dtoEntityModelo);
             $this->view->data = $data;
             switch ($modelo['sqPadraoModeloDocumento']) {
                 case \Core_Configuration::getSgdocePadraoModeloDocumentoAtos():
                     $this->render('visualizarMinutaAtos');
                     break;
                 case \Core_Configuration::getSgdocePadraoModeloDocumentoGeral():
                     $this->render('visualizarMinutaGeral');
                     break;
                 case \Core_Configuration::getSgdocePadraoModeloDocumentoOficio():
                     $this->render('visualizarMinutaOficio');
                     break;
             }
         }
     } catch (\HTML2PDF_exception $exc) {
         $this->getMessaging()->addErrorMessage('Favor retirar os caracteres "<" e ">" dos dados informados no
                 artefato.');
         return $this->_redirectActionDefault('index/view/' . $this->_getParam('view'));
     } catch (\Exception $exc) {
         $this->getMessaging()->addErrorMessage($exc->getMessage());
         return $this->_redirectActionDefault('index/view/' . $this->_getParam('view'));
     }
 }
開發者ID:sgdoc,項目名稱:sgdoce-codigo,代碼行數:49,代碼來源:ArtefatoController.php


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