12345678910111213141516171819202122 |
- from openerp import fields, models, api
- class product_template(models.Model):
- _inherit = 'product.template'
- can_modify_prices = fields.Boolean(
- help='If checked all users can modify the\
- price of this product in a sale order or invoice.',
- string='Can modify prices')
- class product_pricelist(models.Model):
- _inherit = 'product.pricelist'
- sequence = fields.Integer(
- string='Sequence')
|