17 lines
		
	
	
		
			679 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			679 B
		
	
	
	
		
			Python
		
	
	
| # Copyright 2019-Today Tischlerzentrum gmbh (<http://www.tzaustria.at>)
 | |
| # License OPL-1 or later (https://www.odoo.com/documentation/user/11.0/legal/licenses/licenses.html#licenses).
 | |
| 
 | |
| from odoo import api, fields, models
 | |
| 
 | |
| 
 | |
| class ConfirmationQueue(models.Model):
 | |
|     _name = 'res.confirmation_queue'
 | |
|     _description = 'Queue for Order Confirmation No.'
 | |
|     _order = 'confirmation_nr'
 | |
| 
 | |
|     confirmation_nr = fields.Char(string="Freigabenummer", required=True)
 | |
|     origin = fields.Char(string="Referenzbeleg", required=True)
 | |
|     confirmation_date = fields.Datetime(string="Freigabe-Datum")
 | |
|     confirmation_processed = fields.Boolean(string="Freigabe-Verarbeitet", default=False)
 | |
| 
 |