修改商户销售金额和采购金额的错误

This commit is contained in:
luofei 2024-03-02 15:32:54 +08:00
parent c19e0c4dad
commit 5e31108d99

View File

@ -344,16 +344,6 @@ class StoreOrderRepository extends BaseRepository
// 商户收入金额
$financeDao->platformOut($_payPrice, 'merchant_order', $order['mer_id']);
if ($isPickupCard) {
//订单确认收货,增加商户销售金额
Merchant::where('mer_id', $order->mer_id)->update(['sale_amount' => Db::raw('sale_amount+' . $_payPrice)]);
//订单确认收货,增加商户采购金额
$merId = Merchant::where('uid', $order->uid)->value('mer_id');
if (!empty($merId)) {
Merchant::where('mer_id', $merId)->update(['purchase_amount' => Db::raw('purchase_amount+' . $_payPrice)]);
}
}
if ($is_combine) {
$profitsharing[] = [
'profitsharing_sn' => $storeOrderProfitsharingRepository->getOrderSn(),
@ -804,7 +794,8 @@ class StoreOrderRepository extends BaseRepository
if ($order->uid != $order->merchant->uid) {
$refundPrice = StoreRefundOrder::where('order_id', $order['order_id'])->where('status', '<>', -1)->sum('refund_price');
$money = bcsub($order->pay_price, $refundPrice, 2);
$money = bcsub($order->total_price, $order->consumption_money, 2);
$money = bcsub($money, $refundPrice, 2);
//订单确认收货,增加商户销售金额
Merchant::where('mer_id', $order->mer_id)->update(['sale_amount' => Db::raw('sale_amount+' . $money)]);
//订单确认收货,增加商户采购金额