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
b31a07f3
Commit
b31a07f3
authored
Oct 09, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
0d196e9b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
9 deletions
+28
-9
ScrollClassCommonModule.cs
Edu.Module.Course/ScrollClassCommonModule.cs
+28
-9
No files found.
Edu.Module.Course/ScrollClassCommonModule.cs
View file @
b31a07f3
...
...
@@ -157,7 +157,7 @@ namespace Edu.Module.Course
{
//提前时间
string
Scroll_Time
=
dictvalueRepository
.
GetList
(
new
Model
.
ViewModel
.
User
.
RB_Dictvalue_Extend
()
{
RB_Group_id
=
groupId
,
DictKey
=
"Scroll_Time"
}).
FirstOrDefault
()?.
Content
??
"00:00"
;
// Scroll_Time = "11
:00:00";
//Scroll_Time = "13
:00:00";
//按照设置的时间来判定
if
(
DateTime
.
Now
.
Hour
==
Convert
.
ToDateTime
(
"2022-01-25 "
+
Scroll_Time
).
Hour
)
...
...
@@ -188,7 +188,26 @@ namespace Edu.Module.Course
#
endregion
List
<
int
>
CancelStuId
=
new
List
<
int
>();
var
tempAppointList
=
AppointList
.
GroupBy
(
x
=>
new
{
x
.
Date
,
x
.
AccountId
,
x
.
WorkUserId
,
x
.
TeacherId
,
x
.
TeacherName
,
x
.
CourseId
,
x
.
CourseName
,
x
.
ChapterNo
,
x
.
ShiftSort
,
x
.
CourseTimeId
,
x
.
RoomId
,
x
.
RoomName
,
x
.
RoomSchoolId
,
x
.
RoomSchoolName
,
x
.
ScrollMinNum
}).
OrderBy
(
x
=>
x
.
Key
.
Date
).
ThenBy
(
x
=>
x
.
Key
.
ShiftSort
).
ToList
();
var
tempAppointList
=
AppointList
.
GroupBy
(
x
=>
new
{
x
.
Date
,
x
.
AccountId
,
x
.
WorkUserId
,
x
.
TeacherId
,
x
.
TeacherName
,
x
.
CourseId
,
x
.
CourseName
,
x
.
ChapterNo
,
x
.
ShiftSort
,
x
.
CourseTimeId
,
x
.
RoomId
,
x
.
RoomName
,
x
.
RoomSchoolId
,
x
.
RoomSchoolName
,
x
.
ScrollMinNum
,
x
.
CourseETime
,
x
.
CourseSTime
}).
OrderBy
(
x
=>
x
.
Key
.
Date
).
ThenBy
(
x
=>
x
.
Key
.
ShiftSort
).
ToList
();
//以老师为单位 遍历
foreach
(
var
item
in
tempAppointList
)
{
...
...
@@ -216,11 +235,12 @@ namespace Edu.Module.Course
OperatorEnum
=
OperatorEnum
.
Equal
}
};
bool
flag
=
scroll_AppointmentRepository
.
Update
(
keyValues
,
wheres
);
bool
flag
=
true
;
//flag= scroll_AppointmentRepository.Update(keyValues, wheres);
if
(
flag
)
{
//给学生推送 取消课程的订阅消息
SendAppointmentCancelMsg
(
token
,
qitem
.
StuOpenId
,
qitem
,
StartTime
);
//给学生推送 取消课程的订阅消息
10-09注释
//
SendAppointmentCancelMsg(token, qitem.StuOpenId, qitem, StartTime);
if
(
qitem
.
AppointType
==
2
)
{
...
...
@@ -383,16 +403,15 @@ namespace Edu.Module.Course
PlanType
=
2
,
CourseId
=
item
.
Key
.
CourseId
};
string
sTime
=
CourseTimeList
.
FirstOrDefault
().
StartTime
;
string
eTime
=
CourseTimeList
.
FirstOrDefault
().
EndTime
;
var
oldModel
=
planList
?.
FirstOrDefault
(
qitem
=>
qitem
.
Group_Id
==
groupId
&&
qitem
.
School_Id
==
item
.
Key
.
RoomSchoolId
&&
qitem
.
TeacherId
==
item
.
Key
.
TeacherId
&&
qitem
.
ClassRoomId
==
item
.
Key
.
RoomId
&&
Common
.
ConvertHelper
.
FormatDate
(
qitem
.
ClassDate
)
==
Common
.
ConvertHelper
.
FormatDate
(
item
.
Key
.
Date
)
&&
qitem
.
PlanType
==
2
&&
qitem
.
StartTime
==
s
Time
&&
qitem
.
EndTime
==
e
Time
&&
qitem
.
StartTime
==
item
.
Key
.
CourseS
Time
&&
qitem
.
EndTime
==
item
.
Key
.
CourseE
Time
&&
qitem
.
CourseId
==
item
.
Key
.
CourseId
);
//先查询计划是否已存在
if
(
oldModel
!=
null
&&
oldModel
.
ClassPlanId
>
0
)
...
...
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