|
|
@ -2,6 +2,8 @@ |
|
|
|
|
|
|
|
namespace antgoods\goods\controllers; |
|
|
|
|
|
|
|
use antgoods\goods\logic\goods\GoodsManager; |
|
|
|
use common\models\ars\File; |
|
|
|
use Yii; |
|
|
|
use antgoods\goods\models\ars\ShopCategory; |
|
|
|
use antgoods\goods\models\searchs\ShopCategorySearch; |
|
|
@ -29,6 +31,17 @@ class ShopcategoryController extends Controller |
|
|
|
]; |
|
|
|
} |
|
|
|
|
|
|
|
public function actions() |
|
|
|
{ |
|
|
|
return [ |
|
|
|
'upload' => [ |
|
|
|
'class' => 'iron\actions\UploadAction', |
|
|
|
'path' => 'xls/', |
|
|
|
'maxSize' => 20480, |
|
|
|
] |
|
|
|
]; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* Lists all ShopCategory models. |
|
|
|
* @return mixed |
|
|
@ -67,7 +80,18 @@ class ShopcategoryController extends Controller |
|
|
|
{ |
|
|
|
$model = new ShopCategory(); |
|
|
|
|
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->save()) { |
|
|
|
if ($model->load(Yii::$app->request->post())) { |
|
|
|
|
|
|
|
//类目图片上传保存处理
|
|
|
|
$icon_image_id_str = $model->iconImageId; |
|
|
|
$model->save(); |
|
|
|
$goods_manager = new GoodsManager(); |
|
|
|
$save_icon_image_res = $goods_manager->saveFile(explode(',', $icon_image_id_str), $model, [], File::OWN_TYPE_CATEGORY_ICON); |
|
|
|
if($save_icon_image_res['status']){ |
|
|
|
$model->icon = $save_icon_image_res['first_file_id']; |
|
|
|
$model->save(); |
|
|
|
} |
|
|
|
|
|
|
|
return $this->redirect('index'); |
|
|
|
} |
|
|
|
|
|
|
@ -86,8 +110,22 @@ class ShopcategoryController extends Controller |
|
|
|
public function actionUpdate($id) |
|
|
|
{ |
|
|
|
$model = $this->findModel($id); |
|
|
|
$model->iconImageId = $model->icon; |
|
|
|
//记录已保存的类目图片id,用于修改
|
|
|
|
$icon_image_old_id_arr = $model->icon; |
|
|
|
|
|
|
|
if ($model->load(Yii::$app->request->post())) { |
|
|
|
|
|
|
|
//类目图片上传保存处理
|
|
|
|
$icon_image_id_str = $model->iconImageId; |
|
|
|
$model->save(); |
|
|
|
$goods_manager = new GoodsManager(); |
|
|
|
$save_icon_image_res = $goods_manager->saveFile(explode(',', $icon_image_id_str), $model, explode(',', $icon_image_old_id_arr), File::OWN_TYPE_CATEGORY_ICON); |
|
|
|
if($save_icon_image_res['status'] && $save_icon_image_res['first_file_id'] !== 0){ |
|
|
|
$model->icon = $save_icon_image_res['first_file_id']; |
|
|
|
$model->save(); |
|
|
|
} |
|
|
|
|
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->save()) { |
|
|
|
return $this->redirect('index'); |
|
|
|
} |
|
|
|
|
|
|
@ -146,4 +184,90 @@ class ShopcategoryController extends Controller |
|
|
|
'columns' => $searchModel->columns() |
|
|
|
]); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 处理文件上传成功后回调保存到临时文件表中,并返回临时文件id |
|
|
|
*/ |
|
|
|
public function actionSaveFile() |
|
|
|
{ |
|
|
|
if(!class_exists('\common\models\ars\TemFile') || !class_exists('\backend\logic\file\FileManager')){ |
|
|
|
return ''; |
|
|
|
} |
|
|
|
|
|
|
|
$data = Yii::$app->request->get('data'); |
|
|
|
$file_name = Yii::$app->request->get('fileName')[0]; |
|
|
|
|
|
|
|
if ($data['status'] == true) { |
|
|
|
$model = new \common\models\ars\TemFile(); |
|
|
|
$model->user_id = Yii::$app->user->identity->id; |
|
|
|
$model->name = $file_name; |
|
|
|
$file_manager = new \backend\logic\file\FileManager(); |
|
|
|
$type_res = $file_manager->searchType(\backend\logic\file\FileManager::$extension, pathinfo($data['path'])['extension']); |
|
|
|
if ($type_res['status']) { |
|
|
|
$model->type = $type_res['type']; |
|
|
|
} |
|
|
|
$model->alias = $data['alias']; |
|
|
|
$model->path = $data['path']; |
|
|
|
$model->save(); |
|
|
|
return $model->id; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return string |
|
|
|
* 点击删除按钮时同时删除字符串中的id |
|
|
|
*/ |
|
|
|
public function actionImgIdDel() |
|
|
|
{ |
|
|
|
//判断该类是否存在
|
|
|
|
if(!class_exists('\common\models\ars\TemFile') || !class_exists('\common\models\ars\File')){ |
|
|
|
return ''; |
|
|
|
} |
|
|
|
|
|
|
|
$img_id = Yii::$app->request->get('imgid'); |
|
|
|
$img_id_arr = explode(',', $img_id); |
|
|
|
if(isset(Yii::$app->request->get('data')['alias'])) { |
|
|
|
$alias = Yii::$app->request->get('data')['alias']; |
|
|
|
$tem_file = \common\models\ars\TemFile::findOne(['alias' => $alias]); |
|
|
|
if ($tem_file) { |
|
|
|
$img_id_arr = array_diff($img_id_arr, [$tem_file->id]); |
|
|
|
} |
|
|
|
}else{ |
|
|
|
foreach (Yii::$app->request->get() as $key => $value) { |
|
|
|
$tem_file = \common\models\ars\File::findOne(['alias' => $value]); |
|
|
|
if ($tem_file) { |
|
|
|
$img_id_arr = array_diff($img_id_arr, [$tem_file->id]); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
$img_id_str = implode(',', $img_id_arr); |
|
|
|
return $img_id_str; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return bool|false|string |
|
|
|
* 加载已有的文件 |
|
|
|
*/ |
|
|
|
public function actionImageFile() |
|
|
|
{ |
|
|
|
//判断该类是否存在
|
|
|
|
if(!class_exists('\common\models\ars\File')){ |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
$file_id_str = Yii::$app->request->get('fileidstr'); |
|
|
|
$file_id_arr = explode(',', $file_id_str); |
|
|
|
$data = \common\models\ars\File::find()->where(['id' => $file_id_arr])->all(); |
|
|
|
$res = array(); |
|
|
|
if($data) { |
|
|
|
$i = 0; |
|
|
|
foreach ($data as $key => $value) { |
|
|
|
$res[$i]['name'] = $value->alias; |
|
|
|
$res[$i]['path'] = Yii::$app->request->hostInfo . '/' . $value->path; |
|
|
|
$res[$i]['size'] = filesize($value->path); |
|
|
|
$i++; |
|
|
|
} |
|
|
|
} |
|
|
|
return json_encode($res); |
|
|
|
} |
|
|
|
} |