mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 13:07:32 -04:00 
			
		
		
		
	Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the code style applied by adding a [PHP CS Fixer][1] or [PHP CodeSniffer][2] ruleset to your project root. Feel free to use [Shift's Laravel ruleset][3] to help you get started. For more information on customizing the code style applied by Shift, [watch this short video][4]. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://github.com/squizlabs/PHP_CodeSniffer [3]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200 [4]: https://laravelshift.com/videos/shift-code-style
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * client Ninja (https://clientninja.com).
 | |
|  *
 | |
|  * @link https://github.com/clientninja/clientninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2022. client Ninja LLC (https://clientninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Import\Transformer\Wave;
 | |
| 
 | |
| use App\Import\ImportException;
 | |
| use App\Import\Transformer\BaseTransformer;
 | |
| 
 | |
| /**
 | |
|  * Class ExpenseTransformer.
 | |
|  */
 | |
| class ExpenseTransformer extends BaseTransformer
 | |
| {
 | |
|     /**
 | |
|      * @param $line_items_data
 | |
|      *
 | |
|      * @return bool|array
 | |
|      */
 | |
|     public function transform($line_items_data)
 | |
|     {
 | |
|         $data = $line_items_data[0];
 | |
| 
 | |
|         $amount = 0;
 | |
|         $total_tax = 0;
 | |
|         $tax_rate = 0;
 | |
| 
 | |
|         foreach ($line_items_data as $record) {
 | |
|             $amount += floatval($record['Amount (One column)']);
 | |
|             $total_tax += floatval($record['Sales Tax Amount']);
 | |
|         }
 | |
| 
 | |
|         $tax_rate = round(($total_tax / $amount) * 100, 3);
 | |
| 
 | |
|         $transformed = [
 | |
|             'company_id'  => $this->company->id,
 | |
|             'vendor_id'   => $this->getVendorIdOrCreate($this->getString($data, 'Vendor')),
 | |
|             'number' 	  => $this->getString($data, 'Bill Number'),
 | |
|             'public_notes'=> $this->getString($data, 'Notes / Memo'),
 | |
|             'date'        => date('Y-m-d', strtotime($data['Transaction Date Added'])) ?: now()->format('Y-m-d'), //27-01-2022
 | |
|             'currency_id' => $this->company->settings->currency_id,
 | |
|             'category_id' => $this->getOrCreateExpenseCategry($data['Account Name']),
 | |
|             'amount'	  => $amount,
 | |
|             'tax_name1'   => $data['Sales Tax Name'],
 | |
|             'tax_rate1'	  => $tax_rate,
 | |
|         ];
 | |
| 
 | |
|         return $transformed;
 | |
|     }
 | |
| }
 |