Browse Source

复制采购单增加提示

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@10195 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
hejq 8 years ago
parent
commit
7a70175bf0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/webapp/resources/js/index/app.js

+ 1 - 1
src/main/webapp/resources/js/index/app.js

@@ -2413,8 +2413,8 @@ define([ 'toaster', 'charts', 'ngTable', 'common/services', 'common/directives',
   		// 复制订单
   		$scope.copyorder = function(id) {
   			PurchaseOrder.copyorder({id: id}, {}, function(data) {
-  				console.log(data);
   				if(data.id) {
+  					toaster.pop('success', '提示', '单据复制成功');
   					window.location.hash = "#purc/cart/" + data.id;
   				}
   			}, function(response) {