Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
Aidea
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sa_aidea
Aidea
Commits
7f3faa0d
Commit
7f3faa0d
authored
Nov 28, 2020
by
谢希宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Aidea product update by Strive Date 2020-11-28
parent
85ce450c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
101 additions
and
86 deletions
+101
-86
orderSendOut.html
...web/src/main/webapp/WEB-INF/views/order/orderSendOut.html
+3
-3
orderlistout.html
...web/src/main/webapp/WEB-INF/views/order/orderlistout.html
+92
-80
OrderMapper.xml
...module/src/main/java/com/cftech/order/dao/OrderMapper.xml
+5
-3
Order.java
...er-module/src/main/java/com/cftech/order/model/Order.java
+1
-0
No files found.
aidea-modules/order-module-web/src/main/webapp/WEB-INF/views/order/orderSendOut.html
View file @
7f3faa0d
...
@@ -58,12 +58,12 @@
...
@@ -58,12 +58,12 @@
<section
class=
"content-header"
>
<section
class=
"content-header"
>
<h1>
<h1>
需求清单管理
需求清单
出库
管理
<small>
需求清单管理
</small>
<small>
需求清单
出库
管理
</small>
</h1>
</h1>
<ol
class=
"breadcrumb"
>
<ol
class=
"breadcrumb"
>
<li><a
href=
"#"
><i
class=
"fa fa-dashboard"
></i>
首页
</a></li>
<li><a
href=
"#"
><i
class=
"fa fa-dashboard"
></i>
首页
</a></li>
<li><a
class=
"active"
>
需求清单管理
</a></li>
<li><a
class=
"active"
>
需求清单
出库
管理
</a></li>
</ol>
</ol>
</section>
</section>
...
...
aidea-modules/order-module-web/src/main/webapp/WEB-INF/views/order/orderlistout.html
View file @
7f3faa0d
This diff is collapsed.
Click to expand it.
aidea-modules/order-module/src/main/java/com/cftech/order/dao/OrderMapper.xml
View file @
7f3faa0d
...
@@ -81,6 +81,7 @@
...
@@ -81,6 +81,7 @@
<result
column=
"cancel_time"
property=
"cancelTime"
/>
<result
column=
"cancel_time"
property=
"cancelTime"
/>
<result
column=
"sendExpressDateStr"
property=
"sendExpressDateStr"
/>
<result
column=
"sendExpressDateStr"
property=
"sendExpressDateStr"
/>
<result
column=
"acceptExpressDateStr"
property=
"acceptExpressDateStr"
/>
<result
column=
"acceptExpressDateStr"
property=
"acceptExpressDateStr"
/>
<result
column=
"outTime"
property=
"outTime"
/>
<collection
property=
"list"
ofType=
"com.cftech.order.model.ProductVO"
>
<collection
property=
"list"
ofType=
"com.cftech.order.model.ProductVO"
>
<result
column=
"product_name"
property=
"productName"
/>
<result
column=
"product_name"
property=
"productName"
/>
</collection>
</collection>
...
@@ -326,14 +327,15 @@
...
@@ -326,14 +327,15 @@
cs.consult_id consultCode,
cs.consult_id consultCode,
CONVERT(AES_DECRYPT(f.nickname,'aideakey') USING UTF8) nickName,
CONVERT(AES_DECRYPT(f.nickname,'aideakey') USING UTF8) nickName,
o.address_id,
o.address_id,
order_time,
o
.o
rder_time,
cancel_time,
o.
cancel_time,
DATE_FORMAT(aw.send_express_date, '%Y-%m-%d %H:%i') sendExpressDateStr,
DATE_FORMAT(aw.send_express_date, '%Y-%m-%d %H:%i') sendExpressDateStr,
DATE_FORMAT(aw.accept_express_date, '%Y-%m-%d %H:%i') acceptExpressDateStr,
DATE_FORMAT(aw.accept_express_date, '%Y-%m-%d %H:%i') acceptExpressDateStr,
t.id as productId,
t.id as productId,
CONVERT ( AES_DECRYPT( m.`name`, 'aideakey' ) USING UTF8 ) memberName,
CONVERT ( AES_DECRYPT( m.`name`, 'aideakey' ) USING UTF8 ) memberName,
CONVERT ( AES_DECRYPT( m.phone, 'aideakey' ) USING UTF8 ) memberPhone,
CONVERT ( AES_DECRYPT( m.phone, 'aideakey' ) USING UTF8 ) memberPhone,
a.address
a.address,
DATE_FORMAT(aw.create_time, '%Y-%m-%d %H:%i') outTime
FROM t_order o
FROM t_order o
LEFT JOIN t_aidea_consult_sheet cs ON o.consult_id = cs.id
LEFT JOIN t_aidea_consult_sheet cs ON o.consult_id = cs.id
LEFT JOIN t_shipping_address s ON o.address_id = s.id
LEFT JOIN t_shipping_address s ON o.address_id = s.id
...
...
aidea-modules/order-module/src/main/java/com/cftech/order/model/Order.java
View file @
7f3faa0d
...
@@ -144,6 +144,7 @@ public class Order extends OrderDetail implements Serializable {
...
@@ -144,6 +144,7 @@ public class Order extends OrderDetail implements Serializable {
private
String
nickName
;
//患者昵称
private
String
nickName
;
//患者昵称
private
String
sendExpressDateStr
;
//发件时间
private
String
sendExpressDateStr
;
//发件时间
private
String
acceptExpressDateStr
;
//签收时间
private
String
acceptExpressDateStr
;
//签收时间
private
String
outTime
;
//出库时间
...
...
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