diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Controllers/Ass_AcceptanceController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Controllers/Ass_AcceptanceController.cs index e2a0a1aec..2072d5bea 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Controllers/Ass_AcceptanceController.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Controllers/Ass_AcceptanceController.cs @@ -70,6 +70,16 @@ namespace Learun.Application.Web.Areas.AssetManagementSystem.Controllers { return View(); } + /// + /// 表单页 + /// + /// + [HttpGet] + public ActionResult Print() + { + ViewBag.Date = DateTime.Now.ToString("yyyy年MM月dd日"); + return View(); + } #endregion @@ -173,7 +183,7 @@ namespace Learun.Application.Web.Areas.AssetManagementSystem.Controllers [ValidateAntiForgeryToken] [AjaxOnly] public ActionResult SaveForm(string keyValue, string strEntity, string strass_Ass_AcceptanceList) - { + { Ass_AcceptanceMainEntity entity = strEntity.ToObject(); if (string.IsNullOrEmpty(keyValue)) { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Controllers/Ass_AssetsOutApplyController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Controllers/Ass_AssetsOutApplyController.cs index 47fb09a40..b8a5b1f97 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Controllers/Ass_AssetsOutApplyController.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Controllers/Ass_AssetsOutApplyController.cs @@ -91,6 +91,17 @@ namespace Learun.Application.Web.Areas.AssetManagementSystem.Controllers ViewBag.AOCode = "CKSQ_" + CommonHelper.CreateNo(); return View(); } + + /// + /// 表单页 + /// + /// + [HttpGet] + public ActionResult Print() + { + ViewBag.Date = DateTime.Now.ToString("yyyy年MM月dd日"); + return View(); + } #endregion #region 获取数据 diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.cshtml index b658a9a11..57f965cfe 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.cshtml @@ -32,6 +32,7 @@ +
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.js index e583e9a27..ec7a73522 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.js @@ -105,24 +105,7 @@ var bootstrap = function ($, learun) { }); } }); - //$("#detaildel").on('click', function () { - // var keyValue = $('#Ass_Acceptance').jfGridValue('Id'); - // if (learun.checkrow(keyValue)) { - // learun.layerConfirm('是否确认删除该项!', function (res, index) { - // if (res) { - // $.each(tempdatra, function (key, val) { - // if (tempdatra[key].MainId === keyValue) { - // pricecount -= tempdatra[key].TotalPrice; - // tempdatra.splice(key, 1); - // } - // }); - // $("#Price").val(pricecount); - // $('#Ass_Acceptance').jfGridSet('refreshdata', tempdatra.sort(sortNumber)); - // top.layer.close(index); - // } - // }); - // } - //}); + page.bind(); page.initData(); }, @@ -147,13 +130,7 @@ var bootstrap = function ($, learun) { }, { label: '单位', name: 'AAIUnit', width: 80, align: 'left', formatterAsync: function (callback, value, row, op, $cell) { - learun.clientdata.getAsync('dataItem', { - key: value, - code: 'sldw', - callback: function (_data) { - callback(_data.text); - } - }); + } }, { @@ -280,6 +257,17 @@ var bootstrap = function ($, learun) { reloadSelected: false }); + //打印 + $('#detailprint').on('click', function () { + learun.layerForm({ + id: 'print', + title: '北京金隅科技学校固定资产验收单', + url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/Print', + width: 1100, + height: 800, + btn: null + }); + }); }, initData: function () { if (!!keyValue) { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.cshtml index 2656db9d8..12ba310e2 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.cshtml @@ -11,10 +11,10 @@
@*
-
申请名称
- -
*@ - +
申请名称
+ + *@ +
总价
@@ -27,6 +27,10 @@
申请人
+
+
明细操作
+ +
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.js index 3d837f1b6..5278aabf2 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.js @@ -98,15 +98,7 @@ var bootstrap = function ($, learun) { $('#CreateUserId')[0].lrvalue = learun.clientdata.get(['userinfo']).userId; $('#CreateUserId').val(learun.clientdata.get(['userinfo']).realName); - //$('#CreateDeptId').lrselect({ - // type: 'tree', - // // 展开最大高度 - // maxHeight: 200, - // // 是否允许搜索 - // allowSearch: true, - // // 访问数据接口地址 - // url: top.$.rootUrl + '/LR_OrganizationModule/Department/GetTree' - //}); + $('#Ass_Acceptance').jfGrid({ headData: [ { @@ -192,116 +184,19 @@ var bootstrap = function ($, learun) { mainId: 'AAIId', reloadSelected: false }); - //$('#Ass_Acceptance').jfGrid({ - // headData: [ - // { - // label: '资产编号', name: 'AAICode', width: 150, align: 'left' - // }, - // { - // label: '资产名称', name: 'AAIName', width: 150, align: 'left' - // }, - // { - // label: '资产类别', name: 'AAITId', width: 150, align: 'left', formatterAsync: function (callback, value, row, op, $cell) { - // learun.clientdata.getAsync('custmerData', { - // url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'Ass_AssetsType', - // key: value, - // keyId: 'atid', - // callback: function (_data) { - // callback(_data['aname']); - // } - // }); - // } - // }, - // { - // label: '资产来源', name: 'AAISource', width: 100, align: 'left', formatterAsync: function (callback, value, row, op, $cell) { - // learun.clientdata.getAsync('dataItem', { - // key: value, - // code: 'zcly', - // callback: function (_data) { - // callback(_data.text); - // } - // }); - // } - // }, - // { - // label: '单价', name: 'AAIPrice', width: 100, align: 'left' - // }, - // { - // label: '数量', name: 'AAIStock', width: 80, align: 'left' - // }, - // { - // label: '单位', name: 'AAIUnit', width: 80, align: 'left', formatterAsync: function (callback, value, row, op, $cell) { - // learun.clientdata.getAsync('dataItem', { - // key: value, - // code: 'sldw', - // callback: function (_data) { - // callback(_data.text); - // } - // }); - // } - // }, - // { - // label: '生成资产明细', name: 'AAIHasDetail', width: 80, align: 'left', formatter: function (cellvalue) { - // return (cellvalue === true || cellvalue === "true") ? "" : ""; - // } - // }, - // { - // label: '库房', name: 'AAIStorageId', width: 100, align: 'left', formatterAsync: function (callback, value, row, op, $cell) { - // learun.clientdata.getAsync('custmerData', { - // url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'Ass_StorageData', - // key: value, - // keyId: 'sid', - // callback: function (_data) { - // callback(_data['sname']); - // } - // }); - // } - // }, - // { - // label: '库位', name: 'AAIStoragePosition', width: 100, align: 'left', - // formatterAsync: function (callback, value, row, op, $cell) { - // learun.clientdata.getAsync('custmerData', { - // url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'Ass_Storage_Room', - // key: value, - // keyId: 'rid', - // callback: function (_data) { - // callback(_data['rname']); - // } - // }); - // } - // }, - // { - // label: '英文名称', name: 'AAIEName', width: 100, align: 'left' - // }, - // { - // label: '资产型号', name: 'AAIModel', width: 100, align: 'left' - // }, - // { - // label: '生产厂家', name: 'AAIManufacturer', width: 100, align: 'left' - // }, - // { - // label: '资产规格', name: 'AAISpecification', width: 100, align: 'left' - // }, - // { - // label: '用途', name: 'AAIUse', width: 100, align: 'left' - // }, - // { - // label: '供应商', name: 'AAISupplierId', width: 100, align: 'left', formatterAsync: function (callback, value, row, op, $cell) { - // learun.clientdata.getAsync('custmerData', { - // url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'Ass_SupplierData', - // key: value, - // keyId: 'sid', - // callback: function (_data) { - // callback(_data['sname']); - // } - // }); - // } - // } - // ], - // height: 400, - // mainId: 'AAIId', - // reloadSelected: false - //}); + + + //打印 + $('#detailprint').on('click', function () { + learun.layerForm({ + id: 'print', + title: '北京金隅科技学校固定资产验收单', + url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/Print', + width: 1100, + height: 800, + btn: null + }); + }); }, initData: function () { if (!!keyValue) { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Index.js index 7367a7a34..440a8047d 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Index.js @@ -26,7 +26,7 @@ var bootstrap = function ($, learun) { // 新增 $('#lr_add').on('click', function () { learun.layerForm({ - id: 'form', + id: 'formAss_Acceptance', title: '新增', url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/Form', width: 1000, @@ -55,7 +55,7 @@ var bootstrap = function ($, learun) { return; } learun.layerForm({ - id: 'form', + id: 'formAss_Acceptance', title: '编辑', url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/Form?keyValue=' + keyValue, width: 1000, @@ -81,7 +81,7 @@ var bootstrap = function ($, learun) { var keyValue = $('#gridtable').jfGridValue('Id'); if (learun.checkrow(keyValue)) { learun.layerForm({ - id: 'form', + id: 'formAss_Acceptance', title: '查看', url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/FormView?keyValue=' + keyValue, width: 1000, diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml new file mode 100644 index 000000000..d002cbb55 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml @@ -0,0 +1,167 @@ + + + + + + + + 教职工基本信息登记表 + @Html.AppendCssFile("/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.css") + + +
+
+
北京金隅科技学校固定资产验收单
+
+ 项目名称: + 日期:@ViewBag.Date +
+ + + + + + + + + + + + + + + +
序号设备名称规格型号单位数量单价(元)总价(元)使用部门放置地点使用人备注
+

+ + + + + + + + + + + + + + + + + + +
部门资产管理员(签字): 部门负责人(签字): 财务负责人(签字):
设备管理员(签字): 设备管理负责人(签字): 校领导审核(签字):
+
+ +
+
打印
+ + + + + diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.css b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.css new file mode 100644 index 000000000..5bfac1027 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.css @@ -0,0 +1,87 @@ +table, +tr, +td { + padding: 0; + margin: 0; + border-collapse: collapse; +} + +table { + table-layout: fixed; + font-size: 14px; +} + +.tableT { + text-align: center; + font-size: 20px; + margin-bottom: 15px; +} + +.table { + width: 100%; + text-align: center; + border-top: 1px solid #000; + border-right: 1px solid #000; +} + + .table tr { + border-bottom: 1px solid #000; + } + + .table td { + border-left: 1px solid #000; + line-height: 20px; + padding: 8px 5px; + } + +.tableImg { + height: 0; + overflow: hidden; + padding-bottom: 140%; +} + +.table img { + width: 100%; +} + +.tableTxt { + text-align: left; +} + +.table .table { + border: 0; +} + + .table .table tr:last-child { + border-bottom: 0; + } + + .table .table td:first-child { + border-left: 0; + } + +.btn { + width: 100px; + height: 34px; + line-height: 34px; + text-align: center; + margin: 30px auto; + border: 1px solid #ccc; + cursor: pointer; + border-radius: 4px; +} + +.tableBox { + width: 90%; + margin: 30px auto; +} + + +.t_option td { + width: 18%; + line-height: 45px; +} + +#table { + /* display: none; */ +} diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.cshtml index da25af27d..7fad7456f 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.cshtml @@ -44,6 +44,8 @@ + +
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.js index 5b63e1552..b01631b8f 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.js @@ -259,6 +259,20 @@ var bootstrap = function ($, learun) { mainId: 'AOIId', reloadSelected: false }); + + + //打印 + $('#detailprint').on('click', function () { + learun.layerForm({ + id: 'print', + title: '固定资产调拨单', + url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/Print', + width: 1100, + height: 800, + btn: null + }); + }); + }, initData: function () { if (!!keyValue) { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.cshtml index e6baecb4c..0329844b3 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.cshtml @@ -12,13 +12,13 @@
@*
-
出库原因
-
-
*@ +
出库原因
+
+ *@ @*
-
部门
-
-
*@ +
部门
+
+ *@
申请时间
@@ -31,6 +31,11 @@
项目名称
+
+
明细操作
+ + +
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.js index 7ce1698fb..301f2d1c4 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.js @@ -41,6 +41,19 @@ var bootstrap = function ($, learun) { param: {} }); $('#AOCreateUserId').val(learun.clientdata.get(['userinfo']).realName); + + //打印 + $('#detailprint').on('click', function () { + learun.layerForm({ + id: 'print', + title: '固定资产调拨单', + url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/Print', + width: 1100, + height: 800, + btn: null + }); + }); + $('#Ass_AssetsOutItemApply').jfGrid({ headData: [ { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Index.js index 8aae66b68..e9391456d 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Index.js @@ -109,7 +109,7 @@ var bootstrap = function ($, learun) { var keyValue = $('#gridtable').jfGridValue('AOId'); if (learun.checkrow(keyValue)) { learun.layerForm({ - id: 'formAss_AssetsInfoApply', + id: 'formAss_AssetsOutApply', title: '查看调拨申请', url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/FormView?keyValue=' + keyValue, width: 1000, diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.cshtml new file mode 100644 index 000000000..990186673 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.cshtml @@ -0,0 +1,200 @@ + + + + + + + + 固定资产调拨单 + @Html.AppendCssFile("/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.css") + + +
+
+
固定资产调拨单
+
+ @*项目名称:*@ + 日期:@ViewBag.Date +
+ + + + + + + + + + + + + + +
序号资产编码资产名称规格型号数量调出部门调出存放地点调入部门调入存放地点备注
+

