This commit is contained in:
2021-05-14 23:52:23 +00:00
parent a15f0e9087
commit 3e6b0be321

View File

@@ -410,7 +410,7 @@ export default {
async submitNewContract() { async submitNewContract() {
//save new contract route, this only ever gets called from a clean wo with no dirty edits so just save the contract and reset the wo from the result //save new contract route, this only ever gets called from a clean wo with no dirty edits so just save the contract and reset the wo from the result
let res = await window.$gz.api.post( let res = await window.$gz.api.post(
`${API_BASE_URL}contract`, `${API_BASE_URL}contract/${this.obj.id}`,
this.obj.contractId this.obj.contractId
); );
if (res.error) { if (res.error) {
@@ -418,6 +418,11 @@ export default {
window.$gz.form.setErrorBoxErrors(this); window.$gz.form.setErrorBoxErrors(this);
} else { } else {
this.obj = res.data; this.obj = res.data;
window.$gz.form.setFormState({
vm: this,
dirty: false,
valid: true
});
} }
}, },
async submit() { async submit() {