clean up scheduled commands

also add comments to each command
This commit is contained in:
hackerESQ
2024-09-05 21:21:18 -05:00
parent 6f63ac7067
commit 8511cc833d
12 changed files with 51 additions and 35 deletions
-1
View File
@@ -22,7 +22,6 @@ class Dividend extends Model
protected $casts = [
'date' => 'datetime',
'first_date' => 'datetime',
'last_date' => 'datetime',
];
-2
View File
@@ -25,12 +25,10 @@ class Holding extends Model
'realized_gain_dollars',
'dividends_earned',
'splits_synced_at',
'dividends_synced_at'
];
protected $casts = [
'splits_synced_at' => 'datetime',
'dividends_synced_at' => 'datetime',
];
protected $attributes = [
+9 -9
View File
@@ -24,7 +24,6 @@ class Split extends Model
protected $casts = [
'date' => 'datetime',
'first_date' => 'datetime',
'last_date' => 'datetime',
];
@@ -48,7 +47,6 @@ class Split extends Model
// dates for split data
$splits_meta = self::where(['symbol' => $symbol])
->selectRaw('COUNT(symbol) as total_splits')
->selectRaw('MIN(date) as first_date')
->selectRaw('MAX(date) as last_date')
->get()
->first();
@@ -76,8 +74,6 @@ class Split extends Model
// sync to transactions
self::syncToTransactions($symbol);
return $split_data;
}
/**
@@ -92,7 +88,7 @@ class Split extends Model
$splits = self::where([
'splits.symbol' => $symbol,
])
->whereDate('transactions.date', '>', DB::raw('IFNULL(market_data.splits_synced_to_holdings_at, "0000-00-00")'))
->whereDate('transactions.date', '>', DB::raw('IFNULL(holdings.splits_synced_at, "0000-00-00")'))
->select([
'splits.date',
'splits.symbol',
@@ -100,7 +96,7 @@ class Split extends Model
'transactions.portfolio_id'
])
->join('transactions', 'transactions.symbol', 'splits.symbol')
->join('market_data', 'transactions.symbol', 'market_data.symbol')
->join('holdings', 'transactions.symbol', 'holdings.symbol')
->orderBy('splits.date', 'ASC')
->get();
@@ -126,11 +122,15 @@ class Split extends Model
'created_at' => now(),
'updated_at' => now()
]);
Holding::where([
'symbol' => $split->symbol,
'portfolio_id' => $split->portfolio_id
])->update([
'splits_synced_at' => now()
]);
}
}
// // update market data with latest date
// MarketData::setSplitsHoldingSynced($symbol);
}
+3 -2
View File
@@ -17,6 +17,7 @@ class Transaction extends Model
protected $fillable = [
'symbol',
'date',
'portfolio_id',
'transaction_type',
'quantity',
'cost_basis',
@@ -48,14 +49,14 @@ class Transaction extends Model
$transaction->refreshMarketData();
cache()->tags(['metrics', auth()->user()->id])->flush();
cache()->tags(['metrics', $transaction->portfolio_id])->flush();
});
static::deleted(function ($transaction) {
$transaction->syncToHolding();
cache()->tags(['metrics', auth()->user()->id])->flush();
cache()->tags(['metrics', $transaction->portfolio_id])->flush();
});
}