mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
Encrypt bill amounts [skip ci]
This commit is contained in:
parent
676e48254a
commit
ca46ebe3b2
@ -153,12 +153,34 @@ class Cleanup
|
||||
/** @var Account $entry */
|
||||
foreach ($set as $entry) {
|
||||
$count++;
|
||||
$amount = $entry->amount;
|
||||
$amount = $entry->amount;
|
||||
$entry->virtual_balance = $amount;
|
||||
$entry->save();
|
||||
}
|
||||
unset($set, $entry, $amount);
|
||||
|
||||
// encrypt bill amount_min
|
||||
$set = Bill::whereNull('amount_min_encrypted')->take(5)->get();
|
||||
/** @var Bill $entry */
|
||||
foreach ($set as $entry) {
|
||||
$count++;
|
||||
$amount = $entry->amount_min;
|
||||
$entry->amount_min = $amount;
|
||||
$entry->save();
|
||||
}
|
||||
unset($set, $entry, $amount);
|
||||
|
||||
// encrypt bill amount_max
|
||||
$set = Bill::whereNull('amount_max_encrypted')->take(5)->get();
|
||||
/** @var Bill $entry */
|
||||
foreach ($set as $entry) {
|
||||
$count++;
|
||||
$amount = $entry->amount_max;
|
||||
$entry->amount_max = $amount;
|
||||
$entry->save();
|
||||
}
|
||||
unset($set, $entry, $amount);
|
||||
|
||||
//encrypt budget limit amount
|
||||
//encrypt limit repetition amount
|
||||
//encrypt piggy bank event amount
|
||||
|
Loading…
Reference in New Issue
Block a user