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.
		
		
		
		
		
			
		
			
				
					
					
						
							67 lines
						
					
					
						
							2.5 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							67 lines
						
					
					
						
							2.5 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 PurchaseOrderInherit(models.Model): | |
|     _inherit = "purchase.order" | |
| 
 | |
|     @api.model | |
|     def _default_show_sign(self): | |
|         return self.env['ir.config_parameter'].sudo().get_param( | |
|             'digital_signature.show_digital_sign_po') | |
| 
 | |
|     @api.model | |
|     def _default_enable_sign(self): | |
|         return self.env['ir.config_parameter'].sudo().get_param( | |
|             'digital_signature.enable_options_po') | |
| 
 | |
|     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') | |
|     enable_others = fields.Boolean(default=_default_enable_sign, | |
|                                    compute='_compute_enable_others') | |
| 
 | |
|     def button_confirm(self): | |
|         res = super(PurchaseOrderInherit, self).button_confirm() | |
|         if self.env[ | |
|             'ir.config_parameter'].sudo().get_param( | |
|             'digital_signature.confirm_sign_po') 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
 | |
| 
 |