Nimesh Contractor(Open ERP) has proposed merging lp:~openerp-dev/openobject-addons/trunk-bug-1097688-nco into lp:openobject-addons.
Requested reviews: OpenERP Core Team (openerp) Related bugs: Bug #1097688 in OpenERP Addons: "[trunk] Typo error in product form: "forecasted quantity" => "forecast quantity"" https://bugs.launchpad.net/openobject-addons/+bug/1097688 For more details, see: https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1097688-nco/+merge/142501 Hello, I have done following changes. 1. product form => inventory tab: changed to "Forecast quantity" 2. list view of products: Forecasted Quantity column name changed to "Forecast quantity" 3. kanban view: Forecasted: => Forecast. Thanks, NCO. -- https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1097688-nco/+merge/142501 Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/trunk-bug-1097688-nco.
=== modified file 'product/product_view.xml' --- product/product_view.xml 2012-12-10 06:44:42 +0000 +++ product/product_view.xml 2013-01-09 12:55:29 +0000 @@ -111,7 +111,7 @@ <separator string="Description for Suppliers"/> <field name="description_purchase" placeholder="This note will be displayed on requests for quotation..."/> </page> - <page string="Inventory" groups="base.group_user"> + <page string="Forecast quantity" groups="base.group_user"> <group name="inventory"> <group name="status" string="Status"> <field name="state"/> === modified file 'stock/product.py' --- stock/product.py 2012-12-18 22:50:15 +0000 +++ stock/product.py 2013-01-09 12:55:29 +0000 @@ -377,7 +377,7 @@ "with 'internal' type."), 'virtual_available': fields.function(_product_available, multi='qty_available', type='float', digits_compute=dp.get_precision('Product Unit of Measure'), - string='Forecasted Quantity', + string='Forecast quantity', help="Forecast quantity (computed as Quantity On Hand " "- Outgoing + Incoming)\n" "In a context with a single Stock Location, this includes " === modified file 'stock/product_view.xml' --- stock/product_view.xml 2012-11-29 22:26:45 +0000 +++ stock/product_view.xml 2013-01-09 12:55:29 +0000 @@ -221,7 +221,7 @@ </xpath> <ul position="inside"> <li t-if="record.type.raw_value != 'service'">On hand: <field name="qty_available"/> <field name="uom_id"/></li> - <li t-if="record.type.raw_value != 'service'">Forecasted: <field name="virtual_available"/> <field name="uom_id"/></li> + <li t-if="record.type.raw_value != 'service'">Forecast: <field name="virtual_available"/> <field name="uom_id"/></li> </ul> </field> </record>
_______________________________________________ Mailing list: https://launchpad.net/~openerp-dev-gtk Post to : openerp-dev-gtk@lists.launchpad.net Unsubscribe : https://launchpad.net/~openerp-dev-gtk More help : https://help.launchpad.net/ListHelp