docs(ZAN03): specify holiday-flag='1' in design; align Java to COBOL; reclassify KIN09(B-1)/KIN08(B-3) as design self-contradiction; drop false D-1/KIN06

This commit is contained in:
opencode
2026-08-29 22:48:39 +08:00
parent c7a573c2a2
commit 4781760e50
3 changed files with 19 additions and 52 deletions
+2 -2
View File
@@ -224,8 +224,8 @@ public class Zan03ChkMain {
String date = r01Rec.getApplDate();
for (String[] h : holidayTable) {
if (h[0].equals(date)) {
// 休日フラグ: COBOL データ慣習は '1'、設計上は 'H' も可。両方受容して運用互換を確保
if (OVT_H.equals(h[1]) || "1".equals(h[1])) {
// 休日フラグ: 設計書規定値は '1'(休日)、それ以外は平日。COBOL と同一の判定
if ("1".equals(h[1])) {
wrkOvtTypeSet = OVT_H;
}
break;