Second pass fixing 70+ references across 32 files: - Orders: DeliveryMultiplier→BusinessDeliveryMultiplier, OrderTipAmount→TipAmount, OrderPaymentCompletedOn→PaymentCompletedOn, OrderPaymentError→PaymentError - Orders PK: WHERE OrderID=? → WHERE ID=? on Orders table - OrderLineItems PK: OrderLineItemID→ID in INSERT, WHERE, and query results - Items: parent.ItemID→parent.ID in JOIN conditions - Tasks: t.TaskID→t.ID in JOIN conditions - Users PK: WHERE UserID=X → WHERE ID=X on Users table - Addresses PK: A.AddressID→A.ID in JOIN conditions - tt_States: tt_StateID→ID, remove nonexistent tt_StateCountryID/tt_StateSortOrder - tt_OrderTypes: tt_OrderTypeID→ID, tt_OrderTypeName→Name - tt_Days: D.tt_DayID→D.ID - confirm_email.cfm: Add missing SELECT/FROM to queries - setLineItem.cfm: Fix 13 old column references - Stripe webhook/payment: Fix column names and PK references Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
73 lines
2.3 KiB
Text
73 lines
2.3 KiB
Text
<cfsetting showdebugoutput="false">
|
|
<cfsetting enablecfoutputonly="true">
|
|
<cfcontent type="application/json; charset=utf-8" reset="true">
|
|
|
|
<cfscript>
|
|
/**
|
|
* Read-only worker earnings/payout ledger.
|
|
*/
|
|
|
|
response = { "OK": false };
|
|
|
|
try {
|
|
requestData = deserializeJSON(toString(getHttpRequestData().content));
|
|
userID = val(requestData.UserID ?: 0);
|
|
|
|
if (userID == 0 && structKeyExists(request, "UserID")) {
|
|
userID = val(request.UserID);
|
|
}
|
|
|
|
if (userID == 0) {
|
|
response["ERROR"] = "missing_params";
|
|
response["MESSAGE"] = "UserID is required.";
|
|
writeOutput(serializeJSON(response));
|
|
abort;
|
|
}
|
|
|
|
// Get ledger entries (most recent first)
|
|
qLedger = queryExecute("
|
|
SELECT ID, TaskID, GrossEarningsCents, ActivationWithheldCents,
|
|
NetTransferCents, Status, CreatedAt
|
|
FROM WorkPayoutLedgers
|
|
WHERE UserID = :userID
|
|
ORDER BY CreatedAt DESC
|
|
LIMIT 100
|
|
", { userID: userID }, { datasource: "payfrit" });
|
|
|
|
// Get totals
|
|
qTotals = queryExecute("
|
|
SELECT
|
|
COALESCE(SUM(GrossEarningsCents), 0) AS TotalGrossCents,
|
|
COALESCE(SUM(ActivationWithheldCents), 0) AS TotalWithheldCents,
|
|
COALESCE(SUM(CASE WHEN Status = 'transferred' THEN NetTransferCents ELSE 0 END), 0) AS TotalTransferredCents
|
|
FROM WorkPayoutLedgers
|
|
WHERE UserID = :userID
|
|
", { userID: userID }, { datasource: "payfrit" });
|
|
|
|
ledgerEntries = [];
|
|
for (row in qLedger) {
|
|
arrayAppend(ledgerEntries, {
|
|
"ID": row.ID,
|
|
"TaskID": row.TaskID,
|
|
"GrossEarningsCents": row.GrossEarningsCents,
|
|
"ActivationWithheldCents": row.ActivationWithheldCents,
|
|
"NetTransferCents": row.NetTransferCents,
|
|
"Status": row.Status,
|
|
"CreatedAt": dateTimeFormat(row.CreatedAt, "yyyy-MM-dd'T'HH:nn:ss")
|
|
});
|
|
}
|
|
|
|
response["OK"] = true;
|
|
response["LEDGER"] = ledgerEntries;
|
|
response["TOTALS"] = {
|
|
"TotalGrossCents": val(qTotals.TotalGrossCents),
|
|
"TotalWithheldCents": val(qTotals.TotalWithheldCents),
|
|
"TotalTransferredCents": val(qTotals.TotalTransferredCents)
|
|
};
|
|
|
|
} catch (any e) {
|
|
response["ERROR"] = e.message;
|
|
}
|
|
|
|
writeOutput(serializeJSON(response));
|
|
</cfscript>
|