✏️ 正在编辑: CallcenterEnviarDigitacaoAutomatica.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/application/forms/CallcenterEnviarDigitacaoAutomatica.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_CallcenterEnviarDigitacaoAutomatica extends Core_Form { public function init() { $this->setMethod('post'); $this->setAttrib('autocomplete', 'off'); $this->addElement('select', 'convenio_id', [ 'label' => 'Convênio:', 'style' => 'width: 250px', 'multiOptions' => Core_Combos::getConveniosDigitacaoAutomaticaOptions(), 'required' => true, ]); $this->addElement('select', 'banco_id', [ 'label' => 'Banco:', 'style' => 'width: 250px', 'multiOptions' => Core_Combos::getBancosDigitacaoAutomaticaOptions(), 'required' => true, ]); $this->addElement('select', 'tipo_operacao', [ 'label' => 'Tipo Operação:', 'style' => 'width: 250px', 'multiOptions' => [ 'AUMENTO SALARIAL' => 'AUMENTO SALARIAL', 'NOVO' => 'NOVO', ], 'required' => true ]); $this->addElement('hidden', 'campanha_id'); $this->_initButtons(); $this->_setDefaultDecorators(); } protected function _initButtons() { $this->addElement('button', 'btn_enviar', [ 'label' => 'Enviar', 'class' => 'bt_send', 'onClick' => "enviarParaDigitacao(this)" ]); $this->addDisplayGroup(['btn_enviar'], 'buttons'); } protected function _setDefaultDecorators() { $this->setDecorators( array( 'FormElements', array( 'HtmlTag', array( 'tag' => 'dl', 'class' => 'filtro_contrato' ) ), 'Form' )); } }
💾 保存文件
← 返回文件管理器