/* @tier medium @module rc @transform reconciliation-batch */ /* * rc_bt_0004.pgc - 반송(return) 대사 배치 (RC_BT_0004) * * 지정 영업일의 접수('R') 건을 커서로 순회하며 반송/취소 대사를 수행한다. * 업무규칙: 매입금액(amount) 이 수수료(fee) 보다 작으면 순액이 음수가 되어 * 반송/취소 건으로 간주 → 불일치('U') 로 전이하고 반송차액 * (fee - amount) 을 누계한다. * 그 외 정상 건은 상태를 변경하지 않고 통과시킨다. * * 실행: rc_bt_0004 [db@host] */ #include #include #include #include "txcore.h" #include "txcore_dbio.h" #include "acq_util.h" #include "rc_core.h" EXEC SQL INCLUDE sqlca; static int run_rc_bt_0004(const char *biz_date) { EXEC SQL BEGIN DECLARE SECTION; char h_biz_date[9]; char h_key[16]; long h_amount; long h_fee; char h_new_status[2]; EXEC SQL END DECLARE SECTION; long total = 0, return_cnt = 0, skip_cnt = 0, errcnt = 0; long return_sum = 0; int rc; strncpy(h_biz_date, biz_date, sizeof(h_biz_date) - 1); h_biz_date[sizeof(h_biz_date) - 1] = '\0'; EXEC SQL DECLARE cur_rc_bt_0004 CURSOR FOR SELECT key, amount, fee FROM rc_ledger WHERE biz_date = :h_biz_date AND status = 'R' ORDER BY key; EXEC SQL OPEN cur_rc_bt_0004; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("OPEN cur_rc_bt_0004"); return TX_EDB; } if (tx_begin() != TX_OK) tx_log(TX_LOG_WARN, "[rc_bt_0004] tx_begin 경고"); for (;;) { EXEC SQL FETCH cur_rc_bt_0004 INTO :h_key, :h_amount, :h_fee; if (sqlca.sqlcode == TX_SQL_NOTFOUND) break; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("FETCH cur_rc_bt_0004"); errcnt++; break; } total++; /* 매입금액 < 수수료 → 순액 음수 → 반송/취소 */ if (h_amount < h_fee) { strncpy(h_new_status, RC_ST_FAIL, sizeof(h_new_status)); return_cnt++; return_sum += (h_fee - h_amount); rc = rc_rec_update_status(h_key, h_new_status); if (rc != TX_OK) { tx_log(TX_LOG_ERROR, "[rc_bt_0004] 반송전이 실패 key=%s rc=%d", h_key, rc); errcnt++; } } else { /* 정상 통과 - 상태 변경 없음 */ skip_cnt++; } } EXEC SQL CLOSE cur_rc_bt_0004; if (errcnt == 0) tx_commit(); else tx_abort(); tx_log(TX_LOG_INFO, "[rc_bt_0004] 요약 date=%s 대상=%ld 반송=%ld 통과=%ld", biz_date, total, return_cnt, skip_cnt); printf("======= 반송 대사 배치 [rc_bt_0004] =======\n"); printf(" 영업일 : %s\n", biz_date); printf(" 대상 건수 : %ld\n", total); printf(" 반송처리(U) : %ld\n", return_cnt); printf(" 정상통과 : %ld\n", skip_cnt); printf(" 반송차액 합계 : %ld\n", return_sum); printf(" 오류 건수 : %ld\n", errcnt); printf("========================================\n"); 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, "[rc_bt_0004] 배치 시작 date=%s", biz_date); rc = rc_dbio_connect(target); if (rc != TX_OK) { tx_log(TX_LOG_ERROR, "[rc_bt_0004] DB 접속 실패 rc=%d", rc); return 1; } rc = run_rc_bt_0004(biz_date); rc_dbio_disconnect(); tx_log(TX_LOG_INFO, "[rc_bt_0004] 배치 종료 rc=%d(%s)", rc, tx_strerror(rc)); return (rc == TX_OK) ? 0 : 1; }