| <?php |
| |
| namespace App\Imports; |
| |
| use App\Services\BalanceSheetService; |
| |
| use Illuminate\Support\Collection; |
| use Maatwebsite\Excel\Concerns\ToCollection; |
| use App\Models\Client; |
| use App\Models\BalanceSheet; |
| |
| use App\Helpers\BalanceSheetHelper; |
| |
| class BalanceSheetImport implements ToCollection |
| { |
| |
| |
| |
| |
| |
| |
| protected $client; |
| protected $period; |
| protected $fileLayout; |
| protected $loggedUserId; |
| protected $fileId; |
| protected $fileName; |
| private $rows = 0; |
| private $emptyField = 0; |
| private $wrongFormat = "no"; |
| |
| |
| public function __construct($client, $period, $fileLayout, $loggedUserId, $fileName){ |
| |
| $this->client = $client; |
| $this->period = $period; |
| $this->fileLayout = $fileLayout; |
| $this->loggedUserId = $loggedUserId; |
| $this->fileName = $fileName; |
| } |
| |
| public function collection(Collection $rows) |
| { |
| |
| $formatedSpreedsheet = BalanceSheetService::formatSpreedsheetToArray($rows, $this->fileLayout); |
| |
| if($formatedSpreedsheet === "falhalayoutcolunas") |
| { |
| $this->wrongFormat = "yes"; |
| return false; |
| exit(); |
| } |
| |
| |
| |
| $this->emptyField = BalanceSheetHelper::verifyEmptyField($formatedSpreedsheet); |
| |
| if($this->emptyField === 0) |
| { |
| |
| $this->client->balanceSheets()->where('period', $this->period)->delete(); |
| |
| |
| $fileId = md5(time() . rand(0, 9999) . time()); |
| print_r($fileId); |
| |
| |
| foreach($formatedSpreedsheet as $row) |
| { |
| ++$this->rows; |
| |
| $data = [ |
| 'code' => $row['code'], |
| 'classification' => $row['classification'], |
| 'description' => $row['description'], |
| 'period' => $this->period, |
| 'prior_balance' => $row['prior_balance'], |
| 'debit' => $row['debit'], |
| 'credit' => $row['credit'], |
| 'current_balance' => $row['current_balance'], |
| 'file_id' => $fileId, |
| 'file_name' => $this->fileName, |
| 'importing_user_id' => $this->loggedUserId, |
| ]; |
| |
| $this->client->balanceSheets()->create($data); |
| |
| } |
| } |
| |
| return true; |
| |
| |
| } |
| |
| |
| public function getRowCount(): int |
| { |
| return $this->rows; |
| } |
| |
| |
| public function getEmptyFieldCount(): int |
| { |
| return $this->emptyField; |
| } |
| |
| |
| public function getWrongFormat(): string |
| { |
| return $this->wrongFormat; |
| } |
| |
| } |