✏️ 正在编辑: RelatorioTabelaGeralCorretor.php
路径:
/srv/systems_dir/yuppiecred-bkp/application/forms/Filtro/RelatorioTabelaGeralCorretor.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_RelatorioTabelaGeralCorretor extends Core_Form { public function init() { $this->setName('f_filtro_rel_producao_analitico'); $this->addElement('text', 'mes_ano', array( 'label' => 'Mês/Ano', 'required' => true, 'maxlength' => 7, 'size' => 17, 'onkeypress' => 'mascara(this, mesAno)' )); $select = new Zend_Form_Element_Select('corretor_id'); $select->setLabel('Corretor:') ->addMultiOptions(Core_Combos::getCorretoresOptions()); $this->addElement($select); $this->getElement('corretor_id') ->addDecorator('Label', array( 'tag' => 'dt', 'tagClass' => 'clear' )); $select = new Zend_Form_Element_Multiselect('status_formalizacao'); $select->setLabel('Pendências:') ->addMultiOptions(array_filter(Core_Combos::getStatusFormalizacaoOptions())); $this->addElement($select); $select = new Zend_Form_Element_Select('fisico_enviado'); $select->setLabel('Físico Enviado:') ->addMultiOptions(Core_Combos::getSimNaoOptions()); $this->addElement($select); $select = new Zend_Form_Element_Select('contrato_pago'); $select->setLabel('Contrato Pago:') ->addMultiOptions(Core_Combos::getContratoPagoOptions()); $this->addElement($select); $this->addElement('multiselect', 'status_proposta', array( 'label' => 'Status:', 'multiOptions' => Core_Combos::getStatusOptions() )); $select = new Zend_Form_Element_Select('rota_id'); $select->setLabel('Rotas:') ->addMultiOptions(Core_Combos::getRotasOptions()) ->addDecorator('Label', array( 'tag' => 'dt', 'tagClass' => 'clear' )); $this->addElement($select); $select = new Zend_Form_Element_Multiselect('tipo_contrato'); $select->setLabel('Tipo:') ->addMultiOptions(array_filter(Core_Combos::getTiposProdutosOptions())); $this->addElement($select); $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find' )); } }
💾 保存文件
← 返回文件管理器