Commit abb31f0e authored by zhuwei's avatar zhuwei

收款记录日志

parent 0490eb28
...@@ -4658,6 +4658,10 @@ class Finance extends Basic ...@@ -4658,6 +4658,10 @@ class Finance extends Basic
} }
$num = $m_pay->updatePayLog(['is_del'=>1, 'id'=>$this->params['pay_id']]); $num = $m_pay->updatePayLog(['is_del'=>1, 'id'=>$this->params['pay_id']]);
if ($num > 0) { if ($num > 0) {
//收款记录日志
$s_receipt_operating_records = new ReceiptOperatingRecords();
$s_receipt_operating_records->addOperating($this->userId,1,$this->params['pay_id']);
$code = 200; $code = 200;
} else { } else {
$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