fleet-contractor/Site/Maintenance/AlertMappingManagement.aspx
2024-03-26 15:56:31 +08:00

1139 lines
50 KiB
Plaintext

<%@ Page Title="" Language="C#" MasterPageFile="~/Maintenance/MaintenanceBase.master" AutoEventWireup="true" CodeFile="AlertMappingManagement.aspx.cs" Inherits="AlertMappingManagement" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
<link href="<%=GetFileUrlWithVersion("css/maintenance.css")%>" rel="stylesheet" type="text/css" />
<style type="text/css">
/*body { overflow-x: hidden; }*/
.maintenance {
table-layout: fixed;
border-bottom: none;
width: auto;
min-width: 100%;
}
#pm_tbody {
}
#pm_tbody .tr_noresults {
font-style: italic;
}
#pm_tbody .tr_noresults:hover {
background: none;
}
.maintenance tr {
border-bottom: 1px solid #e6e6e6;
}
.wrapper_intervals {
padding: 0 0 0 60px;
}
.main_table tbody tr:hover {
background-color: var(--row-active-bg-color);
}
.td_funcs a {
cursor: pointer;
}
.icon {
float: left;
font-style: normal;
width: 20px;
font-size: 11px;
height: 16px;
line-height: 20px;
}
.dialog_table {
width: 100%;
}
.dialog_table tr {
height: 40px;
line-height: 40px;
}
.categorydropdown .dropdown-panel {
max-width: 100%;
}
</style>
<script src="<%=GetFileUrlWithVersion("js/controls.js")%>" type="text/javascript"></script>
<script src="<%=GetFileUrlWithVersion("js/alertmapping.js")%>" type="text/javascript"></script>
<script src="<%=GetFileUrlWithVersion("../fic/js/utility.js")%>" type="text/javascript"></script>
<script type="text/javascript">
var alertMappingDataSource = null;
function alertquery(method, param, callback, error) {
_network.request("Maintenance/AlertMappingManagement.aspx", -1, method, param, callback, error || function (e) {
console.log(e);
showmaskbg(false, true);
showAlert('An unknown error occurred. Please refresh page.', 'Query');
showAlert(GetTextByKey('P_PM_PAGEERROR', 'An unknown error occurred. Please refresh page.'), GetTextByKey('P_PM_QUERY', 'Query'));
});
}
var SPLIT_CHAR175 = String.fromCharCode(175);
var SPLIT_CHAR180 = String.fromCharCode(180);
var SPLIT_CHAR181 = String.fromCharCode(181);
var SPLIT_CHAR182 = String.fromCharCode(182);
var SPLIT_CHAR183 = String.fromCharCode(183);
var mappingid;
function OnAdd() {
mappingid = undefined;
$('#dig_source').val('');
$('#dig_sourcedesc').val('');
$('#dialog_alertmapping .dialog-title span.title').text(GetTextByKey('P_AMP_ADDALERTMAPPING', 'Add Alert Mapping'));
showmaskbg(true);
$('#dialog_alertmapping').css({
'top': (document.documentElement.clientHeight - $('#dialog_alertmapping').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_alertmapping').width()) / 2
}).showDialogfixed();
$('#dig_source').focus();
}
function OnSaveAlertMapping() {
var item = {
'Source': $('#dig_source').val(),
'Description': $('#dig_sourcedesc').val()
};
var title = GetTextByKey('P_AMP_ADDALERTMAPPING', 'Add Alert Mapping');
if (!item.Source) {
showAlert(GetTextByKey("P_AMP_SOURCEISREQUIRED", 'Source is required.'), title);
return false;
}
if (!item.Description) {
showAlert(GetTextByKey("P_AMP_DESCRIPTIONISREQUIRED", 'Description is required.'), title);
return false;
}
if (mappingid) {
item.Id = mappingid;
title = GetTextByKey('P_AMP_EDITALERTMAPPING', 'Edit Alert Mapping');
}
else
item.Id = -1;
alertquery('SaveAlertMapping', htmlencode(JSON.stringify(item)), function (data) {
if (data > 0) {
$('#dialog_alertmapping').hideDialog();
refreshData();
} else if (data == -1) {
showAlert(GetTextByKey('P_AMP_SOURCEANDDESCRIPTIONALREADYEXISTS', 'This combination of Source and Description already exists. '), title);
} else {
showAlert(data, title);
}
});
}
var insaving = false;
function OnSaveAlertMappingItem() {
var title = GetTextByKey('P_PM_ADDABSOLUTEHOURSINTERVAL', 'Add Absolute Hours Interval');
var mappingid = $('#dialog_alertmappingitem').attr('data-mappingid')
var make = $("#dialog_make").dropdownVal();
var models = $("#dialog_model").dropdownVals();
if (models.length == 0 && $("#dialog_model").allselected())
models = [-1];
var alerttype = $("#dialog_alerttype").dropdownVal();
//var description = $("#dialog_description").dropdownVal();
var category = $("#dialog_category").dropdownVal() || "-1";
var item = {
'Id': -1,
'MappingId': mappingid,
'Make': make,
'Models': models,
'AlertType': alerttype,
//'DescriptionId': description,
'CategoryId': category
};
if (!_am.checkAlertMappingItem(item)) {
return;
}
if (insaving) return;
insaving = true;
alertquery('SaveAlertMappingItem', htmlencode(JSON.stringify(item)), function (data) {
insaving = false;
if (data > 0) {
$('#dialog_alertmappingitem').hideDialog();
showmaskbg(false);
var alertmapping = $('#dialog_alertmappingitem').data('alertmapping');
item.Id = data
alertmapping.Items.push(item);
var idx = grid_dt.source.findIndex(function (i) { return i.Id === alertmapping.Id });
if (idx >= 0) {
var obj = grid_dt.sourceExpandable[idx];
createAlertMappingItem(alertmapping, $(obj.element).find('tbody:first'));
}
//refreshData();
}
else if (data == -1) {
showAlert(GetTextByKey('P_AMP_THISCOMBINATIONOFMAKEANDMODELSALREADYEXISTS', 'This combination of Make and Models already exists. '), title);
} else {
showAlert(data, title);
}
}, function () {
insaving = false;
});
}
function OnAddAlertMappingSource(type) {
$("#dialog_alertmappingsource").data('type', type);
$('#dig_descvalue').val('');
$('#dig_categoryvalue').val('');
if (type == 1) {
$('.dig_descvalue').show();
$('.dig_categoryvalue').hide();
}
else {
$('.dig_descvalue').hide();
$('.dig_categoryvalue').show();
}
var title = type == 1 ? GetTextByKey('P_AMP_ADDDESCRIPTION', 'Add Description') : GetTextByKey('P_AMP_ADDCATEGORY', 'Add Category');
$('#dialog_alertmappingsource .dialog-title span.title').text(title);
if ($("#dialog_alertmappingitem").is(":visible"))
$("#dialog_alertmappingitem").find('.maskbg').show();
else
showmaskbg(true);
$('#dialog_alertmappingsource').css({
'top': (document.documentElement.clientHeight - $('#dialog_alertmappingsource').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_alertmappingsource').width()) / 2
}).showDialogfixed();
if (type == 1)
$('#dig_descvalue').focus();
else
$('#dig_categoryvalue').focus();
}
function OnSaveAlertMappingSource() {
var type = $("#dialog_alertmappingsource").data('type');
var item = {
'Type': type,
'Value': type == 1 ? $('#dig_descvalue').val() : $('#dig_categoryvalue').val()
};
item.Value = item.Value.trim();
var title = type == 1 ? GetTextByKey('P_AMP_ADDDESCRIPTION', 'Add Description') : GetTextByKey('P_AMP_ADDCATEGORY', 'Add Category');
if (!item.Value) {
var msg = type == 1 ? GetTextByKey('P_AMP_DESCRIPTIONISREQUIRED', 'Description is required.') : GetTextByKey('P_AMP_CATEGORYISREQUIRED', 'Category is required.');
showAlert(msg, title);
return;
}
alertquery('AddAlertMappingSource', htmlencode(JSON.stringify(item)), function (data) {
if (data > 0) {
$('#dialog_alertmappingsource').hideDialog();
//$("#dialog_description").data('lastvalue', null);
if ($("#dialog_alertmappingitem").is(":visible"))
$("#dialog_alertmappingitem").find('.maskbg').hide();
else
showmaskbg(false);
var sourcedata = null;
if (type == 1)
sourcedata = alertMappingDataSource.Descriptions;
else
sourcedata = alertMappingDataSource.Categories;
var exists = false;
for (var i = 0; i < sourcedata.length; i++) {
if (sourcedata[i].Name.toLowerCase() == item.Value.toLowerCase()) {
sourcedata[i].ID = data;
sourcedata[i].Name = item.Value;
exists = true;
}
}
if (!exists) {
sourcedata.push({ ID: data, Name: item.Value });
sourcedata = sourcedata.sort(function (a, b) {
if (a.ID == '') return -1; if (b.ID == '') return 1; if (a.Name == b.Name) return 0; return a.Name > b.Name ? 1 : -1;
});
if (type == 1) {
alertMappingDataSource.Descriptions = sourcedata;
$(".descdropdown").dropdownSource(alertMappingDataSource.Descriptions);
}
else {
alertMappingDataSource.Categories = sourcedata;
$(".categorydropdown").dropdownSource(alertMappingDataSource.Categories);
}
}
} else {
showAlert(data, title);
}
});
}
function getAllDataSource(next) {
showloading(true);
alertquery('GetAllAlertMappingDataSource', "", function (data) {
showloading(false);
if (typeof (data) === "string") {
showAlert(data, GetTextByKey("P_AMP_ERROR", 'Error'));
return;
}
var makes = [{ ID: -1, Name: GetTextByKey("P_GRID_ALL", "(All)") }];
if (data.Makes) {
var makestrs = data.Makes.split(SPLIT_CHAR180);
if (makestrs && makestrs.length > 0) {
for (var i = 0; i < makestrs.length; i++) {
var array = makestrs[i].split(SPLIT_CHAR175);
var make = {};
make.ID = parseInt(array[0]);
make.Name = array[1];
makes.push(make);
}
}
}
data.Makes = makes;
var models = [];
if (data.Models) {
var modelstrs = data.Models.split(SPLIT_CHAR180);
if (modelstrs && modelstrs.length > 0) {
for (var i = 0; i < modelstrs.length; i++) {
var array = modelstrs[i].split(SPLIT_CHAR175);
var model = {};
model.ID = parseInt(array[0]);
model.Name = array[1];
model.MakeID = parseInt(array[2]);
model.Enable = i % 3 == 0 ? false : true;
models.push(model);
}
}
}
data.Models = models;
data.AlertTypes = [{ ID: "", Name: "" }, { ID: "Red", Name: "Red" }, { ID: "Yellow", Name: "Yellow" }, { ID: "Info", Name: "Info" }];
var descs = [];
descs.push({ ID: "", Name: GetTextByKey("P_AMP_ADDNEW", "Add New...") });
if (data.Descriptions) {
var descstrs = data.Descriptions.split(SPLIT_CHAR180);
if (descstrs && descstrs.length > 0) {
for (var i = 0; i < descstrs.length; i++) {
var array = descstrs[i].split(SPLIT_CHAR175);
var desc = {};
desc.ID = parseInt(array[0]);
//desc.Type = parseInt(array[1]);
desc.Name = array[2];
descs.push(desc);
}
}
}
data.Descriptions = descs;
var categories = [];
categories.push({ ID: "", Name: GetTextByKey("P_AMP_ADDNEW", "Add New...") });
categories.push({ ID: -1, Name: '' });
if (data.Categories) {
var categorystrs = data.Categories.split(SPLIT_CHAR180);
if (categorystrs && categorystrs.length > 0) {
for (var i = 0; i < categorystrs.length; i++) {
var array = categorystrs[i].split(SPLIT_CHAR175);
var category = {};
category.ID = parseInt(array[0]);
//category.Type = parseInt(array[1]);
category.Name = array[2];
categories.push(category);
}
}
}
data.Categories = categories;
alertMappingDataSource = data;
$("#dialog_make").dropdownSource(alertMappingDataSource.Makes);
$("#dialog_model").dropdownSource([]);
$("#dialog_alerttype").dropdownSource(alertMappingDataSource.AlertTypes);
//$("#dialog_description").dropdownSource(alertMappingDataSource.Descriptions);
$("#dialog_category").dropdownSource(alertMappingDataSource.Categories);
$("#dialog_categorydefault").dropdownSource(alertMappingDataSource.Categories);
if (defaultCategory) {
var item = alertMappingDataSource.Categories.find((c) => c.Name === defaultCategory);
if (item)
$("#dialog_categorydefault").dropdownVal(item.ID);
}
refreshData();
if (next)
next();
}, function () {
showloading(false);
});
}
function filterModels(makeid, itemid, mapping) {
var models = [];
var allowAll = true;
if (makeid > 0) {
for (var i = 0; i < alertMappingDataSource.Models.length; i++) {
var model = alertMappingDataSource.Models[i];
if (model.MakeID == makeid) {
model = { ...model };
model.Enable = true;
if (mapping && mapping.Items) {
for (var j = 0; j < mapping.Items.length; j++) {
var item = mapping.Items[j];
if (itemid == item.Id || item.Make != makeid) continue;
if (item.Models.indexOf(model.ID) >= 0) {
model.Enable = false;
}
allowAll = false;
}
}
models.push(model);
}
}
}
else {
if (itemid > 0)
allowAll = true;
else
allowAll = mapping && mapping.Items.length == 0;
}
return { models: models, allowAll: allowAll };
}
function refreshData() {
showloading(true);
alertquery('GetAlertMappings', htmlencode($('#searchinputtxt').val().trim()), function (data) {
showloading(false);
if (typeof (data) === "string") {
showAlert(data, GetTextByKey("P_WO_ERROR", 'Error'));
return;
}
//if (data && data.length > 0) {
// var trs = [];
// for (var i = 0; i < data.length; i++) {
// createAlertMapping(trs, data[i]);
// }
// $('#pm_tbody').empty().append(trs);
//} else {
// $('#pm_tbody').empty().append('<tr class="tr_noresults"><td colspan="5">' + GetTextByKey("P_PM_NORESULTS", "No results.") + '</td></tr>');
//}
grid_dt.source = (data && data.length > 0) ? data : [];
}, function () {
showloading(false);
});
}
function createAlertMappingItem(alertmapping, tbody) {
tbody.empty();
if (alertmapping.Items && alertmapping.Items.length > 0) {
for (var i = 0; i < alertmapping.Items.length; i++) {
var tr = _am.createAlertMappingTr(alertmapping.Items[i], alertmapping);
tbody.append(tr);
}
}
}
function editAlertMapping(e) {
var tr = $(this).parents('tr:first');
var am = tr.data('alertmapping');
mappingid = am.Id;
$('#dig_source').val(am.Source);
$('#dig_sourcedesc').val(am.Description);
$('#dialog_alertmapping .dialog-title span.title').text(GetTextByKey('P_AMP_EDITALERTMAPPING', 'Edit Alert Mapping'));
showmaskbg(true);
$('#dialog_alertmapping').css({
'top': (document.documentElement.clientHeight - $('#dialog_alertmapping').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_alertmapping').width()) / 2
}).showDialogfixed();
$('#dig_source').focus();
}
function deleteAlertMapping(e) {
var tr = $(this).parents('tr:first');
var id = tr.data('alertmapping').Id;
showConfirm(GetTextByKey("P_AMP_DOYOUWANTTODELETETHISALERTMAPPING", 'Do you want to delete this alert mapping?'), GetTextByKey("P_PM_DELETE", 'Delete'), function (e) {
alertquery('DeleteAlertMapping', id, function (data) {
if (!data || data.length == 0) {
refreshData();
} else {
showAlert(data, GetTextByKey("P_PM_DELETE", 'Delete'));
}
});
});
}
var defaultCategory = null;
function getDefaultCategory() {
alertquery('GetAlertMappingDefaultCategory', htmlencode(defaultCategory), function (data) {
if (data) {
defaultCategory = data;
if (alertMappingDataSource) {
var item = alertMappingDataSource.Categories.find((c) => c.Name === defaultCategory);
if (item)
$("#dialog_categorydefault").dropdownVal(item.ID);
}
}
}, function () {
});
}
function setDefaultCategory() {
var item = $("#dialog_categorydefault").dropdownItem();
if (item) {
defaultCategory = item.Name;
alertquery('SetAlertMappingDefaultCategory', htmlencode(defaultCategory), function (data) {
}, function () {
});
}
}
function searchEnter(e) {
if (e.keyCode == 13 || e.keyCode == 9) {
refreshData();
}
}
var libui = window['lib-ui'];
var grid_dt = createGridView();
grid_dt.expandable = true;
grid_dt.expandableGenerator = function (item) {
var wrapper = $('<div class="wrapper_intervals"></div>');
var table = $('<table class="main_table"></table>');
wrapper.append(table);
var tr = $('<tr></tr>');
tr.append('<th style="width: 200px;">' + GetTextByKey("P_AMP_MAKE", "Make") + '</th>');
tr.append('<th style="width: 320px;">' + GetTextByKey("P_AMP_MODELS", "Models") + '</th>');
tr.append('<th style="width: 200px;">' + GetTextByKey("P_AMP_ALERTTYPE", "Alert Type") + '</th>');
tr.append('<th style="width: 400px;">' + GetTextByKey("P_AMP_ENHANCEDDESCRIPTION", "Enhanced Description") + '</th>');
tr.append('<th style="width: 200px;">' + GetTextByKey("P_AMP_CATEGORY", "Category") + '</th>');
tr.append($('<th style="min-width: 166px;" class="td_funcs"></th>')
.append($('<a onclick="return false;">' + GetTextByKey("P_AMP_ADD", "Add") + '</a>').on('click', function () {
$('#dialog_alertmappingitem .dialog-title span.title').text(GetTextByKey('P_AMP_ADDALERTMAPPINGITEM', 'Add Alert Mapping Item'));
$('#dialog_alertmappingitem').data('alertmapping', item);
_am.addAlertMappingItem(item.Id, item.EnhancedDescription);
})));
table.append($('<thead></thead>').append(tr));
var tbody = $('<tbody></tbody>');
table.append(tbody);
createAlertMappingItem(item, tbody);
return { element: wrapper[0] };
};
grid_dt.columns = [
{ key: 'Source', caption: GetTextByKey('P_AMP_SOURCE', 'Source'), width: 300, allowFilter: true },
{ key: 'SPN', caption: GetTextByKey('P_AMP_SPN', 'SPN'), width: 100 },
{ key: 'FMI', caption: GetTextByKey('P_AMP_FMI', 'FMI'), width: 100 },
{ key: 'Description', caption: GetTextByKey('P_AMP_DESCRIPTION', 'Description'), width: 800 }
];
$(function () {
setPageTitle(GetTextByKey("P_ALERTMAPPINGS", "Alert Mappings"), true);
getAllDataSource(getDefaultCategory);
$('#searchinputtxt').keydown(searchEnter);
$('#dialog_alertmapping').dialog(function () {
showmaskbg(false);
});
$('#dialog_alertmappingitem').dialog(function () {
showmaskbg(false);
});
$('#dialog_alertmappingsource').dialog(function () {
if ($("#dialog_alertmappingitem").is(":visible"))
$("#dialog_alertmappingitem").find('.maskbg').hide();
else
showmaskbg(false);
});
$('#dialog_import').dialog(function () {
showmaskbg(false);
});
$('#dialog_import_result').dialog(function () {
showmaskbg(false);
});
$("#dialog_make").css('width', 320).dropdown([], {
search: true,
valueKey: 'ID',
textKey: 'Name'
}).on('select', function (_e, it) {
if (it) {
var alertmapping = $('#dialog_alertmappingitem').data('alertmapping');
var r = filterModels(it.ID, -1, alertmapping);
$("#dialog_model").allowselectall(r.allowAll).dropdownSource(r.models).dropdownVals([]);
if (it.ID == -1 && r.allowAll)
$("#dialog_model").allselected(true);
else
$("#dialog_model").dropdownVals([]);
}
});
$("#dialog_model").css('width', 320).dropdown([], {
search: true,
multiselect: true,
//allowselectall: false,
valueKey: 'ID',
textKey: 'Name',
enableKey: 'Enable'
});
$("#dialog_alerttype").css('width', 320).dropdown([], {
search: false,
valueKey: 'ID',
textKey: 'Name'
});
//$("#dialog_description").css('width', 320).dropdown([], {
// search: true,
// valueKey: 'ID',
// textKey: 'Name'
//}).on('select', function (_e, it) {
// if (it) {
// if (it.ID == "") {
// var lastvalue = $("#dialog_description").data('lastvalue');
// if (!lastvalue)
// lastvalue = null;
// $("#dialog_description").dropdownVal(lastvalue);
// OnAddAlertMappingSource(1);
// }
// else {
// $("#dialog_description").data('lastvalue', it.ID);
// }
// }
//});
$("#dialog_category").css('width', 320).dropdown([], {
search: true,
valueKey: 'ID',
textKey: 'Name'
}).on('select', function (_e, it) {
if (it) {
if (it.ID == "") {
var lastvalue = $("#dialog_category").data('lastvalue');
if (!lastvalue)
lastvalue = null;
$("#dialog_category").dropdownVal(lastvalue);
OnAddAlertMappingSource(2);
}
else {
$("#dialog_category").data('lastvalue', it.ID);
}
}
});
$("#dialog_categorydefault").css({
'width': 200,
'position': 'relative'
}).dropdown([], {
search: true,
valueKey: 'ID',
textKey: 'Name'
}).on('select', function (_e, it) {
if (it) {
if (it.ID == "") {
var lastvalue = $("#dialog_categorydefault").data('lastvalue');
if (!lastvalue)
lastvalue = null;
$("#dialog_categorydefault").dropdownVal(lastvalue);
OnAddAlertMappingSource(2);
}
else {
$("#dialog_categorydefault").data('lastvalue', it.ID);
setDefaultCategory();
}
}
});
grid_dt.init(document.querySelector('#pm_body'));
});
//********************************Begin Import*******************************************//
function getcolumnsdata() {
var columnsdata = [];
columnsdata.push({ Id: "Source", Name: GetTextByKey("P_AMP_SOURCE", "Source"), Width: 120, Key: 'Source' });
columnsdata.push({ Id: "SPN", Name: GetTextByKey("P_AMP_SPN", "SPN"), Width: 120, Key: 'SPN' });
columnsdata.push({ Id: "FMI", Name: GetTextByKey("P_AMP_FMI", "FMI"), Width: 120, Key: 'FMI' });
columnsdata.push({ Id: "Description", Name: GetTextByKey("P_AMP_DESCRIPTION", "Description"), Width: 120, Key: 'Description' });
columnsdata.push({ Id: "Make", Name: GetTextByKey("P_AMP_MAKE", "Make"), Width: 120, Key: 'MakeName' });
columnsdata.push({ Id: "Models", Name: GetTextByKey("P_AMP_MODELS", "Models"), Width: 120, Key: 'ModelNames' });
columnsdata.push({ Id: "AlertType", Name: GetTextByKey("P_AMP_ALERTTYPE", "Alert Type"), Width: 120, Key: 'AlertType' });
columnsdata.push({ Id: "Category", Name: GetTextByKey("P_AMP_CATEGORY", "Category"), Width: 120, Key: 'Category' });
return columnsdata;
}
function CreateSelect(excelcolumns, colid) {
var sel = $('<select style="width:180px;" name="sel_import"></select>').data('id', colid);
sel.append('<option></option>');
if (excelcolumns && excelcolumns.length > 0) {
for (var i = 0; i < excelcolumns.length; i++) {
var opval = excelcolumns[i];
if (opval === "Alert Type")
opval = 'AlertType';
var op = $('<option></option>').text(excelcolumns[i]).val(opval);
sel.append(op);
}
sel.val(colid);
}
return sel;
}
function CreateImportColumns(excelcolumns) {
var tb = $('#tb_import');
tb.empty();
var columnsdata = getcolumnsdata();
for (var i = 0; i < columnsdata.length; i++) {
var col = columnsdata[i];
var tr = $('<tr></tr>');
tb.append(tr);
var td = $('<td class="label" style="width:150px;">' + col.Name + '</td>');
if (i < 2) {
var sp = $('<span style="color:red;">*</span>');
td.append(sp);
}
tr.append(td);
td = $('<td></td>');
tr.append(td);
var sel = CreateSelect(excelcolumns, col.Id);
td.append(sel);
}
}
var grid_import_result = null;
function CreateImportResultGrid(data, t) {
if (grid_import_result == null) {
grid_import_result = new GridView('#div_import_grid');
}
if (t == 0 && data.length == 0) {
$('#btnOk').hide();
}
var columnsdata = getcolumnsdata();
var columns = [];
if (t == 0) {
columns.push({
type: 3,
key: 'checked',
allcheck: true,
width: 45,
align: 'center'
});
}
for (var i = 0; i < columnsdata.length; i++) {
var col = {};
col.name = columnsdata[i].Id;
col.caption = columnsdata[i].Name;
col.visible = true;
col.sortable = false;
col.width = columnsdata[i].Width;
col.key = columnsdata[i].Key;
col.allowFilter = false;
columns.push(col);
}
grid_import_result.multiSelect = false;
grid_import_result.columns = columns;
grid_import_result.init();
var rows = [];
for (var i = 0; i < data.length; i++) {
var r = data[i];
r.checked = true;
if (r.PairedAsset) {
r.VIN = r.PairedAsset.VIN;
}
rows.push(r);
}
grid_import_result.setData(rows);
grid_import_result.resize();
}
var fildata;
function OnImport() {
var file = $('<input type="file" style="display: none;" accept=".xlsx" />');
file.change(function () {
fildata = this.files[0];
var formData = new FormData();
formData.append("iconFile", fildata);
formData.append("MethodName", "GetImportAlertMappingsColumns");
formData.append("ClientData", '');
showloading(true);
$.ajax({
url: 'AlertMappingManagement.aspx',
type: 'POST',
dataType: 'json',
processData: false,
contentType: false,
data: formData,
async: true,
success: function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey("P_AMP_IMPORT", 'Import'));
showloading(false);
} else {
CreateImportColumns(data);
$('#dialog_import')
.attr('act', 'add')
.css({
'top': (document.documentElement.clientHeight - $('#dialog_import').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_import').width()) / 2
})
.showDialogfixed();
}
},
error: function (err) {
showloading(false);
showAlert(err.statusText, GetTextByKey("P_AMP_IMPORT", 'Import'));
}
});
}).click();
}
var importing = false;
var importCount = 0;
function OnImportAlertMappings(t) {
if (!fildata)
return;
if (importing)
return;
importing = true;
var item = [];
var sels = $("select[name='sel_import']");
var tmp = '';
for (var i = 0; i < sels.length; i++) {
var sel = sels[i];
var id = $(sel).data('id');
var value = $(sel).val();//与excel标题对应
switch (id) {
case "Source":
if (value === "") {
tmp += GetTextByKey("P_AMP_SOURCE", "Source");
}
break;
case "AlertType":
value = "Alert Type";
break;
}
var kv = { Key: id, Value: value };
item.push(kv);
}
if (tmp.length > 0) {
var s = GetTextByKey("P_AMP_NOTBEEMPTY", "{0} cannot be empty.").replace('{0}', tmp);
showAlert(s, GetTextByKey("P_AMP_IMPORT", 'Import'));
importing = false;
return;
}
var selected = [];
if (t == 1) {
for (var i in grid_import_result.source) {
selected.push(grid_import_result.source[i].checked);
}
grid_import_result.setData([]);
}
$('#dialog_import_result').hideDialog();
var param = JSON.stringify(item);
param = htmlencode(param);
var formData = new FormData();
formData.append("iconFile", fildata);
formData.append("MethodName", "ImportAlertMappings");
formData.append("Get", t == 1 ? false : true);
if (t == 1) {
formData.append("SelectedData", selected.join(','));
}
formData.append("ClientData", param);
showloading(true);
$.ajax({
url: 'AlertMappingManagement.aspx',
type: 'POST',
dataType: 'json',
processData: false,
contentType: false,
data: formData,
async: true,
success: function (data) {
importing = false;
try {
var d = JSON.parse(data);
$('#dialog_import').hideDialog();
errordata = [];
if (d.Count != -1) {
grid_import_result.setData([]);
$('#sp_import_result').show();
$('#sp_import_f').show();
$('#btnClose').show();
$('#btnOk').hide();
$('#btnCancel').hide();
var str = d.Count + " " + GetTextByKey("P_AMP_ALERTSMAPPINGSIMPORTEDSUCCESSFULLY", ' Alert Mapping(s) imported successfully.');
if (d.Datas.length > 0 || (d.Count == 0 && d.Datas.length == 0)) {
importCount = d.Count;
if (d.Datas.length > 0) {
errordata = $.cloneObject(d.Datas);
$('#div_import_export').show();
}
else {
$('#div_import_export').hide();
}
$('#sp_import_result').text(str);
$('#sp_import_f').text(d.Datas.length + " Failed.");
$('#dialog_import_result')
.css({
'top': (document.documentElement.clientHeight - $('#dialog_import_result').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_import_result').width()) / 2
})
.showDialogfixed();
CreateImportResultGrid(d.Datas, t);
}
else {
showAlert(str, GetTextByKey("P_AMP_IMPORT", 'Import'), null, function () {
if (d.Count > 0) {
window.location.reload();
}
});
showloading(false);
}
}
else {
$('#dialog_import_result')
.css({
'top': (document.documentElement.clientHeight - $('#dialog_import_result').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_import_result').width()) / 2
})
.showDialogfixed();
$('#sp_import_result').hide();
$('#div_import_export').hide();
$('#sp_import_f').show();
$('#btnClose').hide();
$('#btnOk').show();
$('#btnCancel').show();
CreateImportResultGrid(d.Datas, t);
$('#sp_import_f').text(GetTextByKey("P_WO_COUNT", 'Count') + ": " + d.Datas.length);
}
}
catch (e) {
showAlert(data, GetTextByKey("P_AMP_IMPORT", 'Import'));
showloading(false);
}
},
error: function (err) {
importing = false;
showloading(false);
showAlert(err.statusText, GetTextByKey("P_AMP_IMPORT", 'Import'));
}
});
}
function EndImportAlertMappings() {
$('#dialog_import_result').hideDialog();
if (importCount > 0) {
window.location.reload();
}
showloading(false);
}
//********************************End Import*******************************************//
function OnExport() {
var searchtxt = "";
searchtxt = htmlencode($.trim($('#searchinputtxt').val()));
window.open("../ExportToFile.aspx?type=alertmapping&t=" + searchtxt);
}
function OnExportInImport() {
var d = JSON.stringify(errordata);
var data = new FormData();
data.append('type', 'set');
data.append('ClientData', d);
$.ajax({
url: "../ExportToFile.aspx",
type: 'POST',
dataType: 'json',
processData: false,
contentType: false,
data: data,
success: function (data) {
if (data && data != "")
window.open("../ExportToFile.aspx?type=alertmappingexcel&key=" + data);
},
error: function (err) {
}
});
}
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div style="min-width: 850px;">
<div class="page_title" data-lgid="P_ALERTMAPPINGS">Alert Mappings</div>
<div class="search_bar" style="position: relative;">
<input type="password" autocomplete="new-password" style="display: none" />
<input id="searchinputtxt" type="text" autocomplete="off" />
<input class="search" type="button" onclick="refreshData();" value="Search" data-lgid="P_AMP_SEARCH" style="margin-left: 5px;" />
<div style="display: flex; flex: 1 1 auto; justify-content: flex-end; padding-right: 20px">
<span data-lgid="P_AMP_DEFAULTCATEGORY_COLON">Default Category:</span>
<div id="dialog_categorydefault" class="categorydropdown"></div>
</div>
</div>
<div class="function_title">
<span class="sbutton iconrefresh" onclick="refreshData();" data-lgid="P_AMP_REFRESH">Refresh</span>
<%if (IsSupperAdmin)
{%>
<span class="sbutton iconexport" onclick="OnExport();" data-lgid="P_AMP_EXPORT">Export to Excel</span>
<span class="sbutton iconimport" onclick="OnImport();" data-lgid="P_AMP_IMPORT">Import</span>
<%} %>
</div>
<div class="clear"></div>
<div class="content_main content_div">
<table class="main_table maintenance" style="display: none">
<tbody id="pm_tbody"></tbody>
</table>
<div id="pm_body" style="position: relative; height: 100%"></div>
</div>
</div>
<div id="mask_bg" style="display: none;">
<div class="loading c-spin"></div>
</div>
<div class="dialog" id="dialog_alertmapping" style="display: none;">
<div class="dialog-title"><span class="title" data-lgid="P_AMP_ADDALERTMAPPING">Add Alert Mapping</span><em class="dialog-close"></em></div>
<div class="dialog-content">
<table class="dialog_table">
<tr>
<td class="label" style="width: 130px; line-height: 40px;" data-lgid="P_AMP_SOURCE_COLON">Source:</td>
<td>
<input type="text" class="intervalinput" id="dig_source" tabindex="1" maxlength="100" /></td>
</tr>
<tr>
<td class="label" style="width: 130px; line-height: 40px;" data-lgid="P_AMP_DESCRIPTION_COLON">Description:</td>
<td>
<textarea id="dig_sourcedesc" maxlength="3000" tabindex="1" style="margin-top: 4px; height: 100px; width: 320px;"></textarea></td>
</tr>
</table>
</div>
<div class="dialog-func">
<input type="button" value="Cancel" data-lgid="P_AMP_CANCEL" class="dialog-close" tabindex="7" />
<input type="button" onclick="OnSaveAlertMapping();" value="OK" data-lgid="P_AMP_OK" tabindex="6" />
<div class="clear"></div>
</div>
<div class="maskbg" style="display: none;"></div>
</div>
<div class="dialog" id="dialog_alertmappingitem" style="display: none;">
<div class="dialog-title"><span class="title" data-lgid="P_AMP_ADDALERTMAPPINGITEM">Add Alert Mapping Item</span><em class="dialog-close"></em></div>
<div class="dialog-content">
<table class="dialog_table">
<tr>
<td class="label" style="width: 130px; line-height: 40px;"><span data-lgid="P_AMP_MAKE_COLON">Make:</span><b style="color: red;">*</b></td>
<td>
<div id="dialog_make"></div>
</td>
</tr>
<tr>
<td class="label" style="width: 130px; line-height: 40px;"><span data-lgid="P_AMP_MODELS_COLON">Models:</span><b style="color: red;">*</b></td>
<td>
<div id="dialog_model"></div>
</td>
</tr>
<tr>
<td class="label" style="width: 130px; line-height: 40px;"><span data-lgid="P_AMP_ALERTTYPE_COLON">Alert Type:</span></td>
<td>
<div id="dialog_alerttype"></div>
</td>
</tr>
<tr>
<td class="label" style="width: 130px; line-height: 40px;"><span data-lgid="P_AMP_CATEGORY_COLON">Category:</span></td>
<td>
<div id="dialog_category" class="categorydropdown"></div>
</td>
</tr>
<tr>
<td class="label" style="width: 130px; line-height: 40px;"><span data-lgid="P_AMP_ENHANCEDDESCRIPTION_COLON">Enhanced Description:</span></td>
<td>
<div id="dialog_description" class="descdropdown" style="max-width: 320px; line-height: 24px; max-height: 100px; overflow: hidden;"></div>
</td>
</tr>
</table>
</div>
<div class="dialog-func">
<input type="button" value="Cancel" data-lgid="P_PM_CANCEL" class="dialog-close" tabindex="7" />
<input type="button" onclick="OnSaveAlertMappingItem();" value="OK" data-lgid="P_PM_OK" tabindex="6" />
<div class="clear"></div>
</div>
<div class="maskbg" style="display: none;"></div>
</div>
<div class="dialog" id="dialog_alertmappingsource" style="display: none;">
<div class="dialog-title"><span class="title" data-lgid="P_AMP_ADDDESCRIPTION">Add Description</span><em class="dialog-close"></em></div>
<div class="dialog-content">
<table class="dialog_table">
<tr class="dig_descvalue">
<td class="label" style="width: 130px; line-height: 40px;" data-lgid="P_AMP_DESCRIPTION_COLON">Description:</td>
<td>
<textarea id="dig_descvalue" maxlength="3000" tabindex="1" style="margin-top: 4px; height: 100px; width: 320px;"></textarea></td>
</tr>
<tr class="dig_categoryvalue">
<td class="label" style="width: 130px; line-height: 40px;" data-lgid="P_AMP_CATEGORY_COLON">Category:</td>
<td>
<input id="dig_categoryvalue" type="text" maxlength="100" tabindex="1" style="width: 320px;" autocomplete="off" />
</td>
</tr>
</table>
</div>
<div class="dialog-func">
<input type="button" value="Cancel" data-lgid="P_AMP_CANCEL" class="dialog-close" tabindex="7" />
<input type="button" onclick="OnSaveAlertMappingSource();" value="OK" data-lgid="P_AMP_OK" tabindex="6" />
<div class="clear"></div>
</div>
<div class="maskbg" style="display: none;"></div>
</div>
<div class="dialog" id="dialog_import" style="display: none;">
<div class="dialog-title"><span class="title" data-lgid="P_AMP_IMPORT"></span><em class="dialog-close"></em></div>
<div class="machine_filter" style="margin: 9px 6px 7px; display: none;">
<span class="sbutton iconimport" onclick="OnImport()" data-lgid="P_AMP_IMPORT"></span>
</div>
<div class="dialog-content adjust-content" style="overflow: auto;">
<table id="tb_import" class="table_holder">
</table>
</div>
<div class="dialog-func">
<input type="button" value="Close" data-lgid="P_AMP_CANCEL" class="dialog-close" tabindex="28" />
<input type="button" onclick="OnImportAlertMappings(0);" value="OK" data-lgid="P_AMP_OK" tabindex="27" />
<div class="clear"></div>
</div>
</div>
<div class="dialog" id="dialog_import_result" style="display: none;">
<div class="dialog-title"><span class="title" data-lgid="P_AMP_IMPORT"></span></div>
<div id="div_import_export" class="machine_filter" style="margin: 9px 6px 7px; display: none;">
<span class="sbutton iconexport" onclick="OnExportInImport()" data-lgid="P_AMP_EXPORT">Export to Excel</span>
</div>
<div style="margin: 9px 6px 7px; padding-left: 20px">
<div id="sp_import_result" style="font-weight: bold;"></div>
</div>
<div id="sp_import_f" style="margin: 9px 6px 7px; padding-left: 20px; font-weight: bold;">Failed</div>
<div id="div_import_grid" style="padding-left: 20px; padding-right: 20px; height: 400px; width: 700px">
</div>
<div class="dialog-func">
<input id="btnCancel" type="button" value="Close" data-lgid="P_AMP_CANCEL" class="dialog-close" tabindex="28" />
<input id="btnOk" type="button" onclick="OnImportAlertMappings(1);" data-lgid="P_AMP_IMPORT" tabindex="27" />
<input id="btnClose" type="button" onclick="EndImportAlertMappings();" data-lgid="P_FR_CLOSE" tabindex="27" />
<div class="clear"></div>
</div>
</div>
</asp:Content>