I have a component that loads product and in this product besides description has the value but only the description in the options is shown. Let's see:
<div class="form-group col-md-6">
<label class="lb">Produto/Serviço</label>
<select
ng-model="orcamento.orcamentoItens.produto.idProduto" id="produto"
ng-change="carregaValorProduto($index)"
ng-options="pro.idProduto as pro.descricao for pro in produtos"
class="form-control">
</select>
</div>
The point is that I would take the value of the product to play on another component.
I tried these alternatives but all%% of%
$scope.carregaValorProduto=function(produtoSelecionado){
$scope.produto.valorUnitario = $scope.produtos[index].valor;
}