本文整理匯總了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;
}