✏️ 正在编辑: RelatorioExtratoBancario.php
路径:
/srv/systems_dir/yuppiecred/application/forms/Filtro/RelatorioExtratoBancario.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_RelatorioExtratoBancario extends Core_Form { public function init() { $this->setMethod('post'); $this->setName('f_filtro_relatorio_extrato_bancario'); $this->setAttrib('autocomplete', 'off'); $select = new Zend_Form_Element_Select('empresa_id'); $select->setLabel('Empresa:') ->addMultiOptions(Core_Combos::getEmpresasOptions()); $this->addElement($select); $this->addElement(Form_DatePicker::getDatePicker('data_inicial_de', 'Período de:', '', true)); $this->addElement(Form_DatePicker::getDatePicker('data_final_a', 'a:', '', true)); $select = new Zend_Form_Element_Select('conta_id'); $select->setLabel('Conta:') ->setRequired(true) ->addMultiOptions(Core_Combos::getContasOptions()); $this->addElement($select); $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find' )); } }
💾 保存文件
← 返回文件管理器