[ADD] Add Stock inventory report
authorJosse Colpaert <jco@openerp.com>
Mon, 17 Mar 2014 15:23:28 +0000 (16:23 +0100)
committerJosse Colpaert <jco@openerp.com>
Mon, 17 Mar 2014 15:23:28 +0000 (16:23 +0100)
bzr revid: jco@openerp.com-20140317152328-641ydlk6r7h5he7j

addons/stock/views/report_stockinventory.xml [new file with mode: 0644]

diff --git a/addons/stock/views/report_stockinventory.xml b/addons/stock/views/report_stockinventory.xml
new file mode 100644 (file)
index 0000000..7d121de
--- /dev/null
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+    <data>
+        <template id="report_inventory">
+            <t t-call="report.html_container">
+                <t t-foreach="docs" t-as="o">
+                    <t t-call="report.external_layout">
+                        <div class="page">
+                             
+                            <h2>
+                            Stock Inventory 
+                            </h2>
+                            <table class="table table-condensed">
+                            <thead>
+                                <tr>
+                                    <th><strong>Inventory</strong></th>
+                                    <th><strong>Date</strong></th>
+                                </tr>
+                            </thead>
+                            <tbody>
+                                <tr>
+                                    <td>
+                                        <span t-field="o.name"/>
+                                    </td>
+                                    <td>
+                                        <span t-field="o.date"/>
+                                    </td>
+                                </tr>
+                            </tbody>
+                            </table>
+                            <table class="table table-condensed">
+                                <thead>
+                                    <tr>
+                                        <th><strong>Location</strong></th>
+                                        <th><strong>Product</strong></th>
+                                        <th><strong>Production Lot</strong></th>
+                                        <th><strong>Package</strong></th>
+                                        <th><strong>Quantity</strong></th>
+                                    </tr>
+                                </thead>
+                                <tr t-foreach="o.line_ids" t-as="line">
+                                    <td><span t-field="line.location_id"/></td>
+                                    <td><span t-field="line.product_id"/></td>
+                                    <td><span t-field="line.prod_lot_id"/></td>
+                                    <td><span t-field="line.package_id"/></td>
+                                    <td><span t-field="line.product_qty"/> <span t-field="line.product_uom" groups="product.group_uom"/></td>
+                                </tr>
+                                <tr>
+                                    <td><span t-field="o.total_qty"/></td>
+                                </tr>
+                            </table>
+                            
+                        </div>
+                    </t>
+                 </t>
+             </t>
+        </template>
+    </data>
+</openerp>