This repository has been archived on 2026-07-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
acquire-core-full/app/online/lg_ol_0026.pgc
forge-bot c3a0259e95 다양화: 530개 online/batch 프로그램을 모듈별 고유 실업무 로직으로 재작성
- 템플릿 클론(정규화 후 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>
2026-07-19 01:37:54 +00:00

124 lines
4.3 KiB
Text

/* @tier easy @module lg @transform ledger-online */
/*
* lg_ol_0026.pgc - 원장 온라인 서비스 (LG_OL_0026) [tier=easy]
*
* 금액구간 통계: 지정 영업일에서 기준금액(THRESHOLD) 이상 구간과 미만 구간의
* 건수/합계를 각각 집계 SELECT 로 산출하여 응답한다. (조회 전용)
*/
#include <stdio.h>
#include <string.h>
#include "txcore.h"
#include "txcore_dbio.h"
#include "acq_util.h"
#include "lg_core.h"
EXEC SQL INCLUDE sqlca;
/*
* [업무 개요]
* 이상거래 모니터링/리스크 부서가 특정 영업일의 매출 분포를 파악할 때,
* 기준금액(THRESHOLD) 을 경계로 고액구간과 소액구간의 건수·합계를 한 번에
* 조회한다. 예: 100만원 이상 고액 승인건이 몇 건/얼마인지 즉시 확인.
*
* [구간 정의]
* 고액구간(HI) : amount >= THRESHOLD
* 소액구간(LO) : amount < THRESHOLD
* (두 구간은 상호배타적이므로 HICNT + LOCNT = 당일 전표 총건수)
*
* [처리 절차]
* 1) BIZDATE, THRESHOLD 추출 및 검증(음수 기준금액 불가).
* 2) 고액구간 집계 SELECT (count, sum).
* 3) 소액구간 집계 SELECT (count, sum).
* 4) 두 구간 결과를 응답 TXBUF 로 구성.
*
* [응답 필드]
* RESPCODE 처리결과코드
* BIZDATE 대상 영업일(에코)
* THRESHOLD 구간 기준금액(에코)
* HICNT 고액구간 건수
* HISUM 고액구간 합계
* LOCNT 소액구간 건수
* LOSUM 소액구간 합계
*
* [주의]
* 조회 전용. 집계이므로 결과 없음(NOTFOUND) 도 coalesce/count 로 0 이 보장.
*/
TX_SERVICE(LG_OL_0026, ctx)
{
EXEC SQL BEGIN DECLARE SECTION;
char h_biz_date[9];
long h_threshold;
long h_hi_cnt;
long h_hi_sum;
long h_lo_cnt;
long h_lo_sum;
EXEC SQL END DECLARE SECTION;
char bizdate[16];
long threshold = 0;
tx_log(TX_LOG_INFO, "[LG_OL_0026] 금액구간 통계 진입");
if (tx_buf_get(ctx->in, "BIZDATE", bizdate, sizeof(bizdate)) != TX_OK) {
tx_log(TX_LOG_ERROR, "[LG_OL_0026] BIZDATE 누락");
tx_buf_reset(ctx->out);
tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID);
tx_return(ctx, TX_EINVAL, ctx->out);
return;
}
tx_buf_getlong(ctx->in, "THRESHOLD", &threshold);
if (!date_is_valid(bizdate) || threshold < 0) {
tx_log(TX_LOG_WARN, "[LG_OL_0026] 입력 검증 실패 date=%s threshold=%ld",
bizdate, threshold);
tx_buf_reset(ctx->out);
tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID);
tx_return(ctx, TX_EINVAL, ctx->out);
return;
}
strncpy(h_biz_date, bizdate, sizeof(h_biz_date) - 1);
h_biz_date[sizeof(h_biz_date) - 1] = '\0';
h_threshold = threshold;
/* 기준금액 이상 구간 집계 */
EXEC SQL SELECT count(*), coalesce(sum(amount), 0)
INTO :h_hi_cnt, :h_hi_sum
FROM lg_ledger
WHERE biz_date = :h_biz_date
AND amount >= :h_threshold;
if (sqlca.sqlcode != TX_SQL_OK && sqlca.sqlcode != TX_SQL_NOTFOUND) {
TX_DBIO_LOG_ERR("lg_ol_0026 high");
tx_buf_reset(ctx->out);
tx_buf_sets(ctx->out, "RESPCODE", RESP_SYSERR);
tx_return(ctx, TX_EDB, ctx->out);
return;
}
/* 기준금액 미만 구간 집계 */
EXEC SQL SELECT count(*), coalesce(sum(amount), 0)
INTO :h_lo_cnt, :h_lo_sum
FROM lg_ledger
WHERE biz_date = :h_biz_date
AND amount < :h_threshold;
if (sqlca.sqlcode != TX_SQL_OK && sqlca.sqlcode != TX_SQL_NOTFOUND) {
TX_DBIO_LOG_ERR("lg_ol_0026 low");
tx_buf_reset(ctx->out);
tx_buf_sets(ctx->out, "RESPCODE", RESP_SYSERR);
tx_return(ctx, TX_EDB, ctx->out);
return;
}
tx_buf_reset(ctx->out);
tx_buf_sets(ctx->out, "RESPCODE", RESP_OK);
tx_buf_sets(ctx->out, "BIZDATE", bizdate);
tx_buf_setlong(ctx->out, "THRESHOLD", threshold);
tx_buf_setlong(ctx->out, "HICNT", h_hi_cnt);
tx_buf_setlong(ctx->out, "HISUM", h_hi_sum);
tx_buf_setlong(ctx->out, "LOCNT", h_lo_cnt);
tx_buf_setlong(ctx->out, "LOSUM", h_lo_sum);
tx_log(TX_LOG_INFO, "[LG_OL_0026] 구간통계 date=%s 이상=%ld/%ld 미만=%ld/%ld",
bizdate, h_hi_cnt, h_hi_sum, h_lo_cnt, h_lo_sum);
tx_return(ctx, TX_OK, ctx->out);
}