Skip to content

Commit

Permalink
Release version 3.41 (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
markusrt authored Oct 25, 2024
1 parent 2369e12 commit 69f889a
Show file tree
Hide file tree
Showing 33 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions HaemophilusWeb/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public ActionResult Index()
},
new List<Change>
{
new Change(new DateTime(2024, 10, 25), "Fehler bei Befunderstellung wenn keine DEMIS Meldungs-Id existiert", ChangeType.Bug, DatabaseType.None),
new Change(new DateTime(2024, 10, 23), "Angleich des Feldes 16S rDNA für beide Datenbanken", ChangeType.Feature, DatabaseType.None),
new Change(new DateTime(2024, 10, 22), "Feld für NHS-PCR mit Labor- und RKI-Export", ChangeType.Feature, DatabaseType.Haemophilus),
new Change(new DateTime(2024, 10, 1), "DEMIS Meldungs-Id QR-Code auf Befund", ChangeType.Feature, DatabaseType.None),
Expand Down
4 changes: 2 additions & 2 deletions HaemophilusWeb/Properties/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("3.39")]
[assembly: AssemblyFileVersion("3.39")]
[assembly: AssemblyVersion("3.41")]
[assembly: AssemblyFileVersion("3.41")]
Binary file modified HaemophilusWeb/ReportTemplates/BLNAR v10.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/BLNAS v10.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/BLPACR v10.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/BLPACS v10.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Fax - BLNAR v10.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Fax - BLNAS v10.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Fax - BLPACR v10.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Fax - BLPACS v10.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Fax - Kein Wachstum v1.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Fax - Nicht Invasiv v1.docx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Fax - Teilbefund - Serotyp v4.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Kein Wachstum v1.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Meningo/Fax - Nativmaterial v2.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Meningo/Fax - Teilbefund - v2.docx
Binary file not shown.
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Meningo/Nativmaterial v2.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Meningo/Untersuchungsbefund v2.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Nicht Invasiv v1.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Sonstige - Ampi-S Cipro-R v3.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Sonstige - Ampi-S Imi-R v3.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/Sonstige - Kein Haemophilus v3.docx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/includes/Seite 1 - Kurz.docx
Binary file not shown.
Binary file modified HaemophilusWeb/ReportTemplates/includes/Seite 1.docx
Binary file not shown.
4 changes: 3 additions & 1 deletion HaemophilusWeb/Views/MeningoReport/Isolate.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@
documentData["Typing-"+typing.Attribute] = typing.Value;
});
documentData["DemisIdQrImage"] = base64DataURLToArrayBuffer(documentData["DemisIdQrImageUrl"]);
if (documentData["DemisIdQrImageUrl"]) {
documentData["DemisIdQrImage"] = base64DataURLToArrayBuffer(documentData["DemisIdQrImageUrl"]);
}
loadFile(templateFile + "?nocache=" + Math.random(), function (error, content) {
if (error) { throw error };
Expand Down
4 changes: 3 additions & 1 deletion HaemophilusWeb/Views/Report/Isolate.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@
documentData["Typing-"+typing.Attribute] = typing.Value;
});
documentData["DemisIdQrImage"] = base64DataURLToArrayBuffer(documentData["DemisIdQrImageUrl"]);
if (documentData["DemisIdQrImageUrl"]) {
documentData["DemisIdQrImage"] = base64DataURLToArrayBuffer(documentData["DemisIdQrImageUrl"]);
}
loadFile(templateFile + "?nocache=" + Math.random(), function (error, content) {
if (error) { throw error };
Expand Down

0 comments on commit 69f889a

Please sign in to comment.