This commit is contained in:
mkm 2024-06-14 14:15:16 +08:00
commit 83f03f126d
3 changed files with 48 additions and 0 deletions

View File

@ -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 添加

View File

@ -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;
}
}
}

View File

@ -36,6 +36,13 @@ class FinancialTransfersValidate extends BaseValidate
];
public function sceneSend()
{
return $this->only(['id']);
}
/**
* @notes 添加场景
* @return FinancialTransfersValidate