From db964303b016b1ef62dde4ce4435afb8270eb79f Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 3 May 2021 14:22:39 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 6 +++++ ayanova/src/components/work-order-address.vue | 22 ++++++++++++++++++- ayanova/src/views/ay-evaluate.vue | 4 +--- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index f80bd867..ff28f673 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -158,6 +158,8 @@ todo: Reports need to generate under a file name that is informative (this appli Although, if you think of it, doing the same workorder again *should* just overwrite the existing one as it will be identical or at least more up to date so perhaps no need for a nonce +todo: server log needs to indicate time zone it's logging in at boot so can understand the log entry times vs real world times + todo: update to latest postgres portable and document how to do it as well or a link to how to do it todo: errors are inconsistent some use "error" some use "code" to mean the same thing @@ -192,7 +194,11 @@ todo: Error at the devops server just looking at gold contract: What up with this and can it be blocked from logging / something simpler logged instead? + Try to determine if it's time related, maybe during backup?? + find a pattern + try logging success always to see how rare it is I don't think it's happening at the linux server, it seems to be a comm issue from my ws?? + no, it actually is. bittorrent interferes with it like it does with my browsing, maybe not the cause though, just a data point 2021-03-17 05:19:27.0750|ERROR|JobsBiz|Server::ProcessJobsAsync unexpected error during processing=>System.Threading.Tasks.TaskCanceledException: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing. ---> System.TimeoutException: The operation was canceled. diff --git a/ayanova/src/components/work-order-address.vue b/ayanova/src/components/work-order-address.vue index a2ea4848..6b48a403 100644 --- a/ayanova/src/components/work-order-address.vue +++ b/ayanova/src/components/work-order-address.vue @@ -322,7 +322,23 @@ {{ $ay.t("SelectAlternateAddress") }} - {{ alternateAddresses }} + + + + + + {{ alternateAddresses }} @@ -512,6 +528,7 @@ async function populateAlternateAddresses(vm) { vm.alternateAddresses.push({ name: res.data.customerpost.name, viz: formatAddress(res.data.customerpost).postal, + icon: "$ayiBell", src: res.data }); //headoffice if present @@ -519,6 +536,7 @@ async function populateAlternateAddresses(vm) { vm.alternateAddresses.push({ name: res.data.headofficepost.name, viz: formatAddress(res.data.headofficepost).postal, + icon: "$ayiBell", src: res.data }); } @@ -526,6 +544,7 @@ async function populateAlternateAddresses(vm) { vm.alternateAddresses.push({ name: res.data.customerphys.name, viz: formatAddress(res.data.customerphys).physical, + icon: "$ayiBell", src: res.data }); } @@ -545,6 +564,7 @@ async function populateAlternateAddresses(vm) { vm.alternateAddresses.push({ name: res.data.unit.name, viz: formatAddress(res.data.unit).physical, + icon: "$ayiBell", src: res.data }); } diff --git a/ayanova/src/views/ay-evaluate.vue b/ayanova/src/views/ay-evaluate.vue index 973d8afd..fcf3e879 100644 --- a/ayanova/src/views/ay-evaluate.vue +++ b/ayanova/src/views/ay-evaluate.vue @@ -4,9 +4,7 @@ - {{ - $ay.t("GenerateSampleData") - }} + {{ $ay.t("GenerateSampleData") }}