Finish merge from main with MainViewModel changes

This commit is contained in:
2026-04-21 10:41:40 +09:00
parent 73e959a677
commit 7be1e16489
2 changed files with 28 additions and 6 deletions
@@ -194,7 +194,7 @@ class ReportPDFCreator : ChangeNotifier
}
var imageTitle = string.IsNullOrWhiteSpace(file.Title) ? file.FileName : file.Title;
var imageTitlePar = MakeParagraph(section, imageTitle, true, 12, "ReceiptTitlePar");
MakeParagraph(section, file.ReceiptDate.ToString("yyyy-MM-dd"), true, 12, "ReceiptDatePar");
MakeParagraph(section, file.ReceiptDate.ToString(appSettings.ReportDateFormat), true, 12, "ReceiptDatePar");
if (!string.IsNullOrWhiteSpace(file.Notes))
{
var imageNotesPar = MakeParagraph(section, file.Notes, false, 10, "ReceiptNotesPar");