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.
54 lines
2.1 KiB
54 lines
2.1 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-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 api, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
"""Add loyalty in view_partner_form"""
|
|
_inherit = 'res.partner'
|
|
|
|
def action_view_claimed_rewards(self):
|
|
"""a smart button is created to view the claimed the rewards"""
|
|
order_id = self.env['pos.order'].search(
|
|
[('partner_id', '=', self.id)]).ids
|
|
return {
|
|
'type': 'ir.actions.act_window',
|
|
'name': 'Claimed Rewards',
|
|
'view_mode': 'tree,form',
|
|
'res_model': 'pos.order.line',
|
|
'domain': [('is_reward_line', '=', True),
|
|
('order_id', 'in', order_id)],
|
|
'context': "{'create': False}"
|
|
}
|
|
|
|
@api.model
|
|
def check_redemption(self, partner_id):
|
|
"""To check number of times the reward is claimed"""
|
|
order = self.env['pos.order'].search([('partner_id', '=', partner_id)])
|
|
data = []
|
|
date = []
|
|
order_line = self.env['pos.order.line'].search(
|
|
[('is_reward_line', '=', 'true'), ('order_id', 'in', order.ids)])
|
|
for line in order_line:
|
|
data.append(line.order_id.id)
|
|
date.append(line.create_date.date())
|
|
return data, date
|
|
|