mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-04 13:00:05 +08:00
134 lines
4.5 KiB
PHP
134 lines
4.5 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Devil
|
||
// +----------------------------------------------------------------------
|
||
namespace app\api\controller;
|
||
|
||
use think\Db;
|
||
use app\service\ResourcesService;
|
||
use app\service\RegionService;
|
||
|
||
/**
|
||
* 开发测试
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 0.0.1
|
||
* @datetime 2016-12-01T21:51:08+0800
|
||
*/
|
||
class Devtest extends Common
|
||
{
|
||
/**
|
||
* 构造方法
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2018-11-30
|
||
* @desc description
|
||
*/
|
||
public function __construct()
|
||
{
|
||
parent::__construct();
|
||
}
|
||
|
||
/**
|
||
* 附件初始化 1.6升级运行
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 0.0.1
|
||
* @datetime 2017-02-22T16:50:32+0800
|
||
*/
|
||
public function Index()
|
||
{
|
||
if(input('pwd') != 'shopxo520')
|
||
{
|
||
die('非法访问');
|
||
}
|
||
|
||
$path_all = [
|
||
'video' => __MY_ROOT_PUBLIC__.'static/upload/video/',
|
||
'file' => __MY_ROOT_PUBLIC__.'static/upload/file/',
|
||
'image' => __MY_ROOT_PUBLIC__.'static/upload/images/',
|
||
];
|
||
foreach($path_all as $type=>$path)
|
||
{
|
||
$path = GetDocumentRoot() . (substr($path, 0, 1) == "/" ? "":"/") . $path;
|
||
$handle = opendir($path);
|
||
while(false !== ($file = readdir($handle)))
|
||
{
|
||
if($file != 'index.html' && $file != '.' && $file != '..' && substr($file, 0, 1) != '.')
|
||
{
|
||
$ret = ResourcesService::AttachmentDiskFilesToDb($file);
|
||
if(isset($ret['msg']))
|
||
{
|
||
echo $ret['msg'];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 订单地址拆分到新的表,1.7升级1.8升级运行
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2019-12-13
|
||
* @desc description
|
||
*/
|
||
public function OrderAddress()
|
||
{
|
||
if(input('pwd') != 'shopxo520')
|
||
{
|
||
die('非法访问');
|
||
}
|
||
|
||
// 状态
|
||
$success = 0;
|
||
$fail = 0;
|
||
|
||
// 获取数据
|
||
// 一次处理100条
|
||
$prefix = config('database.prefix');
|
||
$field = 'id, user_id, receive_address_id, receive_name, receive_tel, receive_province, receive_city, receive_county, receive_address';
|
||
$sql = 'SELECT '.$field.' FROM '.$prefix.'order WHERE `id` NOT IN (SELECT `order_id` FROM '.$prefix.'order_address) LIMIT 500';
|
||
$result = Db::query($sql);
|
||
if(!empty($result))
|
||
{
|
||
foreach($result as $v)
|
||
{
|
||
$province_name = RegionService::RegionName($v['receive_province']);
|
||
$city_name = RegionService::RegionName($v['receive_city']);
|
||
$county_name = RegionService::RegionName($v['receive_county']);
|
||
$data = [
|
||
'order_id' => $v['id'],
|
||
'user_id' => $v['user_id'],
|
||
'address_id' => $v['receive_address_id'],
|
||
'name' => $v['receive_name'],
|
||
'tel' => $v['receive_tel'],
|
||
'province' => $v['receive_province'],
|
||
'city' => $v['receive_city'],
|
||
'county' => $v['receive_county'],
|
||
'address' => $v['receive_address'],
|
||
'province_name' => empty($province_name) ? '' : $province_name,
|
||
'city_name' => empty($city_name) ? '' : $city_name,
|
||
'county_name' => empty($county_name) ? '' : $county_name,
|
||
'add_time' => time(),
|
||
];
|
||
if(Db::name('OrderAddress')->insert($data))
|
||
{
|
||
$success++;
|
||
} else {
|
||
$fail++;
|
||
}
|
||
}
|
||
}
|
||
echo 'count:'.count($result).', success:'.$success.', fail:'.$fail;
|
||
}
|
||
}
|
||
?>
|