← Back to team overview

openerp-wms-expert team mailing list archive

[Merge] lp:~numerigraphe/openobject-addons/trunk-stock-view-variations into lp:openobject-addons

 

You have been requested to review the proposed merge of lp:~numerigraphe/openobject-addons/trunk-stock-view-variations into lp:openobject-addons.

For more details, see:
https://code.launchpad.net/~numerigraphe/openobject-addons/trunk-stock-view-variations/+merge/80538

When computing the virtual stock for a product, OpenERP also computes the incoming and outgoing quantities but they are displayed nowhere.
I propose to add them to the product form view, for "extended view" users only.
Lionel Sausin

-- 
https://code.launchpad.net/~numerigraphe/openobject-addons/trunk-stock-view-variations/+merge/80538
Your team OpenERP WMS Expert is requested to review the proposed merge of lp:~numerigraphe/openobject-addons/trunk-stock-view-variations into lp:openobject-addons.
=== modified file 'stock/i18n/fr.po'
--- stock/i18n/fr.po	2011-10-19 05:53:43 +0000
+++ stock/i18n/fr.po	2011-10-27 08:05:36 +0000
@@ -5077,3 +5077,9 @@
 #, python-format
 #~ msgid "quantity."
 #~ msgstr "quantité."
+
+#. module: stock
+#: view:product.product:0
+msgid "Expected Stock Variations"
+msgstr "Variations de stock attendues"
+

=== modified file 'stock/i18n/stock.pot'
--- stock/i18n/stock.pot	2011-10-10 11:33:46 +0000
+++ stock/i18n/stock.pot	2011-10-27 08:05:36 +0000
@@ -3693,3 +3693,8 @@
 msgid "Optional localization details, for information purpose only"
 msgstr ""
 
+#. module: stock
+#: view:product.product:0
+msgid "Expected Stock Variations"
+msgstr ""
+

=== modified file 'stock/product_view.xml'
--- stock/product_view.xml	2011-10-25 14:13:28 +0000
+++ stock/product_view.xml	2011-10-27 08:05:36 +0000
@@ -111,6 +111,11 @@
                         <newline/>
                         <field name="virtual_available"/>
                     </group>
+                    <group colspan="2" col="2" name="stock_variations" groups="base.group_extended">
+                        <separator string="Expected Stock Variations" colspan="2"/>
+                        <field name="incoming_qty"/>
+                        <field name="outgoing_qty"/>
+                    </group>
                     <group colspan="2" col="2" name="lot" groups="base.group_extended">
                         <separator string="Lots" colspan="4"/>
                         <field name="track_production" />


References