修复规格

This commit is contained in:
mkm 2023-11-30 15:06:47 +08:00
parent 6a5acd0287
commit 46c51afb2a
2 changed files with 1 additions and 1 deletions

View File

@ -2559,7 +2559,6 @@ class StoreOrderRepository extends BaseRepository
$attr_values = implode('-!-', $attr_values);
//更新规格属性
Db::name('store_product_attr')->where('product_id', $find['product_id'])->where('attr_name', $kk)->update(['attr_values' => $attr_values]);
$is_update = true;
}
} else {
$datas = [

View File

@ -79,6 +79,7 @@ class ImportPicJob implements JobInterface
/**更新商品图片 */
$image = $upload->to($dir)->stream(file_get_contents($image));
$update['image'] = $image->filePath;
Db::name('store_spu')->where('product_id', $find['product_id'])->update($update);
foreach ($slider_image as $k => $v) {
$oss = $upload->to($dir)->stream(file_get_contents($v));
$update['slider_image'][] = $oss->filePath;