This is my punker
I can get the selected values pushed to array by ngcheck and ngchange, but I want to push the {{get_ing_value.productName}} to array when I click any of the checkbox and radio button.
This is what I have:
[
{
"selected": {
"_id": "584aa4e218c5b62c02b6fe6a",
"productId": "584aa4e118c5b62c02b6fe67",
"ingredientTypeId": "5822f17b24baa627770af5ed",
"ingredientName": "small",
"slug": "small",
"isActive": true,
"ingredientPrice": -75
}
},
{
"selected": {
"_id": "584aa4e718c5b62c02b6fe6e",
"productId": "584aa4e118c5b62c02b6fe67",
"ingredientTypeId": "5822f18324baa627770af5ee",
"ingredientName": "extra cheese",
"slug": "extra-cheese",
"isActive": true,
"ingredientPrice": 20
}
},
{
"selected": "{\"_id\":\"584aa4e918c5b62c02b6fe70\",\"productId\":\"584aa4e118c5b62c02b6fe67\",\"ingredientTypeId\":\"5822f19724baa627770af5ef\",\"ingredientName\":\"hot chilly\",\"slug\":\"hot-chilly\",\"isActive\":true,\"ingredientPrice\":20}"
},
{
"selected": "{\"_id\":\"584aa4ea18c5b62c02b6fe71\",\"productId\":\"584aa4e118c5b62c02b6fe67\",\"ingredientTypeId\":\"5822f1a024baa627770af5f0\",\"ingredientName\":\"chicken\",\"slug\":\"chicken\",\"isActive\":true,\"ingredientPrice\":50}"
}
]
This is what I want to get
[
{
"main_product_name": "PIZAA"
},
{
"selected": {
"_id": "584aa4e218c5b62c02b6fe6a",
"productId": "584aa4e118c5b62c02b6fe67",
"ingredientTypeId": "5822f17b24baa627770af5ed",
"ingredientName": "small",
"slug": "small",
"isActive": true,
"ingredientPrice": -75
}
},
{
"selected": {
"_id": "584aa4e718c5b62c02b6fe6e",
"productId": "584aa4e118c5b62c02b6fe67",
"ingredientTypeId": "5822f18324baa627770af5ee",
"ingredientName": "extra cheese",
"slug": "extra-cheese",
"isActive": true,
"ingredientPrice": 20
}
},
{
"selected": "{\"_id\":\"584aa4e918c5b62c02b6fe70\",\"productId\":\"584aa4e118c5b62c02b6fe67\",\"ingredientTypeId\":\"5822f19724baa627770af5ef\",\"ingredientName\":\"hot chilly\",\"slug\":\"hot-chilly\",\"isActive\":true,\"ingredientPrice\":20}"
},
{
"selected": "{\"_id\":\"584aa4ea18c5b62c02b6fe71\",\"productId\":\"584aa4e118c5b62c02b6fe67\",\"ingredientTypeId\":\"5822f1a024baa627770af5f0\",\"ingredientName\":\"chicken\",\"slug\":\"chicken\",\"isActive\":true,\"ingredientPrice\":50}"
}
]