Tejas Tank (OpenERP) has proposed merging
lp:~openerp-dev/openobject-addons/trunk-usability-product_rename_real_virtual_stock_field_label-tta
into lp:~openerp-dev/openobject-addons/trunk-usability.
Requested reviews:
Amit (Open ERP) (apa-tiny)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-usability-product_rename_real_virtual_stock_field_label-tta/+merge/71679
Hello,
Field label related changed have been applied.
Thanks,
Tejas Tank.
TTA @ OPENERP.COM
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-usability-product_rename_real_virtual_stock_field_label-tta/+merge/71679
Your team OpenERP R&D Team is subscribed to branch
lp:~openerp-dev/openobject-addons/trunk-usability.
=== modified file 'product/product.py'
--- product/product.py 2011-07-27 11:36:34 +0000
+++ product/product.py 2011-08-16 13:02:25 +0000
@@ -469,8 +469,8 @@
_inherits = {'product.template': 'product_tmpl_id'}
_order = 'default_code,name_template'
_columns = {
- 'qty_available': fields.function(_product_qty_available, type='float', string='Real Stock'),
- 'virtual_available': fields.function(_product_virtual_available, type='float', string='Virtual Stock'),
+ 'qty_available': fields.function(_product_qty_available, type='float', string='Quantity On Hand'),
+ 'virtual_available': fields.function(_product_virtual_available, type='float', string='Quantity On Order'),
'incoming_qty': fields.function(_product_incoming_qty, type='float', string='Incoming'),
'outgoing_qty': fields.function(_product_outgoing_qty, type='float', string='Outgoing'),
'price': fields.function(_product_price, type='float', string='Pricelist', digits_compute=dp.get_precision('Sale Price')),
=== modified file 'stock/product.py'
--- stock/product.py 2011-07-08 09:22:32 +0000
+++ stock/product.py 2011-08-16 13:02:25 +0000
@@ -330,8 +330,8 @@
return res
_columns = {
- 'qty_available': fields.function(_product_available, type='float', string='Real Stock', help="Current quantities of products in selected locations or all internal if none have been selected.", multi='qty_available', digits_compute=dp.get_precision('Product UoM')),
- 'virtual_available': fields.function(_product_available, type='float', string='Virtual Stock', help="Future stock for this product according to the selected locations or all internal if none have been selected. Computed as: Real Stock - Outgoing + Incoming.", multi='qty_available', digits_compute=dp.get_precision('Product UoM')),
+ 'qty_available': fields.function(_product_available, type='float', string='Quantity On Hand', help="Current quantities of products in selected locations or all internal if none have been selected.", multi='qty_available', digits_compute=dp.get_precision('Product UoM')),
+ 'virtual_available': fields.function(_product_available, type='float', string='Quantity On Order', help="Future stock for this product according to the selected locations or all internal if none have been selected. Computed as: Real Stock - Outgoing + Incoming.", multi='qty_available', digits_compute=dp.get_precision('Product UoM')),
'incoming_qty': fields.function(_product_available, type='float', string='Incoming', help="Quantities of products that are planned to arrive in selected locations or all internal if none have been selected.", multi='qty_available', digits_compute=dp.get_precision('Product UoM')),
'outgoing_qty': fields.function(_product_available, type='float', string='Outgoing', help="Quantities of products that are planned to leave in selected locations or all internal if none have been selected.", multi='qty_available', digits_compute=dp.get_precision('Product UoM')),
'track_production': fields.boolean('Track Manufacturing Lots' , help="Forces to specify a Production Lot for all moves containing this product and generated by a Manufacturing Order"),
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp