|
|
@@ -108,6 +108,8 @@ define(['app/app'], function(app) {
|
|
|
$scope.endDate = new Date($scope.endDate.getFullYear(), $scope.endDate.getMonth(), $scope.endDate.getDate())
|
|
|
$scope.endDate = new Date($scope.endDate.getTime() + 23 * 60 * 60 * 1000 + 59 * 60 * 1000 + 59 * 1000);
|
|
|
}
|
|
|
+ $scope.startFormatDate = $scope.startDate ? _formatDate($scope.startDate, 'yyyy-MM-dd') : '';
|
|
|
+ $scope.endFormatDate = $scope.endDate ? _formatDate($scope.endDate, 'yyyy-MM-dd') : '';
|
|
|
$scope.manageTableParams.page(1);
|
|
|
$scope.manageTableParams.reload();
|
|
|
};
|