handleGoodsData(); } /** * 处理商品数据,参数模板结构调整 */ private function handleGoodsData() { try { $delete_list = ( new Goods() )->onlyTrashed()->where([ [ 'attr_ids', '<>', '' ] ])->field('goods_id,attr_ids')->select()->toArray(); if (!empty($delete_list)) { foreach ($delete_list as $k => $v) { if (gettype($v[ 'attr_ids' ]) != 'array') { if (!empty($v[ 'attr_ids' ])) { $delete_list[ $k ][ 'attr_ids' ] = [ $v[ 'attr_ids' ] ]; } else { $delete_list[ $k ][ 'attr_ids' ] = []; } ( new Goods() )->onlyTrashed()->where([ [ 'goods_id', '=', $v[ 'goods_id' ] ] ])->update([ 'attr_ids' => $delete_list[ $k ][ 'attr_ids' ] ]); } } } $list = ( new Goods() )->where([ [ 'attr_ids', '<>', '' ] ])->field('goods_id,attr_ids')->select()->toArray(); if (!empty($list)) { foreach ($list as $k => $v) { if (gettype($v[ 'attr_ids' ]) != 'array') { if (!empty($v[ 'attr_ids' ])) { $list[ $k ][ 'attr_ids' ] = [ $v[ 'attr_ids' ] ]; } else { $list[ $k ][ 'attr_ids' ] = []; } ( new Goods() )->where([ [ 'goods_id', '=', $v[ 'goods_id' ] ] ])->update([ 'attr_ids' => $list[ $k ][ 'attr_ids' ] ]); } } } } catch (\Exception $e) { Log::write('商城插件升级v6.4.7版本,发生错误,Line:' . $e->getLine() . ',Message:' . $e->getMessage() . ',File:' . $e->getFile()); } } }