master
Yixian 3 years ago
parent 2b30318c74
commit 6201304bc4

@ -153,10 +153,11 @@ define(['angular', 'uiRouter'], function () {
app.controller('orderValidationNewCtrl', [ app.controller('orderValidationNewCtrl', [
'$scope', '$scope',
'$http', '$http',
'$sce',
'$stateParams', '$stateParams',
'commonDialog', 'commonDialog',
'$uibModal', '$uibModal',
function ($scope, $http, $stateParams, commonDialog, $uibModal) { function ($scope, $http, $sce, $stateParams, commonDialog, $uibModal) {
// 清除sessionStorage // 清除sessionStorage
$scope.$on('$destroy', function () { $scope.$on('$destroy', function () {
sessionStorage.clear() sessionStorage.clear()
@ -228,7 +229,10 @@ define(['angular', 'uiRouter'], function () {
} }
// 是否清除缓存 // 是否清除缓存
$scope.clear = function (channelName, flag) { $scope.clear = function (channelName, flag) {
$http.post('/sys/financial/redo_channel_validation/' + $stateParams.date, { channel: channelName, cache: flag }).then( $http.post('/sys/financial/redo_channel_validation/' + $stateParams.date, {
channel: channelName,
cache: flag
}).then(
function () { function () {
$scope.startValid() $scope.startValid()
}, },
@ -253,12 +257,19 @@ define(['angular', 'uiRouter'], function () {
$scope.message = merchantInfo.resolve_msg $scope.message = merchantInfo.resolve_msg
} }
$scope.confirm = function () { $scope.confirm = function () {
$http.post('/sys/financial/mark/resolve/message', { log_id: merchantInfo.log_id, message: $scope.message }).then( $http.post('/sys/financial/mark/resolve/message', {
log_id: merchantInfo.log_id,
message: $scope.message
}).then(
function () { function () {
$scope.$close() $scope.$close()
}, },
function (resp) { function (resp) {
commonDialog.alert({ title: 'failed', content: resp.data.message, type: 'error' }) commonDialog.alert({
title: 'failed',
content: resp.data.message,
type: 'error'
})
} }
) )
} }

Loading…
Cancel
Save