✏️ 正在编辑: extrato-para-analise.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/financeiro/extrato-para-analise.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Extratos para Análise</h1> <div id="view-content"> <form action="" method="post" onsubmit="return validarChecks(this);" name="f_extrato" id="f_extrato" > <dl class="zend_form"> <?php foreach($this->form->getElements() as $element ): echo $element; endforeach; ?> </dl> <div class="clear"></div> <table> <thead> <tr class="top_list"> <!--<th>TRNTYPE</th>--> <th>Data</th> <th>Valor</th> <th>FITID</th> <th>CHECKNUM</th> <!--<th>PAYEEID</th>--> <th>Descrição</th> <th></th> <th align="center"><input type="checkbox" name="control" id="control" value="all" onclick="myOptions.check(this)" /></th> </tr> </thead> <tbody> <?php foreach ( $this->extratos as $extrato ): ?> <tr class="<?php echo $extrato['trn_amt'] > 0 ? "receita" : "despesa"; ?>"> <!--<td><?php echo $extrato['trn_type']; ?></td>--> <td><?php echo $this->dateFormat($extrato['dt_posted']); ?></td> <td class="valor"><span>R$ </span><?php echo number_format($extrato['trn_amt'], 2, ',', '.'); ?></td> <td><?php echo $extrato['fit_id']; ?></td> <td><?php echo $extrato['check_num']; ?></td> <!--<td><?php echo $extrato['payeeid']; ?></td>--> <td><?php echo $extrato['memo']; ?></td> <td><a href="<?php echo $this->url(array('action' => 'associar-lancamento', 'extrato_id' => $extrato['id'])); ?>" title="Associar conta" class="link_next"></a></td> <td><input type="checkbox" name="extratos[]" id="checks[]" value="<?php echo $extrato['id'] ?>" /></td> </tr> <?php endforeach; ?> </tbody> <tfoot> <tr> <td colspan="7">Quantidade: <?php echo count($this->extratos); ?></td> </tr> </tfoot> </table> </form> </div>
💾 保存文件
← 返回文件管理器