This commit is contained in:
@@ -511,10 +511,6 @@ todo:2 many biz objects are not using new PUT methodology
|
|||||||
|
|
||||||
CURRENTLY DOING: workorder* touches and fixups
|
CURRENTLY DOING: workorder* touches and fixups
|
||||||
|
|
||||||
to be tested:
|
|
||||||
Import (admin->import object) make sure it works, should work for bizadmin user only
|
|
||||||
|
|
||||||
|
|
||||||
Add back end rules as necessary for quotes
|
Add back end rules as necessary for quotes
|
||||||
|
|
||||||
expose source PM in workorder data list so that can filter by that PM number and then mass delete if fucked up the generator
|
expose source PM in workorder data list so that can filter by that PM number and then mass delete if fucked up the generator
|
||||||
@@ -939,6 +935,8 @@ BUILD CHANGES OF NOTE
|
|||||||
BUILD 117
|
BUILD 117
|
||||||
|
|
||||||
- Seeded work order item expense no longer sets TotalCost (case 3890)
|
- Seeded work order item expense no longer sets TotalCost (case 3890)
|
||||||
|
- Alternate address change not saving (case 3914) fixed
|
||||||
|
- Price override / contracts (case 3914) by design see notes in case
|
||||||
- Quote implemented
|
- Quote implemented
|
||||||
Several cases were related to parts of wo wanted to be added to quote object (like expenses, outside service etc), I won't list them all, basically I just opted to add everything except part requests
|
Several cases were related to parts of wo wanted to be added to quote object (like expenses, outside service etc), I won't list them all, basically I just opted to add everything except part requests
|
||||||
Quote has it's own status system like workorder does but separate and not related to wo (case 3628, also a customer requested feature on that case)
|
Quote has it's own status system like workorder does but separate and not related to wo (case 3628, also a customer requested feature on that case)
|
||||||
|
|||||||
@@ -405,6 +405,7 @@ export default {
|
|||||||
this.value.postCode = item.src.postCode;
|
this.value.postCode = item.src.postCode;
|
||||||
|
|
||||||
this.pvm.formState.dirty = true;
|
this.pvm.formState.dirty = true;
|
||||||
|
this.value.isDirty = true;
|
||||||
} else {
|
} else {
|
||||||
//physical
|
//physical
|
||||||
this.value.address = item.src.address;
|
this.value.address = item.src.address;
|
||||||
@@ -418,6 +419,7 @@ export default {
|
|||||||
this.value.longitude = item.src.longitude;
|
this.value.longitude = item.src.longitude;
|
||||||
}
|
}
|
||||||
this.pvm.formState.dirty = true;
|
this.pvm.formState.dirty = true;
|
||||||
|
this.value.isDirty = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async AddressSelectAlternatePostal() {
|
async AddressSelectAlternatePostal() {
|
||||||
@@ -436,6 +438,7 @@ export default {
|
|||||||
this.value.postRegion = this.value.region;
|
this.value.postRegion = this.value.region;
|
||||||
this.value.postCountry = this.value.country;
|
this.value.postCountry = this.value.country;
|
||||||
this.pvm.formState.dirty = true;
|
this.pvm.formState.dirty = true;
|
||||||
|
this.value.isDirty = true;
|
||||||
},
|
},
|
||||||
AddressCopyToPhysical() {
|
AddressCopyToPhysical() {
|
||||||
this.value.address = this.value.postAddress;
|
this.value.address = this.value.postAddress;
|
||||||
@@ -443,6 +446,7 @@ export default {
|
|||||||
this.value.region = this.value.postRegion;
|
this.value.region = this.value.postRegion;
|
||||||
this.value.country = this.value.postCountry;
|
this.value.country = this.value.postCountry;
|
||||||
this.pvm.formState.dirty = true;
|
this.pvm.formState.dirty = true;
|
||||||
|
this.value.isDirty = true;
|
||||||
},
|
},
|
||||||
AddressCopyPhysicalToClipBoard() {
|
AddressCopyPhysicalToClipBoard() {
|
||||||
let ret = "";
|
let ret = "";
|
||||||
|
|||||||
Reference in New Issue
Block a user