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.
		
		
		
		
		
			
		
			
				
					
					
						
							135 lines
						
					
					
						
							7.4 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							135 lines
						
					
					
						
							7.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 models, api | |
| 
 | |
| 
 | |
| class AccountAccountCustom(models.Model): | |
|     _inherit = 'account.account' | |
| 
 | |
|     @api.model | |
|     def create(self, vals): | |
|         res = super(AccountAccountCustom, self).create(vals) | |
|         if res.account_type.startswith("asset"): | |
|             for record in self.env['account.financial.report'].search( | |
|                     [('type', '=', 'account_type')]): | |
|                 if (record.get_metadata()[0].get('xmlid') == | |
|                         'base_accounting_kit.account_financial_report_assets0'): | |
|                     record.write({"account_ids": [(4, res.id)]}) | |
|         elif res.account_type.startswith( | |
|                 "liability") or res.account_type == "equity": | |
|             for record in self.env['account.financial.report'].search( | |
|                     [('type', '=', 'account_type')]): | |
|                 if (record.get_metadata()[0].get('xmlid') == | |
|                         'base_accounting_kit' | |
|                         '.account_financial_report_liability0'): | |
|                     record.write({"account_ids": [(4, res.id)]}) | |
|         elif res.account_type in ['expense', 'expense_depreciation']: | |
|             for record in self.env['account.financial.report'].search( | |
|                     [('type', '=', 'account_type')]): | |
|                 if (record.get_metadata()[0].get('xmlid') == | |
|                         'base_accounting_kit.account_financial_report_expense0'): | |
|                     record.write({"account_ids": [(4, res.id)]}) | |
|         elif res.account_type == "expense_direct_cost": | |
|             for record in self.env['account.financial.report'].search( | |
|                     [('type', '=', 'account_type')]): | |
|                 if (record.get_metadata()[0].get('xmlid') == | |
|                         'base_accounting_kit.financial_report_cost_of_revenue'): | |
|                     record.write({"account_ids": [(4, res.id)]}) | |
|         elif res.account_type in ['income', 'equity_unaffected']: | |
|             for record in self.env['account.financial.report'].search( | |
|                     [('type', '=', 'account_type')]): | |
|                 if (record.get_metadata()[0].get('xmlid') == | |
|                         'base_accounting_kit' | |
|                         '.account_financial_report_operating_income0'): | |
|                     record.write({"account_ids": [(4, res.id)]}) | |
|         elif res.account_type == 'income_other': | |
|             for record in self.env['account.financial.report'].search( | |
|                     [('type', '=', 'account_type')]): | |
|                 if (record.get_metadata()[0].get('xmlid') == | |
|                         'base_accounting_kit' | |
|                         '.account_financial_report_other_income0'): | |
|                     record.write({"account_ids": [(4, res.id)]}) | |
|         return res | |
| 
 | |
|     @api.onchange('account_type') | |
|     def onchange_account_type(self): | |
|         for record in self.env['account.financial.report'].search( | |
|                 [('type', '=', 'account_type')]): | |
|             for rec in record.account_ids: | |
|                 if rec.id == self._origin.id: | |
|                     record.write({"account_ids": [(3, rec.id)]}) | |
|                     if self.account_type.startswith("asset"): | |
|                         for record1 in self.env[ | |
|                             'account.financial.report'].search([( | |
|                                 'type', '=', 'account_type')]): | |
|                             if (record1.get_metadata()[0].get('xmlid') == | |
|                                     'base_accounting_kit' | |
|                                     '.account_financial_report_assets0'): | |
|                                 record1.write( | |
|                                     {"account_ids": [(4, self._origin.id)]}) | |
|                     elif self.account_type.startswith( | |
|                             "liability") or self.account_type == "equity": | |
|                         for record1 in self.env[ | |
|                             'account.financial.report'].search([( | |
|                                 'type', '=', 'account_type')]): | |
|                             if (record1.get_metadata()[0].get('xmlid') == | |
|                                     'base_accounting_kit' | |
|                                     '.account_financial_report_liability0'): | |
|                                 record1.write( | |
|                                     {"account_ids": [(4, self._origin.id)]}) | |
|                     elif self.account_type in ['expense', | |
|                                                'expense_depreciation']: | |
|                         for record1 in self.env[ | |
|                             'account.financial.report'].search([( | |
|                                 'type', '=', 'account_type')]): | |
|                             if (record1.get_metadata()[0].get('xmlid') == | |
|                                     'base_accounting_kit' | |
|                                     '.account_financial_report_expense0'): | |
|                                 record1.write( | |
|                                     {"account_ids": [(4, self._origin.id)]}) | |
|                     elif self.account_type == "expense_direct_cost": | |
|                         for record1 in self.env[ | |
|                             'account.financial.report'].search([( | |
|                                 'type', '=', 'account_type')]): | |
|                             if (record1.get_metadata()[0].get('xmlid') == | |
|                                     'base_accounting_kit' | |
|                                     '.financial_report_cost_of_revenue'): | |
|                                 record1.write( | |
|                                     {"account_ids": [(4, self._origin.id)]}) | |
|                     elif self.account_type in ['income', 'equity_unaffected']: | |
|                         for record1 in self.env[ | |
|                             'account.financial.report'].search([( | |
|                                 'type', '=', 'account_type')]): | |
|                             if (record1.get_metadata()[0].get('xmlid') == | |
|                                     'base_accounting_kit' | |
|                                     '.account_financial_report_operating_income0'): | |
|                                 record1.write( | |
|                                     {"account_ids": [(4, self._origin.id)]}) | |
|                     elif self.account_type == 'income_other': | |
|                         for record1 in self.env[ | |
|                             'account.financial.report'].search([( | |
|                                 'type', '=', 'account_type')]): | |
|                             if (record1.get_metadata()[0].get('xmlid') == | |
|                                     'base_accounting_kit' | |
|                                     '.account_financial_report_other_income0'): | |
|                                 record1.write( | |
|                                     {"account_ids": [(4, self._origin.id)]})
 | |
| 
 |