mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Remove recurring transactions [skip ci]
This commit is contained in:
parent
95e34af6ef
commit
0ef52bf909
@ -90,7 +90,6 @@ class TestDataSeeder extends Seeder
|
|||||||
$this->createCategories();
|
$this->createCategories();
|
||||||
$this->createPiggyBanks();
|
$this->createPiggyBanks();
|
||||||
$this->createReminders();
|
$this->createReminders();
|
||||||
$this->createRecurringTransactions();
|
|
||||||
$this->createBills();
|
$this->createBills();
|
||||||
$this->createExpenseAccounts();
|
$this->createExpenseAccounts();
|
||||||
$this->createRevenueAccounts();
|
$this->createRevenueAccounts();
|
||||||
@ -357,34 +356,6 @@ class TestDataSeeder extends Seeder
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function createRecurringTransactions()
|
|
||||||
{
|
|
||||||
// account
|
|
||||||
$savings = Account::whereName('Savings account')->orderBy('id', 'DESC')->first();
|
|
||||||
$user = User::whereEmail('thegrumpydictator@gmail.com')->first();
|
|
||||||
|
|
||||||
$recurring = PiggyBank::create(
|
|
||||||
[
|
|
||||||
'account_id' => $savings->id,
|
|
||||||
'name' => 'Nieuwe spullen',
|
|
||||||
'targetamount' => 1000,
|
|
||||||
'startdate' => $this->som,
|
|
||||||
'targetdate' => $this->eom,
|
|
||||||
'repeats' => 1,
|
|
||||||
'rep_length' => 'month',
|
|
||||||
'rep_every' => 0,
|
|
||||||
'rep_times' => 0,
|
|
||||||
'reminder' => 'month',
|
|
||||||
'reminder_skip' => 0,
|
|
||||||
'remind_me' => 1,
|
|
||||||
'order' => 0,
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user