product.py 602 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. # For copyright and license notices, see __openerp__.py file in module root
  4. # directory
  5. ##############################################################################
  6. from openerp import models, fields
  7. class ProductTemplate(models.Model):
  8. _inherit = 'product.template'
  9. store_id = fields.Many2one(
  10. 'res.store',
  11. 'Store'
  12. )
  13. class ProductPricelist(models.Model):
  14. _inherit = 'product.pricelist'
  15. store_id = fields.Many2one(
  16. 'res.store',
  17. 'Store'
  18. )