88 lines
3.1 KiB
Python
88 lines
3.1 KiB
Python
'use strict';
|
|
|
|
app.controller('EmailMessageController', function($scope, $timeout,$translate,
|
|
$common,
|
|
$interval,
|
|
EmailMessageAnalysisService,
|
|
toaster, SweetAlert) {
|
|
|
|
|
|
$scope.$on('handleBroadcastEmailMessageOptionChanged', function (event, data) {
|
|
if (angular.isDefined(data.load)) {
|
|
$scope.tabledata = [];
|
|
$timeout(function () {
|
|
angular.element('#emailmessageTable').trigger('footable_redraw');
|
|
}, 0);
|
|
} else {
|
|
$scope.tabledata = data;
|
|
$timeout(function () {
|
|
angular.element('#emailmessageTable').trigger('footable_redraw');
|
|
}, 0);
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.deleteEmailMessage = function(emailmessage) {
|
|
SweetAlert.swal({
|
|
title: $translate.instant($common.sweet.title),
|
|
text: $translate.instant($common.sweet.text),
|
|
type: "warning",
|
|
showCancelButton: true,
|
|
confirmButtonColor: "#DD6B55",
|
|
confirmButtonText: $translate.instant($common.sweet.confirmButtonText),
|
|
cancelButtonText: $translate.instant($common.sweet.cancelButtonText),
|
|
closeOnConfirm: true,
|
|
closeOnCancel: true
|
|
},
|
|
function(isConfirm) {
|
|
if (isConfirm) {
|
|
EmailMessageAnalysisService.deleteEmailMessage(emailmessage, function(error, status) {
|
|
if (angular.isDefined(status) && status == 204) {
|
|
|
|
var templateName = "FDD.EMAIL_MESSAGE";
|
|
templateName = $translate.instant(templateName);
|
|
|
|
var popType = 'TOASTER.SUCCESS';
|
|
var popTitle = $common.toaster.success_title;
|
|
var popBody = $common.toaster.success_delete_body;
|
|
|
|
popType = $translate.instant(popType);
|
|
popTitle = $translate.instant(popTitle);
|
|
popBody = $translate.instant(popBody, {template: templateName});
|
|
|
|
toaster.pop({
|
|
type: popType,
|
|
title: popTitle,
|
|
body: popBody,
|
|
showCloseButton: true,
|
|
});
|
|
|
|
$scope.$emit('handleEmitEmailMessageTableChanged');
|
|
} else {
|
|
var templateName = "FDD.EMAIL_MESSAGE";
|
|
templateName = $translate.instant(templateName);
|
|
|
|
var popType = 'TOASTER.ERROR';
|
|
var popTitle = $common.toaster.error_title;
|
|
var popBody = $common.toaster.error_delete_body;
|
|
|
|
popType = $translate.instant(popType);
|
|
popTitle = $translate.instant(popTitle);
|
|
popBody = $translate.instant(popBody, {template: templateName});
|
|
|
|
toaster.pop({
|
|
type: popType,
|
|
title: popTitle,
|
|
body: popBody,
|
|
showCloseButton: true,
|
|
});
|
|
|
|
}
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
}); |