Example #1
0
 /**
  * Lançamento por contrato
  * 
  * @access public
  * @return void
  */
 public function financialContractAction()
 {
     $title = 'Relatoriu: Lansamentu Kontratu';
     $this->view->breadcrumb()->addStep(array('label' => $title, 'url' => '/report/fefop/financial-contract'));
     $this->view->title($title);
     $this->view->menu()->setActivePath('report/fefop/financial-contract');
     $form = new Fefop_Form_ContractSearch(array('action' => $this->_helper->url('output', 'general')));
     $form->addElement('hidden', 'path', array('class' => 'no-clear', 'decorators' => array('ViewHelper'), 'value' => 'fefop/financial-contract-report'));
     $form->addElement('hidden', 'title', array('class' => 'no-clear', 'decorators' => array('ViewHelper'), 'value' => $title));
     $this->view->assign('form', $form);
 }
Example #2
0
 /**
  * 
  */
 public function searchContractAction()
 {
     $this->_helper->layout()->disableLayout();
     $formSearchContract = new Fefop_Form_ContractSearch();
     $formSearchContract->setAction($this->_helper->url('list-contract'));
     $this->view->form = $formSearchContract;
 }