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
d36429b6
Commit
d36429b6
authored
Jan 21, 2021
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OKR提醒
parent
d216690f
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
198 additions
and
3 deletions
+198
-3
QuarzHelper.cs
Edu.EducationCore/Helper/QuarzHelper.cs
+11
-0
OKRPeriodModule.cs
Edu.Module.OKR/OKRPeriodModule.cs
+158
-3
RB_OKR_RemindRepository.cs
Edu.Repository/OKR/RB_OKR_RemindRepository.cs
+4
-0
RB_AccountRepository.cs
Edu.Repository/User/RB_AccountRepository.cs
+25
-0
No files found.
Edu.EducationCore/Helper/QuarzHelper.cs
View file @
d36429b6
...
...
@@ -212,6 +212,17 @@ namespace Edu.Education.Helper
{
LogHelper
.
Write
(
ex
,
"CreateOKRPeriod"
);
}
try
{
LogHelper
.
Write
(
"开始提醒...."
);
//OKRPeriodModule oKRPeriodModule = new OKRPeriodModule();
//oKRPeriodModule.SendOKRRemid();
}
catch
(
Exception
ex
)
{
LogHelper
.
Write
(
ex
,
"SendOKRRemid"
);
}
return
null
;
}
}
...
...
Edu.Module.OKR/OKRPeriodModule.cs
View file @
d36429b6
This diff is collapsed.
Click to expand it.
Edu.Repository/OKR/RB_OKR_RemindRepository.cs
View file @
d36429b6
...
...
@@ -54,6 +54,10 @@ namespace Edu.Repository.OKR
{
where
+=
$@" and
{
nameof
(
RB_OKR_Remind_ViewModel
.
Type
)}
=
{
demodel
.
Type
}
"
;
}
if
(
demodel
.
Enable
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_OKR_Remind_ViewModel
.
Enable
)}
=
{
demodel
.
Enable
}
"
;
}
string
sql
=
$@" select * from RB_OKR_Remind where
{
where
}
order by Id desc"
;
return
Get
<
RB_OKR_Remind_ViewModel
>(
sql
).
ToList
();
...
...
Edu.Repository/User/RB_AccountRepository.cs
View file @
d36429b6
...
...
@@ -442,5 +442,30 @@ WHERE 1=1
}
return
Get
<
RB_Account_ViewModel
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
/// <summary>
/// 获取OKR未填写目标的用户
/// </summary>
/// <param name="GroupId"></param>
/// <returns></returns>
public
List
<
RB_Employee_Extend
>
GetOKRUserNotObjectiveList
(
int
GroupId
)
{
string
sql
=
$@"SELECT e.* FROM rb_employee e
LEFT JOIN rb_okr_objective o on e.EmployeeId = o.CreateBy AND o.`Status` in(1,2)
WHERE e.RB_Group_id =
{
GroupId
}
AND e.IsLeave =0 AND o.Id is null"
;
return
Get
<
RB_Employee_Extend
>(
sql
).
ToList
();
}
/// <summary>
/// 获取OKR未打分目标的用户
/// </summary>
/// <param name="GroupId"></param>
/// <returns></returns>
public
List
<
RB_Employee_Extend
>
GetOKRUserNotScoreList
(
int
GroupId
)
{
string
sql
=
$@"SELECT e.* FROM rb_employee e
LEFT JOIN rb_okr_objective o on e.EmployeeId = o.CreateBy AND o.`Status` =2
WHERE e.RB_Group_id =
{
GroupId
}
AND e.IsLeave =0 AND o.Score =0 GROUP BY e.EmployeeId"
;
return
Get
<
RB_Employee_Extend
>(
sql
).
ToList
();
}
}
}
\ No newline at end of file
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