report_invoices.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <template xml:space="preserve">
  3. <t t-name="ReportWorks">
  4. <div class="report_view">
  5. <div class="reporting_page_header">
  6. <h1>Trabajos Realizados</h1>
  7. <div id="volver"></div>
  8. </div>
  9. <div id="toolbar">
  10. <label for="from">Desde: </label>
  11. <input type="text" id="from" name="from"/>
  12. <label for="to" >Hasta: </label>
  13. <input type="text" id="to" name="to" />
  14. <label for="customer">Cliente:</label>
  15. <input id="customer" type="text" class="ui-autocomplete-input" autocomplete="off" placeholder="Nombre/ CI/ Ruc"/>
  16. <button class="oe_button oe_form_button oe_highlight btn-block" value="pdf">PDF</button>
  17. </div>
  18. <table id="table" class="table_paint_first_row"
  19. data-pagination="true"
  20. data-toggle="table"
  21. data-reorderable-columns="true"
  22. data-toolbar="#toolbar"
  23. data-show-columns="true"
  24. data-buttons-class="oe_button oe_form_button oe_highlight"
  25. data-height="auto"
  26. data-classes="table table-hover table-condensed"
  27. data-row-style="rowStyle"
  28. data-search="true">
  29. <thead>
  30. <tr>
  31. <th data-field="customer" data-sortable="true">Cliente</th>
  32. <th data-field="car">Vehiculo</th>
  33. <th data-field="agent">Aseguradora / Agente</th>
  34. <!-- <th data-field="secure">Aseguradora</th> -->
  35. <th data-field="date_in">Fecha de Ingreso</th>
  36. <th data-field="secure_amount" data-sortable="true" data-align="right">Valor Aseguradora</th>
  37. <th data-field="particular_amount" data-sortable="true" data-align="right">Valor Particular</th>
  38. <th data-field="state">Estado</th>
  39. <th data-field="pay_amount" data-sortable="true" data-align="right">Valor Entregado</th>
  40. <th data-field="collect" data-sortable="true" data-align="right">Por Cobrar</th>
  41. </tr>
  42. </thead>
  43. </table>
  44. </div>
  45. </t>
  46. </template>