/* Processed by ecpg (15.18 (Debian 15.18-0+deb12u1)) */ /* These include files are added by the preprocessor */ #include #include #include /* End of automatic include section */ #line 1 "app/online/cl_ol_0003.pgc" /* @tier medium @module cl @transform closing-online */ /* * cl_ol_0003.pgc - 마감 온라인 서비스 (CL_OL_0003) [tier=medium] * * 마감 대사(對査)/검증. 요청 영업일(BIZDATE)의 실제 원장 건수/금액 합계를 * 집계하여, 요청자가 제출한 기대건수(EXPECTCNT)·기대금액(EXPECTAMT)과 * 대사한다. 건수 또는 금액에 차이가 있으면 RESP_INVALID 로 차이내역을 * 반환하고, 완전 일치하면 RESP_OK 를 반환한다. (read-only 집계 대사) * * ── 서비스 계약(Contract) ──────────────────────────────────────────── * 입력 필드: * BIZDATE (필수) 영업일(YYYYMMDD) * EXPECTCNT (선택) 기대 건수 (미제출 시 0 으로 대사) * EXPECTAMT (선택) 기대 금액합계(원) * 출력 필드: * RESPCODE 0000=일치 / 9001=불일치·입력오류 / 9999=시스템오류 * BIZDATE 대사 대상 영업일 * ACTCNT 실제 원장 건수 * ACTAMT 실제 금액합계(원) / ACTWON 한글 표기 * EXPECTCNT 대사 기준 기대건수 * EXPECTAMT 대사 기준 기대금액 * DIFFCNT 건수 차이(실제-기대) * DIFFAMT 금액 차이(실제-기대) * MATCH 대사 일치여부(Y/N) * * ── 대사 규칙 ──────────────────────────────────────────────────────── * · 상태 무관 전체 원장 건을 대상으로 건수/금액을 집계한다. * · 건수·금액 모두 차이가 0 일 때만 일치(RESP_OK)로 판정한다. * · 하나라도 차이가 있으면 불일치(RESP_INVALID)로 차이내역을 반환한다. */ #include #include #include "txcore.h" #include "txcore_dbio.h" #include "acq_util.h" #include "cl_core.h" #line 1 "/usr/include/postgresql/sqlca.h" #ifndef POSTGRES_SQLCA_H #define POSTGRES_SQLCA_H #ifndef PGDLLIMPORT #if defined(WIN32) || defined(__CYGWIN__) #define PGDLLIMPORT __declspec (dllimport) #else #define PGDLLIMPORT #endif /* __CYGWIN__ */ #endif /* PGDLLIMPORT */ #define SQLERRMC_LEN 150 #ifdef __cplusplus extern "C" { #endif struct sqlca_t { char sqlcaid[8]; long sqlabc; long sqlcode; struct { int sqlerrml; char sqlerrmc[SQLERRMC_LEN]; } sqlerrm; char sqlerrp[8]; long sqlerrd[6]; /* Element 0: empty */ /* 1: OID of processed tuple if applicable */ /* 2: number of rows processed */ /* after an INSERT, UPDATE or */ /* DELETE statement */ /* 3: empty */ /* 4: empty */ /* 5: empty */ char sqlwarn[8]; /* Element 0: set to 'W' if at least one other is 'W' */ /* 1: if 'W' at least one character string */ /* value was truncated when it was */ /* stored into a host variable. */ /* * 2: if 'W' a (hopefully) non-fatal notice occurred */ /* 3: empty */ /* 4: empty */ /* 5: empty */ /* 6: empty */ /* 7: empty */ char sqlstate[5]; }; struct sqlca_t *ECPGget_sqlca(void); #ifndef POSTGRES_ECPG_INTERNAL #define sqlca (*ECPGget_sqlca()) #endif #ifdef __cplusplus } #endif #endif #line 39 "app/online/cl_ol_0003.pgc" TX_SERVICE(CL_OL_0003, ctx) { /* exec sql begin declare section */ #line 44 "app/online/cl_ol_0003.pgc" char h_biz_date [ 9 ] ; #line 45 "app/online/cl_ol_0003.pgc" int h_act_cnt ; #line 46 "app/online/cl_ol_0003.pgc" long h_act_amt ; /* exec sql end declare section */ #line 47 "app/online/cl_ol_0003.pgc" char bizdate[16]; long expect_cnt = 0, expect_amt = 0; long diff_cnt = 0, diff_amt = 0; int matched; char won[40]; tx_log(TX_LOG_INFO, "[CL_OL_0003] 마감 대사/검증 서비스 진입"); /* 1. 요청 검증 : 영업일 필수 */ if (tx_buf_get(ctx->in, "BIZDATE", bizdate, sizeof(bizdate)) != TX_OK) { tx_log(TX_LOG_ERROR, "[CL_OL_0003] BIZDATE 누락"); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID); tx_return(ctx, TX_EINVAL, ctx->out); return; } if (!date_is_valid(bizdate)) { tx_log(TX_LOG_WARN, "[CL_OL_0003] 영업일 형식 오류 date=%s", bizdate); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID); tx_return(ctx, TX_EINVAL, ctx->out); return; } /* 기대건수/기대금액은 대사 기준값 (미제출 시 0 으로 대사) */ tx_buf_getlong(ctx->in, "EXPECTCNT", &expect_cnt); tx_buf_getlong(ctx->in, "EXPECTAMT", &expect_amt); strncpy(h_biz_date, bizdate, sizeof(h_biz_date) - 1); h_biz_date[sizeof(h_biz_date) - 1] = '\0'; /* 2. 실제 원장 집계 (건수 + 금액합계 동시 singleton SELECT) */ { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select count ( * ) , coalesce ( sum ( amount ) , 0 ) from cl_ledger where biz_date = $1 ", ECPGt_char,(h_biz_date),(long)9,(long)1,(9)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT, ECPGt_int,&(h_act_cnt),(long)1,(long)1,sizeof(int), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_long,&(h_act_amt),(long)1,(long)1,sizeof(long), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);} #line 84 "app/online/cl_ol_0003.pgc" if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("CL_OL_0003 aggregate"); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "RESPCODE", RESP_SYSERR); tx_return(ctx, TX_EDB, ctx->out); return; } /* 3. 대사 : 차이 계산 (실제 - 기대) */ diff_cnt = (long)h_act_cnt - expect_cnt; diff_amt = h_act_amt - expect_amt; matched = (diff_cnt == 0 && diff_amt == 0); /* 4. 응답 구성 : 실제/기대/차이 내역 */ amount_format_won(h_act_amt, won, sizeof(won)); tx_buf_reset(ctx->out); tx_buf_sets(ctx->out, "BIZDATE", bizdate); tx_buf_setlong(ctx->out, "ACTCNT", (long)h_act_cnt); tx_buf_setlong(ctx->out, "ACTAMT", h_act_amt); tx_buf_sets(ctx->out, "ACTWON", won); tx_buf_setlong(ctx->out, "EXPECTCNT", expect_cnt); tx_buf_setlong(ctx->out, "EXPECTAMT", expect_amt); tx_buf_setlong(ctx->out, "DIFFCNT", diff_cnt); tx_buf_setlong(ctx->out, "DIFFAMT", diff_amt); if (matched) { tx_buf_sets(ctx->out, "RESPCODE", RESP_OK); tx_buf_sets(ctx->out, "MATCH", "Y"); tx_log(TX_LOG_INFO, "[CL_OL_0003] 대사일치 date=%s cnt=%d amt=%ld", bizdate, h_act_cnt, h_act_amt); tx_return(ctx, TX_OK, ctx->out); return; } tx_buf_sets(ctx->out, "RESPCODE", RESP_INVALID); tx_buf_sets(ctx->out, "MATCH", "N"); tx_log(TX_LOG_WARN, "[CL_OL_0003] 대사불일치 date=%s diffcnt=%ld diffamt=%ld", bizdate, diff_cnt, diff_amt); tx_return(ctx, TX_FAIL, ctx->out); }