✏️ 正在编辑: ProspectoContato.php
路径:
/srv/systems_dir/yuppiecred/application/forms/Filtro/ProspectoContato.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_ProspectoContato extends Zend_Form { public function init() { $this->setMethod('post'); $this->setName('f_filtro_prospecto_contato'); $this->setAttrib('autocomplete', 'off'); $this->addElement('text', 'prospecto', array( 'label' => 'Prospecto:' )); $this->addElement('select', 'usuario_id', array( 'label' => 'Usuário', 'multiOptions' => Core_Combos::getUsuariosOptions() )); $select = new Zend_Form_Element_Multiselect('corretor_id'); $select->setLabel('Corretor (Vendedor):') ->addMultiOptions(array_filter(Core_Combos::getCorretoresOptions())) ->setAttrib('class', 'multiple_banco'); $this->addElement($select); $this->addElement(Form_DatePicker::getDatePicker('data_inicio', 'Período de:')); $this->addElement(Form_DatePicker::getDatePicker('data_fim', 'a :')); $select = new Zend_Form_Element_Select('nota'); $select->setLabel('Nota do Atendimento:') ->addMultiOptions([ '' => '', '0' => '0', '1' => '1', '2' => '2', '3' => '3', '4' => '4', '5' => '5', '6' => '6', '7' => '7', '8' => '8', '9' => '9', '10' => '10' ]); $this->addElement($select); $this->addElement('select', 'classificacao', array( 'label' => 'Classificação', 'multiOptions' => Core_Combos::getPropectoClassificacoesOptions() )); $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find' )); } }
💾 保存文件
← 返回文件管理器