ソースを参照

【修改】预算-基础信息申请:取消管理提醒对象功能;

yanshi
dyy 2年前
コミット
ab8ac3332b
3個のファイルの変更1行の追加30行の削除
  1. +0
    -3
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml
  2. +1
    -22
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js
  3. +0
    -5
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs

+ 0
- 3
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml ファイルの表示

@@ -36,9 +36,6 @@
<a id="lr_delete" class="btn btn-default"><i class="fa fa-trash-o"></i>&nbsp;删除</a>
<a id="lr_print" class="btn btn-default"><i class="fa fa-print"></i>&nbsp;打印</a>
</div>
<div class=" btn-group btn-group-sm" learun-authorize="yes">
<a id="lr_messageRemindPerson" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp;管理提醒对象</a>
</div>
</div>
</div>
<div class="lr-layout-body" id="gridtable"></div>


+ 1
- 22
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) {


+ 0
- 5
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<FD_BudgetFileEntity>(strSql.ToString(),dp, pagination);
}
catch (Exception ex)


読み込み中…
キャンセル
保存