/* @tier easy @module st @transform settlement-batch */ /* * st_bt_0016.pgc - 정산 이체연계 추출 배치 [tier=easy] * * 정산완료(S) 건을 커서로 추출하여 가맹점별 이체 정산순액을 산출하고, * 펌뱅킹 이체연계 전송 대상 매니페스트(건수/총액)를 구성한다. * * 실행: st_bt_0016 [db@host] */ #include #include #include #include "txcore.h" #include "txcore_dbio.h" #include "acq_util.h" #include "st_core.h" EXEC SQL INCLUDE sqlca; static int run_st_bt_0016(const char *biz_date) { EXEC SQL BEGIN DECLARE SECTION; char h_biz_date[9]; char h_key[16]; char h_merch[16]; long h_amount; long h_fee; EXEC SQL END DECLARE SECTION; long total = 0, xfer_total = 0, skipped = 0, errcnt = 0; strncpy(h_biz_date, biz_date, sizeof(h_biz_date) - 1); h_biz_date[sizeof(h_biz_date) - 1] = '\0'; EXEC SQL DECLARE cur_st_bt_0016 CURSOR FOR SELECT key, merch_id, amount, fee FROM st_ledger WHERE biz_date = :h_biz_date AND status = 'S' ORDER BY merch_id, key; EXEC SQL OPEN cur_st_bt_0016; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("OPEN cur_st_bt_0016"); return TX_EDB; } printf("========== 정산 이체연계 추출 [st_bt_0016] ==========\n"); printf(" 영업일 : %s\n", biz_date); for (;;) { EXEC SQL FETCH cur_st_bt_0016 INTO :h_key, :h_merch, :h_amount, :h_fee; if (sqlca.sqlcode == TX_SQL_NOTFOUND) break; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("FETCH cur_st_bt_0016"); errcnt++; break; } total++; long net = h_amount - h_fee; if (net <= 0) { /* 이체 대상 아님(순액 0 이하) */ skipped++; continue; } xfer_total += net; printf(" 전송 key=%-12s 가맹점=%-12s 이체액=%13ld\n", h_key, h_merch, net); } EXEC SQL CLOSE cur_st_bt_0016; printf(" ----------------------------------------\n"); printf(" 대상 건수 : %ld 제외 : %ld 이체 총액 : %ld\n", total, skipped, xfer_total); printf("=============================================\n"); tx_log(TX_LOG_INFO, "[st_bt_0016] 이체연계 date=%s 건수=%ld 총액=%ld", biz_date, total - skipped, xfer_total); return (errcnt == 0) ? TX_OK : TX_FAIL; } 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, "[st_bt_0016] 배치 시작 date=%s", biz_date); rc = st_dbio_connect(target); if (rc != TX_OK) { tx_log(TX_LOG_ERROR, "[st_bt_0016] DB 접속 실패 rc=%d", rc); return 1; } rc = run_st_bt_0016(biz_date); st_dbio_disconnect(); tx_log(TX_LOG_INFO, "[st_bt_0016] 배치 종료 rc=%d(%s)", rc, tx_strerror(rc)); return (rc == TX_OK) ? 0 : 1; }