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


PHP Core_Configuration::getSgdoceSqOcorrenciaExcluirImagem方法代碼示例

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


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

示例1: excluirImagem

 public function excluirImagem($entArtefato, $txObservacao, $stAtivo = FALSE)
 {
     try {
         $entArtefatoImagem = $this->_getRepository("app:ArtefatoImagem")->findBy(array('sqArtefato' => $entArtefato->getSqArtefato(), 'stAtivo' => true));
         $entArtefatoImagem = current($entArtefatoImagem);
         if ($entArtefatoImagem) {
             $arrDto = array('sqPessoa' => \Core_Integration_Sica_User::getPersonId(), 'sqUnidade' => \Core_Integration_Sica_User::getUserUnit());
             $objCDto = \Core_Dto::factoryFromData($arrDto, 'search');
             $entVwPessoa = $this->getServiceLocator()->getService('Pessoa')->findbyPessoaCorporativo($objCDto);
             $entVwUnidOrg = $this->getServiceLocator()->getService('VwUnidadeOrg')->getDadosUnidade($objCDto);
             $entArtefatoImagem->setStAtivo($stAtivo);
             $entArtefatoImagem->setSqPessoaInativacao($entVwPessoa);
             $entArtefatoImagem->setSqUnidadeOrgInativacao($entVwUnidOrg);
             $entArtefatoImagem->setTxObservacao($txObservacao);
             $entArtefatoImagem->setDtInativacao(\Zend_Date::now());
             $this->getEntityManager()->persist($entArtefatoImagem);
             $this->getEntityManager()->flush();
             // REGISTRO DA EXCLUSÃO DA IMAGEM. #HistoricoArtefato::save();
             $haService = $this->getServiceLocator()->getService('HistoricoArtefato');
             $sqOcorrencia = \Core_Configuration::getSgdoceSqOcorrenciaExcluirImagem();
             $strMessage = $haService->getMessage('MH024', \Zend_Date::now()->get(\Zend_Date::DATETIME_MEDIUM), \Core_Integration_Sica_User::getUserName());
             $haService->registrar($entArtefato->getSqArtefato(), $sqOcorrencia, $strMessage);
             $this->getMessaging()->addSuccessMessage('MD003', 'User');
         } else {
             $this->getMessaging()->addErrorMessage('MN174', 'User');
         }
         $this->getMessaging()->dispatchPackets();
         return $entArtefatoImagem;
     } catch (\Core_Exception_ServiceLayer $e) {
         $this->getMessaging()->addErrorMessage($e->getMessage(), 'User');
         $this->getMessaging()->dispatchPackets();
     }
     return false;
 }
開發者ID:sgdoc,項目名稱:sgdoce-codigo,代碼行數:34,代碼來源:ArtefatoImagem.php


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