发送给店铺确认消息
This commit is contained in:
parent
f0b2b3cc5a
commit
12ad62e4f5
@ -29,6 +29,22 @@ class FinancialTransfersController extends BaseAdminController
|
||||
return $this->dataLists(new FinancialTransfersLists());
|
||||
}
|
||||
|
||||
public function send_transfers()
|
||||
{
|
||||
$params = (new FinancialTransfersValidate())->post()->goCheck('send');
|
||||
$result = FinancialTransfersLogic::dealsend($params);
|
||||
|
||||
if (true === $result) {
|
||||
return $this->success('发送成功', [], );
|
||||
}
|
||||
return $this->fail(FinancialTransfersLogic::getError());
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加
|
||||
|
@ -107,4 +107,29 @@ class FinancialTransfersLogic extends BaseLogic
|
||||
{
|
||||
return FinancialTransfers::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
|
||||
public static function dealsend($params)
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
FinancialTransfers::where('id',$params['id'])
|
||||
->update(
|
||||
[
|
||||
'status'=>1,
|
||||
'initiation_time'=>time()
|
||||
]
|
||||
);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
}catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -36,6 +36,13 @@ class FinancialTransfersValidate extends BaseValidate
|
||||
];
|
||||
|
||||
|
||||
public function sceneSend()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return FinancialTransfersValidate
|
||||
|
Loading…
x
Reference in New Issue
Block a user