✏️ 正在编辑: RelatorioProducaoAnual.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/application/forms/Filtro/RelatorioProducaoAnual.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_RelatorioProducaoAnual extends Core_Form { public function init() { $select = new Zend_Form_Element_Select('empresa_id'); $select->setLabel('Empresa:') ->addMultiOptions(Core_Combos::getEmpresasOptions()); $this->addElement($select); $this->addElement('text', 'periodo_producao_de', array( 'label' => 'Período de: ', 'required' => true, 'onkeypress' => 'mascara(this, mesAno)' )); $this->addElement('text', 'periodo_producao_a', array( 'label' => 'a: ', 'required' => true, 'onkeypress' => 'mascara(this, mesAno)' )); $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find' )); } }
💾 保存文件
← 返回文件管理器