function init() { (12 == parent.SYSTEM.serviceType || 16 == parent.SYSTEM.serviceType) && $("#localRecover").hide(), getBackupData(), $("#start-backup").on("click", function(a) { a.preventDefault(), Business.verifyRight("BACKUP_ADD") && backupConfirm() }), $("#localRecover").on("click", function(a) { if (12 !== parent.SYSTEM.serviceType || 16 !== parent.SYSTEM.serviceType) { if (a.preventDefault(), !Business.verifyRight("BACKUP_RECOVER")) return; recoverLocalBackup() } }), $("#backup-status").on("click", ".btn-recover", function(a) { if (a.preventDefault(), Business.verifyRight("BACKUP_RECOVER")) { var b = $(this).parent().data("id"); recoverConfirm(function() { recoverBackup(b) }) } }), $("#backup-status").on("click", ".btn-del", function(a) { if (a.preventDefault(), Business.verifyRight("BACKUP_DELETE")) { var b = $(this).parent().data("id"); deleteBackupConfirm(b) } }) } function getBackupData() { $.ajax({ type: "POST", dataType: "json", url: "../scm/backup/queryBackupFile?m=queryBackupFile", success: function(a) { a && a.data && (BACKUP_DATA = a.data.items), BACKUP_DATA.length > 0 ? showBackup() : showNoBackup() }, error: function() { parent.Public.tips({ type: 1, content: "获取用户备份情况失败,请刷新页面重试!", autoClose: !1 }) } }) } function showNoBackup() { var a = "

温馨提示:

您还没有备份记录,请点击“开始备份”按钮备份您的数据。

"; $("#backup-status").html(a) } function showBackup() { var a = '
'; $("#backup-status").html(a), initGrid() } function initGrid() { var a = [400, 150, 80, 90]; $("#grid").jqGrid({ data: BACKUP_DATA, datatype: "local", height: Public.setGrid().h, autowidth: !0, shrinkToFit: !1, altRows: !0, gridview: !0, colModel: [{ name: "operate", label: "操作", index: "operate", width: a[3], align: "center", title: !1, formatter: opeFmatter }, { name: "filename", label: "备份名称", index: "filename", width: a[0], title: !1 }, { name: "createTime", label: "时间", index: "createTime", width: a[1], align: "center", title: !1 }, { name: "size", label: "文件大小", index: "size", width: a[2], align: "center", title: !1, formatter: sizeFormatter }], cmTemplate: { sortable: !1 }, viewrecords: !0, localReader: { repeatitems: !1, id: "fid" } }) } function nameFormatter(a) { return a.substr(a.lastIndexOf("/") + 1) } function sizeFormatter(a) { return a = parseInt(a), a = isNaN(a) ? 0 : a, Math.round(a / 1024) + " KB" } function opeFmatter(a, b, c) { return '

恢复下载删除

' } function backupConfirm() { var a = ["

为保证备份数据的完整性,请确保账套里的其他用户已经退出系统

", "

确定执行备份?

"]; $.dialog({ title: "开始备份", id: "backupDialog", width: 300, height: 80, icon: "confirm.gif", fixed: !0, lock: !0, resize: !1, parent: parent || null, ok: function() { return window.setTimeout(function() { doBackup() }, 0), !0 }, cancel: !0, content: a.join("") }) } function doBackup() { var a = $.dialog.tips("正在备份,这将需要几分钟时间,请耐心等候...", 1e3, "loading.gif", !0).show(); $.ajax({ type: "POST", dataType: "json", url: "../scm/backup?m=backup", success: function(b) { if (a.close(), 200 == b.status) { parent.Public.tips({ content: "备份完成!" }), b = b.data; var c = BACKUP_DATA.length; BACKUP_DATA.push(b), 0 == c ? showBackup() : ($("#grid").jqGrid("addRowData", b.fid, b, "first"), $("#" + b.fid).addClass("ui-state-add").siblings().removeClass("ui-state-add")) } else parent.Public.tips({ type: 1, content: b.msg }) }, error: function() { a.close(), parent.Public.tips({ type: 1, content: "备份失败!请重试。" }) } }) } function deleteBackupConfirm(a) { $.dialog({ title: "删除备份", width: 200, height: 80, icon: "confirm.gif", fixed: !0, lock: !0, resize: !1, parent: parent || null, ok: function() { return doDelete(a), !0 }, cancel: !0, content: "确定删除该备份?" }) } function doDelete(a) { $.ajax({ type: "POST", dataType: "json", url: "../scm/backup/deleteBackupFile?m=deleteBackupFile&id=" + a, success: function(b) { if (200 == b.status) { $("#grid").jqGrid("delRowData", a); for (var c = 0, d = BACKUP_DATA.length; d > c; c++) { var e = BACKUP_DATA[c]; if (e.fid == a) { BACKUP_DATA.splice(c, 1); break } } 0 == BACKUP_DATA.length && showNoBackup(), parent.Public.tips({ content: "删除备份成功!" }) } else parent.Public.tips({ type: 1, content: b.msg }) }, error: function() { parent.Public.tips({ type: 1, content: "删除备份失败!请重试。" }) } }) } function recoverConfirm(a) { var b = ["

您将把帐套数据恢复到备份文件所在的状态,此操作不可回退,请谨慎操作。

", "

为保证备份数据的完整性,请确保账套里的其他用户已经退出系统

", "

确定恢复备份?

"]; $.dialog({ title: "恢复备份", width: 340, height: 120, icon: "confirm.gif", fixed: !0, lock: !0, resize: !1, ok: function() { return window.setTimeout(function() { a() }, 0), !0 }, cancel: !0, content: b.join("") }) } function recoverBackup(a) { var b = $.dialog.tips("正在恢复备份,这将需要几分钟时间,请耐心等候...", 1e3, "loading.gif", !0).show(); $.ajax({ type: "POST", dataType: "json", url: "../scm/backup/recover?m=recover&id=" + a, success: function(a) { b.close(), 200 == a.status ? //parent.Public.tips({content: "恢复备份成功!请重新登陆"}) (parent.window.$.cookie("ReloadTips", "恢复备份成功!"), parent.window.location.reload())//add by michen 20170723 for 修复恢复 //(parent.window.$.cookie("ReloadTips", "恢复备份成功!"), parent.window.location.href = "../user/start?siId=" + parent.SYSTEM.DBID) : parent.Public.tips({ type: 1, content: a.msg }) }, error: function() { b.close(), parent.Public.tips({ type: 1, content: "恢复备份失败!请重试。" }) } }) } function recoverLocalBackup() { $.dialog({ title: "上传本地备份", id: "localBackupDialog", width: 460, height: 130, min: !1, max: !1, fixed: !0, resize: !1, lock: !0, content: "url:upload-backup.jsp", okVal: "上传", ok: function() { return this.content.doUpload(), !1 }, cancel: !0 }) } var BACKUP_DATA = []; init(), $(window).resize(function() { Public.resizeGrid() });