123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="UTF-8"?>
- <template xml:space="preserve">
- <t t-name="ReportWorks">
- <div class="report_view">
- <div class="reporting_page_header">
- <h1>Trabajos Realizados</h1>
- <div id="volver"></div>
- </div>
- <div id="toolbar">
- <label for="from">Desde: </label>
- <input type="text" id="from" name="from"/>
- <label for="to" >Hasta: </label>
- <input type="text" id="to" name="to" />
- <label for="customer">Cliente:</label>
- <input id="customer" type="text" class="ui-autocomplete-input" autocomplete="off" placeholder="Nombre/ CI/ Ruc"/>
- <button class="oe_button oe_form_button oe_highlight btn-block" value="pdf">PDF</button>
-
- </div>
- <table id="table" class="table_paint_first_row"
- data-pagination="true"
- data-toggle="table"
- data-reorderable-columns="true"
- data-toolbar="#toolbar"
- data-show-columns="true"
- data-buttons-class="oe_button oe_form_button oe_highlight"
- data-height="auto"
- data-classes="table table-hover table-condensed"
- data-row-style="rowStyle"
- data-search="true">
- <thead>
- <tr>
- <th data-field="customer" data-sortable="true">Cliente</th>
- <th data-field="car">Vehiculo</th>
- <th data-field="agent">Aseguradora / Agente</th>
- <!-- <th data-field="secure">Aseguradora</th> -->
- <th data-field="date_in">Fecha de Ingreso</th>
- <th data-field="secure_amount" data-sortable="true" data-align="right">Valor Aseguradora</th>
- <th data-field="particular_amount" data-sortable="true" data-align="right">Valor Particular</th>
- <th data-field="state">Estado</th>
- <th data-field="pay_amount" data-sortable="true" data-align="right">Valor Entregado</th>
- <th data-field="collect" data-sortable="true" data-align="right">Por Cobrar</th>
- </tr>
- </thead>
- </table>
- </div>
- </t>
- </template>
|