res_users.py 382 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo import fields, models
  4. class ResUsers(models.Model):
  5. _inherit = 'res.users'
  6. last_lunch_location_id = fields.Many2one('lunch.location')
  7. favorite_lunch_product_ids = fields.Many2many('lunch.product', 'lunch_product_favorite_user_rel', 'user_id', 'product_id')