offer id
This commit is contained in:
@@ -156,12 +156,43 @@ long sitecrons_calls(CVars in, CVars &out) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
long ProcessExpiredOffers(CVars in, CVars &out){
|
long ProcessExpiredOffers(CVars in, CVars &out){
|
||||||
// if ( load_db_record(out, "SELECT count(uid) AS pending_count FROM money_transfer WHERE status =1 AND completed IS NULL ")> 0){
|
char vname[30];
|
||||||
// if ( out["pending_count"].Long() > 0 ){
|
long ret = PHP_API_BAD_PARAM;
|
||||||
// alert_email(WRB_CRONJOB_PENDINGSM,out, out);
|
try {
|
||||||
// }
|
out["total_record"] = "0";
|
||||||
// }
|
const PGresult *res;
|
||||||
return 0;
|
res = pgsql_query("SELECT status,member_id, id AS offer_id, uid,offer_code FROM members_jobs_offer "
|
||||||
|
" WHERE expire< now() "
|
||||||
|
" AND status = 1 "
|
||||||
|
" AND refund_auto IS NULL "
|
||||||
|
" ORDER BY id ASC LIMIT 10");
|
||||||
|
|
||||||
|
if (res != NULL && pgsql_num_rows(res) > 0) {
|
||||||
|
out["total_record"] = pgsql_num_rows(res);
|
||||||
|
|
||||||
|
for (int i = 0, n = pgsql_num_rows(res); i < n; i++) {
|
||||||
|
map<const char*, const char*>f = pgsql_fetch_assoc(res, i);
|
||||||
|
if (f.empty()) continue;
|
||||||
|
CVars rec;
|
||||||
|
map_to_cvars(f, rec);
|
||||||
|
pgsql_query("UPDATE members_jobs_offer SET refund_auto= now(), updated = now() "
|
||||||
|
" WHERE id = %lu AND uid::text = '%s' ", rec["offer_id"].Long(),rec["uid"].c_str()); // move the status so no retry
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ret = PHP_API_OK;
|
||||||
|
out["status"] = "OK";
|
||||||
|
} catch (bad_parameter) {
|
||||||
|
logfmt(logINFO, "ERROR CALL long ProcessExpiredOffers(CVars in, CVars &out)");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
logfmt(logINFO, "/ProcessExpiredOffers()");
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
long ProcessTransferJobs(CVars in, CVars &out){
|
long ProcessTransferJobs(CVars in, CVars &out){
|
||||||
|
|||||||
Reference in New Issue
Block a user