Lots of new code for the import routine part 2

This commit is contained in:
James Cole
2017-12-16 17:19:10 +01:00
parent 84b6708260
commit 66ee382da0
32 changed files with 351 additions and 226 deletions

View File

@@ -56,7 +56,7 @@ class AssetAccountIbans implements MapperInterface
asort($list);
$list = $topList + $list;
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}

View File

@@ -53,7 +53,7 @@ class AssetAccounts implements MapperInterface
asort($list);
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}

View File

@@ -46,7 +46,7 @@ class Bills implements MapperInterface
}
asort($list);
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}

View File

@@ -46,7 +46,7 @@ class Budgets implements MapperInterface
}
asort($list);
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}

View File

@@ -46,7 +46,7 @@ class Categories implements MapperInterface
}
asort($list);
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}

View File

@@ -62,7 +62,7 @@ class OpposingAccountIbans implements MapperInterface
asort($list);
$list = $topList + $list;
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}

View File

@@ -59,7 +59,7 @@ class OpposingAccounts implements MapperInterface
asort($list);
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}

View File

@@ -46,7 +46,7 @@ class Tags implements MapperInterface
}
asort($list);
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}

View File

@@ -42,7 +42,7 @@ class TransactionCurrencies implements MapperInterface
asort($list);
$list = [0 => trans('csv.map_do_not_map')] + $list;
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}