mirror of
				https://github.com/python-escpos/python-escpos
				synced 2025-10-23 09:30:00 +00:00 
			
		
		
		
	Fix CODE39 barcodes. Assume Code128 are the same
This commit is contained in:
		
				
					committed by
					
						
						Davis Goglin
					
				
			
			
				
	
			
			
			
						parent
						
							ee223670bf
						
					
				
				
					commit
					28b82fb54f
				
			@@ -24,7 +24,7 @@ DEMO_FUNCTIONS = {
 | 
			
		||||
        {'bc': 'UPC-E', 'code': '132435'},
 | 
			
		||||
        {'bc': 'EAN13', 'code': '1324354657687'},
 | 
			
		||||
        {'bc': 'EAN8', 'code': '1324354'},
 | 
			
		||||
        {'bc': 'CODE39', 'code': '*TEST*'},
 | 
			
		||||
        {'bc': 'CODE39', 'code': 'TEST'},
 | 
			
		||||
        {'bc': 'ITF', 'code': '55867492279103'},
 | 
			
		||||
        {'bc': 'NW7', 'code': 'A00000000A'},
 | 
			
		||||
    ],
 | 
			
		||||
@@ -33,14 +33,14 @@ DEMO_FUNCTIONS = {
 | 
			
		||||
        {'bc': 'UPC-E', 'code': '132435', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'EAN13', 'code': '1324354657687', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'EAN8', 'code': '1324354', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE39', 'code': '*TEST*', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE39', 'code': 'TEST', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'ITF', 'code': '55867492279103', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'NW7', 'code': 'A00000000A', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE93', 'code': 'A00000000A', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE93', 'code': '1324354657687', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE128A', 'code': '*TEST*', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE128B', 'code': '*TEST*', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE128C', 'code': '*TEST*', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE128A', 'code': 'TEST', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE128B', 'code': 'TEST', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'CODE128C', 'code': 'TEST', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'GS1-128', 'code': '00123456780000000001', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'GS1 DataBar Omnidirectional', 'code': '0000000000000', 'function_type': 'B'},
 | 
			
		||||
        {'bc': 'GS1 DataBar Truncated', 'code': '0000000000000', 'function_type': 'B'},
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user