Files
xo_kf/application/admin/controller/JunkaReject.php
2025-04-26 11:07:05 +08:00

203 lines
6.9 KiB
PHP

<?php
namespace app\admin\controller;
use app\api\model\JunkaStore;
use app\common\controller\Backend;
use think\Db;
use think\Exception;
use think\exception\DbException;
use think\exception\PDOException;
use think\exception\ValidateException;
/**
* 退货
*
* @icon fa fa-circle-o
*/
class JunkaReject extends Backend
{
/**
* JunkaReject模型对象
* @var \app\admin\model\JunkaReject
*/
protected $model = null;
public function _initialize()
{
parent::_initialize();
$this->model = new \app\admin\model\JunkaReject;
$this->view->assign("statusList", $this->model->getStatusList());
}
/**
* 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
* 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
*/
/**
* 编辑
*
* @param $ids
* @return string
* @throws DbException
* @throws \think\Exception
*/
public function edit($ids = null)
{
$row = $this->model->get($ids);
p($ids);
if (!$row) {
$this->error(__('No Results were found'));
}
$adminIds = $this->getDataLimitAdminIds();
if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
$this->error(__('You have no permission'));
}
if (false === $this->request->isPost()) {
$this->view->assign('row', $row);
return $this->view->fetch();
}
$params = $this->request->post('row/a');
if (empty($params)) {
$this->error(__('Parameter %s can not be empty', ''));
}
$params = $this->preExcludeFields($params);
$result = false;
Db::startTrans();
try {
//是否采用模型验证
if ($this->modelValidate) {
$name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
$validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
$row->validateFailException()->validate($validate);
}
$result = $row->allowField(true)->save($params);
Db::commit();
} catch (ValidateException|PDOException|Exception $e) {
Db::rollback();
$this->error($e->getMessage());
}
if (false === $result) {
$this->error(__('No rows were updated'));
}
$this->success();
}
/**
* 审核
* @param $ids
* @return string
* @throws DbException
* @throws \think\Exception
*/
public function examine($ids = null)
{
$row = $this->model->where(['purchcard_log_id' => $ids, 'status' => 0])->with('purchcardlog,store')->find();
if (!$row) {
$this->error(__('No Results were found'));
}
$adminIds = $this->getDataLimitAdminIds();
if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
$this->error(__('You have no permission'));
}
if (false === $this->request->isPost()) {
$this->view->assign('row', $row);
return $this->view->fetch();
}
$params = $this->request->post('row/a');
if (empty($params)) {
$this->error(__('Parameter %s can not be empty', ''));
}
$params = $this->preExcludeFields($params);
$result = false;
Db::startTrans();
try {
//是否采用模型验证
if ($this->modelValidate) {
$name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
$validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
$row->validateFailException()->validate($validate);
}
$result = $row->allowField(true)->save($params);
Db::commit();
} catch (ValidateException|PDOException|Exception $e) {
Db::rollback();
$this->error($e->getMessage());
}
if (false === $result) {
$this->error(__('No rows were updated'));
}
$this->success();
}
/**
* 退款审核
* @param $ids
* @return string
* @throws DbException
* @throws \think\Exception
*/
public function refundedit()
{
$post = $this->request->post();
$refund = \app\admin\model\JunkaReject::where(['id' => $post['id'], 'status' => 0])->with('purchcardlog,store')->find();
if($refund) {
try {
Db::startTrans();
if($post['type'] == 1) {
// 通过
$refund->status = 1;
$card_data = json_decode($refund->purchcardlog->data, true);
foreach ($card_data as $k => $v) {
$junka_card[] = [
'card_number' => $v['card_number'], // 卡号
'card_price' => $refund->purchcardlog->card_price, // 卡密
];
$card_number_list[] = $v['card_number'];
}
// 锁卡
$order = new \app\common\model\Order();
$order->cardlock($junka_card);
$refund->purchcardlog->status = 3;
$refund->purchcardlog->save();
// 还钱
JunkaStore::moneychange($refund->store, $refund->purchcardlog->t_price, 1, '退货', $refund->purchcardlog->bill_id);
// 锁卡天数更新
$card_arr = \app\admin\model\JunkaCard::where('card_number', 'in', $card_number_list)->select();
// 锁卡天数
$lock_card_time = config('site.card_expire_time') * 86400;
foreach ($card_arr as $k => $card) {
$card->end_time = time() + $lock_card_time;
$card->status = 6;
$card->save();
}
}else {
// 驳回
$refund->status = 2;
$refund->status_notes = $post['reject'];
$refund->purchcardlog->status = 4;
$refund->purchcardlog->save();
}
if($refund->save()) {
Db::commit();
return json(['code' => 1, 'msg' => '操作成功']);
}
}catch (Exception $e) {
Db::rollback();
$this->error($e->getMessage());
}
}
return json(['code' => 0, 'msg' => '操作失败']);
}
}