Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
28f1c732
authored
Mar 13, 2020
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
新客价订单改单删除优惠提示
parent
369b402e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
public/js/order.js
public/js/order.js
View file @
28f1c732
...
...
@@ -2073,9 +2073,15 @@
var
freight_fee
=
$
(
'input[name=freight_fee]'
).
val
()
?
$
(
'input[name=freight_fee]'
).
val
()
:
0
;
var
last_paid
=
parseFloat
(
order_amount
+
parseFloat
(
pay_preferential
)).
toFixed
(
2
);
// 实际支付金额
var
content
=
'<div class="submit-check">'
+
'<p class="error">请核对订单金额,谨慎操作!</p>'
+
'<p><label>商品总金额:</label>'
+
currencySign
+
goods_amount
+
'</p>'
;
var
content
=
'<div class="submit-check">'
;
if
(
new_client_price
)
{
content
+=
'<p class="error">该单为新客价订单,如改单将删除整单优惠,请核对订单金额,谨慎操作!</p>'
;
}
else
{
content
+=
'<p class="error">请核对订单金额,谨慎操作!</p>'
;
}
content
+=
'<p><label>商品总金额:</label>'
+
currencySign
+
goods_amount
+
'</p>'
;
if
(
new_client_price
)
{
content
+=
'<p><label>新客价金额:</label>'
+
new_client_price
+
'</p>'
;
...
...
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