fnIssuer2(issuerPctValue: string) {
var index = this.treegridpropsedorders.getCheckedRowIndexes()
let checkedRecords:any=this.treegridpropsedorders.getCheckedRecords();
for (var i = 0; i < index.length; i++) {
if (checkedRecords[i]["groupaccountlevel"] == "P") {
this.treegridpropsedorders.updateRow(index[i], { pct_issuer_display: 2.2, feedstatus: "C" });
var children = checkedRecords[i]
if (children.hasChildRecords) {
for (var j = 0; j < children.childRecords.length; j++) {
let treePrimaryPK = +children.childRecords[j]["groupAcctPK"];
if (children.childRecords[j]["qty_ordered"] != 0)
this.treegridpropsedorders.updateRow(treePrimaryPK - 1, { pct_issuer: 2.2, typeofchange: "issuer", feedstatus: "C", "priority": 1, "rebalprice": 3.3, heldprioritizedflag: "N" });
else
this.treegridpropsedorders.updateRow(treePrimaryPK - 1, { pct_issuer: 2.2, typeofchange: "issuer", feedstatus: "C", "priority": 1, "rebalprice": 3.3, heldprioritizedflag: "Y" });
}
}
}
}
}