Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
peizhen-java
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PeiZhen-Java
peizhen-java
Commits
4a964f22
Commit
4a964f22
authored
Sep 16, 2023
by
Wangmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
返回排序
parent
a2e99d76
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
pz-system/src/main/java/com/pz/merchant/service/impl/EmployeesServiceImpl.java
+2
-1
No files found.
pz-system/src/main/java/com/pz/merchant/service/impl/EmployeesServiceImpl.java
View file @
4a964f22
...
...
@@ -393,7 +393,8 @@ public class EmployeesServiceImpl implements IEmployeesService {
QueryWrapper
<
Employees
>
query
=
Wrappers
.
query
();
query
.
eq
(
bo
.
getEmId
()
!=
null
,
"total_order.em_id"
,
bo
.
getEmId
())
.
eq
(
bo
.
getServiceStatus
()
!=
null
,
"total_order.suborder_status"
,
bo
.
getServiceStatus
())
.
between
(
"total_order.business_id"
,
1
,
5
);
// 陪诊员只能查询1-5的订单
.
between
(
"total_order.business_id"
,
1
,
5
)
// 陪诊员只能查询1-5的订单
.
orderByDesc
(
"total_order.id"
);
IPage
<
OrderInfoVO
>
page
=
baseMapper
.
selectOrder
(
pageQuery
.
build
(),
query
);
// 根据不同子订单装载就诊人员信息和子订单状态
page
.
getRecords
().
forEach
(
suborder
->
{
...
...
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