12345678910111213141516171819202122232425262728 |
- from openerp import models, fields
- class PosPriceListConfig(models.Model):
- _inherit = 'pos.config'
- display_price_with_taxes = fields.Boolean(
- string='Price With Taxes',
- help="Display Prices with taxes on POS"
- )
|