Skip to content

Commit

Permalink
[FIX] website_sale: default "Product Prices" value
Browse files Browse the repository at this point in the history
The default value should be 'subtotal' in the website settings, since it
is already the case in the sales settings.

opw-766024
  • Loading branch information
nim-odoo committed Aug 23, 2017
1 parent 6956ad5 commit fa36e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/website_sale/models/res_config.py
Expand Up @@ -77,7 +77,7 @@ def _default_order_mail_template(self):
sale_show_tax = fields.Selection([
('total', 'Tax-Included Prices'),
('subtotal', 'Tax-Excluded Prices')],
"Product Prices", default='total')
"Product Prices", default='subtotal')

@api.model
def get_default_sale_delivery_settings(self, fields):
Expand Down

0 comments on commit fa36e98

Please sign in to comment.