report_resumen_ingresos.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. <button type="button" class="oe_button oe_form_button oe_highlight" aria-label="Left Align" data-toggle="collapse" href="#collapseExample" aria-expanded="false" aria-controls="collapseExample">FILTRAR
  10. </button>
  11. <div class="collapse" id="collapseExample">
  12. <br/>
  13. <div class="row">
  14. <div class="col-xs-6">
  15. <div class="panel panel-default">
  16. <div class="panel-heading">Fechas</div>
  17. <div class="panel-body">
  18. <ul class="list-unstyled">
  19. <li>
  20. <input type="radio" name="valores" id="X" value="X" checked="checked"/>
  21. <label for="X">Sin Filtro</label>
  22. </li>
  23. <li>
  24. <input type="radio" name="valores" id="A" value="A"/>
  25. <label for="A">Hoy</label>
  26. </li>
  27. <li>
  28. <input type="radio" name="valores" id="B" value="B"/>
  29. <label for="B">Ayer</label>
  30. </li>
  31. <li>
  32. <input type="radio" name="valores" id="C" value="C"/>
  33. <label for="C">Mes Actual</label>
  34. </li>
  35. <li>
  36. <input type="radio" name="valores" id="D" value="D"/>
  37. <label for="D">Mes Pasado</label>
  38. </li>
  39. <li>
  40. <input type="radio" name="valores" id="Z" value="Z"/>
  41. <label for="Z">Busqueda Avanzada</label>
  42. </li>
  43. </ul>
  44. <div id="datepicker" style="display:none;" class="container">
  45. <label for="from">Desde: </label>
  46. <input type="text" id="from" name="from"/>
  47. <label for="to" >Hasta: </label>
  48. <input type="text" id="to" name="to" />
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="col-xs-6">
  54. <div class="panel panel-default">
  55. <div class="panel-heading">Características</div>
  56. <div class="panel-body">
  57. <div class="form-group">
  58. <label for="current-journal">Sucursal: </label>
  59. <select id="current-journal" class="form-control ui-autocomplete-input" name="journal"></select>
  60. <!-- <br/>
  61. <label for="current-currency">Moneda: </label>
  62. <select id="current-currency" class="form-control ui-autocomplete-input" name="currency"></select> -->
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <div id="toolbar">
  70. <button class="oe_button oe_form_button oe_highlight" value="pdf" id="pdf">PDF</button>
  71. <button class="oe_button oe_form_button oe_highlight" value="chart" id="chart">Graficar</button>
  72. </div>
  73. <table id="table" class="table_paint_first_row"
  74. data-pagination="true"
  75. data-toggle="table"
  76. data-reorderable-columns="true"
  77. data-toolbar="#toolbar"
  78. data-show-columns="true"
  79. data-buttons-class="oe_button oe_form_button oe_highlight"
  80. data-height="auto"
  81. data-classes="table table-hover table-condensed"
  82. data-row-style="rowStyle"
  83. data-search="true">
  84. <thead >
  85. <tr>
  86. <th data-field="journal" class="sucursal" >Sucursal</th>
  87. <th data-field="method" >Método de Pago</th>
  88. <th data-field="amount" data-align="right" >Pagos de Cliente</th>
  89. </tr>
  90. </thead>
  91. </table>
  92. <div class="widget-content" id="grafico"></div>
  93. <div id="dialog"></div>
  94. </div>
  95. </t>
  96. </template>