Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
ec649301
Commit
ec649301
authored
Sep 24, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
2010bc0c
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
104 additions
and
18 deletions
+104
-18
RB_Course_Offer_ViewModel.cs
Edu.Model/ViewModel/Course/RB_Course_Offer_ViewModel.cs
+3
-1
RB_Course_ViewModel.cs
Edu.Model/ViewModel/Course/RB_Course_ViewModel.cs
+12
-0
RB_Class_ViewModel.cs
Edu.Model/ViewModel/Grade/RB_Class_ViewModel.cs
+13
-1
RB_Order_ViewModel.cs
Edu.Model/ViewModel/Sell/RB_Order_ViewModel.cs
+13
-1
RB_CourseRepository.cs
Edu.Repository/Course/RB_CourseRepository.cs
+10
-0
RB_ClassRepository.cs
Edu.Repository/Grade/RB_ClassRepository.cs
+10
-1
RB_OrderRepository.cs
Edu.Repository/Sell/RB_OrderRepository.cs
+22
-11
ClassController.cs
Edu.WebApi/Controllers/Course/ClassController.cs
+4
-1
CourseController.cs
Edu.WebApi/Controllers/Course/CourseController.cs
+2
-0
CourseOfferController.cs
Edu.WebApi/Controllers/Course/CourseOfferController.cs
+1
-0
OrderController.cs
Edu.WebApi/Controllers/Course/OrderController.cs
+11
-2
TeacherClassController.cs
Edu.WebApi/Controllers/Course/TeacherClassController.cs
+3
-0
No files found.
Edu.Model/ViewModel/Course/RB_Course_Offer_ViewModel.cs
View file @
ec649301
using
Edu.Model.Entity.Course
;
using
Edu.Common.Enum.Course
;
using
Edu.Common.Plugin
;
using
Edu.Model.Entity.Course
;
using
System
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
System.Text
;
using
System.Text
;
...
...
Edu.Model/ViewModel/Course/RB_Course_ViewModel.cs
View file @
ec649301
using
Edu.Common
;
using
Edu.Common
;
using
Edu.Common.Plugin
;
using
Edu.Model.ViewModel.Mall
;
using
Edu.Model.ViewModel.Mall
;
using
Edu.Model.ViewModel.User
;
using
Edu.Model.ViewModel.User
;
using
System
;
using
System
;
...
@@ -158,5 +159,16 @@ namespace Edu.Model.ViewModel.Course
...
@@ -158,5 +159,16 @@ namespace Edu.Model.ViewModel.Course
/// </summary>
/// </summary>
public
List
<
RB_Goods_Category_Extend
>
CategoryList
{
get
;
set
;
}
public
List
<
RB_Goods_Category_Extend
>
CategoryList
{
get
;
set
;
}
/// <summary>
/// 课程等级
/// </summary>
public
string
CourseRateName
{
get
{
return
this
.
CourseRate
.
ToName
();
}
}
/// <summary>
/// 所属科目名称
/// </summary>
public
string
CourseSubjectName
{
get
{
return
this
.
CourseSubject
.
ToName
();
}
}
}
}
}
}
\ No newline at end of file
Edu.Model/ViewModel/Grade/RB_Class_ViewModel.cs
View file @
ec649301
using
Edu.Model.Entity.Grade
;
using
Edu.Common.Enum.Course
;
using
Edu.Common.Plugin
;
using
Edu.Model.Entity.Grade
;
using
Edu.Model.ViewModel.Course
;
using
Edu.Model.ViewModel.Course
;
using
System
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
...
@@ -247,6 +249,16 @@ namespace Edu.Model.ViewModel.Grade
...
@@ -247,6 +249,16 @@ namespace Edu.Model.ViewModel.Grade
/// 开班时间
/// 开班时间
/// </summary>
/// </summary>
public
List
<
string
>
ClassDateList
{
get
;
set
;
}
public
List
<
string
>
ClassDateList
{
get
;
set
;
}
/// <summary>
/// 所属科目
/// </summary>
public
CourseSubjectEnum
CourseSubject
{
get
;
set
;
}
/// <summary>
/// 科目名称
/// </summary>
public
string
CourseSubjectName
{
get
{
return
this
.
CourseSubject
.
ToName
();
}
}
}
}
/// <summary>
/// <summary>
...
...
Edu.Model/ViewModel/Sell/RB_Order_ViewModel.cs
View file @
ec649301
using
Edu.Model.Entity.Sell
;
using
Edu.Common.Enum.Course
;
using
Edu.Common.Plugin
;
using
Edu.Model.Entity.Sell
;
using
Edu.Model.ViewModel.Contract
;
using
Edu.Model.ViewModel.Contract
;
using
System
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
...
@@ -242,5 +244,15 @@ namespace Edu.Model.ViewModel.Sell
...
@@ -242,5 +244,15 @@ namespace Edu.Model.ViewModel.Sell
/// 订单拆分列表
/// 订单拆分列表
/// </summary>
/// </summary>
public
List
<
RB_Order_SplitDetails_ViewModel
>
SplitDetailsList
{
get
;
set
;
}
public
List
<
RB_Order_SplitDetails_ViewModel
>
SplitDetailsList
{
get
;
set
;
}
/// <summary>
/// 所属科目
/// </summary>
public
CourseSubjectEnum
CourseSubject
{
get
;
set
;
}
/// <summary>
/// 科目名称
/// </summary>
public
string
CourseSubjectName
{
get
{
return
this
.
CourseSubject
.
ToName
();
}
}
}
}
}
}
\ No newline at end of file
Edu.Repository/Course/RB_CourseRepository.cs
View file @
ec649301
...
@@ -77,6 +77,11 @@ WHERE 1=1
...
@@ -77,6 +77,11 @@ WHERE 1=1
builder
.
AppendFormat
(
" AND ({0}) "
,
str
);
builder
.
AppendFormat
(
" AND ({0}) "
,
str
);
}
}
}
}
//所属科目
if
(
query
.
CourseSubject
>
0
)
{
builder
.
AppendFormat
(
" AND A.{0} IN({1}) "
,
nameof
(
RB_Course_ViewModel
.
CourseSubject
),
(
int
)
query
.
CourseSubject
);
}
}
}
return
Get
<
RB_Course_ViewModel
>(
builder
.
ToString
(),
parameters
).
ToList
();
return
Get
<
RB_Course_ViewModel
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
}
...
@@ -144,6 +149,11 @@ WHERE 1=1
...
@@ -144,6 +149,11 @@ WHERE 1=1
builder
.
AppendFormat
(
" AND ({0}) "
,
str
);
builder
.
AppendFormat
(
" AND ({0}) "
,
str
);
}
}
}
}
//所属科目
if
(
query
.
CourseSubject
>
0
)
{
builder
.
AppendFormat
(
" AND A.{0} IN({1}) "
,
nameof
(
RB_Course_ViewModel
.
CourseSubject
),
(
int
)
query
.
CourseSubject
);
}
}
}
return
GetPage
<
RB_Course_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
return
GetPage
<
RB_Course_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
}
...
...
Edu.Repository/Grade/RB_ClassRepository.cs
View file @
ec649301
...
@@ -214,7 +214,7 @@ WHERE 1=1
...
@@ -214,7 +214,7 @@ WHERE 1=1
StringBuilder
builder
=
new
StringBuilder
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
builder
.
AppendFormat
(
@"
SELECT A.*,B.CourseName,C.AssistName,IFNULL(C.AssistIcon,'') AS AssistIcon,D.TeacherName,IFNULL(D.TeacherHead,'') AS TeacherHead
SELECT A.*,B.CourseName,C.AssistName,IFNULL(C.AssistIcon,'') AS AssistIcon,D.TeacherName,IFNULL(D.TeacherHead,'') AS TeacherHead
,E.SName AS SchoolName,IFNULL(F.RoomName,'') AS RoomName,plan.TotalPlanNum,ySplan.UsePlanNum
,E.SName AS SchoolName,IFNULL(F.RoomName,'') AS RoomName,plan.TotalPlanNum,ySplan.UsePlanNum
,B.CourseSubject
FROM rb_class AS A LEFT JOIN rb_course AS B ON A.CouseId=B.CourseId
FROM rb_class AS A LEFT JOIN rb_course AS B ON A.CouseId=B.CourseId
LEFT JOIN rb_assist AS C ON A.Assist_Id=C.AId
LEFT JOIN rb_assist AS C ON A.Assist_Id=C.AId
LEFT JOIN rb_teacher AS D ON A.Teacher_Id=D.TId
LEFT JOIN rb_teacher AS D ON A.Teacher_Id=D.TId
...
@@ -291,6 +291,10 @@ WHERE 1=1
...
@@ -291,6 +291,10 @@ WHERE 1=1
{
{
builder
.
AppendFormat
(
" AND D.{0}={1} "
,
nameof
(
RB_Teacher_ViewModel
.
TId
),
query
.
Teacher_Id
);
builder
.
AppendFormat
(
" AND D.{0}={1} "
,
nameof
(
RB_Teacher_ViewModel
.
TId
),
query
.
Teacher_Id
);
}
}
if
(
query
.
CourseSubject
>
0
)
{
builder
.
AppendFormat
(
" AND B.{0}={1} "
,
nameof
(
RB_Class_ViewModel
.
CourseSubject
),
(
int
)
query
.
CourseSubject
);
}
}
}
return
GetPage
<
RB_Class_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
return
GetPage
<
RB_Class_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
}
...
@@ -331,6 +335,7 @@ WHERE A.ClassId={0}
...
@@ -331,6 +335,7 @@ WHERE A.ClassId={0}
builder
.
AppendFormat
(
@"
builder
.
AppendFormat
(
@"
SELECT A.*,B.CourseName,B.CourseFeature,D.TeacherName,IFNULL(D.TeacherHead,'') AS TeacherHead,E.SName AS SchoolName,R.RoomName
SELECT A.*,B.CourseName,B.CourseFeature,D.TeacherName,IFNULL(D.TeacherHead,'') AS TeacherHead,E.SName AS SchoolName,R.RoomName
,IFNULL(t.GuestNum,0) AS OrderStudentCount,IFNULL(B.SellPrice,0) AS CourseSellPrice,IFNULL(B.OriginalPrice,0) AS CourseOriginalPrice
,IFNULL(t.GuestNum,0) AS OrderStudentCount,IFNULL(B.SellPrice,0) AS CourseSellPrice,IFNULL(B.OriginalPrice,0) AS CourseOriginalPrice
,B.CourseSubject
FROM rb_class AS A LEFT JOIN rb_course AS B ON A.CouseId=B.CourseId
FROM rb_class AS A LEFT JOIN rb_course AS B ON A.CouseId=B.CourseId
LEFT JOIN rb_teacher AS D ON A.Teacher_Id=D.TId
LEFT JOIN rb_teacher AS D ON A.Teacher_Id=D.TId
LEFT JOIN rb_class_room AS R ON A.ClassRoomId=R.RoomId
LEFT JOIN rb_class_room AS R ON A.ClassRoomId=R.RoomId
...
@@ -346,6 +351,10 @@ WHERE 1=1
...
@@ -346,6 +351,10 @@ WHERE 1=1
{
{
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Class_ViewModel
.
Group_Id
),
query
.
Group_Id
);
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Class_ViewModel
.
Group_Id
),
query
.
Group_Id
);
}
}
if
(
query
.
CourseSubject
>
0
)
{
builder
.
AppendFormat
(
" AND B.{0}={1} "
,
nameof
(
RB_Class_ViewModel
.
CourseSubject
),
(
int
)
query
.
CourseSubject
);
}
if
(
query
.
School_Id
>
-
1
)
if
(
query
.
School_Id
>
-
1
)
{
{
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Class_ViewModel
.
School_Id
),
query
.
School_Id
);
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Class_ViewModel
.
School_Id
),
query
.
School_Id
);
...
...
Edu.Repository/Sell/RB_OrderRepository.cs
View file @
ec649301
...
@@ -252,6 +252,10 @@ ORDER BY {orderBy}
...
@@ -252,6 +252,10 @@ ORDER BY {orderBy}
{
{
where
+=
$@" and o.
{
nameof
(
RB_Order_ViewModel
.
HelpEnterId
)}
=
{
demodel
.
HelpEnterId
}
"
;
where
+=
$@" and o.
{
nameof
(
RB_Order_ViewModel
.
HelpEnterId
)}
=
{
demodel
.
HelpEnterId
}
"
;
}
}
if
(
demodel
.
CourseSubject
>
0
)
{
where
+=
$@" and course.
{
nameof
(
RB_Order_ViewModel
.
CourseSubject
)}
=
{(
int
)
demodel
.
CourseSubject
}
"
;
}
string
orderBy
=
" o.OrderId asc"
;
string
orderBy
=
" o.OrderId asc"
;
if
(
demodel
.
Q_OrderBy
==
1
)
if
(
demodel
.
Q_OrderBy
==
1
)
{
{
...
@@ -263,7 +267,8 @@ ORDER BY {orderBy}
...
@@ -263,7 +267,8 @@ ORDER BY {orderBy}
}
}
string
sql
=
$@"
string
sql
=
$@"
select o.*,c.ClassName,c.ClassNo,c.School_Id as ClassSchoolId,t.TeacherName,t.TeacherIcon,IFNULL(course.CourseName,'') AS CourseName,C.OpenTime
select o.*,c.ClassName,c.ClassNo,c.School_Id as ClassSchoolId,t.TeacherName,t.TeacherIcon,IFNULL(course.CourseName,'') AS CourseName
,C.OpenTime,course.CourseSubject
from RB_Order o
from RB_Order o
left join rb_class c on o.ClassId = c.ClassId
left join rb_class c on o.ClassId = c.ClassId
left join rb_teacher t on c.Teacher_Id = t.TId
left join rb_teacher t on c.Teacher_Id = t.TId
...
@@ -364,18 +369,24 @@ where {where} order by {orderBy}
...
@@ -364,18 +369,24 @@ where {where} order by {orderBy}
{
{
where
+=
$@" and o.
{
nameof
(
RB_Order_ViewModel
.
PreferPrice
)}
> (o.
{
nameof
(
RB_Order_ViewModel
.
Income
)}
- o.
{
nameof
(
RB_Order_ViewModel
.
Refund
)}
+ o.
{
nameof
(
RB_Order_ViewModel
.
PlatformTax
)}
+ o.
{
nameof
(
RB_Order_ViewModel
.
DiscountMoney
)}
) "
;
where
+=
$@" and o.
{
nameof
(
RB_Order_ViewModel
.
PreferPrice
)}
> (o.
{
nameof
(
RB_Order_ViewModel
.
Income
)}
- o.
{
nameof
(
RB_Order_ViewModel
.
Refund
)}
+ o.
{
nameof
(
RB_Order_ViewModel
.
PlatformTax
)}
+ o.
{
nameof
(
RB_Order_ViewModel
.
DiscountMoney
)}
) "
;
}
}
}
}
string
sql
=
$@" select SUM(CASE WHEN o.OrderState <> 3 THEN o.PreferPrice ELSE 0 END) AS PreferPrice,
if
(
demodel
.
CourseSubject
>
0
)
SUM(CASE WHEN o.OrderState <> 3 THEN o.Income ELSE 0 END) AS Income,
{
SUM(CASE WHEN o.OrderState <> 3 THEN o.PreferPrice - o.Income + o.Refund - o.DiscountMoney - o.PlatformTax ELSE 0 END) AS DueInMoney,
where
+=
$@" and course.
{
nameof
(
RB_Order_ViewModel
.
CourseSubject
)}
=
{(
int
)
demodel
.
CourseSubject
}
"
;
SUM(CASE WHEN o.OrderState <> 3 THEN o.GuestNum ELSE 0 END) AS GuestNum,
}
SUM(CASE WHEN o.OrderState = 3 THEN o.GuestNum ELSE 0 END) AS CancelNum,
string
sql
=
$@"
SUM(CASE WHEN o.CommissionMoney <> -1 AND o.OrderState <> 3 THEN o.CommissionMoney ELSE 0 END) AS CommissionMoney,
SELECT SUM(CASE WHEN o.OrderState <> 3 THEN o.PreferPrice ELSE 0 END) AS PreferPrice,
SUM(CASE WHEN o.OrderState <> 3 THEN o.ExtraRewardMoney - o.ExtraDeductMoney ELSE 0 END) AS ExtraRewardMoney
SUM(CASE WHEN o.OrderState <> 3 THEN o.Income ELSE 0 END) AS Income,
from RB_Order o
SUM(CASE WHEN o.OrderState <> 3 THEN o.PreferPrice - o.Income + o.Refund - o.DiscountMoney - o.PlatformTax ELSE 0 END) AS DueInMoney,
left join rb_class c on o.ClassId = c.ClassId
SUM(CASE WHEN o.OrderState <> 3 THEN o.GuestNum ELSE 0 END) AS GuestNum,
where
{
where
}
SUM(CASE WHEN o.OrderState = 3 THEN o.GuestNum ELSE 0 END) AS CancelNum,
SUM(CASE WHEN o.CommissionMoney <> -1 AND o.OrderState <> 3 THEN o.CommissionMoney ELSE 0 END) AS CommissionMoney,
SUM(CASE WHEN o.OrderState <> 3 THEN o.ExtraRewardMoney - o.ExtraDeductMoney ELSE 0 END) AS ExtraRewardMoney
FROM RB_Order o LEFT JOIN rb_class c on o.ClassId = c.ClassId
LEFT JOIN rb_course AS course ON (o.CourseId=course.CourseId AND o.CourseId>0 AND o.OrderType=1)
WHERE
{
where
}
"
;
"
;
return
Get
<
RB_Order_ViewModel
>(
sql
).
FirstOrDefault
();
return
Get
<
RB_Order_ViewModel
>(
sql
).
FirstOrDefault
();
}
}
...
...
Edu.WebApi/Controllers/Course/ClassController.cs
View file @
ec649301
...
@@ -54,7 +54,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -54,7 +54,8 @@ namespace Edu.WebApi.Controllers.Course
School_Id
=
base
.
ParmJObj
.
GetInt
(
"School_Id"
),
School_Id
=
base
.
ParmJObj
.
GetInt
(
"School_Id"
),
TeacherName
=
base
.
ParmJObj
.
GetStringValue
(
"TeacherName"
),
TeacherName
=
base
.
ParmJObj
.
GetStringValue
(
"TeacherName"
),
CourseName
=
base
.
ParmJObj
.
GetStringValue
(
"CourseName"
),
CourseName
=
base
.
ParmJObj
.
GetStringValue
(
"CourseName"
),
ClassNo
=
base
.
ParmJObj
.
GetStringValue
(
"ClassNo"
)
ClassNo
=
base
.
ParmJObj
.
GetStringValue
(
"ClassNo"
),
CourseSubject
=(
CourseSubjectEnum
)
base
.
ParmJObj
.
GetInt
(
"CourseSubject"
),
};
};
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
List
<
object
>
result
=
new
List
<
object
>();
List
<
object
>
result
=
new
List
<
object
>();
...
@@ -94,6 +95,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -94,6 +95,8 @@ namespace Edu.WebApi.Controllers.Course
item
.
FinishTimeStr
,
item
.
FinishTimeStr
,
item
.
UsePlanNum
,
item
.
UsePlanNum
,
item
.
TotalPlanNum
,
item
.
TotalPlanNum
,
item
.
CourseSubject
,
item
.
CourseSubjectName
,
});
});
}
}
pageModel
.
Count
=
rowsCount
;
pageModel
.
Count
=
rowsCount
;
...
...
Edu.WebApi/Controllers/Course/CourseController.cs
View file @
ec649301
...
@@ -191,6 +191,7 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -191,6 +191,7 @@ namespace Edu.WebApi.Controllers.Course
IsQPrice
=
base
.
ParmJObj
.
GetInt
(
"IsQPrice"
),
IsQPrice
=
base
.
ParmJObj
.
GetInt
(
"IsQPrice"
),
IsQTeacher
=
base
.
ParmJObj
.
GetInt
(
"IsQTeacher"
),
IsQTeacher
=
base
.
ParmJObj
.
GetInt
(
"IsQTeacher"
),
Saleplat
=
base
.
ParmJObj
.
GetStringValue
(
"Saleplat"
),
Saleplat
=
base
.
ParmJObj
.
GetStringValue
(
"Saleplat"
),
CourseSubject
=(
CourseSubjectEnum
)
base
.
ParmJObj
.
GetInt
(
"CourseSubject"
),
};
};
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
//query.School_Id = base.UserInfo.School_Id;
//query.School_Id = base.UserInfo.School_Id;
...
@@ -223,6 +224,7 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -223,6 +224,7 @@ namespace Edu.WebApi.Controllers.Course
var
query
=
new
RB_Course_ViewModel
()
var
query
=
new
RB_Course_ViewModel
()
{
{
IsQPrice
=
base
.
ParmJObj
.
GetInt
(
"IsQPrice"
,
0
),
IsQPrice
=
base
.
ParmJObj
.
GetInt
(
"IsQPrice"
,
0
),
CourseSubject
=(
CourseSubjectEnum
)
base
.
ParmJObj
.
GetInt
(
"CourseSubject"
),
};
};
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
query
.
School_Id
=
base
.
UserInfo
.
School_Id
;
query
.
School_Id
=
base
.
UserInfo
.
School_Id
;
...
...
Edu.WebApi/Controllers/Course/CourseOfferController.cs
View file @
ec649301
using
Edu.Cache.User
;
using
Edu.Cache.User
;
using
Edu.Common.API
;
using
Edu.Common.API
;
using
Edu.Common.Enum.Course
;
using
Edu.Common.Enum.Sale
;
using
Edu.Common.Enum.Sale
;
using
Edu.Common.Plugin
;
using
Edu.Common.Plugin
;
using
Edu.Model.ViewModel.Course
;
using
Edu.Model.ViewModel.Course
;
...
...
Edu.WebApi/Controllers/Course/OrderController.cs
View file @
ec649301
...
@@ -51,7 +51,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -51,7 +51,8 @@ namespace Edu.WebApi.Controllers.Course
CouseId
=
base
.
ParmJObj
.
GetInt
(
"CouseId"
),
CouseId
=
base
.
ParmJObj
.
GetInt
(
"CouseId"
),
Q_CanApply
=
base
.
ParmJObj
.
GetInt
(
"Q_CanApply"
),
Q_CanApply
=
base
.
ParmJObj
.
GetInt
(
"Q_CanApply"
),
JoinStartTime
=
base
.
ParmJObj
.
GetStringValue
(
"JoinStartTime"
),
JoinStartTime
=
base
.
ParmJObj
.
GetStringValue
(
"JoinStartTime"
),
JoinEndTime
=
base
.
ParmJObj
.
GetStringValue
(
"JoinEndTime"
)
JoinEndTime
=
base
.
ParmJObj
.
GetStringValue
(
"JoinEndTime"
),
CourseSubject
=(
CourseSubjectEnum
)
base
.
ParmJObj
.
GetInt
(
"CourseSubject"
),
};
};
dmodel
.
School_Id
=
-
1
;
dmodel
.
School_Id
=
-
1
;
var
schoolId
=
base
.
ParmJObj
.
GetStringValue
(
"School_Id"
);
var
schoolId
=
base
.
ParmJObj
.
GetStringValue
(
"School_Id"
);
...
@@ -112,6 +113,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -112,6 +113,8 @@ namespace Edu.WebApi.Controllers.Course
UpdateTime
=
Common
.
ConvertHelper
.
FormatTime
(
x
.
UpdateTime
),
UpdateTime
=
Common
.
ConvertHelper
.
FormatTime
(
x
.
UpdateTime
),
x
.
OtherCourseList
,
x
.
OtherCourseList
,
IsChaBan
=
IsInsertClass
,
IsChaBan
=
IsInsertClass
,
x
.
CourseSubject
,
x
.
CourseSubjectName
,
};
};
result
.
Add
(
obj
);
result
.
Add
(
obj
);
}
}
...
@@ -1237,6 +1240,7 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -1237,6 +1240,7 @@ namespace Edu.WebApi.Controllers.Course
Q_OrderState
=
base
.
ParmJObj
.
GetInt
(
"Q_OrderState"
),
Q_OrderState
=
base
.
ParmJObj
.
GetInt
(
"Q_OrderState"
),
Q_OrderBy
=
base
.
ParmJObj
.
GetInt
(
"Q_OrderBy"
),
Q_OrderBy
=
base
.
ParmJObj
.
GetInt
(
"Q_OrderBy"
),
PlatformTax
=
base
.
ParmJObj
.
GetDecimal
(
"PlatformTax"
),
PlatformTax
=
base
.
ParmJObj
.
GetDecimal
(
"PlatformTax"
),
CourseSubject
=(
CourseSubjectEnum
)
base
.
ParmJObj
.
GetInt
(
"CourseSubject"
),
};
};
demodel
.
Group_Id
=
userInfo
.
Group_Id
;
demodel
.
Group_Id
=
userInfo
.
Group_Id
;
demodel
.
EnterID
=
userInfo
.
Id
;
demodel
.
EnterID
=
userInfo
.
Id
;
...
@@ -1322,6 +1326,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -1322,6 +1326,8 @@ namespace Edu.WebApi.Controllers.Course
x
.
RenewOrderId
,
x
.
RenewOrderId
,
x
.
FirstOrderId
,
x
.
FirstOrderId
,
x
.
IsBackClass
,
x
.
IsBackClass
,
x
.
CourseSubject
,
x
.
CourseSubjectName
,
SplitDetailsList
=
x
?.
SplitDetailsList
?.
Select
(
qitem
=>
new
SplitDetailsList
=
x
?.
SplitDetailsList
?.
Select
(
qitem
=>
new
{
{
qitem
.
S_ClassId
,
qitem
.
S_ClassId
,
...
@@ -1418,7 +1424,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -1418,7 +1424,8 @@ namespace Edu.WebApi.Controllers.Course
PlatformTax
=
base
.
ParmJObj
.
GetDecimal
(
"PlatformTax"
),
PlatformTax
=
base
.
ParmJObj
.
GetDecimal
(
"PlatformTax"
),
EnterID
=
base
.
ParmJObj
.
GetInt
(
"EnterID"
),
EnterID
=
base
.
ParmJObj
.
GetInt
(
"EnterID"
),
HelpEnterId
=
base
.
ParmJObj
.
GetInt
(
"HelpEnterId"
,
0
),
HelpEnterId
=
base
.
ParmJObj
.
GetInt
(
"HelpEnterId"
,
0
),
ClassNo
=
base
.
ParmJObj
.
GetStringValue
(
"ClassNo"
)
ClassNo
=
base
.
ParmJObj
.
GetStringValue
(
"ClassNo"
),
CourseSubject
=(
CourseSubjectEnum
)
base
.
ParmJObj
.
GetInt
(
"CourseSubject"
),
};
};
demodel
.
Group_Id
=
userInfo
.
Group_Id
;
demodel
.
Group_Id
=
userInfo
.
Group_Id
;
...
@@ -1503,6 +1510,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -1503,6 +1510,8 @@ namespace Edu.WebApi.Controllers.Course
x
.
RenewOrderId
,
x
.
RenewOrderId
,
x
.
FirstOrderId
,
x
.
FirstOrderId
,
x
.
IsBackClass
,
x
.
IsBackClass
,
x
.
CourseSubject
,
x
.
CourseSubjectName
,
SplitDetailsList
=
x
?.
SplitDetailsList
?.
Select
(
qitem
=>
new
SplitDetailsList
=
x
?.
SplitDetailsList
?.
Select
(
qitem
=>
new
{
{
qitem
.
S_ClassId
,
qitem
.
S_ClassId
,
...
...
Edu.WebApi/Controllers/Course/TeacherClassController.cs
View file @
ec649301
...
@@ -53,6 +53,7 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -53,6 +53,7 @@ namespace Edu.WebApi.Controllers.Course
School_Id
=
base
.
ParmJObj
.
GetInt
(
"School_Id"
),
School_Id
=
base
.
ParmJObj
.
GetInt
(
"School_Id"
),
TeacherName
=
base
.
ParmJObj
.
GetStringValue
(
"TeacherName"
),
TeacherName
=
base
.
ParmJObj
.
GetStringValue
(
"TeacherName"
),
CourseName
=
base
.
ParmJObj
.
GetStringValue
(
"CourseName"
),
CourseName
=
base
.
ParmJObj
.
GetStringValue
(
"CourseName"
),
CourseSubject
=
(
CourseSubjectEnum
)
base
.
ParmJObj
.
GetInt
(
"CourseSubject"
),
};
};
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
List
<
object
>
result
=
new
List
<
object
>();
List
<
object
>
result
=
new
List
<
object
>();
...
@@ -91,6 +92,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -91,6 +92,8 @@ namespace Edu.WebApi.Controllers.Course
item
.
CouseId
,
item
.
CouseId
,
item
.
FinishTimeStr
,
item
.
FinishTimeStr
,
item
.
OrderStudentCount
,
item
.
OrderStudentCount
,
item
.
CourseSubject
,
item
.
CourseSubjectName
,
});
});
}
}
pageModel
.
Count
=
rowsCount
;
pageModel
.
Count
=
rowsCount
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment