feat: 添加资金流动逻辑以处理商店财务

This commit is contained in:
mkm 2024-08-02 16:27:55 +08:00
parent e4b785e186
commit 3e6abe5957

View File

@ -148,16 +148,21 @@ class StoreFinanceFlowLogic extends BaseLogic
{ {
StoreFinanceFlow::where(['order_id' => $order_id, 'financial_type' => 11])->update(['status' => 1]); StoreFinanceFlow::where(['order_id' => $order_id, 'financial_type' => 11])->update(['status' => 1]);
StoreFinanceFlow::where(['order_id' => $order_id, 'financial_type' => 2])->update(['status' => 1]); StoreFinanceFlow::where(['order_id' => $order_id, 'financial_type' => 2])->update(['status' => 1]);
$store=SystemStore::where('id',$store_id)->find();
$capitalFlowDao = new CapitalFlowLogic($store);
if ($money > 0) { if ($money > 0) {
$capitalFlowDao->storeIncome('store_money_add', 'order', $order_id, $money);
SystemStore::where('id', $store_id)->inc('store_money', $money)->update(); SystemStore::where('id', $store_id)->inc('store_money', $money)->update();
} }
if ($deposit > 0) { if ($deposit > 0) {
$capitalFlowDao->storeIncome('store_paid_deposit_add', 'order', $order_id, $money);
SystemStore::where('id', $store_id)->inc('paid_deposit', $deposit)->update(); SystemStore::where('id', $store_id)->inc('paid_deposit', $deposit)->update();
} }
$find = StoreFinanceFlow::where(['order_id' => $order_id, 'financial_pm' => 1, 'financial_type' => 16, 'status' => 0])->find(); $find = StoreFinanceFlow::where(['order_id' => $order_id, 'financial_pm' => 1, 'financial_type' => 16, 'status' => 0])->find();
StoreFinanceFlow::where(['order_id' => $order_id, 'financial_type' => 16])->update(['status' => 1]); StoreFinanceFlow::where(['order_id' => $order_id, 'financial_type' => 16])->update(['status' => 1]);
if ($find) { if ($find) {
if ($find['number'] > 0) { if ($find['number'] > 0) {
$capitalFlowDao->storeIncome('store_attrition_add', 'order', $order_id, $money);
SystemStore::where('id', $store_id)->inc('attrition', $find['number'])->update(); SystemStore::where('id', $store_id)->inc('attrition', $find['number'])->update();
} }
} }