12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <!-- <?xml version="1.0" encoding="utf-8"?>
- <openerp>
- <data>
- <template id="report_posgralxcliente">
- <t t-call="report.html_container">
- <t t-call="report.external_layout">
- <div class="page">
- <style type="text/css">
- .crm_tcab{
- font-size: 3mm;
- font-family: Arial, Helvetica, sans-serif;
- }
- .crm_tbody{
- font-size: 2.8mm;
- font-family: Arial, Helvetica, sans-serif;
- }
- .logo1{
- width: 100%;
- top: 1.5cm;
- }
- .total1{
- font-size: 2.8mm;
- font-family: Arial, Helvetica, sans-serif;
- }
- </style>
- <h4 class="text-center">Listado de Pos por cliente</h4>
- <div class="logo1" />
- <table class="table table-condensed">
- <thead class="crm_tcab">
- <tr class="active">
- <th>Cliente</th>
- <th class="text-center">Cantidad</th>
- <th class="text-right">Sub Total</th>
- </tr>
- </thead>
- <t t-foreach="docs" t-as="o">
- <tbody>
- <tr>
- <td>
- <span t-field="o.partner_id"/>
- </td>
- <td class="text-center">
- <span t-field="o.product_qty"/>
- </td>
- <td class="text-right">
- <span t-field="o.price_total"/>
- </td>
- </tr>
- </tbody>
- </t>
- </table>
- </div>
- </t>
- </t>
- </template>
- </data>
- </openerp>
- -->
|