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
1d455689
Commit
1d455689
authored
Sep 16, 2023
by
sdif
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用户端代码提交
parent
b2acbc14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
pz-system/src/main/java/com/pz/system/service/impl/TotalOrderServiceImpl.java
+9
-5
No files found.
pz-system/src/main/java/com/pz/system/service/impl/TotalOrderServiceImpl.java
View file @
1d455689
...
...
@@ -195,6 +195,7 @@ public class TotalOrderServiceImpl implements ITotalOrderService {
totalOrderVo
.
setOverTime
(
dbwzOrder
.
getOverTime
());
totalOrderVo
.
setVoucher
(
dbwzOrder
.
getVoucher
());
totalOrderVo
.
setPzRemark
(
dbwzOrder
.
getRemark
());
totalOrderVo
.
setIndications
(
dbwzOrder
.
getIndications
());
}
else
if
(
totalOrderVo
.
getBusinessId
()
==
4
)
{
// 住院陪护
...
...
@@ -211,6 +212,8 @@ public class TotalOrderServiceImpl implements ITotalOrderService {
totalOrderVo
.
setOverTime
(
zyphOrder
.
getOverTime
());
totalOrderVo
.
setVoucher
(
zyphOrder
.
getVoucher
());
totalOrderVo
.
setPzRemark
(
zyphOrder
.
getRemark
());
}
else
if
(
totalOrderVo
.
getBusinessId
()
==
5
)
{
// 代办买药
DbmyOrder
dbmyOrder
=
dbmyOrderMapper
.
selectOne
(
new
LambdaQueryWrapper
<
DbmyOrder
>().
eq
(
DbmyOrder:
:
getOrderId
,
totalOrderVo
.
getId
()));
...
...
@@ -444,6 +447,7 @@ public class TotalOrderServiceImpl implements ITotalOrderService {
yypzOrder
.
setHid
(
bo
.
getHospitalId
());
yypzOrder
.
setDid
(
bo
.
getDepartmentId
());
yypzOrder
.
setVisitor
(
bo
.
getVisitorId
());
yypzOrder
.
setRemark
(
""
);
yypzOrderMapper
.
insert
(
yypzOrder
);
}
else
if
(
bo
.
getBusinessId
()
==
2
)
{
// 代办挂号
...
...
@@ -453,7 +457,7 @@ public class TotalOrderServiceImpl implements ITotalOrderService {
dbghOrder
.
setHid
(
bo
.
getHospitalId
());
dbghOrder
.
setDid
(
bo
.
getDepartmentId
());
dbghOrder
.
setVisitor
(
bo
.
getVisitorId
());
dbghOrder
.
setRemark
(
""
);
dbghOrderMapper
.
insert
(
dbghOrder
);
}
else
if
(
bo
.
getBusinessId
()
==
3
)
{
// 代办问诊
...
...
@@ -462,7 +466,7 @@ public class TotalOrderServiceImpl implements ITotalOrderService {
dbwzOrder
.
setDid
(
bo
.
getDepartmentId
());
dbwzOrder
.
setVisitor
(
bo
.
getVisitorId
());
dbwzOrderMapper
.
insert
(
dbwzOrder
);
dbwzOrder
.
setRemark
(
""
);
}
else
if
(
bo
.
getBusinessId
()
==
4
)
{
// 住院陪护
ZyphOrder
zyphOrder
=
BeanUtil
.
toBean
(
bo
,
ZyphOrder
.
class
);
...
...
@@ -470,19 +474,19 @@ public class TotalOrderServiceImpl implements ITotalOrderService {
zyphOrder
.
setHid
(
bo
.
getHospitalId
());
zyphOrder
.
setVisitor
(
bo
.
getVisitorId
());
zyphOrderMapper
.
insert
(
zyphOrder
);
zyphOrder
.
setRemark
(
""
);
}
else
if
(
bo
.
getBusinessId
()
==
5
)
{
// 代办买药
DbmyOrder
dbmyOrder
=
BeanUtil
.
toBean
(
bo
,
DbmyOrder
.
class
);
dbmyOrderMapper
.
insert
(
dbmyOrder
);
dbmyOrder
.
setRemark
(
""
);
}
else
if
(
bo
.
getBusinessId
()
==
6
)
{
// 诊前挂号
ZqghOrder
zqghOrder
=
BeanUtil
.
toBean
(
bo
,
ZqghOrder
.
class
);
zqghOrder
.
setHid
(
bo
.
getHospitalId
());
zqghOrder
.
setDid
(
bo
.
getDepartmentId
());
zqghOrder
.
setDoctorId
(
bo
.
getDoctorId
());
zqghOrder
.
setRemark
(
""
);
zqghOrderMapper
.
insert
(
zqghOrder
);
}
else
if
(
bo
.
getBusinessId
()
==
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