Merge branch 'master' of https://bitbucket.org/sriramv18/sparqsineedge
This commit is contained in:
commit
217119b995
@ -398,12 +398,12 @@ export class LoanDetailsComponent implements OnInit {
|
||||
else if (that.productAbbr == "LAP") {
|
||||
|
||||
if (data.group_name == that.productAbbr && data.sub_group_name == that.subProductName && data.isactive == 1) {
|
||||
|
||||
console.log("2nd",data.group_name,that.productAbbr)
|
||||
return data;
|
||||
}
|
||||
else if (data.group_name == that.productAbbr && data.sub_group_name == null || data.sub_group_name == '' && data.isactive == 1) {
|
||||
|
||||
return data;
|
||||
else if (data.group_name === that.productAbbr && (data.sub_group_name == null || data.sub_group_name == '') && data.isactive == 1) {
|
||||
return data
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@ -133,7 +133,7 @@ export class QcReviewComponent implements OnInit {
|
||||
let savePDRemark_values={'pd_id':this.data.startId,'remark':template.change_status_remark,is_revert_remark:'1'}
|
||||
this.serviceFromPD.savePDRemark(savePDRemark_values).subscribe(result=>{
|
||||
|
||||
let changeStatus_values={'pd_id':this.data.startId,random_string:this.data.random_string,parent_pd_id:this.data.startId,pd_status:template.pd_status}
|
||||
let changeStatus_values={'pd_id':this.data.startId,random_string:this.data.random_string,parent_pd_id:this.data.startId,pd_status:template.pd_status,is_revert_status:1}
|
||||
|
||||
this.pdTrigerService.pdReviewStatusUpdate(changeStatus_values).subscribe(data=>{
|
||||
this.notifier.notify('success', 'Your Changes Updated.!');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user