67 lines
2.0 KiB
PHP
67 lines
2.0 KiB
PHP
<?php
|
|
|
|
|
|
|
|
namespace app\controller\merchant\store\order;
|
|
|
|
use think\App;
|
|
use crmeb\basic\BaseController;
|
|
use app\common\repositories\system\merchant\MerchantRepository;
|
|
use app\common\repositories\store\order\MerchantReconciliationRepository as repository;
|
|
|
|
class Reconciliation extends BaseController
|
|
{
|
|
protected $repository;
|
|
|
|
public function __construct(App $app,repository $repository)
|
|
{
|
|
parent::__construct($app);
|
|
$this->repository = $repository;
|
|
}
|
|
|
|
|
|
public function lst()
|
|
{
|
|
[$page,$limit] = $this->getPage();
|
|
$where = $this->request->params(['date','status','is_accounts','reconciliation_id','keyword']);
|
|
$where['mer_id'] = $this->request->merId();
|
|
return app('json')->success($this->repository->getList($where,$page,$limit));
|
|
}
|
|
|
|
|
|
/**
|
|
* TODO 确认订单
|
|
* @param $id
|
|
* @return mixed
|
|
* @author Qinii
|
|
* @day 2020-06-15
|
|
*/
|
|
public function switchStatus($id)
|
|
{
|
|
if(!$this->repository->merWhereCountById($id,$this->request->merId()))
|
|
return app('json')->fail('数据不存在或状态错误');
|
|
$status = ($this->request->param('status') == 1) ? 1 : 2;
|
|
$data['status'] = $status;
|
|
$data['mer_admin_id'] = $this->request->merId();
|
|
$this->repository->switchStatus($id,$data);
|
|
return app('json')->success('修改成功');
|
|
}
|
|
|
|
|
|
public function markForm($id)
|
|
{
|
|
if(!$this->repository->getWhereCount([$this->repository->getPk() => $id,'mer_id' => $this->request->merId()]))
|
|
return app('json')->fail('数据不存在');
|
|
return app('json')->success(formToData($this->repository->markForm($id)));
|
|
}
|
|
|
|
public function mark($id)
|
|
{
|
|
if(!$this->repository->getWhereCount([$this->repository->getPk() => $id,'mer_id' => $this->request->merId()]))
|
|
return app('json')->fail('数据不存在');
|
|
$data = $this->request->params(['mark']);
|
|
$this->repository->update($id,$data);
|
|
return app('json')->success('备注成功');
|
|
}
|
|
}
|