Merge pull request 'dev' (#135) from dev into master

Reviewed-on: #135
This commit is contained in:
mkm 2024-01-26 11:40:51 +08:00
commit ecdee7b4d6
3 changed files with 4 additions and 3 deletions

View File

@ -95,7 +95,9 @@ class StoreActivityDao extends BaseDao
if (isset($oldProductList[$v['product']['old_product_id']])) {
$list[$k]['product']['stock'] = $oldProductList[$v['product']['old_product_id']]['stock'];
$list[$k]['stock'] = $oldProductList[$v['product']['old_product_id']]['stock'];
$list[$k]['product']['image'] = $list[$k]['product']->sellOutImage;
if ($list[$k]['stock'] < 1) {
$list[$k]['product']['image'] = $list[$k]['product']->sellOutImage;
}
}
}
if ($value['product_id'] == $v['product_id']) {

View File

@ -67,7 +67,7 @@ class StoreGroupOrderRepository extends BaseRepository
$query = StoreGroupOrder::getDB()->alias('StoreGroupOrder');
if(isset($where['source']) && $where['source'] == 103){
$wheres['activity_type']=[0,98];
$wheres['source']=[0,2,103];
$wheres['source']=[0,2,103,105];
}else{
$wheres['activity_type']=0;
}

View File

@ -1290,7 +1290,6 @@ class ProductRepository extends BaseRepository
$sku = $this->detailAttrValue($attrValue, $userInfo, $productType, $activityId);
if ($activityId == 2 && isset($oldProduct['stock'])) {
$res['stock'] = $oldProduct['stock'];
$res['slider_image'] = $res->sellOutImage;
foreach ($sku as &$skuItem) {
$skuItem['stock'] = $oldProduct['stock'];
}