239 lines
7.5 KiB
PHP
Executable File
239 lines
7.5 KiB
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( https://opensource.org/licenses/mit-license.php )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Devil
|
|
// +----------------------------------------------------------------------
|
|
namespace app\admin\controller;
|
|
|
|
use app\admin\controller\Base;
|
|
use app\service\ApiService;
|
|
use app\service\SystemBaseService;
|
|
use app\service\ResourcesService;
|
|
use app\service\GoodsService;
|
|
use app\service\GoodsCategoryService;
|
|
use app\service\RegionService;
|
|
use app\service\BrandService;
|
|
|
|
/**
|
|
* 商品管理
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2021-03-31
|
|
* @desc description
|
|
*/
|
|
class Goods extends Base
|
|
{
|
|
/**
|
|
* 列表
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2021-03-31
|
|
* @desc description
|
|
*/
|
|
public function Index()
|
|
{
|
|
return MyView();
|
|
}
|
|
|
|
/**
|
|
* 详情
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2021-03-31
|
|
* @desc description
|
|
*/
|
|
public function Detail()
|
|
{
|
|
// 模板数据
|
|
$assign = [
|
|
// 商品参数展示范围
|
|
'common_goods_parameters_scope_list' => MyConst('common_goods_parameters_scope_list'),
|
|
// 商品导航
|
|
'goods_admin_nav_list' => ResourcesService::GoodsAdminNavList(),
|
|
];
|
|
if(!empty($this->data_detail) && !empty($this->data_detail['id']))
|
|
{
|
|
// 获取商品编辑规格
|
|
$assign['specifications'] = GoodsService::GoodsEditSpecifications($this->data_detail['id']);
|
|
|
|
// 获取商品编辑参数
|
|
$assign['parameters'] = GoodsService::GoodsEditParameters($this->data_detail['id']);
|
|
}
|
|
MyViewAssign($assign);
|
|
return MyView();
|
|
}
|
|
|
|
/**
|
|
* 添加/编辑页面
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2021-03-31
|
|
* @desc description
|
|
*/
|
|
public function SaveInfo()
|
|
{
|
|
// 参数
|
|
$params = $this->data_request;
|
|
|
|
// 是否存在数据
|
|
$data = $this->data_detail;
|
|
if(!empty($params['id']) && empty($data))
|
|
{
|
|
return ViewError(MyLang('no_data'), MyUrl('admin/goods/index'));
|
|
}
|
|
|
|
// 模板信息
|
|
$assign = [
|
|
// 站点类型
|
|
'common_site_type_list' => MyConst('common_site_type_list'),
|
|
// 商品参数展示范围
|
|
'common_goods_parameters_scope_list' => MyConst('common_goods_parameters_scope_list'),
|
|
// 当前系统设置的站点类型
|
|
'common_site_type' => SystemBaseService::SiteTypeValue(),
|
|
// 地区信息
|
|
'region_province_list' => RegionService::RegionItems(['pid'=>0]),
|
|
// 商品分类
|
|
'goods_category_list' => GoodsCategoryService::GoodsCategoryAll(),
|
|
// 品牌
|
|
'brand_list' => BrandService::CategoryBrand(),
|
|
// 商品导航
|
|
'goods_admin_nav_list' => ResourcesService::GoodsAdminNavList(),
|
|
// 商品分类模式
|
|
'is_goods_single_category_mode' => MyC('common_is_goods_single_category_mode', 0, true),
|
|
// 商品参数自定义模式
|
|
'is_goods_parameters_custom_mode' => MyC('common_is_goods_parameters_custom_mode', 0, true),
|
|
// 编辑器文件存放地址
|
|
'editor_path_type' => ResourcesService::EditorPathTypeValue('goods'),
|
|
// 商品基础禁止操作数据
|
|
'goods_base_forbid_operate_data' => GoodsService::GoodsBaseForbidOperateData(empty($params['id']) ? 0 : $params['id'], $data, $params),
|
|
// 商品参数操作数据
|
|
'goods_params_operate_data' => GoodsService::GoodsParamsOperateData(empty($params['id']) ? 0 : $params['id'], $data, $params),
|
|
// 商品规格操作数据
|
|
'goods_spec_operate_data' => GoodsService::GoodsSpecOperateData(empty($params['id']) ? 0 : $params['id'], $data, $params),
|
|
];
|
|
// 商品单分类模式
|
|
if($assign['is_goods_single_category_mode'] == 1)
|
|
{
|
|
// 加载布局管理
|
|
$assign['is_load_layout_admin'] = 1;
|
|
}
|
|
|
|
// 商品信息
|
|
if(!empty($data))
|
|
{
|
|
// 获取商品编辑规格
|
|
$assign['specifications'] = GoodsService::GoodsEditSpecifications($data['id']);
|
|
|
|
// 获取商品编辑参数
|
|
$assign['parameters'] = GoodsService::GoodsEditParameters($data['id']);
|
|
|
|
// 基础模板
|
|
$goods_base_template = GoodsService::GoodsBaseTemplate(['category_ids'=>$data['category_ids']]);
|
|
$assign['goods_base_template'] = $goods_base_template['data'];
|
|
|
|
// 商品单分类模式
|
|
if($assign['is_goods_single_category_mode'] == 1)
|
|
{
|
|
// 获取分类层级数据
|
|
$assign['category_level'] = GoodsCategoryService::GoodsCategoryLevel($data['category_ids']);
|
|
}
|
|
}
|
|
|
|
// 规格扩展数据
|
|
$goods_spec_extends = GoodsService::GoodsSpecificationsExtends($params);
|
|
$assign['goods_specifications_extends'] = $goods_spec_extends['data'];
|
|
|
|
// 是否拷贝
|
|
$assign['is_copy'] = (isset($params['is_copy']) && $params['is_copy'] == 1) ? 1 : 0;
|
|
|
|
// 商品编辑页面钩子
|
|
$hook_name = 'plugins_view_admin_goods_save';
|
|
$assign[$hook_name.'_data'] = MyEventTrigger($hook_name,
|
|
[
|
|
'hook_name' => $hook_name,
|
|
'is_backend' => true,
|
|
'goods_id' => isset($params['id']) ? $params['id'] : 0,
|
|
'data' => &$data,
|
|
'params' => &$params,
|
|
]);
|
|
|
|
// 数据/参数
|
|
unset($params['id'], $params['is_copy']);
|
|
$assign['data'] = $data;
|
|
$assign['params'] = $params;
|
|
|
|
// 数据赋值
|
|
MyViewAssign($assign);
|
|
return MyView();
|
|
}
|
|
|
|
/**
|
|
* 添加/编辑
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2021-03-31
|
|
* @desc description
|
|
*/
|
|
public function Save()
|
|
{
|
|
$params = $this->data_request;
|
|
$params['admin'] = $this->admin;
|
|
return ApiService::ApiDataReturn(GoodsService::GoodsSave($params));
|
|
}
|
|
|
|
/**
|
|
* 删除
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2021-03-31
|
|
* @desc description
|
|
*/
|
|
public function Delete()
|
|
{
|
|
$params = $this->data_request;
|
|
$params['admin'] = $this->admin;
|
|
return ApiService::ApiDataReturn(GoodsService::GoodsDelete($params));
|
|
}
|
|
|
|
/**
|
|
* 状态更新
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2021-03-31
|
|
* @desc description
|
|
*/
|
|
public function StatusUpdate()
|
|
{
|
|
$params = $this->data_request;
|
|
$params['admin'] = $this->admin;
|
|
return ApiService::ApiDataReturn(GoodsService::GoodsStatusUpdate($params));
|
|
}
|
|
|
|
/**
|
|
* 基础模板
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2021-03-31
|
|
* @desc description
|
|
*/
|
|
public function BaseTemplate()
|
|
{
|
|
$params = $this->data_request;
|
|
$params['admin'] = $this->admin;
|
|
return ApiService::ApiDataReturn(GoodsService::GoodsBaseTemplate($params));
|
|
}
|
|
}
|
|
?>
|