adding function getCountriesByClickedBatchcode()

This commit is contained in:
frankknoll
2023-05-30 00:03:44 +02:00
parent 6d65921abc
commit cd4b21eda4
2 changed files with 13 additions and 0 deletions

View File

@@ -21,5 +21,6 @@ class BatchCodeTableHavingGuessedCountriesFactory:
def _guessCountries(self, batchCodeTable, countriesAsList):
batchCodeTable['Countries'] = CountriesMerger.mergeSrcIntoDst(
dst = batchCodeTable['Countries'],
# FK-TODO: zusätzlich zu self.countriesByBatchcodeBeforeDeletion auch noch mit dem Ergebnis der noch zu implementierenden Funktion CountriesByBatchcodeProvider.getCountriesByClickedBatchcode() mergen.
src = self.countriesByBatchcodeBeforeDeletion['Countries'])
BatchCodeTableFactory._convertCountries(batchCodeTable, countriesAsList)