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
15ae01ea
authored
May 15, 2019
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整订单详情页
parent
50a372a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
resources/views/detail/content.blade.php
resources/views/detail/content.blade.php
View file @
15ae01ea
...
...
@@ -415,8 +415,12 @@
@endif
<th>
制造商
</th>
@if ($username != 'vpadmin@ichunt.com')
<!-- ERP或京东订单 -->
@if (in_array($order_info['order_type'], [2, 3]))
<th>
采购数量
</th>
<th>
采购单价
</th>
@elseif ($username != 'vpadmin@ichunt.com')
<th>
采购数量
</th>
<th>
采购单价
</th>
<th>
均摊后单价
</th>
...
...
@@ -454,7 +458,9 @@
<span
id=
"{{$v['rec_id']}}"
>
{{$v['goods_price_format']}}
</span>
</td>
@if ($username != 'vpadmin@ichunt.com')
@if (in_array($order_info['order_type'], [2, 3]))
<td>
{{ $currency . number_format($v['goods_price'] * $v['goods_number'], 4, '.', '') }}
</td>
@elseif ($username != 'vpadmin@ichunt.com')
<td>
{{$v['single_pre_price_format']}}
</td>
<td>
{{$v['single_pre_price_amount']}}
</td>
@else
...
...
@@ -568,8 +574,8 @@
<tr>
<td>
订单总额:
</td>
<td>
<span
style=
"color:red;font-size:20px"
>
{{$currency}}
<span
class=
"amount"
>
{{$order_info['order_amount']}}
</span>
<span
style=
"color:red;font-size:20px"
>
{{$currency}}
<span
class=
"amount"
>
{{$order_info['order_amount']}}
</span>
</span>
</td>
</tr>
...
...
@@ -581,6 +587,14 @@
<span
id=
"other_money"
>
{{$order_price_info['pay_preferential']}}
</span>
</td>
</tr>
<tr>
<td>
实际支付金额:
</td>
<td
class=
"edit-parent-td"
>
<span
style=
"color:red;font-size:20px"
>
{{$currency}}
<span
class=
"amount"
>
{{$order_info['order_amount'] + $order_price_info['pay_preferential']}}
</span>
</span>
</td>
</tr>
@endif
</table>
</div>
...
...
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