mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-02 11:59:16 +08:00
286 lines
11 KiB
PHP
286 lines
11 KiB
PHP
<?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\index\form;
|
|
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* 用户订单售后动态表格
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
*/
|
|
class OrderAftersale
|
|
{
|
|
// 基础条件
|
|
public $condition_base = [];
|
|
|
|
/**
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-29
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public function __construct($params = [])
|
|
{
|
|
// 用户信息
|
|
if(!empty($params['system_user']))
|
|
{
|
|
$this->condition_base[] = ['user_id', '=', $params['system_user']['id']];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 入口
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public function Run($params = [])
|
|
{
|
|
return [
|
|
// 基础配置
|
|
'base' => [
|
|
'key_field' => 'id',
|
|
'is_search' => 1,
|
|
'search_url' => MyUrl('admin/orderaftersale/index'),
|
|
'is_middle' => 0,
|
|
],
|
|
// 表单配置
|
|
'form' => [
|
|
[
|
|
'label' => '基础信息',
|
|
'view_type' => 'module',
|
|
'view_key' => 'orderaftersale/module/goods',
|
|
'grid_size' => 'lg',
|
|
'is_sort' => 1,
|
|
'sort_field' => 'goods_id',
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'form_name' => 'id',
|
|
'where_type_custom' => 'in',
|
|
'where_value_custom' => 'WhereBaseGoodsInfo',
|
|
'placeholder' => '请输入订单号/商品名称/型号',
|
|
],
|
|
],
|
|
[
|
|
'label' => '状态',
|
|
'view_type' => 'field',
|
|
'view_key' => 'status',
|
|
'view_data_key' => 'name',
|
|
'view_data' => MyConst('common_order_aftersale_status_list'),
|
|
'width' => 120,
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'select',
|
|
'where_type' => 'in',
|
|
'data' => MyConst('common_order_aftersale_status_list'),
|
|
'data_key' => 'value',
|
|
'data_name' => 'name',
|
|
'is_multiple' => 1,
|
|
],
|
|
],
|
|
[
|
|
'label' => '申请类型',
|
|
'view_type' => 'field',
|
|
'view_key' => 'type',
|
|
'view_data_key' => 'name',
|
|
'view_data' => MyConst('common_order_aftersale_type_list'),
|
|
'width' => 120,
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'select',
|
|
'where_type' => 'in',
|
|
'data' => MyConst('common_order_aftersale_type_list'),
|
|
'data_key' => 'value',
|
|
'data_name' => 'name',
|
|
'is_multiple' => 1,
|
|
],
|
|
],
|
|
[
|
|
'label' => '原因',
|
|
'view_type' => 'field',
|
|
'view_key' => 'reason',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => '退款金额(元)',
|
|
'view_type' => 'field',
|
|
'view_key' => 'price',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'section',
|
|
'is_point' => 1,
|
|
],
|
|
],
|
|
[
|
|
'label' => '退货数量',
|
|
'view_type' => 'field',
|
|
'view_key' => 'number',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'section',
|
|
],
|
|
],
|
|
[
|
|
'label' => '退款说明',
|
|
'view_type' => 'field',
|
|
'view_key' => 'msg',
|
|
'grid_size' => 'sm',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => '退款类型',
|
|
'view_type' => 'field',
|
|
'view_key' => 'refundment',
|
|
'view_data_key' => 'name',
|
|
'view_data' => MyConst('common_order_aftersale_refundment_list'),
|
|
'width' => 120,
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'select',
|
|
'where_type' => 'in',
|
|
'data' => MyConst('common_order_aftersale_refundment_list'),
|
|
'data_key' => 'value',
|
|
'data_name' => 'name',
|
|
'is_multiple' => 1,
|
|
],
|
|
],
|
|
[
|
|
'label' => '快递公司',
|
|
'view_type' => 'field',
|
|
'view_key' => 'express_name',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => '快递单号',
|
|
'view_type' => 'field',
|
|
'view_key' => 'express_number',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => '申请时间',
|
|
'view_type' => 'field',
|
|
'view_key' => 'apply_time_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
'form_name' => 'apply_time',
|
|
],
|
|
],
|
|
[
|
|
'label' => '确认时间',
|
|
'view_type' => 'field',
|
|
'view_key' => 'confirm_time_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
'form_name' => 'confirm_time',
|
|
],
|
|
],
|
|
[
|
|
'label' => '退货时间',
|
|
'view_type' => 'field',
|
|
'view_key' => 'delivery_time_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
'form_name' => 'delivery_time',
|
|
],
|
|
],
|
|
[
|
|
'label' => '审核时间',
|
|
'view_type' => 'field',
|
|
'view_key' => 'audit_time_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
'form_name' => 'audit_time',
|
|
],
|
|
],
|
|
[
|
|
'label' => '创建时间',
|
|
'view_type' => 'field',
|
|
'view_key' => 'add_time_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
'form_name' => 'add_time',
|
|
],
|
|
],
|
|
[
|
|
'label' => '更新时间',
|
|
'view_type' => 'field',
|
|
'view_key' => 'upd_time_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
'form_name' => 'upd_time',
|
|
],
|
|
],
|
|
[
|
|
'label' => '操作',
|
|
'view_type' => 'operate',
|
|
'view_key' => 'orderaftersale/module/operate',
|
|
'align' => 'center',
|
|
'fixed' => 'right',
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* 基础条件处理
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
* @param [string] $value [条件值]
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public function WhereBaseGoodsInfo($value, $params = [])
|
|
{
|
|
if(!empty($value))
|
|
{
|
|
// 获取订单详情搜索的订单售后 id
|
|
$ids = Db::name('OrderAftersale')->alias('oa')->join('order_detail od', 'oa.order_detail_id=od.id')->whereOr('od.title|od.model', 'like', '%'.$value.'%')->whereOr('oa.order_no', '=', $value)->column('oa.id');
|
|
|
|
// 避免空条件造成无效的错觉
|
|
return empty($ids) ? [0] : $ids;
|
|
}
|
|
return $value;
|
|
}
|
|
}
|
|
?>
|