report_resumen_ingresos.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <template xml:space="preserve">
  3. <t t-name="ReportResumenIngreso">
  4. <div class="report_view">
  5. <div class="reporting_page_header">
  6. <h1>Resumen de Ingreso</h1>
  7. <div id="volver"></div>
  8. </div>
  9. <div id="toolbar">
  10. <div class="col-sm-12">
  11. <label for="current-journal">Sucursal: </label>
  12. <select id="current-journal" class=" ui-autocomplete-input" name="journal"></select>
  13. <label for="current-currency">Moneda: </label>
  14. <select id="current-currency" class=" ui-autocomplete-input" name="currency"></select>
  15. <label for="from" >Desde:</label>
  16. <input type="text" id="from" name="from"/>
  17. <label for="to" >Hasta: </label>
  18. <input type="text" id="to" name="to" />
  19. </div>
  20. <button class="oe_button oe_form_button oe_highlight" value="pdf" id="pdf">Exportar a PDF</button>
  21. <button class="oe_button oe_form_button oe_highlight" value="chart" id="chart">Graficar</button>
  22. </div>
  23. <table id="table"
  24. data-classes="table table-hover table-condensed"
  25. data-buttons-class="oe_button oe_form_button oe_highlight"
  26. data-reorderable-columns="true"
  27. data-height="auto"
  28. data-pagination="false"
  29. data-show-columns="true"
  30. data-toolbar="#toolbar"
  31. data-id-field="number"
  32. data-row-style="rowStyle">
  33. <!-- data-search="true" -->
  34. <thead >
  35. <tr>
  36. <th data-field="journal" class="sucursal" >Sucursal</th>
  37. <th data-field="method" >Método de Pago</th>
  38. <th data-field="amount" data-align="right" >Pagos de Cliente</th>
  39. </tr>
  40. </thead>
  41. </table>
  42. <!-- <canvas></canvas> -->
  43. <div class="widget-content" id="grafico">
  44. <!-- <canvas id="graf_resume"></canvas> -->
  45. </div>
  46. <div id="dialog"></div>
  47. </div>
  48. </t>
  49. </template>