- 템플릿 클론(정규화 후 0줄 상이) → 전 코퍼스 530/530 고유 바디 - 11개 모듈(mg/au/ac/rc/vl/st/py/lg/mm/cm/cl) 각 파일이 distinct한 매입·대사·정산·수수료·지급·원장·마감·마스터·정합성·전문게이트웨이·공통 업무 - TxCore(ATMI 유사) + ECPG(EXEC SQL) 관용구, 프레임워크/헤더/DBIO API/파일ID·경로 유지 - 전체 docker make -j4 = EXIT 0, 958 오브젝트, 데모 바이너리 링크 - inventory.json loc 실측 갱신 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
132 lines
4.6 KiB
Text
132 lines
4.6 KiB
Text
/* @tier easy @module cl @transform closing-online */
|
|
/*
|
|
* cl_ol_0028.pgc - 마감 온라인 서비스 (CL_OL_0028) [tier=easy]
|
|
*
|
|
* 분기마감 검증
|
|
* ----------------------------------------------------------------------
|
|
* 요청 기간 시작일(D1)~종료일(D2) 범위에서 미마감(R) 건이 남아 있는지
|
|
* 조회한다. biz_date BETWEEN :d1 AND :d2 AND status='R' 건수가 0 이면
|
|
* 분기마감 가능(ABLE=Y) 으로 판정한다. 두 일자 모두 형식 검증하고
|
|
* D1<=D2 순서를 확인한다.
|
|
*
|
|
* 분기 규모의 근거로 기간 내 전체 건수/정산완료 건수/합계금액과 대상
|
|
* 영업일 수를 함께 조회하고, 정산 진척률(%)을 산출한다. 감사추적을
|
|
* 위해 선택 입력 REQID 를 반영한다.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "txcore.h"
|
|
#include "txcore_dbio.h"
|
|
#include "acq_util.h"
|
|
#include "cl_core.h"
|
|
|
|
EXEC SQL INCLUDE sqlca;
|
|
|
|
TX_SERVICE(CL_OL_0028, ctx)
|
|
{
|
|
EXEC SQL BEGIN DECLARE SECTION;
|
|
char h_d1[9];
|
|
char h_d2[9];
|
|
int h_recv;
|
|
int h_total;
|
|
int h_settled;
|
|
int h_days;
|
|
long h_sum;
|
|
EXEC SQL END DECLARE SECTION;
|
|
|
|
char d1[16];
|
|
char d2[16];
|
|
char reqid[32];
|
|
char sum_won[32];
|
|
long progress;
|
|
int able;
|
|
|
|
tx_log(TX_LOG_INFO, "[CL_OL_0028] 분기마감 검증 서비스 진입");
|
|
|
|
/* 1) 입력 수신 */
|
|
if (tx_buf_get(ctx->in, "D1", d1, sizeof(d1)) != TX_OK ||
|
|
tx_buf_get(ctx->in, "D2", d2, sizeof(d2)) != TX_OK) {
|
|
tx_log(TX_LOG_ERROR, "[CL_OL_0028] D1/D2 누락");
|
|
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) 일자 형식 및 범위 순서 검증 */
|
|
if (!date_is_valid(d1) || !date_is_valid(d2) || strcmp(d1, d2) > 0) {
|
|
tx_log(TX_LOG_WARN, "[CL_OL_0028] 기간 오류 d1=%s d2=%s", d1, d2);
|
|
tx_buf_reset(ctx->out);
|
|
tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID);
|
|
tx_return(ctx, TX_EINVAL, ctx->out);
|
|
return;
|
|
}
|
|
|
|
memset(h_d1, 0, sizeof(h_d1));
|
|
memset(h_d2, 0, sizeof(h_d2));
|
|
strncpy(h_d1, d1, sizeof(h_d1) - 1);
|
|
strncpy(h_d2, d2, sizeof(h_d2) - 1);
|
|
|
|
/* 3) 기간 내 미마감(R) 건수 조회 */
|
|
EXEC SQL SELECT count(*)
|
|
INTO :h_recv
|
|
FROM cl_ledger
|
|
WHERE biz_date BETWEEN :h_d1 AND :h_d2
|
|
AND status = 'R';
|
|
|
|
if (sqlca.sqlcode != TX_SQL_OK) {
|
|
TX_DBIO_LOG_ERR("cl_ol_0028 분기미마감");
|
|
tx_buf_reset(ctx->out);
|
|
tx_buf_sets(ctx->out, "RESPCODE", RESP_SYSERR);
|
|
tx_return(ctx, TX_EDB, ctx->out);
|
|
return;
|
|
}
|
|
|
|
/* 4) 기간 규모/정산 현황 조회 (요약행 제외) */
|
|
EXEC SQL SELECT count(*),
|
|
coalesce(sum(case when status = 'S' then 1 else 0 end), 0),
|
|
coalesce(sum(amount), 0),
|
|
count(distinct biz_date)
|
|
INTO :h_total, :h_settled, :h_sum, :h_days
|
|
FROM cl_ledger
|
|
WHERE biz_date BETWEEN :h_d1 AND :h_d2
|
|
AND merch_id <> '*AGG';
|
|
|
|
if (sqlca.sqlcode != TX_SQL_OK) {
|
|
TX_DBIO_LOG_ERR("cl_ol_0028 분기규모");
|
|
tx_buf_reset(ctx->out);
|
|
tx_buf_sets(ctx->out, "RESPCODE", RESP_SYSERR);
|
|
tx_return(ctx, TX_EDB, ctx->out);
|
|
return;
|
|
}
|
|
|
|
/* 5) 분기마감 가능 여부 및 진척률 판정 */
|
|
able = (h_recv == 0) ? 1 : 0;
|
|
progress = (h_total > 0) ? ((long)h_settled * 100 / h_total) : 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, "D1", d1);
|
|
tx_buf_sets(ctx->out, "D2", d2);
|
|
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, "SETTLEDCNT", (long)h_settled);
|
|
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_setlong(ctx->out, "PROGRESS", progress);
|
|
tx_buf_sets(ctx->out, "ABLE", able ? "Y" : "N");
|
|
tx_buf_sets(ctx->out, "MESSAGE",
|
|
able ? "분기마감 가능(기간내 미마감 없음)"
|
|
: "기간내 미마감 잔량 존재로 분기마감 불가");
|
|
|
|
tx_log(TX_LOG_INFO,
|
|
"[CL_OL_0028] 완료 %s~%s 미마감=%d 총건=%d 정산=%d 진척=%ld%% able=%s",
|
|
d1, d2, h_recv, h_total, h_settled, progress, able ? "Y" : "N");
|
|
tx_return(ctx, TX_OK, ctx->out);
|
|
}
|