adding Hospitalization for UI

This commit is contained in:
Frank Knoll
2024-04-23 17:53:39 +02:00
parent ce175faa78
commit a2d4c356be
5 changed files with 87 additions and 71 deletions

View File

@@ -50,6 +50,7 @@ class BatchCodeTableInitializer {
this.#getColumnIndex('Deaths'),
this.#getColumnIndex('Disabilities'),
this.#getColumnIndex('Life Threatening Illnesses'),
this.#getColumnIndex('Hospitalization'),
this.#getColumnIndex('Severe reports'),
this.#getColumnIndex('Lethality')
]
@@ -109,14 +110,16 @@ class BatchCodeTableInitializer {
return 3;
case 'Life Threatening Illnesses':
return 4;
case 'Company':
case 'Hospitalization':
return 5;
case 'Severe reports':
case 'Company':
return 6;
case 'Lethality':
case 'Severe reports':
return 7;
case 'Countries':
case 'Lethality':
return 8;
case 'Countries':
return 9;
}
}