define([], function () { var imppkg = {}; var txtfilename; var txtpwd; var btnbrowse; var btnunpackpkg; var txtname; var txtnotes; var grid_templatedt; var grid_sectiondt; var divpkg; var tempgridholder; var sectiongridholder; var filedata; function InitTemplateGridData() { var div_grid = $('
'); div_grid.css("height", 200); grid_templatedt = new GridView(div_grid); grid_templatedt.lang = { all: GetTextByKey("P_GRID_ALL", "(All)"), ok: GetTextByKey("P_GRID_OK", "OK"), reset: GetTextByKey("P_GRID_RESET", "Reset") }; var list_columns = [ { name: 'Selected', caption: "", valueIndex: 'Selected', type: 3, css: { 'width': 45, 'text-align': 'center' } }, { name: 'TemplateName', caption: GetTextByKey("P_TEMPLATE", "Template"), valueIndex: 'Name', css: { 'width': 320, 'text-align': 'left' } }, { name: 'AssetName', caption: GetTextByKey("P_IPT_NOTES", "Notes"), valueIndex: 'Notes', css: { 'width': 400, 'text-align': 'left' } } ]; var columns = []; // head for (var hd in list_columns) { var col = {}; col.name = list_columns[hd].name; col.caption = list_columns[hd].caption; col.visible = true; col.sortable = true; col.width = list_columns[hd].css.width; col.align = list_columns[hd].css["text-align"] col.key = list_columns[hd].valueIndex; col.allowFilter = list_columns[hd].allowFilter; if (list_columns[hd].type) { col.type = list_columns[hd].type; } if (col.name === 'Selected') { col.allcheck = true; col.sortable = false; } columns.push(col); } grid_templatedt.canMultiSelect = false; grid_templatedt.columns = columns; grid_templatedt.init(); return div_grid; } function showTemplates(data) { var rows = []; for (var i = 0; i < data.length; i++) { var r = data[i]; r.Selected = true; var fr = { Values: r }; rows.push(fr); } grid_templatedt.setData(rows); } function InitSectionGridData() { var div_grid = $(''); div_grid.css("height", 200); grid_sectiondt = new GridView(div_grid); grid_sectiondt.lang = { all: GetTextByKey("P_GRID_ALL", "(All)"), ok: GetTextByKey("P_GRID_OK", "OK"), reset: GetTextByKey("P_GRID_RESET", "Reset") }; var list_columns = [ { name: 'Selected', caption: "", valueIndex: 'Selected', type: 3, css: { 'width': 45, 'text-align': 'center' } }, { name: 'SectionName', caption: GetTextByKey("P_IPT_SECTION", "Section"), valueIndex: 'ItemName', css: { 'width': 320, 'text-align': 'left' } }, { name: 'AssetName', caption: GetTextByKey("P_IPT_NOTES", "Notes"), valueIndex: 'Notes', css: { 'width': 400, 'text-align': 'left' } } ]; var columns = []; // head for (var hd in list_columns) { var col = {}; col.name = list_columns[hd].name; col.caption = list_columns[hd].caption; col.visible = true; col.sortable = true; col.width = list_columns[hd].css.width; col.align = list_columns[hd].css["text-align"] col.key = list_columns[hd].valueIndex; col.allowFilter = list_columns[hd].allowFilter; if (list_columns[hd].type) { col.type = list_columns[hd].type; } if (col.name === 'Selected') { col.allcheck = true; col.sortable = false; } columns.push(col); } grid_sectiondt.canMultiSelect = false; grid_sectiondt.columns = columns; grid_sectiondt.init(); return div_grid; } function showGlobalSections(data) { var rows = []; for (var i = 0; i < data.length; i++) { var r = data[i]; r.Selected = true; var fr = { Values: r }; rows.push(fr); } grid_sectiondt.setData(rows); } function onImport(_this, overwritten) { var alerttitle = GetTextByKey("P_IPT_IMPORTPACKAGE", 'Import Package'); if (!filedata) { showAlert(GetTextByKey("P_IPT_PLEASESELECTTHEPACKAGEFILE", 'Please select the package file.'), alerttitle); return; } if (txtname.text() == "") { showAlert(GetTextByKey("P_IPT_PLEASEUNPACKTHEPACKAGE", 'Please unpack the package.'), alerttitle); return; } var templateids = []; for (var i = 0; i < grid_templatedt.source.length; i++) { var t = grid_templatedt.source[i].Values; if (t.Selected) templateids.push(t.Id); } var sectionids = []; for (var i = 0; i < grid_sectiondt.source.length; i++) { var t = grid_sectiondt.source[i].Values; if (t.Selected) sectionids.push(t.ItemId); } if (templateids.length < 1 && sectionids.length < 1) { showAlert(GetTextByKey("P_IPT_PLEASESELECTATLEASTONETEMPLATEORGLOBALSECTIONTOIMPORT", 'Please select at least one template or global section to import.'), alerttitle); return; } _this.loading && _this.loading.fadeIn(100); var p = [overwritten, JSON.stringify(templateids), JSON.stringify(sectionids)]; p = JSON.stringify(p); var formData = new FormData(); formData.append("pkgfile", filedata); formData.append("MethodName", "ImportPackage"); formData.append("ClientData", htmldecode(p)); $.ajax({ url: 'Inspection.aspx?tp=ashx', type: 'POST', dataType: 'json', processData: false, contentType: false, data: formData, async: true, success: function (data) { if (data === "OK") { showAlert(GetTextByKey("P_IPT_PACKAGEHASBEENIMPORTEDSUCCESSFULLY", 'Package has been imported successfully.'), alerttitle); filedata = null; divpkg.hide(); txtfilename.val(""); txtpwd.val(""); txtname.text(""); txtnotes.html(""); } else { showAlert(data, alerttitle); } _this.loading && _this.loading.fadeOut(100); }, error: function (err) { showAlert(err.statusText, alerttitle); _this.loading && _this.loading.fadeOut(100); } }); } function getPackageData(_this) { var alerttitle = GetTextByKey("P_IPT_IMPORTPACKAGE", 'Import Package'); var pwd = txtpwd.val(); if (!pwd || pwd == "") { showAlert(GetTextByKey("P_IPT_PASSWORDISREQUIRED", 'Password is required.'), alerttitle); return; } _this.loading && _this.loading.fadeIn(100); var formData = new FormData(); formData.append("pkgfile", filedata); formData.append("MethodName", "GetPackageData"); formData.append("ClientData", htmldecode(pwd)); $.ajax({ url: 'Inspection.aspx?tp=ashx', type: 'POST', dataType: 'json', processData: false, contentType: false, data: formData, async: true, success: function (data) { if (typeof (data) === "string") { showAlert(data, alerttitle); } else { showPackageData(data); } _this.loading && _this.loading.fadeOut(100); }, error: function (err) { showAlert(err.statusText, alerttitle); _this.loading && _this.loading.fadeOut(100); } }); } function showPackageData(pkgdata) { divpkg.show(); reshowgrid(); txtname.text(pkgdata.PackageName); txtnotes.html(replaceHtmlText(pkgdata.Notes)); showTemplates(pkgdata.Templates); showGlobalSections(pkgdata.GlobalSections); } imppkg.createContent = function () { var _this = this; setPageTitle(GetTextByKey("P_IPT_IMPORTPACKAGE", 'Import Package'), true); var content = $(''); this.content = content; var funcs = $(''); var btn = $(' ').click(function () { showConfirmYesNoCancel(GetTextByKey("P_IPT_DOYOUWANTTOOVERWRITETHEITEMSWHICHHAVEANEWERVERSION", 'Do you want to overwrite the items which have a higher version?'), GetTextByKey("P_IPT_IMPORTPACKAGE", 'Import Package'), function () { onImport(_this, 1); }, function () { onImport(_this, 0); }, function () { return; }); }); funcs.append(btn); content.append(funcs); var tb = $('