I have a problem, I have an angled condition when my situation is PENDING, it will disable two buttons.
$scope.situacaoParcelaPendente = "PENDENTE";
/*ultimo teste*/
if ($scope.resultSimulacao.ticlaa1VO.dscSituacaoParcela == $scope.situacaoParcelaPendente) {
//disabilitar btnSimular, etc
$scope.btnSimular.disabled = true;
} else {
//habilitar btnSimular
$scope.btnSimular.disabled = false;
}