In my shopping cart app i am getting offers in price and percentage from server. I need to differentiate the price value and percentage values with Rs. and %.
Here is my code in controller:
if(result.type == 'Price'){
$scope.invoice_amt = $scope.invoice_amt - result.offer ;
}
else if(result.type == 'Percentage'){
$scope.invoice_amt = $scope.invoice_amt * result.offer/100;
}
I am getting the value in HTML as {{invoice_amt}} How to show the offers in rs. and percentage.