report_sales.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <template xml:space="preserve">
  3. <t t-name="ReportSales">
  4. <div class="report_view">
  5. <div class="reporting_page_header">
  6. <h1>Tributacion de Ventas</h1>
  7. <div id="volver"></div>
  8. </div>
  9. <div class="row">
  10. <div class="col-md-6 col-md-offset-3">
  11. <table class="table table-condensed">
  12. <tr>
  13. <th>
  14. <label for="current-period">Periodo: </label>
  15. <select id="current-period" class="ui-autocomplete-input form-control" name="period"></select>
  16. </th>
  17. </tr>
  18. <tr>
  19. <th>
  20. <button class="oe_button oe_form_button oe_highlight btn-block txt" value="txt" id="txt">Exportar a txt</button>
  21. </th>
  22. </tr>
  23. </table>
  24. </div>
  25. </div>
  26. <table id="table"
  27. data-pagination="true"
  28. data-toggle="table"
  29. data-reorderable-columns="true"
  30. data-toolbar="#toolbar"
  31. data-show-columns="true"
  32. data-buttons-class="oe_button oe_form_button oe_highlight"
  33. data-height="auto"
  34. data-classes="table table-hover table-condensed table-bordered"
  35. data-row-style="rowStyle"
  36. data-search="true">
  37. <thead>
  38. <tr>
  39. <th data-field="tipo_registro" >Tipo de Registro</th>
  40. <th data-field="ruc_cliente" >RUC Cliente</th>
  41. <th data-field="dv">DV Cliente</th>
  42. <th data-field="partner">Nombre o Denominacion Cliente</th>
  43. <th data-field="tipo_documento">Tipo de Documento</th>
  44. <th data-field="numero_documento">Numero Documento</th>
  45. <th data-field="date">Fecha Documento</th>
  46. <th data-field="tasa_10">Monto de la venta a la Tasa 10%</th>
  47. <th data-field="iva_10">IVA Debito 10%</th>
  48. <th data-field="tasa_5">Monto de la venta a la Tasa 5%</th>
  49. <th data-field="iva_5">IVA Debito 5%</th>
  50. <th data-field="amount">Monto de la Venta no Grabada o Exenta</th>
  51. <th data-field="total">Monto del Ingreso</th>
  52. <th data-field="condicion_venta">Condicion de Venta</th>
  53. <th data-field="cantidad_cuotas">Cantidad de Cuotas</th>
  54. <th data-field="number">Numero de Timbrado</th>
  55. <th data-field="attachment_ids">Adjuntos</th>
  56. </tr>
  57. </thead>
  58. </table>
  59. <canvas></canvas>
  60. <div id="dialog"></div>
  61. </div>
  62. </t>
  63. </template>