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
aee9aec9
Commit
aee9aec9
authored
Jun 25, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
a0869354
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
1 deletion
+26
-1
RB_Visitor_ViewModel.cs
Edu.Model/ViewModel/Duty/RB_Visitor_ViewModel.cs
+5
-0
RB_Visitor_Reserve_Extend.cs
Edu.Model/ViewModel/Reserve/RB_Visitor_Reserve_Extend.cs
+5
-0
RB_Visitor_ReserveRepository.cs
Edu.Repository/Reserve/RB_Visitor_ReserveRepository.cs
+4
-0
DutyPlanController.cs
Edu.WebApi/Controllers/Duty/DutyPlanController.cs
+6
-1
VisitorReserveController.cs
Edu.WebApi/Controllers/Duty/VisitorReserveController.cs
+6
-0
No files found.
Edu.Model/ViewModel/Duty/RB_Visitor_ViewModel.cs
View file @
aee9aec9
...
...
@@ -33,5 +33,10 @@ namespace Edu.Model.ViewModel.Duty
/// 关键字查询
/// </summary>
public
string
KeyWords
{
get
;
set
;
}
/// <summary>
/// 是否查看所有人访客
/// </summary>
public
int
IsQueryAll
{
get
;
set
;
}
}
}
Edu.Model/ViewModel/Reserve/RB_Visitor_Reserve_Extend.cs
View file @
aee9aec9
...
...
@@ -120,5 +120,10 @@ namespace Edu.Model.ViewModel.Reserve
/// 账户表Id
/// </summary>
public
int
AccountId
{
get
;
set
;
}
/// <summary>
/// 是否查询所有约课(1-是)
/// </summary>
public
int
IsQueryAll
{
get
;
set
;
}
}
}
Edu.Repository/Reserve/RB_Visitor_ReserveRepository.cs
View file @
aee9aec9
...
...
@@ -75,6 +75,10 @@ WHERE 1=1
{
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Visitor_Reserve_Extend
.
Id
),
query
.
Id
);
}
if
(
query
.
CreateBy
>
0
)
{
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Visitor_Reserve_Extend
.
CreateBy
),
query
.
CreateBy
);
}
}
return
GetPage
<
RB_Visitor_Reserve_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
...
...
Edu.WebApi/Controllers/Duty/DutyPlanController.cs
View file @
aee9aec9
...
...
@@ -386,8 +386,13 @@ namespace Edu.WebApi.Controllers.Duty
var
query
=
new
RB_Visitor_ViewModel
()
{
PlanId
=
base
.
ParmJObj
.
GetInt
(
"PlanId"
),
KeyWords
=
base
.
ParmJObj
.
GetStringValue
(
"KeyWords"
)
KeyWords
=
base
.
ParmJObj
.
GetStringValue
(
"KeyWords"
),
IsQueryAll
=
base
.
ParmJObj
.
GetInt
(
"IsQueryAll"
),
//1-查看全部
};
if
(
query
.
IsQueryAll
!=
1
)
{
query
.
CreateBy
=
base
.
UserInfo
.
Id
;
}
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
List
<
object
>
result
=
new
List
<
object
>();
var
list
=
dutyPlanModule
.
GetVisitorPageModule
(
pageModel
.
PageIndex
,
pageModel
.
PageSize
,
out
long
rowsCount
,
query
);
...
...
Edu.WebApi/Controllers/Duty/VisitorReserveController.cs
View file @
aee9aec9
...
...
@@ -47,7 +47,12 @@ namespace Edu.WebApi.Controllers.Duty
Q_ReserveStatus
=
base
.
ParmJObj
.
GetStringValue
(
"Q_ReserveStatus"
),
VisitorName
=
base
.
ParmJObj
.
GetStringValue
(
"VisitorName"
),
Id
=
base
.
ParmJObj
.
GetInt
(
"Id"
),
IsQueryAll
=
base
.
ParmJObj
.
GetInt
(
"IsQueryAll"
)
};
if
(
query
.
IsQueryAll
!=
1
)
{
query
.
CreateBy
=
base
.
UserInfo
.
Id
;
}
var
list
=
visitorReserveModule
.
GetVisitorReservePageModule
(
pageModel
.
PageIndex
,
pageModel
.
PageSize
,
out
long
rowsCount
,
query
);
foreach
(
var
item
in
list
)
{
...
...
@@ -181,6 +186,7 @@ namespace Edu.WebApi.Controllers.Duty
if
(
item
.
CreateBy
>
0
)
{
item
.
CreateByName
=
UserReidsCache
.
GetUserLoginInfo
(
item
.
CreateBy
)?.
AccountName
??
""
;
}
}
pageModel
.
PageData
=
list
;
...
...
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