diff --git a/addons/purchase/res_config.py b/addons/purchase/res_config.py index fb62f3e2d80..07d95ab4cf5 100644 --- a/addons/purchase/res_config.py +++ b/addons/purchase/res_config.py @@ -63,6 +63,9 @@ class purchase_config_settings(osv.osv_memory): 'group_analytic_account_for_purchases': fields.boolean('Analytic accounting for purchases', implied_group='purchase.group_analytic_accounting', help="Allows you to specify an analytic account on purchase orders."), + 'module_stock_dropshipping': fields.boolean("Manage dropship route", + help='\nCreates the dropship route and add more complex tests' + '-This installs the module stock_dropshipping.'), } _defaults = { diff --git a/addons/purchase/res_config_view.xml b/addons/purchase/res_config_view.xml index 6983acb854a..4eaba80c306 100644 --- a/addons/purchase/res_config_view.xml +++ b/addons/purchase/res_config_view.xml @@ -80,6 +80,16 @@ + + + diff --git a/addons/stock/res_config.py b/addons/stock/res_config.py index eb5218f160f..eec430a69ac 100644 --- a/addons/stock/res_config.py +++ b/addons/stock/res_config.py @@ -75,6 +75,9 @@ This installs the module product_expiry."""), implied_group='stock.group_adv_location', help="""This option supplements the warehouse application by effectively implementing Push and Pull inventory flows. """), 'decimal_precision': fields.integer('Decimal precision on weight', help="As an example, a decimal precision of 2 will allow weights like: 9.99 kg, whereas a decimal precision of 4 will allow weights like: 0.0231 kg."), + 'module_stock_dropshipping': fields.boolean("Manage dropship route", + help='\nCreates the dropship route and add more complex tests' + '-This installs the module stock_dropshipping.'), } def get_default_dp(self, cr, uid, fields, context=None): diff --git a/addons/stock/res_config_view.xml b/addons/stock/res_config_view.xml index 2ce88479c9a..a784c015ab5 100644 --- a/addons/stock/res_config_view.xml +++ b/addons/stock/res_config_view.xml @@ -78,6 +78,10 @@