다양화: 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>
This commit is contained in:
parent
b96cf702ee
commit
c3a0259e95
1027 changed files with 68915 additions and 40962 deletions
|
|
@ -10,13 +10,22 @@
|
|||
/*
|
||||
* cl_ol_0028.pgc - 마감 온라인 서비스 (CL_OL_0028) [tier=easy]
|
||||
*
|
||||
* TxCore TX_SERVICE 엔트리. 요청 TXBUF 를 검증하고 cl 표준 DBIO 를
|
||||
* 통해 처리한 뒤 응답 TXBUF 를 구성한다. (ATMI void SVC(TPSVCINFO*) 대응)
|
||||
* 분기마감 검증
|
||||
* ----------------------------------------------------------------------
|
||||
* 요청 기간 시작일(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"
|
||||
|
||||
|
|
@ -89,37 +98,147 @@ struct sqlca_t *ECPGget_sqlca(void);
|
|||
|
||||
#endif
|
||||
|
||||
#line 15 "app/online/cl_ol_0028.pgc"
|
||||
#line 24 "app/online/cl_ol_0028.pgc"
|
||||
|
||||
|
||||
TX_SERVICE(CL_OL_0028, ctx)
|
||||
{
|
||||
cl_rec_t rec;
|
||||
char key[16];
|
||||
int rc;
|
||||
/* exec sql begin declare section */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#line 29 "app/online/cl_ol_0028.pgc"
|
||||
char h_d1 [ 9 ] ;
|
||||
|
||||
#line 30 "app/online/cl_ol_0028.pgc"
|
||||
char h_d2 [ 9 ] ;
|
||||
|
||||
#line 31 "app/online/cl_ol_0028.pgc"
|
||||
int h_recv ;
|
||||
|
||||
#line 32 "app/online/cl_ol_0028.pgc"
|
||||
int h_total ;
|
||||
|
||||
#line 33 "app/online/cl_ol_0028.pgc"
|
||||
int h_settled ;
|
||||
|
||||
#line 34 "app/online/cl_ol_0028.pgc"
|
||||
int h_days ;
|
||||
|
||||
#line 35 "app/online/cl_ol_0028.pgc"
|
||||
long h_sum ;
|
||||
/* exec sql end declare section */
|
||||
#line 36 "app/online/cl_ol_0028.pgc"
|
||||
|
||||
tx_log(TX_LOG_INFO, "[CL_OL_0028] 마감 단건조회 서비스 진입");
|
||||
|
||||
if (tx_buf_get(ctx->in, "KEY", key, sizeof(key)) != TX_OK) {
|
||||
tx_log(TX_LOG_ERROR, "[CL_OL_0028] KEY 누락");
|
||||
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(&rec, 0, sizeof(rec));
|
||||
rc = cl_rec_select(key, &rec);
|
||||
if (rc != TX_OK) {
|
||||
tx_log(TX_LOG_WARN, "[CL_OL_0028] 조회 실패 key=%s rc=%d(%s)",
|
||||
key, rc, tx_strerror(rc));
|
||||
tx_return(ctx, rc, ctx->out);
|
||||
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) 건수 조회 */
|
||||
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select count ( * ) from cl_ledger where biz_date between $1 and $2 and status = 'R'",
|
||||
ECPGt_char,(h_d1),(long)9,(long)1,(9)*sizeof(char),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
|
||||
ECPGt_char,(h_d2),(long)9,(long)1,(9)*sizeof(char),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT,
|
||||
ECPGt_int,&(h_recv),(long)1,(long)1,sizeof(int),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
|
||||
#line 78 "app/online/cl_ol_0028.pgc"
|
||||
|
||||
|
||||
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) 기간 규모/정산 현황 조회 (요약행 제외) */
|
||||
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select count ( * ) , coalesce ( sum ( case when status = 'S' then 1 else 0 end ) , 0 ) , coalesce ( sum ( amount ) , 0 ) , count ( distinct biz_date ) from cl_ledger where biz_date between $1 and $2 and merch_id <> '*AGG'",
|
||||
ECPGt_char,(h_d1),(long)9,(long)1,(9)*sizeof(char),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
|
||||
ECPGt_char,(h_d2),(long)9,(long)1,(9)*sizeof(char),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT,
|
||||
ECPGt_int,&(h_total),(long)1,(long)1,sizeof(int),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
|
||||
ECPGt_int,&(h_settled),(long)1,(long)1,sizeof(int),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
|
||||
ECPGt_long,&(h_sum),(long)1,(long)1,sizeof(long),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
|
||||
ECPGt_int,&(h_days),(long)1,(long)1,sizeof(int),
|
||||
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
|
||||
#line 96 "app/online/cl_ol_0028.pgc"
|
||||
|
||||
|
||||
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, "KEY", rec.key);
|
||||
tx_buf_sets(ctx->out, "MERCHID", rec.merch_id);
|
||||
tx_buf_setlong(ctx->out, "AMOUNT", rec.amount);
|
||||
tx_buf_sets(ctx->out, "STATUS", rec.status);
|
||||
tx_log(TX_LOG_INFO, "[CL_OL_0028] 조회완료 key=%s amount=%ld", key, rec.amount);
|
||||
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);
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue