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
biao
9 years ago
Commit
655112d367f82cbd69c07676db2ae91140bac877
2 parents
48fe6454
b217c769
Merge branch 'develop/wap' of
http://git.dev.yoho.cn/web/yohobuy
into develop/wap
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
14 deletions
yohobuy/m.yohobuy.com/application/models/Product/Detail.php
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Detail.php
yohobuy/m.yohobuy.com/application/models/Product/Detail.php
View file @
655112d
...
...
@@ -45,14 +45,6 @@ class DetailModel
return
$result
;
}
// 是否为限购商品
$isLimited
=
(
$baseInfo
[
'isLimitBuy'
]
===
'Y'
);
// 如果未登录并且为限购商品,就跳转到登录页
if
(
empty
(
$uid
)
&&
$isLimited
)
{
$result
[
'needLogin'
]
=
true
;
return
$result
;
}
$result
[
'goodsName'
]
=
$baseInfo
[
'productName'
];
// 商品促销短语
...
...
@@ -313,7 +305,7 @@ class DetailModel
$result
[
'cartInfo'
][
'sizes'
]
=
$sizeGroup
;
// 限购商品
if
(
$
isLimited
)
{
if
(
$
baseInfo
[
'isLimitBuy'
]
===
'Y'
)
{
// 是否开售
$isBeginSale
=
(
isset
(
$baseInfo
[
'saleStatus'
])
&&
$baseInfo
[
'saleStatus'
]
==
1
);
// 限购商品有关的展示状态
...
...
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Detail.php
View file @
655112d
...
...
@@ -39,11 +39,6 @@ class DetailController extends AbstractAction
$this
->
error
();
}
// 如果为限购商品且没有登录就跳转到登陆页
if
(
isset
(
$data
[
'needLogin'
]))
{
$this
->
go
(
Helpers
::
url
(
'/signin.html'
,
array
(
'refer'
=>
Helpers
::
url
(
$this
->
server
(
'REQUEST_URI'
)))));
}
$data
[
'goodsDetailPage'
]
=
true
;
$data
[
'pageFooter'
]
=
true
;
...
...
Please
register
or
login
to post a comment