starting PrrByVaccineTableFactoryTest

This commit is contained in:
frankknoll
2023-10-11 16:53:35 +02:00
parent 83be262928
commit d49f9e967a
10 changed files with 17618 additions and 13622 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,15 @@
class BatchCodeSelectInitializer {
static initialize({batchCodeSelectElement, batchCodeDetailsElement}) {
const batchCodeDetailsView = new BatchCodeDetailsView(batchCodeDetailsElement);
batchCodeSelectElement.select2({ minimumInputLength: 4 });
batchCodeSelectElement.on(
'select2:select',
function (event) {
const batchcode = event.params.data.id;
batchCodeDetailsView.displayBatchCodeDetails(batchcode);
GoogleAnalytics.click_batchcode(batchcode);
});
batchCodeSelectElement.select2('open');
}
}