...
|
...
|
@@ -947,6 +947,14 @@ class ItemModel |
|
|
{
|
|
|
$description = array();
|
|
|
// 商品信息
|
|
|
if (isset($sizeInfo['productBo']['attribute']) && $sizeInfo['productBo']['attribute'] * 1 === 3) {
|
|
|
//虚拟商品
|
|
|
$description['basic'][] = array('key' =>'编号','value' => $sizeInfo['productDescBo']['erpProductId']);
|
|
|
$description['basic'][] = array('key' =>'日期','value' => $sizeInfo['productDescBo']['colorName'], 'dColor' => true);
|
|
|
$description['basic'][] = array('key' =>'属性','value' => '虚拟商品');
|
|
|
return $description;
|
|
|
}
|
|
|
|
|
|
if (isset($sizeInfo['productDescBo']['erpProductId'])) {
|
|
|
$sex = '通用';
|
|
|
switch ($sizeInfo['productDescBo']['gender']) {
|
...
|
...
|
@@ -1028,7 +1036,7 @@ class ItemModel |
|
|
'size' => array(),
|
|
|
);
|
|
|
//不是门票的要显示图片,虚拟商品
|
|
|
if ($baseInfo['attribute'] === 3) {
|
|
|
if ($baseInfo['attribute'] !== 3) {
|
|
|
$goodsGroup['src'] = Images::getImageUrl($value['colorImage'], 40, 40);
|
|
|
}
|
|
|
|
...
|
...
|
|