Commit d4831eac authored by hujun's avatar hujun

新增保存字段

parent b2d7c537
...@@ -2997,6 +2997,8 @@ class Finance extends Basic ...@@ -2997,6 +2997,8 @@ class Finance extends Basic
$save_data['transfer_name'] = isset($this->params['transfer_name']) ? $this->params['transfer_name']:''; $save_data['transfer_name'] = isset($this->params['transfer_name']) ? $this->params['transfer_name']:'';
$save_data['money'] = $this->params['money']; $save_data['money'] = $this->params['money'];
$save_data['receipt_number'] = isset($this->params['receipt_number'])? $this->params['receipt_number']:''; $save_data['receipt_number'] = isset($this->params['receipt_number'])? $this->params['receipt_number']:'';
$save_data['type_ext'] = empty($this->params['type_ext']) ? 0 : 1;
$save_data['received_money'] = empty($this->params['received_money']) ? 0 : $this->params['received_money'];
$m_pay->updatePayLog($save_data); $m_pay->updatePayLog($save_data);
} catch (\Exception $e) { } catch (\Exception $e) {
$code = 101; $code = 101;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment