Removed debugging statements.
This commit is contained in:
parent
a6cb1e54ac
commit
76cdd1a1e3
1 changed files with 1 additions and 6 deletions
|
|
@ -737,7 +737,6 @@ export const useMainStore = defineStore({
|
|||
bailoutOnError: false
|
||||
});
|
||||
this.order.insuranceCoverage.claimNumber = response.data.claimNumber;
|
||||
console.error("Register Claim - Claim Number: ", this.order.insuranceCoverage.claimNumber);
|
||||
|
||||
// If register claim at end, then we have loss report number we need to populate.
|
||||
if ( this.issConfig.callClaimRegistrationAtEnd ) {
|
||||
|
|
@ -764,7 +763,7 @@ export const useMainStore = defineStore({
|
|||
if ( !this.issConfig.callClaimRegistrationAtEnd ) {
|
||||
this.updateCoverageStatus(coverageStatuses.NO_COVERAGE);
|
||||
}
|
||||
console.error("Claim number cleared due to error during claim registration: ", e);
|
||||
|
||||
this.order.insuranceCoverage.claimNumber = null;
|
||||
}
|
||||
},
|
||||
|
|
@ -1556,9 +1555,6 @@ export const useMainStore = defineStore({
|
|||
const payloadVapsItems = setClearOnSubmit(lineItems.vaps, false);
|
||||
const payloadFeeItems = setClearOnSubmit(lineItems.feeItems, shouldClearOnSubmit);
|
||||
|
||||
|
||||
console.error("Save Session - Claim Number: ", insuranceCoverage.claimNumber);
|
||||
|
||||
const payload = {
|
||||
applicationUser: {
|
||||
crmCustomerId: this.applicationUser.crmCustomerId,
|
||||
|
|
@ -2064,7 +2060,6 @@ export const useMainStore = defineStore({
|
|||
this.order.insuranceCoverage.coverageStatus = coverageStatuses.PENDING;
|
||||
this.order.insuranceCoverage.coverageType = coverageType.NONE;
|
||||
this.order.insuranceCoverage.isItacOptimized = false;
|
||||
console.error("Reset Insurance called.");
|
||||
this.order.insuranceCoverage.claimNumber = null;
|
||||
this.order.insuranceCoverage.lossReportNumber = null;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue