mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 01:54:32 -04:00
Merge pull request #4539 from turbo124/v5-develop
Fixes for seeding countries
This commit is contained in:
commit
31df96b8c6
@ -195,10 +195,10 @@ class CountriesSeeder extends Seeder
|
||||
$country->swap_currency_symbol = true;
|
||||
}
|
||||
if (isset($data['thousand_separator'])) {
|
||||
$country->thousand_separator = $data['thousand_separator'];
|
||||
$country->thousand_separator = $data['thousand_separator'] ?: '';
|
||||
}
|
||||
if (isset($data['decimal_separator'])) {
|
||||
$country->decimal_separator = $data['decimal_separator'];
|
||||
$country->decimal_separator = $data['decimal_separator'] ?: '';
|
||||
}
|
||||
$country->save();
|
||||
}
|
||||
|
@ -3329,5 +3329,7 @@ return [
|
||||
|
||||
'setup_steps_notice' => 'To proceed to next step, make sure you test each section.',
|
||||
|
||||
'setup_phantomjs_note' => 'Note about Phantom JS. Read more.'
|
||||
'setup_phantomjs_note' => 'Note about Phantom JS. Read more.',
|
||||
'currency_armenian_dram' => 'Armenian Dram',
|
||||
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user