From c1e4d47a7eb161fdbb16db1fa1a18d861e2b5d68 Mon Sep 17 00:00:00 2001
From: zhangli <1109134334@qq.com>
Date: Tue, 1 Mar 2022 14:43:02 +0800
Subject: [PATCH] =?UTF-8?q?=E6=95=99=E6=9D=90=E8=AE=A2=E5=8D=95=E6=96=B0?=
=?UTF-8?q?=E5=A2=9E=E8=AE=A2=E8=B4=AD=E6=95=B0=E9=87=8F=E5=AD=97=E6=AE=B5?=
=?UTF-8?q?=EF=BC=8C=E8=87=AA=E5=8A=A8=E8=AE=A1=E7=AE=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Views/TextBookIndent/Form.cshtml | 4 +++
.../Views/TextBookIndent/Form.js | 32 +++++++++++--------
.../Views/TextBookIndent/FormDetail.cshtml | 4 +--
.../Views/TextBookIndent/Index.js | 5 +--
.../TextBookIndent/TextBookIndentEntity.cs | 8 ++++-
5 files changed, 34 insertions(+), 19 deletions(-)
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/TextBookIndent/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/TextBookIndent/Form.cshtml
index 87e893354..a0f5518b7 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/TextBookIndent/Form.cshtml
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/TextBookIndent/Form.cshtml
@@ -41,6 +41,10 @@
其他作者
+
备注
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/TextBookIndent/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/TextBookIndent/Index.js
index e88998eed..ada747980 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/TextBookIndent/Index.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/TextBookIndent/Index.js
@@ -174,10 +174,10 @@ var bootstrap = function ($, learun) {
},
// 初始化列表
initGird: function () {
- $('#gridtable').lrAuthorizeJfGrid({
+ $('#gridtable').jfGrid({
url: top.$.rootUrl + '/EducationalAdministration/TextBookIndent/GetPageList',
headData: [
- { label: "主键", name: "ID", width: 200, align: "left" },
+ //{ label: "主键", name: "ID", width: 200, align: "left" },
{
label: "专业部", name: "DeptNo", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
@@ -223,6 +223,7 @@ var bootstrap = function ($, learun) {
{ label: "书籍编码", name: "PublishNo", width: 150, align: "left" },
{ label: "作者", name: "FirstAuthor", width: 100, align: "left" },
{ label: "其他作者", name: "OtherAuthor", width: 200, align: "left" },
+ { label: "订购数量", name: "OrderNum", width: 100, align: "left" },
{ label: "备注", name: "Remark", width: 200, align: "left" },
{ label: "录入时间", name: "CreateTime", width: 100, align: "left" },
{
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/TextBookIndent/TextBookIndentEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/TextBookIndent/TextBookIndentEntity.cs
index 81d1159c6..9ac8b4349 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/TextBookIndent/TextBookIndentEntity.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/TextBookIndent/TextBookIndentEntity.cs
@@ -11,7 +11,7 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
/// 日 期:2022-02-18 14:27
/// 描 述:教材订单管理
///
- public class TextBookIndentEntity
+ public class TextBookIndentEntity
{
#region 实体成员
///
@@ -79,6 +79,12 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
///
[Column("OTHERAUTHOR")]
public string OtherAuthor { get; set; }
+
+ ///
+ /// 订购数量
+ ///
+ [Column("ORDERNUM")]
+ public int? OrderNum { get; set; }
///
/// Remark
///