mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
84 lines
2.5 KiB
PHP
84 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/**
|
|
* ============================
|
|
* @Author: yaokangming
|
|
* @Version: 1.0
|
|
* @DateTime: 2021/7/9 16:32:55
|
|
* @describe: 退款原因
|
|
* ============================
|
|
*/
|
|
class ome_ctl_admin_refund_reason extends desktop_controller {
|
|
|
|
/**
|
|
* index
|
|
* @return mixed 返回值
|
|
*/
|
|
|
|
public function index() {
|
|
$actions = array();
|
|
$actions[] = array(
|
|
'label' => '添加',
|
|
'href' => $this->url.'&act=edit',
|
|
'target' => "dialog::{width:350,height:200,title:'添加退款原因'}",
|
|
);
|
|
$params = array(
|
|
'title'=>'退款原因',
|
|
'use_buildin_set_tag'=>false,
|
|
'use_buildin_filter'=>false,
|
|
'use_buildin_export'=>false,
|
|
'use_buildin_import'=>false,
|
|
'use_buildin_recycle'=>true,
|
|
'actions'=>$actions,
|
|
'orderBy'=>'id desc',
|
|
);
|
|
|
|
$this->finder('ome_mdl_refund_reason', $params);
|
|
}
|
|
|
|
/**
|
|
* edit
|
|
* @param mixed $id ID
|
|
* @return mixed 返回值
|
|
*/
|
|
public function edit($id='') {
|
|
if($id) {
|
|
$this->pagedata['data'] = app::get('ome')->model('refund_reason')->db_dump($id);
|
|
}
|
|
$this->display('admin/refund/reason.html');
|
|
}
|
|
|
|
/**
|
|
* 保存
|
|
* @return mixed 返回操作结果
|
|
*/
|
|
public function save() {
|
|
$this->begin($this->url);
|
|
$id = $_POST['id'];
|
|
$reason = $_POST['reason'];
|
|
if(!$reason) {
|
|
$this->end(false, '退款原因必填');
|
|
}
|
|
if(!$id) {
|
|
$data = ['reason'=>$reason, 'create_time'=>time()];
|
|
app::get('ome')->model('refund_reason')->insert($data);
|
|
} else {
|
|
app::get('ome')->model('refund_reason')->update(['reason'=>$reason], ['id'=>$id]);
|
|
}
|
|
$this->end(true, '操作完成');
|
|
}
|
|
} |