+ + + + + + + + + + + + + + + + + + + + +
调出部门设备管理人(签字): 调入部门设备管理人(签字):
调出部门负责人(签字): 调入部门负责人(签字):
设备部门负责人(签字): 财务部门负责人(签字):
+
+ +
+
打印
+ + + + + diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.css b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.css new file mode 100644 index 000000000..5bfac1027 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.css @@ -0,0 +1,87 @@ +table, +tr, +td { + padding: 0; + margin: 0; + border-collapse: collapse; +} + +table { + table-layout: fixed; + font-size: 14px; +} + +.tableT { + text-align: center; + font-size: 20px; + margin-bottom: 15px; +} + +.table { + width: 100%; + text-align: center; + border-top: 1px solid #000; + border-right: 1px solid #000; +} + + .table tr { + border-bottom: 1px solid #000; + } + + .table td { + border-left: 1px solid #000; + line-height: 20px; + padding: 8px 5px; + } + +.tableImg { + height: 0; + overflow: hidden; + padding-bottom: 140%; +} + +.table img { + width: 100%; +} + +.tableTxt { + text-align: left; +} + +.table .table { + border: 0; +} + + .table .table tr:last-child { + border-bottom: 0; + } + + .table .table td:first-child { + border-left: 0; + } + +.btn { + width: 100px; + height: 34px; + line-height: 34px; + text-align: center; + margin: 30px auto; + border: 1px solid #ccc; + cursor: pointer; + border-radius: 4px; +} + +.tableBox { + width: 90%; + margin: 30px auto; +} + + +.t_option td { + width: 18%; + line-height: 45px; +} + +#table { + /* display: none; */ +} diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj index 3f9eadc27..ee26e9677 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj @@ -855,6 +855,7 @@ + @@ -896,6 +897,7 @@ + @@ -7360,6 +7362,8 @@ + +