informe_stock_picking.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <report
  5. string="Listado Stock Picking"
  6. id="report_picking_id"
  7. model="stock.picking"
  8. report_type="qweb-pdf"
  9. name="informes_stock_picking.report_picking1"
  10. file="informes_stock_picking.report_picking1"
  11. />
  12. <template id="report_picking1">
  13. <t t-call="report.html_container">
  14. <t t-call="report.external_layout">
  15. <div class="page">
  16. <style type="text/css">
  17. .crm_tcab{
  18. font-size: 3mm;
  19. font-family: Arial, Helvetica, sans-serif;
  20. }
  21. .veh_tbody{
  22. font-size: 2.8mm;
  23. font-family: Arial, Helvetica, sans-serif;
  24. }
  25. .logo1{
  26. width: 100%;
  27. top: 1.5cm;
  28. }
  29. </style>
  30. <h4 class="text-center">Listado Stock Picking</h4>
  31. <div class="logo1"> </div>
  32. <table class="table table-bordered">
  33. <thead class="crm_tcab">
  34. <tr class="active">
  35. <th class="text-center">Codigo Ref.</th>
  36. <th class="text-center">Ubic.Destino</th>
  37. <th class="text-center">Empresa</th>
  38. <th class="text-center">Fecha Creación</th>
  39. <th class="text-center">Doc. Origen</th>
  40. <th class="text-center">Fecha Prevista</th>
  41. <th class="text-center">Estado</th>
  42. </tr>
  43. </thead>
  44. <t t-foreach="docs" t-as="o">
  45. <tbody class="veh_tbody">
  46. <td class="text-left">
  47. <span t-field="o.name"/>
  48. </td>
  49. <td class="text-left">
  50. <span t-field="o.location_dest_id"/>
  51. </td>
  52. <td class="text-left">
  53. <span t-field="o.partner_id"/>
  54. </td>
  55. <td class="text-left">
  56. <span t-field="o.date"/>
  57. </td>
  58. <td class="text-left">
  59. <span t-field="o.origin"/>
  60. </td>
  61. <td class="text-left">
  62. <span t-field="o.min_date"/>
  63. </td>
  64. <td class="text-left">
  65. <span t-field="o.state"/>
  66. </td>
  67. </tbody>
  68. </t>
  69. </table>
  70. </div>
  71. </t>
  72. </t>
  73. </template>
  74. </data>
  75. </openerp>