This commit is contained in:
@@ -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
|
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
|
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: 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
|
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?
|
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??
|
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
|
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.
|
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.
|
---> System.TimeoutException: The operation was canceled.
|
||||||
|
|||||||
@@ -322,7 +322,23 @@
|
|||||||
<v-card-title>
|
<v-card-title>
|
||||||
<span class="text-h5">{{ $ay.t("SelectAlternateAddress") }}</span>
|
<span class="text-h5">{{ $ay.t("SelectAlternateAddress") }}</span>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text> {{ alternateAddresses }}</v-card-text>
|
<v-card-text>
|
||||||
|
<v-list>
|
||||||
|
<template v-for="(item, index) in alternateAddresses">
|
||||||
|
<v-list-item :key="index" @click="selectAlternate(item)">
|
||||||
|
<v-list-item-icon>{{ item.icon }} </v-list-item-icon>
|
||||||
|
<v-list-item-content>
|
||||||
|
<v-list-item-title>{{ item.name }}</v-list-item-title>
|
||||||
|
<v-list-item-subtitle
|
||||||
|
v-html="item.viz"
|
||||||
|
></v-list-item-subtitle>
|
||||||
|
</v-list-item-content>
|
||||||
|
</v-list-item>
|
||||||
|
</template>
|
||||||
|
</v-list>
|
||||||
|
|
||||||
|
{{ alternateAddresses }}</v-card-text
|
||||||
|
>
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
|
|
||||||
@@ -512,6 +528,7 @@ async function populateAlternateAddresses(vm) {
|
|||||||
vm.alternateAddresses.push({
|
vm.alternateAddresses.push({
|
||||||
name: res.data.customerpost.name,
|
name: res.data.customerpost.name,
|
||||||
viz: formatAddress(res.data.customerpost).postal,
|
viz: formatAddress(res.data.customerpost).postal,
|
||||||
|
icon: "$ayiBell",
|
||||||
src: res.data
|
src: res.data
|
||||||
});
|
});
|
||||||
//headoffice if present
|
//headoffice if present
|
||||||
@@ -519,6 +536,7 @@ async function populateAlternateAddresses(vm) {
|
|||||||
vm.alternateAddresses.push({
|
vm.alternateAddresses.push({
|
||||||
name: res.data.headofficepost.name,
|
name: res.data.headofficepost.name,
|
||||||
viz: formatAddress(res.data.headofficepost).postal,
|
viz: formatAddress(res.data.headofficepost).postal,
|
||||||
|
icon: "$ayiBell",
|
||||||
src: res.data
|
src: res.data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -526,6 +544,7 @@ async function populateAlternateAddresses(vm) {
|
|||||||
vm.alternateAddresses.push({
|
vm.alternateAddresses.push({
|
||||||
name: res.data.customerphys.name,
|
name: res.data.customerphys.name,
|
||||||
viz: formatAddress(res.data.customerphys).physical,
|
viz: formatAddress(res.data.customerphys).physical,
|
||||||
|
icon: "$ayiBell",
|
||||||
src: res.data
|
src: res.data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -545,6 +564,7 @@ async function populateAlternateAddresses(vm) {
|
|||||||
vm.alternateAddresses.push({
|
vm.alternateAddresses.push({
|
||||||
name: res.data.unit.name,
|
name: res.data.unit.name,
|
||||||
viz: formatAddress(res.data.unit).physical,
|
viz: formatAddress(res.data.unit).physical,
|
||||||
|
icon: "$ayiBell",
|
||||||
src: res.data
|
src: res.data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,9 +4,7 @@
|
|||||||
<v-dialog v-model="seedDialog" persistent max-width="600px">
|
<v-dialog v-model="seedDialog" persistent max-width="600px">
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title>
|
<v-card-title>
|
||||||
<span class="text-h5 mb-2">{{
|
<span class="text-h5 mb-2">{{ $ay.t("GenerateSampleData") }}</span>
|
||||||
$ay.t("GenerateSampleData")
|
|
||||||
}}</span>
|
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<div v-if="formState.readOnly" class="text-h6 mt-8 warning--text">
|
<div v-if="formState.readOnly" class="text-h6 mt-8 warning--text">
|
||||||
|
|||||||
Reference in New Issue
Block a user