门店保证金统计修改

This commit is contained in:
liu 2024-07-05 10:30:51 +08:00
parent cb8edc5a67
commit 0a96bcd30b

View File

@ -629,6 +629,7 @@ class WorkbenchLogic extends BaseLogic
//总的营业额的统计 总的利润的统计 总的成本合集的统计 总的加到保证金的
$all = StoreOrder::where(['paid' => YesNoEnum::YES, 'store_id' => $params['store_id']]);
$deposit_all = StoreFinanceFlow::where(['store_id' => $params['store_id'], 'status' => YesNoEnum::YES])
->where('financial_type', OrderEnum::ORDER_MARGIN)
->sum('number');
$cash_all = StoreCashFinanceFlow::where('store_id', $params['store_id'])