mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix various bugs in the import routine, discovered by Doug.
This commit is contained in:
@@ -179,7 +179,9 @@ class ImportTransaction
|
||||
$this->budgetName = $columnValue->getValue();
|
||||
break;
|
||||
case 'category-id':
|
||||
$this->categoryId = $this->getMappedValue($columnValue);
|
||||
$value = $this->getMappedValue($columnValue);
|
||||
Log::debug(sprintf('Set category ID to %d in ImportTransaction object', $value));
|
||||
$this->categoryId = $value;
|
||||
break;
|
||||
case 'category-name':
|
||||
$this->categoryName = $columnValue->getValue();
|
||||
|
Reference in New Issue
Block a user