✏️ 正在编辑: GerenteRota.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/application/forms/Filtro/GerenteRota.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_GerenteRota extends Core_Form { public function init() { $this->setMethod('post'); $this->setName('f_filtro_gerente'); $this->setAttrib('autocomplete', 'off'); $select = new Zend_Form_Element_Select('gerente_id'); $select->setLabel('Gerente:') ->setRequired(true) ->addMultiOptions(Core_Combos::getGerentesOptions()); $this->addElement($select); $this->addElement('text', 'nome', array( 'label' => 'Nome:', 'size' => 40 )); $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find' )); $this->addElement('button', 'btn_new', array( 'label' => 'Novo Cadastro', 'class' => 'bt_new', 'onclick' => "window.location='" . $this->getView()->baseUrl() . "/gerente-rota/save'" )); $this->addElement('button', 'btn', array( 'label' => 'Comissão p/ Faixa', 'class' => 'bt_excel', 'onclick' => "window.location='" . $this->getView()->baseUrl() . "/gerente-rota/faixa-valores'" )); $this->addElement('button', 'btn_metas', array( 'label' => 'Lançar Metas', 'class' => 'bt_money', 'onclick' => "window.location='" . $this->getView()->baseUrl() . "/gerente-rota/lancar-metas'" )); $this->addDisplayGroup(array('btn_filtrar', 'btn_new', 'btn', 'btn_metas'), 'buttons'); } }
💾 保存文件
← 返回文件管理器