|
@@ -104,197 +104,4 @@ class Courier extends Controller
|
|
|
|
|
|
|
|
|
|
|
|
-//// /**
|
|
|
-//// * 导入表一数据
|
|
|
-//// * @auth true
|
|
|
-//// * @menu true
|
|
|
-//// * @throws \think\Exception
|
|
|
-//// * @throws \think\exception\PDOException
|
|
|
-//// */
|
|
|
-//// public function import_table1()
|
|
|
-//// {
|
|
|
-////// $query = "SHOW FULL COLUMNS FROM system_courier";
|
|
|
-////// $table = Db::query($query); //获取表所有字段
|
|
|
-////// $field = array_column($table,'Field'); //提取表字段,放到一维数组中
|
|
|
-////
|
|
|
-//// $username = $this->app->session->get('user')['username'];
|
|
|
-////
|
|
|
-//// $get = $this->request->get();
|
|
|
-//// $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
|
|
|
-//// $url = $get['url'];
|
|
|
-//// $ordfilename = $get['ordfilename'];
|
|
|
-//// if (getConfigValue('storage_type')=='oss'){
|
|
|
-//// $save_dir = "./upload/excle/"; // 服务资源目录
|
|
|
-//// $filename = date('Ymd').time().".xlsx"; // 自定义名称
|
|
|
-//// $res = getFile($url,$save_dir,$filename,1);
|
|
|
-//// $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
|
|
|
-//// }
|
|
|
-////
|
|
|
-//// try {
|
|
|
-//// $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
|
|
|
-//// $objExcel = $objReader->load($import_path);
|
|
|
-//// $list = $objExcel->getActiveSheet()->toArray();
|
|
|
-//// $array = array();
|
|
|
-////
|
|
|
-//// $dates = array_filter(array_unique(array_column($list,'0')));
|
|
|
-//// if (count($dates)>2){
|
|
|
-//// $this->error('表中存在多个日期,无法导入',[],3);
|
|
|
-//// }
|
|
|
-////
|
|
|
-//// $datee = date('Y-m-d',strtotime($dates[1]));
|
|
|
-//// $info = Db::name('system_values')->where('date',$datee)->count();
|
|
|
-//// if ($info){
|
|
|
-//// $this->error('表中日期数据已存在,无法导入',[],3);
|
|
|
-//// }
|
|
|
-////
|
|
|
-//// $import_log_id = Db::name('system_import_log')->insertGetId(
|
|
|
-//// [
|
|
|
-//// 'name'=>$ordfilename,
|
|
|
-//// 'url'=>$url,
|
|
|
-//// 'local_url'=>$import_path,
|
|
|
-//// 'import_name'=>$username
|
|
|
-//// ]
|
|
|
-//// );
|
|
|
-////
|
|
|
-//// foreach ($list as $k=>$v){
|
|
|
-//// if ($k==0){
|
|
|
-//// for ($i=9;$i<count($v);$i++){
|
|
|
-//// $name = mb_substr($v[$i],0,2,"utf-8"); //截取前两个汉字
|
|
|
-//// $array[$i] = $name;
|
|
|
-//// }
|
|
|
-//// }else{
|
|
|
-//// if (!$v[0]){
|
|
|
-//// continue;
|
|
|
-//// }
|
|
|
-//// $date = date('Y-m-d',strtotime($v[0]));
|
|
|
-//// $insert_array = array();
|
|
|
-//// $site_id = Db::name('system_site')->where('code',$v[6])->value('id');
|
|
|
-//// if (!$site_id){
|
|
|
-//// $site_id = Db::name('system_site')->insertGetId(
|
|
|
-//// [
|
|
|
-//// 'code'=>$v[6],
|
|
|
-//// 'name'=>$v[7]
|
|
|
-//// ]
|
|
|
-//// );
|
|
|
-//// }
|
|
|
-//// for ($i=8;$i<count($v);$i++){
|
|
|
-//// $a['site_id'] = $site_id;
|
|
|
-//// $a['date'] = $date;
|
|
|
-//// $a['import_log_id'] = $import_log_id;
|
|
|
-//// $a['name'] = $i==8 ? "总签收" : $array[$i];
|
|
|
-//// $a['value'] = $v[$i];
|
|
|
-//// array_push($insert_array,$a);
|
|
|
-//// }
|
|
|
-//// Db::name('system_values')->insertAll($insert_array);
|
|
|
-//// }
|
|
|
-//// }
|
|
|
-//// $this->success('成功');
|
|
|
-//// } catch (\think\exception\ValidateException $e) {
|
|
|
-//// $this->error($e->getMessage());
|
|
|
-//// }
|
|
|
-//// }
|
|
|
-////
|
|
|
-//// /**
|
|
|
-//// * 导入表二数据
|
|
|
-//// * @auth true
|
|
|
-//// * @menu true
|
|
|
-//// * @throws \think\Exception
|
|
|
-//// * @throws \think\exception\PDOException
|
|
|
-//// */
|
|
|
-//// public function import_table2()
|
|
|
-//// {
|
|
|
-////
|
|
|
-//// set_time_limit(0);
|
|
|
-//// $username = $this->app->session->get('user')['username'];
|
|
|
-////
|
|
|
-//// $get = $this->request->get();
|
|
|
-//// $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
|
|
|
-//// $url = $get['url'];
|
|
|
-//// $ordfilename = $get['ordfilename'];
|
|
|
-//// if (getConfigValue('storage_type')=='oss'){
|
|
|
-//// $save_dir = "./upload/excle/"; // 服务资源目录
|
|
|
-//// $filename = date('Ymd').time().".xlsx"; // 自定义名称
|
|
|
-//// $res = getFile($url,$save_dir,$filename,1);
|
|
|
-//// $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
|
|
|
-//// }
|
|
|
-//// try {
|
|
|
-//// $import_log_id = Db::name('system_import_log')->insertGetId(
|
|
|
-//// [
|
|
|
-//// 'name'=>$ordfilename,
|
|
|
-//// 'url'=>$url,
|
|
|
-//// 'local_url'=>$import_path,
|
|
|
-//// 'import_name'=>$username,
|
|
|
-//// 'type'=>2
|
|
|
-//// ]
|
|
|
-//// );
|
|
|
-//// sysqueue("上传".$ordfilename, ImportTable2Queue::URI, 0, ['import_log_id' => $import_log_id], 0);
|
|
|
-//// $this->success('创建上传任务任务成功,需要时间来完成。<br>请到 系统管理 > 任务管理 查看执行进度!');
|
|
|
-////
|
|
|
-//// $inputFileType = \PHPExcel_IOFactory::identify($import_path);
|
|
|
-//// $objReader = \PHPExcel_IOFactory::createReader($inputFileType);
|
|
|
-//// $worksheetNames = $objReader->listWorksheetNames($import_path);
|
|
|
-//// #只读取表格数据,忽略里面的各种格式,否则会内存耗尽
|
|
|
-//// $objReader->setReadDataOnly(TRUE);
|
|
|
-//// $objReader->setLoadSheetsOnly($worksheetNames[0]);#笔者此处加载第11个sheet
|
|
|
-//// $objPHPExcels = $objReader->load($import_path);
|
|
|
-//// $maxCol = $objPHPExcels->getSheet(0)->getHighestColumn();#总列数
|
|
|
-//// $maxRow = $objPHPExcels->getSheet(0)->getHighestRow();#总行数
|
|
|
-//// //$a = 'A';
|
|
|
-//// $insert_array = array();
|
|
|
-//// // $redis = new Redis();
|
|
|
-//// for ($i = 2; $i <= $maxRow; $i++) {
|
|
|
-//// $info = $objPHPExcels->getSheet(0)->rangeToArray('A' . $i . ':' . $maxCol . $i)[0];#读取一行
|
|
|
-//// $a['name'] = $info[1];
|
|
|
-//// $a['dm'] = $info[5];
|
|
|
-//// $a['gb_time'] = $info[17];
|
|
|
-//// $a['date'] = date('Y-m-d',strtotime($info[17]));
|
|
|
-////// $redis_info = json_encode($a,true);
|
|
|
-////// $redis->lPush('table2',$redis_info);
|
|
|
-//// Db::name('system_table2')->insert($a);
|
|
|
-//// }
|
|
|
-//// die;
|
|
|
-//// $result = Db::name('system_table2')->insertAll($insert_array);
|
|
|
-//// if ($result){
|
|
|
-//// $this->success('上传成功');
|
|
|
-//// }else{
|
|
|
-//// $this->error('上传失败',[],3);
|
|
|
-//// }
|
|
|
-//
|
|
|
-//
|
|
|
-//
|
|
|
-////
|
|
|
-//// $redis = new Redis();
|
|
|
-//// $cacheMethod = \PHPExcel_CachedObjectStorageFactory:: cache_to_discISAM;
|
|
|
-//// $cacheSettings = array( 'memoryCacheSize ' => '8MB');
|
|
|
-//// \PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings);
|
|
|
-//// $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
|
|
|
-//// $objExcel = $objReader->load($import_path);
|
|
|
-//// $sheet_count = $objExcel->getSheetCount();
|
|
|
-//// echo $sheet_count;die;
|
|
|
-//// $list = $objExcel->getActiveSheet()->toArray();
|
|
|
-//// $insert_array = array();
|
|
|
-//// foreach ($list as $k=>$v){
|
|
|
-//// if ($k>1){
|
|
|
-//// $a['name'] = $v[1];
|
|
|
-//// $a['dm'] = $v[5];
|
|
|
-//// $a['gb_time'] = $v[17];
|
|
|
-//// $a['date'] = date('Y-m-d',strtotime($v[17]));
|
|
|
-//// $info = json_encode($a,true);
|
|
|
-//// $redis->lPush('table2',$info);
|
|
|
-//// //array_push($insert_array,$a);
|
|
|
-//// }
|
|
|
-//// }
|
|
|
-//// die;
|
|
|
-////// $result = Db::name('system_table2')->insertAll($insert_array);
|
|
|
-////// if ($result){
|
|
|
-////// $this->success('上传成功');
|
|
|
-////// }else{
|
|
|
-////// $this->error('上传失败',[],3);
|
|
|
-////// }
|
|
|
-// } catch (\think\exception\ValidateException $e) {
|
|
|
-// $this->error($e->getMessage());
|
|
|
-// }
|
|
|
-// }
|
|
|
-
|
|
|
-
|
|
|
}
|