当前位置: 首页>>代码示例>>PHP>>正文


PHP Core_Configuration::getSgdocePadraoModeloDocumentoAtos方法代码示例

本文整理汇总了PHP中Core_Configuration::getSgdocePadraoModeloDocumentoAtos方法的典型用法代码示例。如果您正苦于以下问题:PHP Core_Configuration::getSgdocePadraoModeloDocumentoAtos方法的具体用法?PHP Core_Configuration::getSgdocePadraoModeloDocumentoAtos怎么用?PHP Core_Configuration::getSgdocePadraoModeloDocumentoAtos使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Core_Configuration的用法示例。


在下文中一共展示了Core_Configuration::getSgdocePadraoModeloDocumentoAtos方法的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::getSgdocePadraoModeloDocumentoAtos方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。