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.
 
 
 
 
 

73 lines
3.2 KiB

# -*- coding: utf-8 -*-
###############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Farook Al Ameen (odoo@cybrosys.com)
#
# You can modify it under the terms of the GNU AFFERO
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
#
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
###############################################################################
from odoo import api, fields, models
class PosConfig(models.Model):
"""Set the Birthday discount fields in pos_config model"""
_inherit = 'pos.config'
birthday_discount = fields.Boolean(string="Birthday Discount",
help="Enable this field to activate "
"birthday discount")
discount = fields.Float(string="Discount", help="Percentage of birthday "
"discount")
first_order = fields.Boolean(string="Only Apply the discount on the first "
"order on Birthday",
help="Restrict discount to apply only on "
"first order on birthday")
@api.model
def check_pos_order(self, partner, first_order):
"""Check if it is the birthday of partner and if no other pos order
is created by partner on birthday(only if these fields are enabled in
settings).
:param partner: id of the partner
:param first_order: Field 'apply only on first order' is
enabled in settings or not.
:return: True value if current day is partner birthday and if it is
not the first order of partner.
"""
data = {'order': 'False'}
partner_id = self.env['res.partner'].browse(partner)
# Extract the day and month from the partner's birthdate
if partner_id.birthdate:
birth_day = partner_id.birthdate.day
birth_month = partner_id.birthdate.month
# Extract the current day and month
today = fields.Date.today()
today_day = today.day
today_month = today.month
# Check if the current day and month match the birthdate
if birth_day == today_day and birth_month == today_month:
data['birthday'] = 'True'
# If first_order is enabled, check if the partner has already placed an order today
if first_order:
for rec in self.env['pos.order'].search([('partner_id', '=', partner)]):
if today == rec.date_order.date():
data['order'] = 'True'
break
return data