CSV import has now support for optional columns.

This commit is contained in:
2026-03-12 10:37:12 +01:00
parent 5530aff2f3
commit 5b62f9461b
4 changed files with 19 additions and 10 deletions

View File

@ -45,6 +45,7 @@ QList<ModelItemValues> FileHandler::getItemValuesFromCSVFile(const QString& file
QFile file;
file.setFileName(filePath);
if (file.exists()) {
// TODO inform UI on CSV import errors
result = CsvParser::getItemsFromCSVFile(filePath);
}
return result;