1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| .controller(
'GammeCtrl', [
'$scope',
'$http',
function($scope, $http) {
$scope.duplicateGammeProduit = function(produitId) {
$http.get(MyURL:" +produitId).success(
function(gammeProduit) {
//the method to be called when an option is selected
$scope.classifierListElementGamme(gammeProduit.listElementGamme);
gammeProduit.id = null
$scope.gammeCourante.tempsTotal = gammeProduit.tempsTotal;
$scope.gammeCourante.nbOperation = gammeProduit.nbOperation;
angular.forEach(gammeProduit.listElementGamme,
function(elementGamme, key){
elementGamme.id = null;
});
$scope.finalOperationsList = gammeProduit.listElementGamme;
$scope.formToSave.finalOperationsList = $scope.finalOperationsList;
});
}
$scope.listeProduitUsed = function() {
$http
.get(URL/getProduitListUsed")
.success(
function(dataProduit) {
$scope.listProduitUsed = dataProduit;
});}
$scope.listeProduitUsed();
}]); |
Partager