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
33410773
Commit
33410773
authored
Sep 29, 2016
by
ss.dai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复送达时间显示问题,更改外卖icon
parent
88cf4e7b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
fmTakeaway/Control/flowControl.cpp
+1
-1
fmTakeaway/fm.ico
+0
-0
fmTakeaway/fmTakeaway.rc
+2
-2
fmTakeaway/takeaway.ico
+0
-0
No files found.
fmTakeaway/Control/flowControl.cpp
View file @
33410773
...
...
@@ -267,7 +267,7 @@ bool FlowControl::_ConfirmOrder(const QString &orderId, const DeliverObject &del
QString
remark
(
orderObject
->
remark
),
deliveryTime
;
remark
=
remark
.
isEmpty
()
?
""
:
QString
(
"[备注: %1]"
).
arg
(
remark
);
deliveryTime
=
QString
(
"[期望送达时间: %1]"
).
arg
(
QDateTime
::
fromTime_t
(
orderObject
->
delivery_time
).
toString
(
"yyyy-MM-dd hh:mm:ss"
));
deliveryTime
=
QString
(
"[期望送达时间: %1]"
).
arg
(
orderObject
->
delivery_time
==
0
?
"立即送出"
:
QDateTime
::
fromTime_t
(
orderObject
->
delivery_time
).
toString
(
"yyyy-MM-dd hh:mm:ss"
));
emit
showAlert
(
AlertForm
::
SUCCESS
,
QString
(
"接单成功!%1<br/>%2<br/>%3"
).
arg
(
remark
).
arg
(
deliveryTime
).
arg
(
orderEntryError
));
// 通知主界面移动订单
...
...
fmTakeaway/fm.ico
0 → 100644
View file @
33410773
File added
fmTakeaway/fmTakeaway.rc
View file @
33410773
IDI_ICON1 ICON DISCARDABLE"takeaway.ico"
\ No newline at end of file
IDI_ICON1 ICON DISCARDABLE"fm.ico"
\ No newline at end of file
fmTakeaway/takeaway.ico
deleted
100644 → 0
View file @
88cf4e7b
File deleted
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