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
84b5420f
authored
May 11, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整再次调价,添加优惠金额展示,优化审核
parent
c9ee2511
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
17 deletions
app/Http/Controllers/OrderController.php
public/js/order.js
resources/views/detail/changeOrder.blade.php
app/Http/Controllers/OrderController.php
View file @
84b5420f
...
...
@@ -863,8 +863,9 @@ Class OrderController extends Controller
}
$data
[
'confirm_time'
]
=
0
;
$data
[
'pay_time'
]
=
0
;
$data
[
'status'
]
=
1
;
$data
[
'sale_id'
]
=
0
;
// 再次调价调整sale_id
//
$data['sale_id'] = 0; // 再次调价调整sale_id
$update
=
DB
::
connection
(
'order'
)
->
table
(
'lie_order'
)
...
...
public/js/order.js
View file @
84b5420f
...
...
@@ -1288,21 +1288,23 @@
var
order_amount
=
currencySign
+
$
(
'input[name=order_amount]'
).
val
();
var
extra_fee
=
$
(
'input[name=extra_fee]'
).
val
()
==
''
?
''
:
currencySign
+
$
(
'input[name=extra_fee]'
).
val
();
// 设置默认值false
$
(
'input[name=check_failed]'
).
val
(
0
);
// 检查商品单价
$
(
'.order-change-table'
).
find
(
'tbody tr'
).
each
(
function
(){
var
origin_price
=
parseFloat
(
$
(
this
).
find
(
'.price'
).
data
(
'origin'
));
var
price
=
parseFloat
(
$
(
this
).
find
(
'.price'
).
val
())
||
0
;
origin_price
=
(
origin_price
*
0.8
).
toFixed
(
4
);
// 若商品单价降价幅度小于或等于20%则赋值
if
(
price
<=
origin_price
)
{
$
(
'input[name=check_failed]'
).
val
(
1
);
}
});
if
(
!
is_manager
)
{
// 设置默认值false
$
(
'input[name=check_failed]'
).
val
(
0
);
// 检查商品单价
$
(
'.order-change-table'
).
find
(
'tbody tr'
).
each
(
function
(){
var
origin_price
=
parseFloat
(
$
(
this
).
find
(
'.price'
).
data
(
'origin'
));
var
price
=
parseFloat
(
$
(
this
).
find
(
'.price'
).
val
())
||
0
;
origin_price
=
(
origin_price
*
0.8
).
toFixed
(
4
);
// 若商品单价降价幅度小于或等于20%则赋值
if
(
price
<=
origin_price
)
{
$
(
'input[name=check_failed]'
).
val
(
1
);
}
});
}
// 弹出提示
layer
.
open
({
...
...
resources/views/detail/changeOrder.blade.php
View file @
84b5420f
...
...
@@ -266,8 +266,13 @@
</tr>
<tr>
<th>
优惠金额:
</th>
<td>
{{$order_price_info['discount_amount']}}
</td>
</tr>
<tr>
<th>
订单总额:
</th>
<td>
{{$order_info['order_temp_info']['goods_amount'] + $order_info['order_temp_info']['extra_fee']}}
</td>
<td>
{{$order_info['order_temp_info']['goods_amount'] + $order_info['order_temp_info']['extra_fee']
+ $order_price_info['discount_amount']
}}
</td>
</tr>
<tr>
...
...
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