case 4087
This commit is contained in:
@@ -264,6 +264,8 @@ I've done the *Orders but nothing else other than a quick check of customer, so
|
||||
Also the custom fields validation is returning the form key over the model but it should be the other way around, modelkey first if found or secondarily formkey as it's assumed the form key *is* the same as the model key
|
||||
So, the fix is to go back through all the wo quote and when I get to it PM forms and make sure the custom required valiation issues the model key and that the form field servererrors code specifies the model key as well
|
||||
(which is how it was basically)
|
||||
1: work order form header fields customerrefencenumber others not working after changing this so re-check
|
||||
giong to need to go through all fields in all docs to make sure this is working properly
|
||||
|
||||
|
||||
- 1 todo: Search limited to a type is *not* working, it just returns all results, search from a Customer for example and you will see all object results
|
||||
@@ -845,3 +847,70 @@ BUILD 8.0.0-beta.0.13 CHANGES OF NOTE
|
||||
- case 4092, 4094 fixed
|
||||
- case 4095 implemented
|
||||
- case 4096 updated docs
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
====================== Deck investigation log ===================
|
||||
|
||||
2022-01-25 08:32:41 sent email from gzmailadmin@gmail.com account to Meicorp (laurie@meicorproperty.com, cc: hillary@meicorproperty.com, jennifer@meicorproperty.com)
|
||||
Good morning, my name is John Cardinal and my wife Joyce and I live in unit 404 at 1045 Beecher manor as renters in one of the properties under your management.
|
||||
|
||||
In case you are not aware a notice from Ryan Harrison at Bayview property management was put up in Beecher manor entranceway and a copy slid under our door advising of a "Deck investigation" scheduled for January 27th.
|
||||
|
||||
We have, to this point, not received any official notice of entry from Meicorp and we have concerns about allowing the inspection and whatever work they are planning on doing without official notice from our landlord, Meicorp.
|
||||
|
||||
If it is the wishes of the owner of this unit and yourselves to have this inspection go forward, we will require official notice of entry otherwise we will be forced to deny entry for the investigation of the deck on Thursday out of an abundance of caution that we may be doing something we should not be doing.
|
||||
|
||||
As it is now Tuesday morning and the deck "investigation" is scheduled for 9:30am Thursday morning time is quickly running out to provide the required 24 hours notice. Please advise.
|
||||
|
||||
- John Cardinal
|
||||
404-1045 Beecher Manor
|
||||
-------------------------
|
||||
|
||||
2022-01-25 09:54:41 Called Bayview @ 250.586.1100 and spoke with Ryan Harrison
|
||||
|
||||
I Made it clear we are renters and not permitted to authorize work and a notice slid under our door is not what is required and therefore
|
||||
that we will not be permitting access for deck investigation on Thursday without notice of access from our landlord.
|
||||
|
||||
He said he understood and acknowledged that this is true and knows we can't authorize it, he stated that he had previously contacted Meicorp to arrange that
|
||||
and they should have notified us already with official access notice.
|
||||
|
||||
He claims he did not slide it under our door, only emailed it to someone (unclear who maybe meicorp or strate?).
|
||||
|
||||
He stated he will contact meicorp and make sure we get our proper notice.
|
||||
|
||||
|
||||
|
||||
|
||||
000000000000000000 Questions for RDH Building sciences 250-703-4753
|
||||
What will you be doing?
|
||||
|
||||
How long will it take?
|
||||
|
||||
How many people will require entry?
|
||||
|
||||
How much of the balcony needs to be cleared? What area will you need access to On the balcony?
|
||||
|
||||
What is your covid safety protocol you will be following?
|
||||
|
||||
We will require shoes off, is that a problem?
|
||||
|
||||
We will require minimal touching of anything in the apartment not related to the job is that a problem?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Attn: Ryan Harrison re VIS3112 Beecher manor January 27th deck inspection. We are concerned that Bayview may have overlooked the need to ensure that we receive notice of entry from our landlord Meicorp in order to allow RDH building sciences to inspect the deck. Since this will be happening on Thursday and it is now Tuesday morning it doesn't allow for much time to ensure this happens with the required 24 hours notice. I will call later today if I don't hear back soon as it does seem important however we do not want the liability of not following proper procedures as I'm sure you can understand.
|
||||
|
||||
@@ -911,19 +911,29 @@ export default {
|
||||
|
||||
if (isNew) {
|
||||
if (globalMinutes != 0) {
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceStopDate = window.$gz.locale.addMinutesToUTC8601String(
|
||||
//todo: minimize this code, try to use dStop instead of new variable and let else block set actual minutes - cleaner
|
||||
dStop = window.$gz.locale.addMinutesToUTC8601String(
|
||||
dStart,
|
||||
globalMinutes
|
||||
);
|
||||
|
||||
//set stop date based on start date and global minutes
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
this.activeItemIndex
|
||||
].serviceRateQuantity = globalMinutes;
|
||||
].serviceStopDate = dStop;
|
||||
|
||||
// = window.$gz.locale.addMinutesToUTC8601String(
|
||||
// dStart,
|
||||
// globalMinutes
|
||||
// );
|
||||
// this.value.items[this.activeWoItemIndex].labors[
|
||||
// this.activeItemIndex
|
||||
// ].serviceRateQuantity = window.$gz.locale.diffHoursFromUTC8601String(
|
||||
// dStart,
|
||||
// sstop
|
||||
// );
|
||||
}
|
||||
} else {
|
||||
}
|
||||
{
|
||||
//Existing record or both dates filled, just update quantity
|
||||
if (dStop != null) {
|
||||
this.value.items[this.activeWoItemIndex].labors[
|
||||
|
||||
Reference in New Issue
Block a user