if((!_result_res.msg || _result_res.msg!=null) && _result_res.success)
{
for(var objSeller in _result_res.msg)
{
if(typeof _result_res.msg[objSeller]=='object')
{
//console.log(_result_res.msg[objSeller]);
for(var obj in _result_res.msg[objSeller])
{
console.log(_result_res.msg[objSeller][obj]);
sellerIdList.push(_result_res.msg[objSeller][obj][seller_id]);
}
}
}
console.log(sellerIdList)
}