1db90cce48
including dividends when importing
45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Imports\Sheets;
|
|
|
|
use App\Console\Commands\SyncDailyChange;
|
|
use App\Models\Portfolio;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Maatwebsite\Excel\Concerns\ToCollection;
|
|
use Maatwebsite\Excel\Concerns\SkipsEmptyRows;
|
|
use Maatwebsite\Excel\Concerns\WithHeadingRow;
|
|
use Maatwebsite\Excel\Concerns\WithValidation;
|
|
|
|
class PortfoliosSheet implements ToCollection, WithValidation, WithHeadingRow, SkipsEmptyRows
|
|
{
|
|
public function collection(Collection $portfolios)
|
|
{
|
|
foreach ($portfolios as $index => $portfolio) {
|
|
|
|
Portfolio::unguard();
|
|
|
|
$portfolio = Portfolio::updateOrCreate([
|
|
'id' => $portfolio['portfolio_id']
|
|
], [
|
|
'id' => $portfolio['portfolio_id'] ?? null,
|
|
'title' => $portfolio['title'],
|
|
'wishlist' => $portfolio['wishlist'] ?? false,
|
|
'notes' => $portfolio['notes'],
|
|
]);
|
|
|
|
Artisan::queue(SyncDailyChange::class, ['portfolio_id' => $portfolio->id])->delay(30 + ($index * 10));
|
|
}
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'portfolio_id' => ['sometimes', 'nullable'],
|
|
'title' => ['required', 'string'],
|
|
'wishlist' => ['sometimes', 'nullable', 'boolean'],
|
|
'notes' => ['sometimes', 'nullable', 'string'],
|
|
];
|
|
}
|
|
}
|