ソースを参照

【修改】学籍:加学生状态和学籍状态;

西昌分支
dyy 1ヶ月前
コミット
f8c92ee0e5
2個のファイルの変更26行の追加0行の削除
  1. +22
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoBasic/Index.js
  2. +4
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoBasic/StuInfoBasicEntity.cs

+ 22
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoBasic/Index.js ファイルの表示

@@ -360,6 +360,28 @@ var bootstrap = function ($, learun) {
{ label: "联系电话", name: "mobile", width: 100, align: "left" },
{ label: "户口所在地", name: "FatherUnit", width: 100, align: "left" },
{ label: "档案所在地", name: "MatherUnit", width: 100, align: "left" },
{
label: "学生状态", name: "STU_STATE_CODE", width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('dataItem', {
key: value,
code: 'StuStateCode',
callback: function (_data) {
callback(_data.text);
}
});
}
},
{
label: "学籍状态", name: "STU_ROLL_CODE", width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('dataItem', {
key: value,
code: 'StuRollCode',
callback: function (_data) {
callback(_data.text);
}
});
}
},
{
label: "异动状态", name: "AbmormityMoveMark", width: 80, align: "center",
formatter: function (cellvalue) {


+ 4
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoBasic/StuInfoBasicEntity.cs ファイルの表示

@@ -723,6 +723,10 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
/// </summary>
[Column("BANKLOCATION")]
public string BankLocation { get; set; }
[NotMapped]
public string STU_STATE_CODE { get; set; }
[NotMapped]
public string STU_ROLL_CODE { get; set; }
#endregion

#region 扩展操作


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