添加现金支付记录

This commit is contained in:
luofei 2024-06-06 11:02:56 +08:00
parent 4f0f91b61a
commit 98fb4d087c
3 changed files with 22 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class StoreRefundOrderLists extends BaseAdminDataLists implements ListsSearchInt
}
$query->whereTime('refund_reason_time', '<=', $this->params['end_time']);
})
->field(['id', 'store_id', 'staff_id', 'order_id', 'pay_price', 'pay_time', 'pay_type', 'status', 'uid', 'refund_status', 'refund_type', 'refund_reason_wap', 'refund_reason_time', 'refund_reason_wap_explain', 'refund_reason_wap_img'])
->field(['id', 'store_id', 'staff_id', 'order_id', 'pay_price', 'pay_time', 'pay_type', 'status', 'uid', 'refund_status', 'refund_type', 'refund_reason_wap', 'refund_reason_time', 'refund_reason_wap_explain', 'refund_reason_wap_img', 'refund_reason'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function ($item) {

View File

@ -0,0 +1,19 @@
<?php
namespace app\common\logic;
use app\common\model\store_cash_finance_flow\StoreCashFinanceFlow;
class CashFlowLogic extends BaseLogic
{
public function insert($storeId, $amount)
{
$model = new StoreCashFinanceFlow();
$model->store_id = $storeId;
$model->cash_price = $amount;
$model->receivable = $amount;
$model->save();
}
}

View File

@ -158,6 +158,8 @@ class PayNotifyLogic extends BaseLogic
if (!$order->save()) {
throw new \Exception('订单保存出错');
}
$cashFlowLogic = new CashFlowLogic();
$cashFlowLogic->insert($order['store_id'], $order['pay_price']);
}
/**