Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
FmTakeaway
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
shangshang.dai
FmTakeaway
Commits
ae0b84f0
Commit
ae0b84f0
authored
Sep 19, 2016
by
ss.dai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改送达时间由字符改为时间戳
parent
427a8e0d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
fmTakeaway/Control/flowControl.cpp
+1
-1
No files found.
fmTakeaway/Control/flowControl.cpp
View file @
ae0b84f0
...
...
@@ -263,7 +263,7 @@ bool FlowControl::_ConfirmOrder(const QString &orderId, const DeliverObject &del
QString
remark
(
orderObject
->
remark
),
deliveryTime
;
remark
=
remark
.
isEmpty
()
?
""
:
QString
(
"
\r\n
[备注: %1]"
).
arg
(
remark
);
deliveryTime
=
QString
(
"
\r\n
[期望送达时间: %1]"
).
arg
(
orderObject
->
delivery_time
);
deliveryTime
=
QString
(
"
\r\n
[期望送达时间: %1]"
).
arg
(
QDateTime
::
fromTime_t
(
orderObject
->
delivery_time
).
toString
(
"MM/dd hh:mm"
)
);
emit
showAlert
(
AlertForm
::
SUCCESS
,
QString
(
"接单成功!%1%2"
).
arg
(
remark
).
arg
(
deliveryTime
));
// 通知主界面移动订单
...
...
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