✏️ 正在编辑: Rota.php
路径:
/srv/systems_dir/yuppiecred-bkp/application/forms/Rota.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Rota extends Core_Form { public function init() { $this->setName('f_save_rota'); $this->addElement('hidden', 'id', array( 'class' => 'invisivel' )); $select = new Zend_Form_Element_Select('gerente_id'); $select->setLabel('Supervisor:') ->setRequired(true) ->addMultiOptions(Core_Combos::getSupervisoresOptions()); $this->addElement($select); $this->addElement('text', 'nome', array( 'label' => 'Nome:', 'size' => 35, 'required' => true )); $this->addElement('text', 'valor_hospedagem', array( 'label' => 'Valor da hospedagem (R$):', 'size' => 10, 'onkeypress' => 'mascara(this, mvalor)', 'value' => '0,00' )); $this->addElement('text', 'valor_refeicao', array( 'label' => 'Valor da refeicao (R$):', 'size' => 10, 'onkeypress' => 'mascara(this, mvalor)', 'value' => '0,00' )); $this->addElement('text', 'valor_combustivel', array( 'label' => 'Valor do combustivel (R$) / L:', 'size' => 10, 'onkeypress' => 'mascara(this, mvalor)', 'value' => '0,00' )); $this->addElement('text', 'consumo_veiculo', array( 'label' => 'Consumo do veículo KM/L:', 'size' => 10, 'onkeypress' => 'mascara(this, mvalor)', 'value' => '0,00' )); $this->addElement('button', 'btn_back', array( 'label' => 'Voltar', 'class' => 'bt_back', 'onclick' => "window.location='" . $this->getView()->baseUrl() . "/rota'" )); $this->addElement('submit', 'btn_save', array( 'label' => 'Salvar', 'class' => 'bt_save' )); $this->addElement('button', 'btn_new', array( 'label' => 'Novo Cadastro', 'class' => 'bt_new', 'onclick' => "window.location='" . $this->getView()->baseUrl() . "/rota/save'" )); $this->addDisplayGroup(array( 'btn_back', 'btn_save', 'btn_new' ), 'buttons'); } }
💾 保存文件
← 返回文件管理器