mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:17:30 -04:00 
			
		
		
		
	* Implement CoreUI Interface * Core UI Navigation wire frame * UI - Fix sidebar nav - add Invoice Ninja Logo * Create layout using CoreUI admin template * Login UI, Database seeds
		
			
				
	
	
		
			34 lines
		
	
	
		
			352 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			352 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\DataMapper;
 | |
| 
 | |
| class InvoiceItem
 | |
| {
 | |
| 
 | |
|     private $qty;
 | |
| 
 | |
|     private $cost;
 | |
| 
 | |
|     private $product_key;
 | |
| 
 | |
|     private $notes;
 | |
| 
 | |
|     private $discount;
 | |
| 
 | |
|     private $is_amount_discount;
 | |
| 
 | |
|     private $tax_name1;
 | |
| 
 | |
|     private $tax_rate1;
 | |
| 
 | |
|     private $tax_name2;
 | |
| 
 | |
|     private $tax_rate2;
 | |
| 
 | |
|     private $sort_id;
 | |
| 
 | |
|     private $line_total;
 | |
| 
 | |
| 
 | |
| }
 |