mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-22 02:58:10 +00:00
56 lines
2.0 KiB
PHP
56 lines
2.0 KiB
PHP
<?php
|
||
|
||
namespace addon\shop\app\upgrade\v647;
|
||
|
||
use addon\shop\app\model\goods\Goods;
|
||
use think\facade\Log;
|
||
|
||
class Upgrade
|
||
{
|
||
|
||
public function handle()
|
||
{
|
||
$this->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());
|
||
}
|
||
}
|
||
|
||
}
|