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.
53 lines
2.1 KiB
53 lines
2.1 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 api, models, fields
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
"""Inherited sale order model"""
|
|
_inherit = "account.move"
|
|
|
|
is_subscription = fields.Boolean(string='Is Subscription', default=False)
|
|
subscription_id = fields.Many2one('subscription.package',
|
|
string='Subscription')
|
|
|
|
@api.model_create_multi
|
|
def create(self, vals_list):
|
|
""" It displays subscription in account move """
|
|
for rec in vals_list:
|
|
so_id = self.env['sale.order'].search(
|
|
[('name', '=', rec.get('invoice_origin'))])
|
|
if so_id.is_subscription is True:
|
|
new_vals_list = [{'is_subscription': True,
|
|
'subscription_id': so_id.subscription_id.id}]
|
|
vals_list[0].update(new_vals_list[0])
|
|
return super().create(vals_list)
|
|
|
|
|
|
class Product(models.Model):
|
|
"""Inherited product template model"""
|
|
_inherit = "product.template"
|
|
|
|
is_subscription = fields.Boolean(string='Is Subscription', default=False)
|
|
subscription_plan_id = fields.Many2one('subscription.package.plan',
|
|
string='Subscription Plan')
|
|
|