✏️ 正在编辑: pos-venda.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/relatorio/pos-venda.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Relatório de Pós-Venda</h1> <div id="filter"> <?php echo $this->form; ?> </div> <div id="columns_selected"> <fieldset> <legend>Selecione as colunas para exibição</legend> <dl> <dd><input type="checkbox" id="select_column1" name="select_column1" value="1" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column1">Cliente</label></dt> <dd><input type="checkbox" id="select_column2" name="select_column2" value="2" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column2">Classificação</label></dt> <dd><input type="checkbox" id="select_column3" name="select_column3" value="3" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column3">Data retorno</label></dt> <dd><input type="checkbox" id="select_column4" name="select_column4" value="4" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column4">Comentário</label></dt> <dd><input type="checkbox" id="select_column5" name="select_column5" value="5" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column5">Usuário</label></dt> <dd><input type="checkbox" id="select_column6" name="select_column6" value="6" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column6">Nota</label></dt> <dd><input type="checkbox" id="select_column7" name="select_column7" value="7" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column7">Corretor (Vendedor)</label></dt> </dl> </fieldset> <div class="clear"></div> </div> <div id="view-content"> <table summary="RelPosVenda" class="tablesorter relatorio" id="sortedTable"> <thead> <tr class="top_list"> <th>Cliente</th> <th>Classificação</th> <th>Data Retorno</th> <th>Comentário</th> <th>Usuário</th> <th>Nota</th> <th>Corretor (Vendedor)</th> </tr> </thead> <tbody> <?php if( count($this->contatos) == 0 ): ?> <tr> <td colspan="7">Nenhuma pós-venda a ser exibida.</td> </tr> <?php else: ?> <?php foreach ($this->contatos as $contato): ?> <tr> <td><?php echo $this->escape($contato['prospecto']); ?></td> <td><?php echo $this->escape($contato['classificacao_descricao']); ?></td> <td><?php echo $this->dateFormat($contato['data_retorno']); ?></td> <td><?php echo $this->escape($contato['comentario']); ?></td> <td><?php echo $this->escape($contato['usuario']); ?></td> <td><?php echo $this->escape($contato['nota']); ?></td> <td><?php echo $this->escape($contato['corretor']); ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table> </div>
💾 保存文件
← 返回文件管理器