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.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							625 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							19 lines
						
					
					
						
							625 B
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								##############################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#    Copyright (C) 2017-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)
							 | 
						|
								
							 |