Commit c54b121a authored by sam.x.wang's avatar sam.x.wang

查询重置问题

parent feb5086b
...@@ -330,6 +330,7 @@ ...@@ -330,6 +330,7 @@
assetListService.getAssetResultListPage($scope.citAssetsListDto).success(function (assetListData) { assetListService.getAssetResultListPage($scope.citAssetsListDto).success(function (assetListData) {
debugger; debugger;
var data = assetListData.data.list; var data = assetListData.data.list;
$('.filter-button').popover("hide");
if (data) { if (data) {
var index = 1; var index = 1;
// data.forEach(function (v) { // data.forEach(function (v) {
...@@ -355,6 +356,7 @@ ...@@ -355,6 +356,7 @@
$scope.TotalCount = assetListData.data.total; $scope.TotalCount = assetListData.data.total;
$scope.pagingOptions.totalItems = assetListData.data.total; $scope.pagingOptions.totalItems = assetListData.data.total;
$scope.pageOptions.totalItems = assetListData.data.total; $scope.pageOptions.totalItems = assetListData.data.total;
}); });
} }
...@@ -1266,7 +1268,7 @@ ...@@ -1266,7 +1268,7 @@
//开始 //开始
(function initialize() { (function initialize() {
debugger;
/**************************************** function start*************************************************/ /**************************************** function start*************************************************/
$scope.displayType = 2; $scope.displayType = 2;
$scope.saveGroupType = 1; $scope.saveGroupType = 1;
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
$scope.startDate = new Date(vatSessionService.project.year, 0, 1); $scope.startDate = new Date(vatSessionService.project.year, 0, 1);
$scope.endDate = new Date(vatSessionService.project.year, 11, 31); $scope.endDate = new Date(vatSessionService.project.year, 11, 31);
$scope.dateFormat = $translate.instant('dateFormat4YearMonthDay'); $scope.dateFormat = $translate.instant('dateFormat4YearMonthDay');
$scope.startMonth = vatSessionService.year + vatSessionService.month; $scope.startMonth = vatSessionService.year + '' + vatSessionService.month;
$scope.endMonth = vatSessionService.year + vatSessionService.month; $scope.endMonth = vatSessionService.year + '' + vatSessionService.month;
$scope.totalMoneyAmount = 0; $scope.totalMoneyAmount = 0;
$scope.totalTaxAmount = 0; $scope.totalTaxAmount = 0;
$scope.pageSize = constant.vatPagesize; $scope.pageSize = constant.vatPagesize;
...@@ -205,6 +205,7 @@ ...@@ -205,6 +205,7 @@
pageInfo: {}, pageInfo: {},
periodStart: '', periodStart: '',
periodEnd: '', periodEnd: '',
orgId: '',
segment3: null, segment3: null,
segment3Name: null, segment3Name: null,
segment5: null, segment5: null,
...@@ -216,6 +217,7 @@ ...@@ -216,6 +217,7 @@
}; };
$scope.queryParams.periodStart = $scope.startMonth; $scope.queryParams.periodStart = $scope.startMonth;
$scope.queryParams.periodEnd = $scope.endMonth; $scope.queryParams.periodEnd = $scope.endMonth;
$scope.queryParams.orgId = vatSessionService.project.organizationID;
loadJournalEntryDataFromDB(1); loadJournalEntryDataFromDB(1);
$('.filter-button').popover("hide"); $('.filter-button').popover("hide");
}; };
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
$scope.startDate = new Date(vatSessionService.project.year, 0, 1); $scope.startDate = new Date(vatSessionService.project.year, 0, 1);
$scope.endDate = new Date(vatSessionService.project.year, 11, 31); $scope.endDate = new Date(vatSessionService.project.year, 11, 31);
$scope.dateFormat = $translate.instant('dateFormat4YearMonthDay'); $scope.dateFormat = $translate.instant('dateFormat4YearMonthDay');
$scope.startMonth =vatExportService.year+vatSessionService.month; $scope.startMonth =vatSessionService.year+''+vatSessionService.month;
$scope.endMonth = vatExportService.year+vatSessionService.month; $scope.endMonth = vatSessionService.year+''+vatSessionService.month;
$scope.totalMoneyAmount = 0; $scope.totalMoneyAmount = 0;
$scope.totalTaxAmount = 0; $scope.totalTaxAmount = 0;
$scope.pageSize = constant.vatPagesize; $scope.pageSize = constant.vatPagesize;
...@@ -202,6 +202,7 @@ ...@@ -202,6 +202,7 @@
pageInfo: {}, pageInfo: {},
periodStart: '', periodStart: '',
periodEnd: '', periodEnd: '',
orgId:'',
segment3 : null, segment3 : null,
segment3Name : null, segment3Name : null,
segment2 : null, segment2 : null,
...@@ -212,6 +213,7 @@ ...@@ -212,6 +213,7 @@
}; };
$scope.queryParams.periodStart = $scope.startMonth; $scope.queryParams.periodStart = $scope.startMonth;
$scope.queryParams.periodEnd = $scope.endMonth; $scope.queryParams.periodEnd = $scope.endMonth;
$scope.queryParams.orgId = vatSessionService.project.organizationID;
loadTrialBalanceDataFromDB(1); loadTrialBalanceDataFromDB(1);
$('.filter-button').popover("hide"); $('.filter-button').popover("hide");
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment