|
@@ -52,9 +52,9 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
role: any;
|
|
role: any;
|
|
check_date: any;
|
|
check_date: any;
|
|
|
|
|
|
- nextstep:any;
|
|
|
|
|
|
+ nextstep: any;
|
|
|
|
|
|
- checkupdatedelete:boolean;
|
|
|
|
|
|
+ checkupdatedelete: boolean;
|
|
saveautoData = [];
|
|
saveautoData = [];
|
|
autofillData = [];
|
|
autofillData = [];
|
|
|
|
|
|
@@ -64,6 +64,7 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
|
|
|
|
|
|
|
|
entry_successflag: boolean = false;
|
|
entry_successflag: boolean = false;
|
|
|
|
+ second_contact: any;
|
|
|
|
|
|
constructor(private commonservice: CommonFunctionService, private router: Router, private http: HttpClient) {
|
|
constructor(private commonservice: CommonFunctionService, private router: Router, private http: HttpClient) {
|
|
|
|
|
|
@@ -103,11 +104,12 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
this.stage_des = response.data[0].stage_desc;
|
|
this.stage_des = response.data[0].stage_desc;
|
|
this.stage_id = response.data[0].stage_id;
|
|
this.stage_id = response.data[0].stage_id;
|
|
this.check_date = response.data[0].created_on;
|
|
this.check_date = response.data[0].created_on;
|
|
- this.nextstep=response.data[0].nextstep;
|
|
|
|
|
|
+ this.nextstep = response.data[0].nextstep;
|
|
|
|
+ this.second_contact = response.data[0].second_contact;
|
|
//this.visit_date = datePipetransform(this.visit_date.now(),'dd/MM/yyyy');
|
|
//this.visit_date = datePipetransform(this.visit_date.now(),'dd/MM/yyyy');
|
|
this.visit_date = this.formatDate(this.visit_date);
|
|
this.visit_date = this.formatDate(this.visit_date);
|
|
- this.check_date=this.formatDate(this.check_date);
|
|
|
|
-
|
|
|
|
|
|
+ this.check_date = this.formatDate(this.check_date);
|
|
|
|
+
|
|
this.visit_date = String(this.visit_date)
|
|
this.visit_date = String(this.visit_date)
|
|
console.log(" this.visit_date", this.visit_date, this.customer_name, this.contact_name, this.stage_des);
|
|
console.log(" this.visit_date", this.visit_date, this.customer_name, this.contact_name, this.stage_des);
|
|
console.log("in updatation");
|
|
console.log("in updatation");
|
|
@@ -120,34 +122,35 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
stageName: new FormControl(this.stage_des, Validators.required),
|
|
stageName: new FormControl(this.stage_des, Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
nextstep: new FormControl(this.nextstep, Validators.required),
|
|
nextstep: new FormControl(this.nextstep, Validators.required),
|
|
|
|
+ secondContact: new FormControl(this.second_contact, Validators.required)
|
|
|
|
|
|
|
|
|
|
});
|
|
});
|
|
console.log("this.check_date", this.check_date);
|
|
console.log("this.check_date", this.check_date);
|
|
-
|
|
|
|
|
|
+
|
|
var date1 = new Date(this.check_date);
|
|
var date1 = new Date(this.check_date);
|
|
var date2 = new Date();
|
|
var date2 = new Date();
|
|
-
|
|
|
|
|
|
+
|
|
// To calculate the time difference of two dates
|
|
// To calculate the time difference of two dates
|
|
var Difference_In_Time = date2.getTime() - date1.getTime();
|
|
var Difference_In_Time = date2.getTime() - date1.getTime();
|
|
-
|
|
|
|
|
|
+
|
|
// To calculate the no. of days between two dates
|
|
// To calculate the no. of days between two dates
|
|
var Difference_In_Days = Difference_In_Time / (1000 * 3600 * 24);
|
|
var Difference_In_Days = Difference_In_Time / (1000 * 3600 * 24);
|
|
-
|
|
|
|
- console.log("Difference_In_Days---->",Math.round(Difference_In_Days));
|
|
|
|
|
|
|
|
- if(Math.round(Difference_In_Days) <= 1){
|
|
|
|
|
|
+ console.log("Difference_In_Days---->", Math.round(Difference_In_Days));
|
|
|
|
+
|
|
|
|
+ if (Math.round(Difference_In_Days) <= 1) {
|
|
console.log("differnt in one days");
|
|
console.log("differnt in one days");
|
|
- this.checkupdatedelete=true;
|
|
|
|
|
|
+ this.checkupdatedelete = true;
|
|
|
|
|
|
- }else{
|
|
|
|
- console.log("difference is longer");
|
|
|
|
- this.checkupdatedelete=false;
|
|
|
|
- // this.FormControl['name'].disable();
|
|
|
|
|
|
+ } else {
|
|
|
|
+ console.log("difference is longer");
|
|
|
|
+ this.checkupdatedelete = false;
|
|
|
|
+ // this.FormControl['name'].disable();
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|
|
@@ -168,6 +171,8 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
stageName: new FormControl(null, Validators.required),
|
|
stageName: new FormControl(null, Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
nextstep: new FormControl(null, Validators.required),
|
|
nextstep: new FormControl(null, Validators.required),
|
|
|
|
+ secondContact: new FormControl(null, Validators.required)
|
|
|
|
+
|
|
|
|
|
|
});
|
|
});
|
|
|
|
|
|
@@ -196,7 +201,7 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
|
|
|
|
this.current_date = new Date();
|
|
this.current_date = new Date();
|
|
var dd = this.current_date.getDate();
|
|
var dd = this.current_date.getDate();
|
|
- var mm = this.current_date.getMonth() + 1;
|
|
|
|
|
|
+ var mm = this.current_date.getMonth() + 1;
|
|
var yyyy = this.current_date.getFullYear();
|
|
var yyyy = this.current_date.getFullYear();
|
|
if (dd < 10) {
|
|
if (dd < 10) {
|
|
dd = '0' + dd
|
|
dd = '0' + dd
|
|
@@ -205,7 +210,7 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
mm = '0' + mm
|
|
mm = '0' + mm
|
|
}
|
|
}
|
|
this.current_date = yyyy + '-' + mm + '-' + dd;
|
|
this.current_date = yyyy + '-' + mm + '-' + dd;
|
|
- console.log("max date------>",this.current_date);
|
|
|
|
|
|
+ console.log("max date------>", this.current_date);
|
|
|
|
|
|
document.getElementById("Date").setAttribute("max", this.current_date);
|
|
document.getElementById("Date").setAttribute("max", this.current_date);
|
|
|
|
|
|
@@ -214,22 +219,22 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
//console.log("dddddddd------->", this.current_date.getDate() - 7);
|
|
//console.log("dddddddd------->", this.current_date.getDate() - 7);
|
|
|
|
|
|
var date = dd - 7;
|
|
var date = dd - 7;
|
|
- console.log("date====>",date);
|
|
|
|
|
|
+ console.log("date====>", date);
|
|
|
|
|
|
if (date < 10) {
|
|
if (date < 10) {
|
|
dd1 = '0' + date;
|
|
dd1 = '0' + date;
|
|
- }else{
|
|
|
|
- dd1=date;
|
|
|
|
|
|
+ } else {
|
|
|
|
+ dd1 = date;
|
|
}
|
|
}
|
|
|
|
|
|
- console.log("dd1-------->",dd1)
|
|
|
|
|
|
+ console.log("dd1-------->", dd1)
|
|
|
|
+
|
|
|
|
|
|
-
|
|
|
|
this.mincurrent_date = yyyy + '-' + mm + '-' + dd1;
|
|
this.mincurrent_date = yyyy + '-' + mm + '-' + dd1;
|
|
document.getElementById("Date").setAttribute("min", this.mincurrent_date);
|
|
document.getElementById("Date").setAttribute("min", this.mincurrent_date);
|
|
-
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -317,6 +322,8 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
custName: new FormControl(this.customer_name, Validators.required),
|
|
custName: new FormControl(this.customer_name, Validators.required),
|
|
stageName: new FormControl(this.stage_des, Validators.required),
|
|
stageName: new FormControl(this.stage_des, Validators.required),
|
|
nextstep: new FormControl(this.autofillData["nextstep"], Validators.required),
|
|
nextstep: new FormControl(this.autofillData["nextstep"], Validators.required),
|
|
|
|
+ secondContact: new FormControl(this.second_contact, Validators.required),
|
|
|
|
+
|
|
|
|
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -355,6 +362,8 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
stageName: new FormControl(this.stage_des, Validators.required),
|
|
stageName: new FormControl(this.stage_des, Validators.required),
|
|
ph_meet: new FormControl(this.autofillData["ph_meet"], Validators.required),
|
|
ph_meet: new FormControl(this.autofillData["ph_meet"], Validators.required),
|
|
nextstep: new FormControl(this.autofillData["nextstep"], Validators.required),
|
|
nextstep: new FormControl(this.autofillData["nextstep"], Validators.required),
|
|
|
|
+ secondContact: new FormControl(this.second_contact, Validators.required),
|
|
|
|
+
|
|
|
|
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -409,6 +418,10 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
} if (form.value.stageName.length == undefined) {
|
|
} if (form.value.stageName.length == undefined) {
|
|
console.log("change stage id");
|
|
console.log("change stage id");
|
|
this.stage_id = form.value.stageName.stage_id;
|
|
this.stage_id = form.value.stageName.stage_id;
|
|
|
|
+ } if (form.value.secondContact.length == undefined) {
|
|
|
|
+ console.log("change contactname", form.value.secondContact);
|
|
|
|
+ this.second_contact = form.value.secondContact.first_name + ' ' + form.value.secondContact.last_name;
|
|
|
|
+ console.log("contact name", this.second_contact);
|
|
}
|
|
}
|
|
|
|
|
|
const createdvr = {
|
|
const createdvr = {
|
|
@@ -420,7 +433,8 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
physical_metting: form.value.ph_meet,
|
|
physical_metting: form.value.ph_meet,
|
|
stage_id: this.stage_id,
|
|
stage_id: this.stage_id,
|
|
updated_by: this.login_id,
|
|
updated_by: this.login_id,
|
|
- nextstep: form.value.nextstep
|
|
|
|
|
|
+ nextstep: form.value.nextstep,
|
|
|
|
+ second_contact: this.second_contact
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
@@ -467,19 +481,22 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
//in insert
|
|
//in insert
|
|
var createdvr;
|
|
var createdvr;
|
|
console.log("this.stage_id", this.stage_id);
|
|
console.log("this.stage_id", this.stage_id);
|
|
|
|
+ console.log("this.second_contact",this.second_contact,form.value.secondContact);
|
|
|
|
|
|
if (this.stage_id == undefined) {
|
|
if (this.stage_id == undefined) {
|
|
|
|
|
|
createdvr = {
|
|
createdvr = {
|
|
visit_date: form.value.date,
|
|
visit_date: form.value.date,
|
|
customer_name: (this.customer_name == undefined ? form.value.custName.customer_name : this.customer_name),
|
|
customer_name: (this.customer_name == undefined ? form.value.custName.customer_name : this.customer_name),
|
|
- contact_name: (this.contact_name == undefined ? form.value.contactName.first_name +' '+form.value.contactName.last_name : this.contact_name),
|
|
|
|
|
|
+ contact_name: (this.contact_name == undefined ? form.value.contactName.first_name + ' ' + form.value.contactName.last_name : this.contact_name),
|
|
message: form.value.message,
|
|
message: form.value.message,
|
|
physical_metting: form.value.ph_meet,
|
|
physical_metting: form.value.ph_meet,
|
|
sale_person: this.username,
|
|
sale_person: this.username,
|
|
stage_id: (form.value.stageName ? form.value.stageName.stage_id : ''),
|
|
stage_id: (form.value.stageName ? form.value.stageName.stage_id : ''),
|
|
created_by: this.login_id,
|
|
created_by: this.login_id,
|
|
- nextstep: form.value.nextstep
|
|
|
|
|
|
+ nextstep: form.value.nextstep,
|
|
|
|
+ second_contact: (this.second_contact == undefined ? form.value.secondContact.first_name + ' ' + form.value.secondContact.last_name : this.second_contact),
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
@@ -493,7 +510,9 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
sale_person: this.username,
|
|
sale_person: this.username,
|
|
stage_id: this.stage_id,
|
|
stage_id: this.stage_id,
|
|
created_by: this.login_id,
|
|
created_by: this.login_id,
|
|
- nextstep: form.value.nextstep
|
|
|
|
|
|
+ nextstep: form.value.nextstep,
|
|
|
|
+ second_contact: (this.second_contact == undefined ? form.value.secondContact.first_name + form.value.secondContact.last_name : this.second_contact),
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -528,6 +547,7 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
this.contact_name = "";
|
|
this.contact_name = "";
|
|
this.stage_id = "";
|
|
this.stage_id = "";
|
|
this.stage_des = "";
|
|
this.stage_des = "";
|
|
|
|
+ this.second_contact = "";
|
|
localStorage.removeItem("autofilldata")
|
|
localStorage.removeItem("autofilldata")
|
|
this.contactEntryForm = new FormGroup({
|
|
this.contactEntryForm = new FormGroup({
|
|
date: new FormControl(null, Validators.required),
|
|
date: new FormControl(null, Validators.required),
|
|
@@ -537,7 +557,7 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
stageName: new FormControl(null, Validators.required),
|
|
stageName: new FormControl(null, Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
nextstep: new FormControl(null, Validators.required),
|
|
nextstep: new FormControl(null, Validators.required),
|
|
-
|
|
|
|
|
|
+ secondContact: new FormControl(null, Validators.required)
|
|
});
|
|
});
|
|
// console.log("response.data.message", response.data[0].exception.errorid);
|
|
// console.log("response.data.message", response.data[0].exception.errorid);
|
|
if (response.data[0].exception.errorid != '') {
|
|
if (response.data[0].exception.errorid != '') {
|
|
@@ -588,6 +608,7 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
this.contact_name = "";
|
|
this.contact_name = "";
|
|
this.stage_id = "";
|
|
this.stage_id = "";
|
|
this.stage_des = "";
|
|
this.stage_des = "";
|
|
|
|
+ this.second_contact = "";
|
|
this.contactEntryForm = new FormGroup({
|
|
this.contactEntryForm = new FormGroup({
|
|
date: new FormControl(null, Validators.required),
|
|
date: new FormControl(null, Validators.required),
|
|
message: new FormControl(null, Validators.required),
|
|
message: new FormControl(null, Validators.required),
|
|
@@ -596,7 +617,7 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
stageName: new FormControl(null, Validators.required),
|
|
stageName: new FormControl(null, Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
nextstep: new FormControl(null, Validators.required),
|
|
nextstep: new FormControl(null, Validators.required),
|
|
-
|
|
|
|
|
|
+ secondContact: new FormControl(null, Validators.required)
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -631,24 +652,50 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (form.value.secondContact == "Add New Contact") {
|
|
|
|
+
|
|
|
|
+ if (form.value.custName == null) {
|
|
|
|
+ console.log("value not entered");
|
|
|
|
+ //user not entered customer details
|
|
|
|
+ this.router.navigate(['/contactDetails'])
|
|
|
|
+ localStorage.removeItem('autofilldata');
|
|
|
|
+
|
|
|
|
+ } else if (this.customer_name != null) {
|
|
|
|
+ this.router.navigate(["/contactDetails/contact:" + this.customer_name + "/id:" + this.cust_id]);
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ console.log("value entered");
|
|
|
|
+ this.cust_name = form.value.custName.customer_name;
|
|
|
|
+ this.cust_id = form.value.custName.customer_id
|
|
|
|
+ this.saveautoData.push(form.value);
|
|
|
|
+ console.log("this.saveautoData", this.saveautoData)
|
|
|
|
+ localStorage.setItem('autofilldata', JSON.stringify(this.saveautoData));
|
|
|
|
+ //user entered customer details
|
|
|
|
+ this.router.navigate(["/contactDetails/contact:" + this.cust_name + "/id:" + this.cust_id]);
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ console.log('other options selected');
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- customerDetails(form: FormGroup){
|
|
|
|
|
|
+ customerDetails(form: FormGroup) {
|
|
console.log("form value", form.value.custName.customer_name);
|
|
console.log("form value", form.value.custName.customer_name);
|
|
- if(form.value.custName){
|
|
|
|
- this.commonservice.getAllData(this.commonservice.projectpath + "/getcustcontactdetails?customer_id="+form.value.custName.customer_name).subscribe(response => {
|
|
|
|
|
|
+ if (form.value.custName) {
|
|
|
|
+ this.commonservice.getAllData(this.commonservice.projectpath + "/getcustcontactdetails?customer_id=" + form.value.custName.customer_name).subscribe(response => {
|
|
if (response.status == 'falsetoken') {
|
|
if (response.status == 'falsetoken') {
|
|
this.router.navigate(['/login'])
|
|
this.router.navigate(['/login'])
|
|
} else {
|
|
} else {
|
|
this.contact_data = response.data[0].conrtactData;
|
|
this.contact_data = response.data[0].conrtactData;
|
|
console.log("aaaaaaaaaaa------------>", this.contact_data);
|
|
console.log("aaaaaaaaaaa------------>", this.contact_data);
|
|
- // this.dtTrigger.next(this.dtOptions)
|
|
|
|
|
|
+ // this.dtTrigger.next(this.dtOptions)
|
|
|
|
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
console.log("customer not selected yet");
|
|
console.log("customer not selected yet");
|
|
}
|
|
}
|
|
|
|
|
|
@@ -684,18 +731,18 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
return [year, month, day].join('-');
|
|
return [year, month, day].join('-');
|
|
}
|
|
}
|
|
|
|
|
|
- currformatDate(){
|
|
|
|
- var d=new Date(),
|
|
|
|
- month = '' + (d.getMonth() + 1),
|
|
|
|
- day = '' + d.getDate(),
|
|
|
|
- year = d.getFullYear();
|
|
|
|
|
|
+ currformatDate() {
|
|
|
|
+ var d = new Date(),
|
|
|
|
+ month = '' + (d.getMonth() + 1),
|
|
|
|
+ day = '' + d.getDate(),
|
|
|
|
+ year = d.getFullYear();
|
|
|
|
|
|
- if (month.length < 2)
|
|
|
|
- month = '0' + month;
|
|
|
|
- if (day.length < 2)
|
|
|
|
- day = '0' + day;
|
|
|
|
|
|
+ if (month.length < 2)
|
|
|
|
+ month = '0' + month;
|
|
|
|
+ if (day.length < 2)
|
|
|
|
+ day = '0' + day;
|
|
|
|
|
|
- return [year, month, day].join('-');
|
|
|
|
|
|
+ return [year, month, day].join('-');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -728,11 +775,11 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
this.error_msg = response.errors;
|
|
this.error_msg = response.errors;
|
|
} else if (response.data.length > 0) {
|
|
} else if (response.data.length > 0) {
|
|
console.log("inside if(response.message== '') ");
|
|
console.log("inside if(response.message== '') ");
|
|
- console.log("message",response.data[0].message);
|
|
|
|
|
|
+ console.log("message", response.data[0].message);
|
|
this.openPopup();
|
|
this.openPopup();
|
|
this.status_msg = "Success";
|
|
this.status_msg = "Success";
|
|
this.error_msg = response.data[0].message;
|
|
this.error_msg = response.data[0].message;
|
|
- console.log("this.error_msg",this.error_msg);
|
|
|
|
|
|
+ console.log("this.error_msg", this.error_msg);
|
|
this.entry_successflag = true;
|
|
this.entry_successflag = true;
|
|
this.customer_name = "";
|
|
this.customer_name = "";
|
|
this.contact_name = "";
|
|
this.contact_name = "";
|
|
@@ -740,7 +787,7 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
this.stage_des = "";
|
|
this.stage_des = "";
|
|
localStorage.removeItem("contactlastinsert")
|
|
localStorage.removeItem("contactlastinsert")
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
localStorage.removeItem("autofilldata")
|
|
localStorage.removeItem("autofilldata")
|
|
this.contactEntryForm = new FormGroup({
|
|
this.contactEntryForm = new FormGroup({
|
|
date: new FormControl(null, Validators.required),
|
|
date: new FormControl(null, Validators.required),
|
|
@@ -750,11 +797,11 @@ export class DvrEntryComponent implements OnInit, OnDestroy {
|
|
stageName: new FormControl(null, Validators.required),
|
|
stageName: new FormControl(null, Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
ph_meet: new FormControl('yes', Validators.required),
|
|
nextstep: new FormControl(null, Validators.required),
|
|
nextstep: new FormControl(null, Validators.required),
|
|
-
|
|
|
|
|
|
+ secondContact: new FormControl(null, Validators.required)
|
|
});
|
|
});
|
|
//this.router.navigate(['/home'])
|
|
//this.router.navigate(['/home'])
|
|
// console.log("response.data.message", response.data[0].exception.errorid);
|
|
// console.log("response.data.message", response.data[0].exception.errorid);
|
|
-
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
this.status_msg = "";
|
|
this.status_msg = "";
|