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.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							601 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							18 lines
						
					
					
						
							601 B
						
					
					
				| ############################################################################## | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| #    Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). | |
| #    Maintainer: Cybrosys Technologies (<https://www.cybrosys.com>) | |
| # | |
| ############################################################################## | |
| 
 | |
| from odoo import models, fields | |
| 
 | |
| 
 | |
| class TestingUnit(models.Model): | |
|     _name = 'test.unit' | |
|     _rec_name = 'code' | |
|     _description = "Test Unit" | |
| 
 | |
|     unit = fields.Char(string="Unit", required=True) | |
|     code = fields.Char(string="code", required=True)
 | |
| 
 |