123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="UTF-8"?>
- <template xml:space="preserve">
- <t t-name="ReportSales">
- <div class="report_view">
- <div class="reporting_page_header">
- <h1>Tributacion de Ventas</h1>
- <div id="volver"></div>
- </div>
- <div class="row">
- <div class="col-md-6 col-md-offset-3">
- <table class="table table-condensed">
- <tr>
- <th>
- <label for="current-period">Periodo: </label>
- <select id="current-period" class="ui-autocomplete-input form-control" name="period"></select>
- </th>
- </tr>
- <tr>
- <th>
- <button class="oe_button oe_form_button oe_highlight btn-block txt" value="txt" id="txt">Exportar a txt</button>
- </th>
- </tr>
- </table>
- </div>
- </div>
- <table id="table"
- 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 table-bordered"
- data-row-style="rowStyle"
- data-search="true">
- <thead>
- <tr>
- <th data-field="tipo_registro" >Tipo de Registro</th>
- <th data-field="ruc_cliente" >RUC Cliente</th>
- <th data-field="dv">DV Cliente</th>
- <th data-field="partner">Nombre o Denominacion Cliente</th>
- <th data-field="tipo_documento">Tipo de Documento</th>
- <th data-field="numero_documento">Numero Documento</th>
- <th data-field="date">Fecha Documento</th>
- <th data-field="tasa_10">Monto de la venta a la Tasa 10%</th>
- <th data-field="iva_10">IVA Debito 10%</th>
- <th data-field="tasa_5">Monto de la venta a la Tasa 5%</th>
- <th data-field="iva_5">IVA Debito 5%</th>
- <th data-field="amount">Monto de la Venta no Grabada o Exenta</th>
- <th data-field="total">Monto del Ingreso</th>
- <th data-field="condicion_venta">Condicion de Venta</th>
- <th data-field="cantidad_cuotas">Cantidad de Cuotas</th>
- <th data-field="number">Numero de Timbrado</th>
- <th data-field="attachment_ids">Adjuntos</th>
- </tr>
- </thead>
- </table>
- <canvas></canvas>
- <div id="dialog"></div>
- </div>
- </t>
- </template>
|