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.
		
		
		
		
		
			
		
			
				
					
					
						
							190 lines
						
					
					
						
							11 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							190 lines
						
					
					
						
							11 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 models, fields, api
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class BaseDocumentLayout(models.TransientModel):
							 | 
						|
								    """
							 | 
						|
								       This model extends the 'base.document.layout' transient model to
							 | 
						|
								       incorporate additional document layout fields related to sales,
							 | 
						|
								       purchases, and company-wide settings.
							 | 
						|
								       """
							 | 
						|
								    _inherit = 'base.document.layout'
							 | 
						|
								
							 | 
						|
								    sale_document_layout_id = fields.Many2one(
							 | 
						|
								        related='company_id.sale_document_layout_id', readonly=False,
							 | 
						|
								        string="Sale Document Layout", help="This field specify the "
							 | 
						|
								                "document layout for sales associated with the company."
							 | 
						|
								        )
							 | 
						|
								
							 | 
						|
								    purchase_document_layout_id = fields.Many2one(
							 | 
						|
								        related='company_id.purchase_document_layout_id', readonly=False,
							 | 
						|
								        string="Purchase Document Layout",
							 | 
						|
								        help="This field specify the document layout for purchases associated "
							 | 
						|
								             "with the company."
							 | 
						|
								        )
							 | 
						|
								    account_document_layout_id = fields.Many2one(
							 | 
						|
								        related='company_id.account_document_layout_id', readonly=False,
							 | 
						|
								        string="Account Document Layout",
							 | 
						|
								        help="This field  specify the document layout for accounting "
							 | 
						|
								             "associated with the company."
							 | 
						|
								        )
							 | 
						|
								    stock_document_layout_id = fields.Many2one(
							 | 
						|
								        related='company_id.stock_document_layout_id', readonly=False,
							 | 
						|
								        string="Stock Document Layout",
							 | 
						|
								        help="This field specify the document layout for stock "
							 | 
						|
								             "management associated with the company. "
							 | 
						|
								        )
							 | 
						|
								
							 | 
						|
								    watermark = fields.Boolean(string='Watermark',
							 | 
						|
								                               help="This field is used to specify the document"
							 | 
						|
								                                    "layout for stock management associated "
							 | 
						|
								                                    "with the company."
							 | 
						|
								                               )
							 | 
						|
								
							 | 
						|
								    watermark_show = fields.Selection([
							 | 
						|
								        ('logo', 'Company Logo'),
							 | 
						|
								        ('name', 'Company Name'),
							 | 
						|
								    ], default='logo', string="Watermark Show",
							 | 
						|
								        help="Select the element to show as a watermark on the documents."
							 | 
						|
								    )
							 | 
						|
								
							 | 
						|
								    @api.depends('report_layout_id', 'logo', 'font', 'primary_color',
							 | 
						|
								                 'secondary_color', 'report_header', 'report_footer',
							 | 
						|
								                 'sale_document_layout_id',
							 | 
						|
								                 'stock_document_layout_id', 'account_document_layout_id',
							 | 
						|
								                 'purchase_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.sale_document_layout_id:
							 | 
						|
								                    if wizard.sale_document_layout_id == '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(
							 | 
						|
								                            'base_advanced_report_templates.report_saleorder_modern_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css})
							 | 
						|
								                    elif wizard.sale_document_layout_id == 'traditional':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_saleorder_traditional_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    elif wizard.sale_document_layout_id == 'standard':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_saleorder_standard_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    elif wizard.sale_document_layout_id == 'attractive':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_saleorder_attractive_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    else:
							 | 
						|
								                        wizard.preview = False
							 | 
						|
								                if wizard.purchase_document_layout_id:
							 | 
						|
								                    if wizard.purchase_document_layout_id == '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(
							 | 
						|
								                            'base_advanced_report_templates.report_purchaseorder_modern_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css})
							 | 
						|
								                    elif wizard.purchase_document_layout_id == 'traditional':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_purchaseorder_traditional_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    elif wizard.purchase_document_layout_id == 'standard':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_purchaseorder_standard_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    elif wizard.purchase_document_layout_id == 'attractive':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_purchaseorder_attractive_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    else:
							 | 
						|
								                        wizard.preview = False
							 | 
						|
								                if wizard.account_document_layout_id:
							 | 
						|
								                    if wizard.account_document_layout_id == '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(
							 | 
						|
								                            'base_advanced_report_templates.report_account_modern_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css})
							 | 
						|
								                    elif wizard.account_document_layout_id == 'traditional':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_account_traditional_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    elif wizard.account_document_layout_id == 'standard':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_account_standard_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    elif wizard.account_document_layout_id == 'attractive':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_account_attractive_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    else:
							 | 
						|
								                        wizard.preview = False
							 | 
						|
								                if wizard.stock_document_layout_id:
							 | 
						|
								                    if wizard.stock_document_layout_id == '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(
							 | 
						|
								                            'base_advanced_report_templates.report_stock_modern_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css})
							 | 
						|
								                    elif wizard.stock_document_layout_id == 'traditional':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_stock_traditional_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    elif wizard.stock_document_layout_id == 'standard':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_stock_standard_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    elif wizard.stock_document_layout_id == 'attractive':
							 | 
						|
								                        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(
							 | 
						|
								                            'base_advanced_report_templates.report_stock_attractive_document',
							 | 
						|
								                            {'company': wizard, 'preview_css': preview_css, })
							 | 
						|
								                    else:
							 | 
						|
								                        wizard.preview = False
							 | 
						|
								            else:
							 | 
						|
								                wizard.preview = False
							 | 
						|
								
							 |