Authored by hf

fixes bug to product detail page to remove check is down status

@@ -310,7 +310,7 @@ class DetailModel @@ -310,7 +310,7 @@ class DetailModel
310 310
311 $referenceList = array(); 311 $referenceList = array();
312 // 判断是否显示参考尺码 312 // 判断是否显示参考尺码
313 - $showReference = $boyReference || $girlReference; 313 + $showReference = ($boyReference && !empty($sizeInfo['sizeInfoBo']['sizeBoList'][0]['boyReferSize'])) || ($girlReference && !empty($sizeInfo['sizeInfoBo']['sizeBoList'][0]['girlReferSize']));
314 if ($showReference) { 314 if ($showReference) {
315 $referenceList[0] = array('param' => $referenceName); 315 $referenceList[0] = array('param' => $referenceName);
316 } 316 }