This commit is contained in:
2023-01-22 02:29:58 +00:00
parent 255d74ae1f
commit f3534e7187
4 changed files with 765 additions and 16 deletions

View File

@@ -351,6 +351,12 @@ namespace Sockeye.Biz
p.VendorData += ",\n";
p.VendorData += jVendorNotificationItem["data"].Value<string>();
await ct.SaveChangesAsync();
#if (DEBUG)
//Test dev stuff
#warning DEV TEST ORDER PROCESSING REMOVE THIS WHEN DONE
await SockBotProcessPurchases.ParseVendorNotificationData(p, ct);
#endif
}
}// all vendor notifications loop
@@ -758,7 +764,7 @@ namespace Sockeye.Biz
tlr.RejectReason = jTrialRequestItem["rejectReason"].Value<string>();
tlr.LicenseId = TrialKeyId;
var biz = TrialLicenseRequestBiz.GetBiz(ct);
await biz.CreateAsync(tlr,true);
await biz.CreateAsync(tlr, true);
}