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
Plain Diff
Browse Files
Authored by
黄涛
8 years ago
Commit
47f2540bdb494d6b9277048c5c22be5e3136f7f5
2 parents
10e0656a
be2b7137
Merge branch 'hotfix/addressId' into 'master'
地址ID重复加密问题修复 See merge request
!10
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
yohobuy/m.yohobuy.com/application/models/Index/Cart.php
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
yohobuy/m.yohobuy.com/application/models/Index/Cart.php
View file @
47f2540
...
...
@@ -446,8 +446,8 @@ class CartModel
// 收货人有关信息
$isSunfengSupport
=
false
;
// 是否支持顺丰快递
if
(
isset
(
$payReturn
[
'delivery_address'
])
&&
!
empty
(
$payReturn
[
'delivery_address'
]))
{
$result
[
'addressId'
]
=
isset
(
$address
[
'address_id'
])
?
$address
[
'address_id'
]
:
$payReturn
[
'delivery_address'
][
'address_id'
];
$result
[
'addressId'
]
=
Encryption
::
encrypt
(
$result
[
'addressId'
]);
// $address 是浏览器端传来的,已经加密, $payReturn 是后端接口的,未加密
$result
[
'addressId'
]
=
isset
(
$address
[
'address_id'
])
?
$address
[
'address_id'
]
:
Encryption
::
encrypt
(
$payReturn
[
'delivery_address'
][
'address_id'
]);
$result
[
'name'
]
=
isset
(
$address
[
'consignee'
])
?
$address
[
'consignee'
]
:
$payReturn
[
'delivery_address'
][
'consignee'
];
$result
[
'phoneNum'
]
=
isset
(
$address
[
'mobile'
])
?
$address
[
'mobile'
]
:
$payReturn
[
'delivery_address'
][
'mobile'
];
// $result['area'] = isset($address['area']) ? $address['area'] : $payReturn['delivery_address']['area'];
...
...
@@ -539,7 +539,7 @@ class CartModel
}
$oneGoods
[
'yohoCoinNum'
]
=
$single
[
'yoho_coin_num'
];
//gift=>是否赠品,advanceBuy=>是否加价购;
if
(
$single
[
'goods_type'
]
==
'gift'
&&
!
isset
(
$single
[
'isAdvanceBuy'
]))
{
$oneGoods
[
'gift'
]
=
true
;
...
...
@@ -558,7 +558,7 @@ class CartModel
// 商品金额
$result
[
'goodsPrice'
]
=
Helpers
::
transPrice
(
$goodsPrice
);
}
// 支付方式
...
...
@@ -613,7 +613,7 @@ class CartModel
//有货币
if
((
int
)
$payReturn
[
'shopping_cart_data'
][
'gain_yoho_coin'
]
>
0
)
{
$result
[
'yohoCoinNum'
]
=
$payReturn
[
'shopping_cart_data'
][
'gain_yoho_coin'
];
$result
[
'returnYohoCoin'
]
=
true
;
}
...
...
@@ -655,7 +655,7 @@ class CartModel
$result
[
'coupon'
]
=
$coupons
;
}
while
(
false
);
return
$result
;
}
...
...
@@ -1116,7 +1116,7 @@ class CartModel
$result['sumPrice']
= Helpers::transPrice(
$data['shopping_cart_data']['last_order_amount']
);
}
while (0);
return
$result
;
}
...
...
@@ -1150,8 +1150,8 @@ class CartModel
* @param type
$deliveryId
配送方式,1表示普通快递,2表示顺丰速运
* @param type
$paymentType
支付方式,1表示在线支付,2表示货到付款
* @param type
$couponCode
优惠券码
* @param type
$yohoCoin
使用的有货币数量
* @return type
* @param type
$yohoCoin
使用的有货币数量
* @return type
*/
public static function getPackageInfo(
$uid
,
$cartType
,
$skuList
,
$orderCode
,
$sessionKey
,
$deliveryId
,
$paymentType
,
$couponCode
,
$yohoCoin
)
{
...
...
@@ -1264,7 +1264,7 @@ class CartModel
return
$result
;
}
public static function ticketsOrderCompute(
$uid
,
$productSku
,
$buyNumber
,
$yohoCoin
)
public static function ticketsOrderCompute(
$uid
,
$productSku
,
$buyNumber
,
$yohoCoin
)
{
$result
= array();
...
...
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
View file @
47f2540
...
...
@@ -612,6 +612,7 @@ class IndexController extends AbstractAction
}
$moreUrl
=
$this
->
getSession
(
'addressMore'
);
$moreUrl
=
!
empty
(
$moreUrl
)
?
$moreUrl
:
'/cart/index/orderEnsure'
;
$this
->
setNavHeader
(
'选择地址'
,
$moreUrl
,
false
);
$this
->
_view
->
display
(
'select-address'
,
array
(
...
...
Please
register
or
login
to post a comment