Hello Team, I want to print after sales receipt and below is my angularJS controller query, any idear please
}
Hello Team, I want to print after sales receipt and below is my angularJS controller query, any idear please
}
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vishal JoshiPosted Mar 1, 2024, 3:14 PM
Hello Emmanuel,
Please try the below code to get it to work.
Thanks
Vishal Joshi
Emmmanuel FIADUFEPosted Mar 1, 2024, 4:13 PM
It is working, thank you Vishal
Emmmanuel FIADUFEPosted Mar 1, 2024, 2:29 PM
function GetAllSales() {
$http.get('/Home/GetAllSales')
.then(function (response) {
var data = response.data;
$scope.SalesList = data;
});