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.
		
		
		
		
		
			
		
			
				
					
					
						
							78 lines
						
					
					
						
							3.6 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							78 lines
						
					
					
						
							3.6 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################# | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |
| #    Author: Ajith V(<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, models, fields | |
| 
 | |
| 
 | |
| class BaseDocumentLayout(models.TransientModel): | |
|     """Inheriting the base document layout model""" | |
|     _inherit = 'base.document.layout' | |
| 
 | |
|     base_layout = fields.Selection( | |
|         related='company_id.base_layout', | |
|         readonly=False, | |
|         help="Base layout selection field inside " | |
|              "document layout model") | |
|     document_layout_id = fields.Many2one( | |
|         related='company_id.document_layout_id', readonly=False, | |
|         help="custom document layouts") | |
| 
 | |
|     @api.depends('report_layout_id', 'logo', 'font', 'primary_color', | |
|                  'secondary_color', 'report_header', 'report_footer', | |
|                  'base_layout', 'document_layout_id') | |
|     def _compute_preview(self): | |
|         """ compute a qweb based preview to display on the wizard """ | |
|         styles = self._get_asset_style() | |
|         for wizard in self: | |
|             if wizard.report_layout_id: | |
|                 if wizard.base_layout == 'default': | |
|                     preview_css = self._get_css_for_preview(styles, wizard.id) | |
|                     ir_ui_view = wizard.env['ir.ui.view'] | |
|                     wizard.preview = ir_ui_view._render_template( | |
|                         'web.report_invoice_wizard_preview', | |
|                         {'company': wizard, 'preview_css': preview_css}) | |
|                 elif wizard.base_layout == 'normal': | |
|                     preview_css = self._get_css_for_preview(styles, wizard.id) | |
|                     ir_ui_view = wizard.env['ir.ui.view'] | |
|                     wizard.preview = ir_ui_view._render_template( | |
|                         'invoice_format_editor.report_preview_normal', | |
|                         {'company': wizard, 'preview_css': preview_css, }) | |
|                 elif wizard.base_layout == 'modern': | |
|                     preview_css = self._get_css_for_preview(styles, wizard.id) | |
|                     ir_ui_view = wizard.env['ir.ui.view'] | |
|                     wizard.preview = ir_ui_view._render_template( | |
|                         'invoice_format_editor.report_preview_modern', | |
|                         {'company': wizard, 'preview_css': preview_css, }) | |
|                 elif wizard.base_layout == 'old': | |
|                     preview_css = self._get_css_for_preview(styles, wizard.id) | |
|                     ir_ui_view = wizard.env['ir.ui.view'] | |
|                     wizard.preview = ir_ui_view._render_template( | |
|                         'invoice_format_editor.report_preview_old', | |
|                         {'company': wizard, 'preview_css': preview_css, }) | |
|                 else: | |
|                     wizard.preview = False | |
|             else: | |
|                 wizard.preview = False | |
| 
 | |
|     @api.onchange('paperformat_id') | |
|     def _onchange_paperformat_id(self): | |
|         if self.paperformat_id.id == 3: | |
|             self.base_layout = 'default'
 | |
| 
 |