12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="UTF-8"?>
- <template xml:space="preserve">
- <t t-name="ReportResumenIngreso">
- <div class="report_view">
- <div class="reporting_page_header">
- <h1>Resumen de Ingreso</h1>
- <div id="volver"></div>
- </div>
- <div id="toolbar">
- <div class="col-sm-12">
- <label for="current-journal">Sucursal: </label>
- <select id="current-journal" class=" ui-autocomplete-input" name="journal"></select>
- <label for="current-currency">Moneda: </label>
- <select id="current-currency" class=" ui-autocomplete-input" name="currency"></select>
- <label for="from" >Desde:</label>
- <input type="text" id="from" name="from"/>
- <label for="to" >Hasta: </label>
- <input type="text" id="to" name="to" />
- </div>
- <button class="oe_button oe_form_button oe_highlight" value="pdf" id="pdf">Exportar a PDF</button>
- <button class="oe_button oe_form_button oe_highlight" value="chart" id="chart">Graficar</button>
- </div>
- <table id="table"
- data-classes="table table-hover table-condensed"
- data-buttons-class="oe_button oe_form_button oe_highlight"
- data-reorderable-columns="true"
- data-height="auto"
- data-pagination="false"
- data-show-columns="true"
- data-toolbar="#toolbar"
- data-id-field="number"
- data-row-style="rowStyle">
- <!-- data-search="true" -->
- <thead >
- <tr>
- <th data-field="journal" class="sucursal" >Sucursal</th>
- <th data-field="method" >Método de Pago</th>
- <th data-field="amount" data-align="right" >Pagos de Cliente</th>
- </tr>
- </thead>
- </table>
- <!-- <canvas></canvas> -->
- <div class="widget-content" id="grafico">
- <!-- <canvas id="graf_resume"></canvas> -->
- </div>
- <div id="dialog"></div>
- </div>
- </t>
- </template>
|