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.
		
		
		
		
		
			
		
			
				
					
					
						
							80 lines
						
					
					
						
							3.1 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							80 lines
						
					
					
						
							3.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 models, fields, api, _ | |
| from odoo.exceptions import Warning, UserError | |
| 
 | |
| 
 | |
| class InvoiceInherit(models.Model): | |
|     _inherit = "account.move" | |
| 
 | |
|     @api.model | |
|     def _default_show_sign(self): | |
|         return self.env['ir.config_parameter'].sudo().get_param( | |
|             'digital_signature.show_digital_sign_invoice') | |
| 
 | |
|     @api.model | |
|     def _default_enable_sign(self): | |
|         return self.env['ir.config_parameter'].sudo().get_param( | |
|             'digital_signature.enable_options_invoice') | |
| 
 | |
|     @api.model | |
|     def _default_show_sign_bill(self): | |
|         return self.env['ir.config_parameter'].sudo().get_param( | |
|             'digital_signature.show_digital_sign_bill') | |
| 
 | |
|     digital_sign = fields.Binary(string='Signature') | |
|     sign_by = fields.Char(string='Signed By') | |
|     designation = fields.Char(string='Designation') | |
|     sign_on = fields.Datetime(string='Signed On') | |
|     show_signature = fields.Boolean('Show Signature', | |
|                                     default=_default_show_sign, | |
|                                     compute='_compute_show_signature') | |
|     show_sign_bill = fields.Boolean('Show Signature', | |
|                                     default=_default_show_sign_bill, | |
|                                     compute='_compute_show_sign_bill') | |
|     enable_others = fields.Boolean(default=_default_enable_sign, | |
|                                    compute='_compute_enable_others') | |
| 
 | |
|     def action_post(self): | |
|         res = super(InvoiceInherit, self).action_post() | |
|         if self.env[ | |
|             'ir.config_parameter'].sudo().get_param( | |
|             'digital_signature.confirm_sign_invoice') and self.digital_sign is False: | |
|             raise UserError(_("Signature is missing")) | |
| 
 | |
|         return res | |
| 
 | |
|     def _compute_show_signature(self): | |
|         show_signature = self._default_show_sign() | |
|         for record in self: | |
|             record.show_signature = show_signature | |
| 
 | |
|     def _compute_enable_others(self): | |
|         enable_others = self._default_enable_sign() | |
|         for record in self: | |
|             record.enable_others = enable_others | |
| 
 | |
|     def _compute_show_sign_bill(self): | |
|         show_sign_bill = self._default_show_sign_bill() | |
|         for record in self: | |
|             record.show_sign_bill = show_sign_bill
 | |
| 
 |