V29 Release to resolve ARMS uploader issues.
This commit is contained in:
@@ -159,11 +159,7 @@ query ENTEGRAL_EXPORT($bodyshopid: uuid!, $start: timestamptz!, $end: timestampt
|
||||
foreach (dynamic job in data.jobs)
|
||||
{
|
||||
logger.Debug(job.ro_number);
|
||||
if (job.ro_number == "41040")
|
||||
{
|
||||
logger.Debug("the job.");
|
||||
}
|
||||
|
||||
|
||||
var RoNumber = string.Join("", Regex.Matches((string)(job.ro_number?.Value), @"\d").OfType<Match>().Select(m => m.Value));
|
||||
var VehicleYr = string.Join("", Regex.Matches((string)(job.v_model_yr?.Value ?? ""), @"\d").OfType<Match>().Select(m => m.Value));
|
||||
|
||||
|
||||
@@ -93,13 +93,13 @@ namespace BodyshopPartner.Utils
|
||||
|
||||
Route.Add("/arms/rodata/", (req, res, props) =>
|
||||
{
|
||||
hlog("Received an ARMS RO DAta Export Request");
|
||||
hlog("Received an ARMS RO Data Export Request");
|
||||
res.WithCORS();
|
||||
res.Close();
|
||||
}, "OPTIONS");
|
||||
Route.Add("/arms/rodata/",
|
||||
(req, res, props) => {
|
||||
hlog("Received an ARMS RO DAta Export Request");
|
||||
hlog("Received an ARMS RO Data Export Request");
|
||||
HandleArmsRODataExtract(req, res);
|
||||
}
|
||||
, "POST");
|
||||
|
||||
@@ -11,7 +11,7 @@ function v2 {
|
||||
# Post request to the partner to trigger the export.
|
||||
Invoke-WebRequest -Uri http://localhost:1337/arms/rodata/ -Method POST
|
||||
#Start the Arms Uploader.
|
||||
#Start-Process -FilePath "C:\ImEX\Applications\ARMSUploader\ROUpload.exe"
|
||||
Start-Process -FilePath "C:\ImEX\Applications\ARMSUploader\ROUpload.exe"
|
||||
}
|
||||
|
||||
function v1 {
|
||||
|
||||
Reference in New Issue
Block a user