This commit is contained in:
@@ -75,7 +75,9 @@ namespace Sockeye.DataList
|
|||||||
TKey = "PurchaseDate",
|
TKey = "PurchaseDate",
|
||||||
FieldKey = "PurchaseDate",
|
FieldKey = "PurchaseDate",
|
||||||
UiFieldDataType = (int)UiFieldDataType.DateTime,
|
UiFieldDataType = (int)UiFieldDataType.DateTime,
|
||||||
SqlValueColumnName = "apurchase.purchasedate"
|
SqlValueColumnName = "apurchase.purchasedate",
|
||||||
|
SockType = (int)SockType.Purchase,
|
||||||
|
SqlIdColumnName = "apurchase.id"
|
||||||
});
|
});
|
||||||
|
|
||||||
FieldDefinitions.Add(new DataListFieldDefinition
|
FieldDefinitions.Add(new DataListFieldDefinition
|
||||||
|
|||||||
@@ -53,7 +53,8 @@ namespace Sockeye.Biz
|
|||||||
//Process a new request / Generate an email confirm code
|
//Process a new request / Generate an email confirm code
|
||||||
newObject.EmailConfirmCode = StringUtil.GenFetchCode();
|
newObject.EmailConfirmCode = StringUtil.GenFetchCode();
|
||||||
newObject.EmailValidated = false;
|
newObject.EmailValidated = false;
|
||||||
newObject.Status = TrialRequestStatus.AwaitingEmailValidation;
|
if (!importingDoNotNotify)
|
||||||
|
newObject.Status = TrialRequestStatus.AwaitingEmailValidation;
|
||||||
|
|
||||||
await ct.TrialLicenseRequest.AddAsync(newObject);
|
await ct.TrialLicenseRequest.AddAsync(newObject);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
@@ -150,7 +151,7 @@ namespace Sockeye.Biz
|
|||||||
l.PGroup = putObject.PGroup;
|
l.PGroup = putObject.PGroup;
|
||||||
l.TrialMode = true;
|
l.TrialMode = true;
|
||||||
l.RegTo = putObject.CompanyName;
|
l.RegTo = putObject.CompanyName;
|
||||||
l.FetchEmail=putObject.Email;
|
l.FetchEmail = putObject.Email;
|
||||||
//perpet and sub both same number of users, covers seeded data values
|
//perpet and sub both same number of users, covers seeded data values
|
||||||
l.Users = RavenKeyFactory.TRIAL_KEY_USERS;
|
l.Users = RavenKeyFactory.TRIAL_KEY_USERS;
|
||||||
|
|
||||||
|
|||||||
20
todo.txt
20
todo.txt
@@ -1,13 +1,25 @@
|
|||||||
TODO:
|
TODO:
|
||||||
|
|
||||||
Test with v7 and v8 and test purchase vendor notification route with fake sales testsf
|
UNTESTED
|
||||||
If it works then test install on sockey.ayanova.com alt port and re-test then flip and transition asap.
|
notifications on RAVEN trial request awaiting approval
|
||||||
Need this basically done for now to move back to raven stuff asap.
|
sub server create and track
|
||||||
|
calendar event for decommission trial sub servers and notification
|
||||||
|
super confirm it will *not* attempt to email anyone on import even though it didn't earlier when I just ran with it but double confirm it anyway
|
||||||
|
Vendor notification route Test with v7 and v8 and test purchase vendor notification route with fake sales testsf
|
||||||
|
v7 license fetch
|
||||||
|
Everything again on release build
|
||||||
|
|
||||||
then on to all the basics, fetch licenses for v7 and v8, trial request processing trigger route, trial subscription server processing and trigger route
|
|
||||||
|
TESTED
|
||||||
|
Raven
|
||||||
|
trial request entire flow including email validation
|
||||||
|
license generation manually and test installed
|
||||||
|
|
||||||
TODO BEFORE RELEASE
|
TODO BEFORE RELEASE
|
||||||
|
|
||||||
|
Re-test all of the above on ayanova.com server before flipping over from rockfish
|
||||||
|
copy of all howto docs to sockeye somewhere or ensure they are still available before final flip over, will need them
|
||||||
|
|
||||||
SERVER
|
SERVER
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user