diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml index ff129895f..585f0a5bc 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml @@ -36,9 +36,6 @@  删除  打印 -
-  管理提醒对象 -
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js index 768e17d4a..18acfe1b6 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js @@ -5,7 +5,6 @@ * 描 述:基础信息采集 */ var refreshGirdData; -var keyValueInMessageRemind = request('keyValue');//消息提醒-查看-id var bootstrap = function ($, learun) { "use strict"; var page = { @@ -14,12 +13,6 @@ var bootstrap = function ($, learun) { page.bind(); }, bind: function () { - //消息提醒-查看:按钮隐藏 - if (keyValueInMessageRemind != "" && keyValueInMessageRemind != undefined && keyValueInMessageRemind != null) { - $('.lr-layout-tool > div').hide(); - } else { - $('.lr-layout-tool > div').show(); - } $('#multiple_condition_query').lrMultipleQuery(function (queryJson) { page.search(queryJson); }, 220, 400); @@ -89,20 +82,7 @@ var bootstrap = function ($, learun) { // top.learun.download({ url: top.$.rootUrl + '/LR_SystemModule/Annexes/DownAnnexesFile', param: { fileId: id, __RequestVerificationToken: top.$.lrToken }, method: 'POST' }); //}); - - // 管理提醒对象 - $('#lr_messageRemindPerson').on('click', function () { - learun.layerForm({ - id: 'formInMessageRemindPerson', - title: '管理提醒对象', - url: top.$.rootUrl + '/LR_Desktop/MessageRemindPerson/Form?type=05', - width: 600, - height: 400, - callBack: function (id) { - return top[id].acceptClick(); - } - }); - }); + }, // 初始化列表 initGird: function () { @@ -181,7 +161,6 @@ var bootstrap = function ($, learun) { }, search: function (param) { param = param || {}; - param.keyValueInMessageRemind = keyValueInMessageRemind; $('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) }); }, downLoad: function (fileId) { diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs index 44a5e4cd2..1d9b78473 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs @@ -56,11 +56,6 @@ namespace Learun.Application.TwoDevelopment.ReceiveSendFeeManagement dp.Add("FileName", "%" + queryParam["FileName"].ToString() + "%", DbType.String); strSql.Append(" AND t.FileName Like @FileName "); } - if (!queryParam["keyValueInMessageRemind"].IsEmpty()) - { - dp.Add("keyValueInMessageRemind", queryParam["keyValueInMessageRemind"].ToString(), DbType.String); - strSql.Append(" AND t.Id = @keyValueInMessageRemind "); - } return this.BaseRepository("CollegeMIS").FindList(strSql.ToString(),dp, pagination); } catch (Exception ex)