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.
46 lines
2.0 KiB
46 lines
2.0 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2025-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: SREERAG PM (<https://www.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 AccountMove(models.Model):
|
|
"""Inherited sale order model"""
|
|
_inherit = "account.move"
|
|
|
|
is_subscription = fields.Boolean(string='Is Subscription', default=False,
|
|
help='Is subscription')
|
|
subscription_id = fields.Many2one('subscription.package',
|
|
string='Subscription',
|
|
help='Choose subscription package')
|
|
|
|
@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:
|
|
so_id.subscription_id.start_date = so_id.subscription_id.next_invoice_date
|
|
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)
|
|
|