diff --git a/addons/mrp/stock.py b/addons/mrp/stock.py index 11cdffbbb64..1786336bedd 100644 --- a/addons/mrp/stock.py +++ b/addons/mrp/stock.py @@ -206,7 +206,8 @@ class StockMove(osv.osv): class stock_warehouse(osv.osv): _inherit = 'stock.warehouse' _columns = { - 'manufacture_to_resupply': fields.boolean('Manufacture in this Warehouse'), + 'manufacture_to_resupply': fields.boolean('Manufacture in this Warehouse', + help="When products are manufactured, they can be manufactured in this warehouse."), 'manufacture_pull_id': fields.many2one('procurement.rule', 'Manufacture Rule'), } diff --git a/addons/purchase/stock.py b/addons/purchase/stock.py index f14087723f5..66b2418f4ee 100644 --- a/addons/purchase/stock.py +++ b/addons/purchase/stock.py @@ -92,7 +92,8 @@ class stock_picking(osv.osv): class stock_warehouse(osv.osv): _inherit = 'stock.warehouse' _columns = { - 'buy_to_resupply': fields.boolean('Purchase to resupply this warehouse'), + 'buy_to_resupply': fields.boolean('Purchase to resupply this warehouse', + help="When products are bought, they can be delivered to this warehouse"), 'buy_pull_id': fields.many2one('procurement.rule', 'BUY rule'), } _defaults = { diff --git a/addons/stock/stock.py b/addons/stock/stock.py index 6b03904155a..9892b402ece 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -2710,11 +2710,13 @@ class stock_warehouse(osv.osv): 'reception_steps': fields.selection([ ('one_step', 'Receive goods directly in stock (1 step)'), ('two_steps', 'Unload in input location then go to stock (2 steps)'), - ('three_steps', 'Unload in input location, go through a quality control before being admitted in stock (3 steps)')], 'Incoming Shipments', required=True), + ('three_steps', 'Unload in input location, go through a quality control before being admitted in stock (3 steps)')], 'Incoming Shipments', + help="Default incoming route to follow", required=True), 'delivery_steps': fields.selection([ ('ship_only', 'Ship directly from stock (Ship only)'), ('pick_ship', 'Bring goods to output location before shipping (Pick + Ship)'), - ('pick_pack_ship', 'Make packages into a dedicated location, then bring them to the output location for shipping (Pick + Pack + Ship)')], 'Outgoing Shippings', required=True), + ('pick_pack_ship', 'Make packages into a dedicated location, then bring them to the output location for shipping (Pick + Pack + Ship)')], 'Outgoing Shippings', + help="Default outgoing route to follow", required=True), 'wh_input_stock_loc_id': fields.many2one('stock.location', 'Input Location'), 'wh_qc_stock_loc_id': fields.many2one('stock.location', 'Quality Control Location'), 'wh_output_stock_loc_id': fields.many2one('stock.location', 'Output Location'), @@ -2730,8 +2732,9 @@ class stock_warehouse(osv.osv): 'delivery_route_id': fields.many2one('stock.location.route', 'Delivery Route'), 'resupply_from_wh': fields.boolean('Resupply From Other Warehouses'), 'resupply_wh_ids': fields.many2many('stock.warehouse', 'stock_wh_resupply_table', 'supplied_wh_id', 'supplier_wh_id', 'Resupply Warehouses'), - 'resupply_route_ids': fields.one2many('stock.location.route', 'supplied_wh_id', 'Resupply Routes'), - 'default_resupply_wh_id': fields.many2one('stock.warehouse', 'Default Resupply Warehouse'), + 'resupply_route_ids': fields.one2many('stock.location.route', 'supplied_wh_id', 'Resupply Routes', + help="Routes will be created for these resupply warehouses and you can select them on products and product categories"), + 'default_resupply_wh_id': fields.many2one('stock.warehouse', 'Default Resupply Warehouse', help="Goods will always be resupplied from this warehouse"), } def onchange_filter_default_resupply_wh_id(self, cr, uid, ids, default_resupply_wh_id, resupply_wh_ids, context=None):