From 7591f59c5e769c78d55dc0336b1b4b5c700ea315 Mon Sep 17 00:00:00 2001
From: Ankit Joshi <ajo@odoo.com>
Date: Tue, 9 Feb 2016 19:00:04 +0530
Subject: [PATCH] [ADD] stock: add the field 'description_picking' in picking
 report

The field is defined but never user. It could be useful to indicate
to the delivery guy that the product is 'fragile' or whatever.

opw-728874
---
 addons/stock/views/report_stockpicking_operations.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/addons/stock/views/report_stockpicking_operations.xml b/addons/stock/views/report_stockpicking_operations.xml
index 45e68fc71699..da5e8348d382 100644
--- a/addons/stock/views/report_stockpicking_operations.xml
+++ b/addons/stock/views/report_stockpicking_operations.xml
@@ -92,7 +92,8 @@
                               </thead>
                               <tbody>
                                 <tr t-foreach="o.pack_operation_ids" t-as="pack_operation">
-                                    <td><span t-field="pack_operation.product_id"/>
+                                    <td><span t-field="pack_operation.product_id"/><br/>
+                                        <span t-field="pack_operation.product_id.description_picking"/>
                                         <t t-if="not pack_operation.product_id and pack_operation.package_id"><span  t-field="pack_operation.package_id"/></t></td>
                                     <td class="text-right"><span t-field="pack_operation.product_qty"/> <span t-field="pack_operation.product_uom_id" groups="product.group_uom"/></td>
                                     <t t-if="o.picking_type_id.code != 'incoming'"><td><span t-field="pack_operation.location_id"/>
-- 
GitLab