Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
9 years ago
Commit
1c71d66d91dde477e0711db05620c3b88eec24d2
1 parent
2f56279f
修复购物车中VIP价格缺少的bug
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
template/m.yohobuy.com/partials/cart/cart-content.phtml
yohobuy/m.yohobuy.com/application/models/Index/Cart.php
template/m.yohobuy.com/partials/cart/cart-content.phtml
View file @
1c71d66
...
...
@@ -58,13 +58,7 @@
{
{/if
}
}
<div
class=
"price-compute"
>
<p>
<span>总价(¥
{
{price
}
})<i>-</i></span>
<span>活动价(¥
{
{activityPrice
}
})</span>
</p>
<p>
<span><i>=</i>商品总计金额
(¥
{
{sumPrice
}
})</span>
</p>
<p>
{
{formulaPrice
}
}</p>
</div>
<div
class=
"balance"
>
...
...
yohobuy/m.yohobuy.com/application/models/Index/Cart.php
View file @
1c71d66
...
...
@@ -788,8 +788,9 @@ class CartModel
}
// 结算数据
$result
[
'price'
]
=
Helpers
::
transPrice
(
$data
[
'shopping_cart_data'
][
'order_amount'
]);
$result
[
'activityPrice'
]
=
Helpers
::
transPrice
(
$data
[
'shopping_cart_data'
][
'discount_amount'
]);
$result
[
'formulaPrice'
]
=
$data
[
'shopping_cart_data'
][
'promotion_formula'
];
/*$result['price'] = Helpers::transPrice($data['shopping_cart_data']['order_amount']);
$result['activityPrice'] = Helpers::transPrice($data['shopping_cart_data']['discount_amount']);*/
$result
[
'count'
]
=
$data
[
'shopping_cart_data'
][
'selected_goods_count'
];
$result
[
'isAllSelected'
]
=
(
$data
[
'shopping_cart_data'
][
'goods_count'
]
===
$data
[
'shopping_cart_data'
][
'selected_goods_count'
])
&&
(
$data
[
'shopping_cart_data'
][
'selected_goods_count'
]
>
0
);
$result
[
'sumPrice'
]
=
Helpers
::
transPrice
(
$data
[
'shopping_cart_data'
][
'last_order_amount'
]);
...
...
Please
register
or
login
to post a comment