Revert "Merge pull request #2196 from Safelite/feature/CASH-79-BE"
This reverts commiteedfaa4425, reversing changes made to80d3087363.
This commit is contained in:
parent
a90b330d46
commit
b067ffde47
1 changed files with 6 additions and 8 deletions
|
|
@ -99,13 +99,6 @@ export async function submitWorkOrder({
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function saveQuote({ pageNameToLog }) {
|
export async function saveQuote({ pageNameToLog }) {
|
||||||
await baseMixin.methods.dispatchStoreActionWithLogging(
|
|
||||||
storeActions.SAVE_QUOTE,
|
|
||||||
{},
|
|
||||||
pageNameToLog,
|
|
||||||
false
|
|
||||||
);
|
|
||||||
|
|
||||||
// save session back to sv2 so the email gets saved just in case they refresh or step away and come back later
|
// save session back to sv2 so the email gets saved just in case they refresh or step away and come back later
|
||||||
await saveSession({
|
await saveSession({
|
||||||
pageNameToLog: pageNameToLog,
|
pageNameToLog: pageNameToLog,
|
||||||
|
|
@ -114,7 +107,12 @@ export async function saveQuote({ pageNameToLog }) {
|
||||||
createUnscheduledStatusWorkOrderForPIA: false,
|
createUnscheduledStatusWorkOrderForPIA: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
return;
|
return await baseMixin.methods.dispatchStoreActionWithLogging(
|
||||||
|
storeActions.SAVE_QUOTE,
|
||||||
|
{},
|
||||||
|
pageNameToLog,
|
||||||
|
false
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// PRIVATE FUNCTIONS //
|
// PRIVATE FUNCTIONS //
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue