You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.4 KiB
61 lines
2.4 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import fields, models, api, _
|
|
|
|
|
|
class HotelMeals(models.Model):
|
|
_name = 'hotel.meals'
|
|
_description = 'Meals'
|
|
|
|
meal_type_id = fields.Many2one('meal.types', string='Type', required=True, ondelete="cascade")
|
|
product_id = fields.Many2one('product.product', "Meal", required=True, delegate=True, ondelete="cascade")
|
|
manager_id = fields.Many2one("res.users", string='Manager')
|
|
|
|
|
|
@api.model
|
|
def create(self, vals):
|
|
if "meal_type_id" in vals:
|
|
prod = self.env["meal.types"].browse(vals["meal_type_id"])
|
|
vals.update({"categ_id": prod.product_categ_id.id, 'meals_ok': True})
|
|
return super(HotelMeals, self).create(vals)
|
|
|
|
def write(self, vals):
|
|
if "meal_type_id" in vals:
|
|
prod = self.env["meal.types"].browse(vals["meal_type_id"])
|
|
vals.update({"categ_id": prod.product_categ_id.id})
|
|
return super(HotelMeals, self).write(vals)
|
|
|
|
def unlink(self):
|
|
rec = self.env["product.product"].sudo().browse(self.product_id.id)
|
|
rec.unlink()
|
|
return super(HotelMeals, self).unlink()
|
|
|
|
@api.returns('self', lambda value: value.id)
|
|
def copy(self, default=None):
|
|
"""For adding '(copy)' string into name while duplicating a record"""
|
|
|
|
self.ensure_one()
|
|
if default is None:
|
|
default = {}
|
|
if 'name' not in default:
|
|
default['name'] = _("%s (copy)", self.name)
|
|
return super(HotelMeals, self).copy(default=default)
|