|
@@ -347,7 +347,7 @@
|
|
|
if(_status === 'SUBMITTED') {
|
|
|
this.resetCurrentClaim();
|
|
|
}
|
|
|
- this.recaclculateNumUnsubmitted();
|
|
|
+ this.recalculateNumUnsubmitted();
|
|
|
}
|
|
|
}, 'json');
|
|
|
},
|
|
@@ -373,7 +373,7 @@
|
|
|
$.get('{{route('practice-management.process-claims')}}?' + ql, _data => {
|
|
|
this.claims = _data;
|
|
|
this.resetCurrentClaim();
|
|
|
- this.recaclculateNumUnsubmitted();
|
|
|
+ this.recalculateNumUnsubmitted();
|
|
|
hideMask();
|
|
|
}, 'json');
|
|
|
},
|
|
@@ -384,7 +384,7 @@
|
|
|
this.filter.hcp = '';
|
|
|
this.doFilter();
|
|
|
},
|
|
|
- recaclculateNumUnsubmitted: function() {
|
|
|
+ recalculateNumUnsubmitted: function() {
|
|
|
let count = 0;
|
|
|
if(this.claims && this.claims.length) {
|
|
|
for (let i = 0; i < this.claims.length; i++) {
|
|
@@ -400,7 +400,7 @@
|
|
|
mounted: function() {
|
|
|
let self = this;
|
|
|
this.resetCurrentClaim();
|
|
|
- this.recaclculateNumUnsubmitted();
|
|
|
+ this.recalculateNumUnsubmitted();
|
|
|
window.setTimeout(() => {
|
|
|
$('[pro-suggest-initialized]').removeAttr('pro-suggest-initialized');
|
|
|
$('.pro-suggest-input').remove();
|