Browse Source

修改ie浏览器不能显示应收对账单列表问题

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@2184 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
zhangzl 10 years ago
parent
commit
78565a26d9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/webapp/resources/js/index/app.js

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

@@ -3509,9 +3509,10 @@ app.controller('SaleSendCtrl', ['$scope', '$filter', 'SaleSend', 'ngTableParams'
 
 
 
 
 	//应收对账单列表
 	//应收对账单列表
-	app.controller('PurchaseApCheckCtrl',['$scope', 'FaApCheck', 'BaseService', 'ngTableParams', '$modal', 'toaster', function($scope, FaApCheck, BaseService, ngTableParams, $modal, toaster){
+	app.controller('PurchaseApCheckCtrl',['$scope', 'FaApCheck', 'BaseService', 'ngTableParams', '$modal', 'toaster', 'Symbol', function($scope, FaApCheck, BaseService, ngTableParams, $modal, toaster, Symbol){
 		$scope.dateZoneText = '不限';
 		$scope.dateZoneText = '不限';
 		$scope.condition = {dateZone: -1};
 		$scope.condition = {dateZone: -1};
+		$scope.currency = Symbol.currency;//将币别转化为对应的符号
 		$scope.changeDateZone = function(zone) {
 		$scope.changeDateZone = function(zone) {
 			$scope.condition.dateZone = zone;
 			$scope.condition.dateZone = zone;
 			$scope.dateZoneText = typeof zone == 'undefined' ? '半年前' : (zone == -1 ? '不限' : (zone == 1 ? '一个月内' : '半年内'));
 			$scope.dateZoneText = typeof zone == 'undefined' ? '半年前' : (zone == -1 ? '不限' : (zone == 1 ? '一个月内' : '半年内'));
@@ -3519,7 +3520,6 @@ app.controller('SaleSendCtrl', ['$scope', '$filter', 'SaleSend', 'ngTableParams'
 			getDateCondition(zone, $scope.condition);
 			getDateCondition(zone, $scope.condition);
 			$scope.tableParams.reload();
 			$scope.tableParams.reload();
 		};
 		};
-		$scope.currency = Symbol.currency;//将币别转化为对应的符号
 
 
 		//获取应收对账单全部
 		//获取应收对账单全部
 		$scope.tableParams = new ngTableParams({
 		$scope.tableParams = new ngTableParams({