/* @tier easy @module cm @transform common-batch */ /* * cm_bt_0015.pgc - 공통 일일요약 리포트 배치 [tier=easy] * * 지정 영업일의 공통 원장(cm_ledger)을 표준 DBIO API 로 상태별(R/M/U/S) * 건수 집계하고 총거래금액을 합산하여 일일 처리요약을 리포트한다. * 커서를 사용하지 않고 cm_rec_count / cm_rec_sum 만 호출한다. * 배치 main 엔트리 포함. * * 실행: cm_bt_0015 [db@host] */ #include #include #include #include "txcore.h" #include "txcore_dbio.h" #include "acq_util.h" #include "cm_core.h" EXEC SQL INCLUDE sqlca; static int run_cm_bt_0015(const char *biz_date) { EXEC SQL BEGIN DECLARE SECTION; char h_biz_date[9]; char h_merch_id[16]; long h_merch_cnt; long h_merch_sum; EXEC SQL END DECLARE SECTION; long n_recv, n_done, n_fail, n_settled, total; long sum_amt = 0; long merch_lines = 0; char won[32]; char merch_won[32]; int rc; n_recv = cm_rec_count(biz_date, CM_ST_RECV); n_done = cm_rec_count(biz_date, CM_ST_DONE); n_fail = cm_rec_count(biz_date, CM_ST_FAIL); n_settled = cm_rec_count(biz_date, CM_ST_SETTLED); if (n_recv < 0 || n_done < 0 || n_fail < 0 || n_settled < 0) { tx_log(TX_LOG_ERROR, "[cm_bt_0015] 상태별 건수 집계 실패"); return TX_EDB; } total = n_recv + n_done + n_fail + n_settled; rc = cm_rec_sum(biz_date, &sum_amt); if (rc != TX_OK) { tx_log(TX_LOG_WARN, "[cm_bt_0015] 금액합계 집계 경고 rc=%d", rc); sum_amt = 0; } memset(won, 0, sizeof(won)); amount_format_won(sum_amt, won, sizeof(won)); tx_log(TX_LOG_INFO, "[cm_bt_0015] 일일요약 date=%s 총=%ld 완료=%ld 실패=%ld 정산=%ld", biz_date, total, n_done, n_fail, n_settled); printf("========== 공통 일일요약 [cm_bt_0015] ==========\n"); printf(" 영업일 : %s\n", biz_date); printf(" 접수(R) : %ld\n", n_recv); printf(" 완료(M) : %ld\n", n_done); printf(" 실패(U) : %ld\n", n_fail); printf(" 정산(S) : %ld\n", n_settled); printf(" 전체 건수 : %ld\n", total); printf(" 거래총액 : %s\n", won); if (total > 0) printf(" 완료율 : %ld%%\n", (n_done * 100) / total); /* * 가맹점별 상세 브레이크다운: cm_ledger 를 가맹점번호로 그룹집계하는 * 커서를 순회하며 건수 내림차순으로 상위 가맹점을 리포트한다. */ strncpy(h_biz_date, biz_date, sizeof(h_biz_date) - 1); h_biz_date[sizeof(h_biz_date) - 1] = '\0'; EXEC SQL DECLARE cur_cm_bt_0015 CURSOR FOR SELECT merch_id, count(*), coalesce(sum(amount), 0) FROM cm_ledger WHERE biz_date = :h_biz_date GROUP BY merch_id ORDER BY count(*) DESC, merch_id; EXEC SQL OPEN cur_cm_bt_0015; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("cm_bt_0015 OPEN cur"); } else { printf(" ----- 가맹점별 상세 -----\n"); for (;;) { EXEC SQL FETCH cur_cm_bt_0015 INTO :h_merch_id, :h_merch_cnt, :h_merch_sum; if (sqlca.sqlcode == TX_SQL_NOTFOUND) break; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("cm_bt_0015 FETCH cur"); break; } merch_lines++; amount_format_won(h_merch_sum, merch_won, sizeof(merch_won)); printf(" %-12s 건수=%-6ld 금액=%s\n", h_merch_id, h_merch_cnt, merch_won); } EXEC SQL CLOSE cur_cm_bt_0015; } printf(" 가맹점 수 : %ld\n", merch_lines); printf("=============================================\n"); return TX_OK; } int main(int argc, char **argv) { const char *biz_date; const char *target; int rc; tx_set_loglevel(TX_LOG_INFO); if (argc < 2) { fprintf(stderr, "사용법: %s [db@host]\n", argv[0]); return 2; } biz_date = argv[1]; target = (argc >= 3) ? argv[2] : NULL; if (!date_is_valid(biz_date)) { fprintf(stderr, "오류: 유효하지 않은 영업일 '%s'\n", biz_date); return 2; } tx_log(TX_LOG_INFO, "[cm_bt_0015] 일일요약 배치 시작 date=%s", biz_date); rc = cm_dbio_connect(target); if (rc != TX_OK) { tx_log(TX_LOG_ERROR, "[cm_bt_0015] DB 접속 실패 rc=%d", rc); return 1; } rc = run_cm_bt_0015(biz_date); cm_dbio_disconnect(); tx_log(TX_LOG_INFO, "[cm_bt_0015] 배치 종료 rc=%d(%s)", rc, tx_strerror(rc)); return (rc == TX_OK) ? 0 : 1; }