调试平台手续费分润

This commit is contained in:
luofei 2023-05-26 10:31:42 +08:00
parent 30aa2e2e98
commit a70a4de2e3
2 changed files with 2 additions and 0 deletions

View File

@ -350,6 +350,7 @@ class StoreOrderRepository extends BaseRepository
/** @var MerchantRepository $merchantRepo */
$merchantRepo = app()->make(MerchantRepository::class);
$merchantRepo->merId = $order->mer_id;
$merchantRepo->forceMargin = false;
[$_payPrice, $finance] = $merchantRepo->autoMargin($_payPrice, $order, $finance, $financeSn, $i++);
}
$finance[] = [

View File

@ -53,6 +53,7 @@ class AutoMarginJob implements JobInterface
$merchant->ot_margin = $merchant->paid_margin;
$merchant->is_margin = MerchantRepository::PaidMargin;
$merchant->save();
$job->delete();
} catch (\Exception $exception) {
Log::info('更新商户保证金出错:' . var_export($exception, 1));
} finally {