✏️ 正在编辑: imprimir.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/diario-rota/imprimir.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<header class="tit_local" style="text-decoration: underline;" align="center" >Diário de Viagens</header> <?php $supervisor = $this->dados_supervisor->findParentRow('Model_DbTable_GerenteRota');?> <div id="identificacao"> <table> <thead> <tr> <td class="negrito">Supervisor: <?php echo $supervisor['nome'] ?></td> </tr> <tr> <td class="negrito">Data Inicial: <?php echo $this->dateFormat($this->dados_supervisor['data_saida']) ?></td> <td class="negrito">Data Final: <?php echo $this->dateFormat($this->dados_supervisor['data_retorno']) ?></td> </tr> </thead> </table> <div class="clear"></div> </div> <div id="view-content"> <table class="tabela-diario"> <header class="negrito" style="margin-top: 5px;">Movimentações</header> <thead> <tr class="top_list"> <th>Data</th> <th>Descrição</th> <th>Valor</th> <th>Rota</th> <th class="no-print"></th> </tr> </thead> <tbody> <?php $valorTotal = 0; foreach($this->dados as $diario) : $valorTotal += $diario['valor_pago'] ?> <tr> <td><?php echo $this->dateFormat($diario['data_pagamento']); ?></td> <td><?php echo $this->escape($diario['descricao']); ?></td> <td class="valor_negrito"><span>R$ </span><?php echo number_format($diario['valor_pago'], 2, ',', '.') ?></td> <td><?php echo $this->escape($diario['nome_rota']); ?></td> <td class="no-print"><button class="bt_find no-print" style="margin-top: 5px;" onclick="openWin('<?php echo $this->url(array( 'action' => 'exibir-movimentacoes', 'id' => $diario['diario_tipo_id'] )) ?>', 1024, 600, 1)">Exibir </button></td> </tr> <?php endforeach; ?> </tbody> <tfoot> <tr> <td>Total:</td> <td></td> <td class="valor_negrito"><span>R$ </span><?php echo number_format($valorTotal, 2, ',', '.'); ?></td> </tr> </tfoot> </table> <div style="width: auto; margin-top: 30px;" > <hr style="width: 300px; margin: auto;"> <p style="text-align: center" class="negrito"><?php echo $supervisor['nome'] ?></p> </div> </div>
💾 保存文件
← 返回文件管理器