/* @tier medium @module cl @transform closing-online */ /* * cl_ol_0027.pgc - 마감 온라인 서비스 (CL_OL_0027) [tier=medium] * * 월마감 검증 * ---------------------------------------------------------------------- * 요청 월(YYYYMM)에 속한 모든 영업일의 미마감(R) 건이 하나도 없는지 * 확인한다. C 에서 'YYYYMM%' LIKE 패턴을 구성하여 biz_date LIKE :pat * AND status='R' 건수를 조회하고, 0 이면 월마감 유효(VALID=Y) 로 * 응답한다. 입력월은 YYYYMM01 로 확장해 형식 검증한다. * * 월 전체 규모의 근거로 해당 월의 총 건수/합계금액과 마감 대상이 존재 * 하는 영업일 수를 함께 조회하여 응답에 제공한다. 감사추적을 위해 선택 * 입력 REQID 를 반영한다. */ #include #include #include "txcore.h" #include "txcore_dbio.h" #include "acq_util.h" #include "cl_core.h" EXEC SQL INCLUDE sqlca; TX_SERVICE(CL_OL_0027, ctx) { EXEC SQL BEGIN DECLARE SECTION; char h_pat[16]; int h_recv; int h_total; int h_days; long h_sum; EXEC SQL END DECLARE SECTION; char yyyymm[16]; char reqid[32]; char probe[9]; char sum_won[32]; int valid; tx_log(TX_LOG_INFO, "[CL_OL_0027] 월마감 검증 서비스 진입"); /* 1) 입력 수신 (YYYYMM 6자리) */ if (tx_buf_get(ctx->in, "YYYYMM", yyyymm, sizeof(yyyymm)) != TX_OK) { tx_log(TX_LOG_ERROR, "[CL_OL_0027] YYYYMM 누락"); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID); tx_return(ctx, TX_EINVAL, ctx->out); return; } if (tx_buf_get(ctx->in, "REQID", reqid, sizeof(reqid)) != TX_OK) strncpy(reqid, "-", sizeof(reqid) - 1); /* 2) 형식 검증: 길이 6 + YYYYMM01 로 확장하여 일자 유효성 확인 */ if (strlen(yyyymm) != 6) { tx_log(TX_LOG_WARN, "[CL_OL_0027] 월 형식 오류 yyyymm=%s", yyyymm); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID); tx_return(ctx, TX_EINVAL, ctx->out); return; } snprintf(probe, sizeof(probe), "%.6s01", yyyymm); if (!date_is_valid(probe)) { tx_log(TX_LOG_WARN, "[CL_OL_0027] 월 값 오류 yyyymm=%s", yyyymm); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID); tx_return(ctx, TX_EINVAL, ctx->out); return; } /* 3) LIKE 패턴 'YYYYMM%' 구성 */ snprintf(h_pat, sizeof(h_pat), "%.6s%%", yyyymm); /* 4) 해당 월의 미마감(R) 건수 조회 */ EXEC SQL SELECT count(*) INTO :h_recv FROM cl_ledger WHERE biz_date LIKE :h_pat AND status = 'R'; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("cl_ol_0027 월미마감"); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_SYSERR); tx_return(ctx, TX_EDB, ctx->out); return; } /* 5) 월 전체 규모 및 대상 영업일 수 조회 (요약행 제외) */ EXEC SQL SELECT count(*), coalesce(sum(amount), 0), count(distinct biz_date) INTO :h_total, :h_sum, :h_days FROM cl_ledger WHERE biz_date LIKE :h_pat AND merch_id <> '*AGG'; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("cl_ol_0027 월규모"); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_SYSERR); tx_return(ctx, TX_EDB, ctx->out); return; } /* 6) 월마감 유효성 판정 */ valid = (h_recv == 0) ? 1 : 0; amount_format_won(h_sum, sum_won, sizeof(sum_won)); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_OK); tx_buf_sets(ctx->out, "YYYYMM", yyyymm); tx_buf_sets(ctx->out, "REQID", reqid); tx_buf_setlong(ctx->out, "RECVCNT", (long)h_recv); tx_buf_setlong(ctx->out, "TOTALCNT", (long)h_total); tx_buf_setlong(ctx->out, "DAYS", (long)h_days); tx_buf_setlong(ctx->out, "SUMAMT", h_sum); tx_buf_sets(ctx->out, "SUMAMTWON", sum_won); tx_buf_sets(ctx->out, "VALID", valid ? "Y" : "N"); tx_buf_sets(ctx->out, "MESSAGE", valid ? "월마감 가능(미마감 없음)" : "월중 미마감 잔량 존재"); tx_log(TX_LOG_INFO, "[CL_OL_0027] 완료 yyyymm=%s 미마감=%d 총건=%d 영업일수=%d valid=%s", yyyymm, h_recv, h_total, h_days, valid ? "Y" : "N"); tx_return(ctx, TX_OK, ctx->out); }