This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository chorem. See http://git.chorem.org/chorem.git commit e41f78bc34856dafb0bba376f6bfbca326b63a14 Author: kootox <jean.couteau@gmail.com> Date: Tue Jan 27 16:27:07 2015 +0100 fixes #1153 : Mauvaises informations dans le tunnel de commande --- chorem-webmotion/src/main/webapp/js/salesFunnel.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chorem-webmotion/src/main/webapp/js/salesFunnel.js b/chorem-webmotion/src/main/webapp/js/salesFunnel.js index 6a2ae71..102ba5c 100644 --- a/chorem-webmotion/src/main/webapp/js/salesFunnel.js +++ b/chorem-webmotion/src/main/webapp/js/salesFunnel.js @@ -62,21 +62,21 @@ var salesFunnelController = ['$scope', '$modal', 'Wikitty', function ($scope, $m if (i != "$promise" && i != "$resolved" && i != "length") { var categoryId = w[i].getField('Quotation','category'); Wikitty.get(categoryId, function(cat){ - $scope.dependencies[categoryId]=cat; + $scope.dependencies[cat.getId()]=cat; }); var customerId = w[i].getField('Quotation','customer'); Wikitty.get(customerId, function(cust){ - $scope.dependencies[customerId]=cust; + $scope.dependencies[cust.getId()]=cust; var customerCompanyId = cust.getField('Employee','company'); Wikitty.get(customerCompanyId, function(comp){ - $scope.dependencies[customerCompanyId]=comp; + $scope.dependencies[comp.getId()]=comp; }); }); var projectId = w[i].getField('Quotation','project'); Wikitty.get(projectId, function(project){ - $scope.dependencies[projectId]=project; + $scope.dependencies[project.getId()]=project; }); } } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.