Additional WIP Fortellis.

This commit is contained in:
Patrick Fic
2025-09-11 08:45:34 -07:00
parent 1728982b2b
commit 661678eb1c
3 changed files with 92 additions and 100 deletions

View File

@@ -87,7 +87,7 @@ async function FetchSubscriptions({ redisHelpers, socket, jobid }) {
return SubscriptionMeta;
}
} catch (error) {
CreateFortellisLogEvent(socket, "ERROR", `Error fetching subscription metadata`, {
CreateFortellisLogEvent(socket, "ERROR", `Error fetching subscription metadata.`, {
error: error.message,
stack: error.stack
});
@@ -315,22 +315,22 @@ const FortellisActions = {
url: isProduction
? "https://api.fortellis.io/cdk/drive/glpost/startWIP"
: "https://api.fortellis.io/cdk-test/drive/glpost/startWIP",
type: "put",
apiName: "CDK Drive Post Accounting GL",
type: "post",
apiName: "CDK Drive Post Accounts GL WIP",
},
TranBatchWip: {
url: isProduction
? "https://api.fortellis.io/cdk/drive/glpost/transBatchWIP"
: "https://api.fortellis.io/cdk-test/drive/glpost/transBatchWIP",
type: "put",
apiName: "CDK Drive Post Accounting GL",
type: "post",
apiName: "CDK Drive Post Accounts GL WIP",
},
PostBatchWip: {
url: isProduction
? "https://api.fortellis.io/cdk/drive/glpost/transBatchWIP"
? "https://api.fortellis.io/cdk/drive/glpost/postBatchWIP"
: "https://api.fortellis.io/cdk-test/drive/glpost/postBatchWIP",
type: "put",
apiName: "CDK Drive Post Accounting GL",
type: "post",
apiName: "CDK Drive Post Accounts GL WIP",
},
};