add calculate base expenses migration

This commit is contained in:
jayvirsinh_gohil
2021-12-09 11:32:41 +05:30
parent 2b05ca44bf
commit f2790e8cf0

View File

@ -0,0 +1,45 @@
<?php
use Crater\Models\CompanySetting;
use Crater\Models\Expense;
use Crater\Models\User;
use Illuminate\Database\Migrations\Migration;
class CalculateBaseValuesForExpenses extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$user = User::where('role', 'super admin')->first();
if ($user) {
$companyId = $user->companies()->first()->id;
$currency_id = CompanySetting::getSetting('currency', $companyId);
$expenses = Expense::where('company_id', $companyId)->where('currency_id', null)->get();
if ($expenses) {
$expenses->map(function ($expense) use ($currency_id) {
$expense->update([
'currency_id' => $currency_id,
'exchange_rate' => 1,
'base_amount' => $expense->amount,
]);
});
}
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}