continuing

This commit is contained in:
frankknoll
2023-04-12 19:14:53 +02:00
parent 6c1f43e32b
commit b1166236b7
5 changed files with 18 additions and 22 deletions

View File

@@ -3,6 +3,10 @@ def getBatchcodes(batchCodeTable):
def getBatchcodeOptions(batchcodes):
return ['<option hidden disabled selected value>Select Batch</option>'] + _getBatchcodeOptions(batchcodes)
def _getBatchcodeOptions(batchcodes):
return [_getBatchcodeOption(batchcode) for batchcode in batchcodes]