|
@@ -356,6 +356,7 @@ class BalanceLogService extends BaseService
|
|
|
$money = isset($params['money']) ? floatval($params['money']) : 0;
|
|
$money = isset($params['money']) ? floatval($params['money']) : 0;
|
|
|
$accountType = isset($params['type']) && $params['type']? intval($params['type']) : 3;
|
|
$accountType = isset($params['type']) && $params['type']? intval($params['type']) : 3;
|
|
|
$mobile = isset($params['mobile']) ? trim($params['mobile']) : '';
|
|
$mobile = isset($params['mobile']) ? trim($params['mobile']) : '';
|
|
|
|
|
+ $remark = isset($params['remark']) ? trim($params['remark']) : '';
|
|
|
if ($money <= 0) {
|
|
if ($money <= 0) {
|
|
|
$this->error = '请输入转账数量';
|
|
$this->error = '请输入转账数量';
|
|
|
return false;
|
|
return false;
|
|
@@ -455,7 +456,7 @@ class BalanceLogService extends BaseService
|
|
|
'realname' => '',
|
|
'realname' => '',
|
|
|
'account_name' => $accountTypeName,
|
|
'account_name' => $accountTypeName,
|
|
|
'account' => $mobile,
|
|
'account' => $mobile,
|
|
|
- 'account_remark' => '',
|
|
|
|
|
|
|
+ 'remark' => $remark,
|
|
|
'date' => date('Y-m-d'),
|
|
'date' => date('Y-m-d'),
|
|
|
'create_time' => time(),
|
|
'create_time' => time(),
|
|
|
'status' => 4,
|
|
'status' => 4,
|