When inserting items into the list using the following code snippet:
$scope.items.push({
codigo: $scope.s.codigo,
ncm: $scope.s.ncm,
descricao: $scope.s.descricao,
preco: $scope.s.preco,
quantidade: $scope.s.quantidade
});
Each product will have different Taxes,
ClickingtheTaxesbuttondisplaysthefollowingscreen:
Simulation: link
How to update the taxes of each product?