First set of code for #956

This commit is contained in:
James Cole
2017-12-01 20:11:29 +01:00
parent 382c5e5760
commit 8a59380c6d
5 changed files with 125 additions and 7 deletions

View File

@@ -113,6 +113,8 @@ class Initial implements ConfigurationInterface
$config['date-format'] = $data['date_format'];
$config['delimiter'] = $data['csv_delimiter'];
$config['delimiter'] = 'tab' === $config['delimiter'] ? "\t" : $config['delimiter'];
$config['apply_rules'] = isset($data['apply_rules']) && 1 === intval($data['apply_rules']) ? true : false;
$config['match_bills'] = isset($data['match_bills']) && 1 === intval($data['match_bills']) ? true : false;
Log::debug('Entered import account.', ['id' => $importId]);