From d9bc1f742f863954dc065988881f5d1ae842efd1 Mon Sep 17 00:00:00 2001 From: kamonwan taengsuk Date: Tue, 19 May 2026 20:54:10 +0700 Subject: [PATCH] fix(durable_articles_three): add subject field to model FRX template references [durable_articles_three.subject] but the model was missing the property, causing FastReport binding to fail and the report endpoint to return 500. Co-Authored-By: Claude Opus 4.7 (1M context) --- Models/budget/durable_articles_three.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Models/budget/durable_articles_three.cs b/Models/budget/durable_articles_three.cs index addaa2e..c3dc1f1 100644 --- a/Models/budget/durable_articles_three.cs +++ b/Models/budget/durable_articles_three.cs @@ -11,6 +11,7 @@ namespace rmutr_report.Models public string responsible_person { get; set; } public string phone_no { get; set; } public string product { get; set; } + public string subject { get; set; } public List data { get; set; } public decimal? total_amount { get; set; } public string durable_type { get; set; }