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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user