|
|
@@ -136,7 +136,7 @@ define(['app/app'], function(app) {
|
|
|
bankInfoService.getAdminEnterAccount('', function(data) {
|
|
|
$scope.b2cAccountInfos = resolveData(data);
|
|
|
angular.forEach($scope.b2cAccountInfos, function(b2cAccountInfos) {
|
|
|
- b2cAccountInfos.filterAccount = hideBankFilter(b2cAccountInfos.number);
|
|
|
+ b2cAccountInfos.filterAccount = b2cAccountInfos.number;
|
|
|
});
|
|
|
$scope.b2cAccount = getOriginalData($scope.b2cAccountInfos);
|
|
|
}, function(res) {
|
|
|
@@ -150,7 +150,7 @@ define(['app/app'], function(app) {
|
|
|
bankInfoService.getVenderBank({venduu:venduu},null, function(data) {
|
|
|
$scope.venderAccountInfos = resolveData(data);
|
|
|
angular.forEach($scope.venderAccountInfos, function(venderAccountInfos) {
|
|
|
- venderAccountInfos.filterAccount = hideBankFilter(venderAccountInfos.number);
|
|
|
+ venderAccountInfos.filterAccount = venderAccountInfos.number;
|
|
|
});
|
|
|
$scope.venderAccount = getOriginalData($scope.venderAccountInfos);
|
|
|
}, function(res) {
|