where('product_id', $find['product_id'])->find(); if ($product && $product['rose'] > 0) { if ($product['rose'] >= 4 && $product['rose'] < 8) { $rose = bcdiv($product['rose'], 100, 2); $total_price = bcmul($product['purchase'], $find['cart_num']); $commission = bcmul($total_price, $rose, 2); StoreFinanceFlowProduct::create([ 'store_id' => $order['store_id'], 'product_id' => $find['product_id'], 'number' => $commission, 'oid' => $order['id'], 'type' => 2, 'status' => 1, ]); } elseif ($product['rose'] >= 8) { $rose = bcdiv($product['rose'], 100, 2); $total_price = bcmul($product['purchase'], $find['cart_num']); $Distribution = Distribution::where('rate', $rose)->find(); //门店 $data[] = [ 'store_id' => $order['store_id'], 'product_id' => $find['product_id'], 'number' => bcmul($total_price, $Distribution['store'], 2), 'oid' => $order['id'], 'type' => 1, 'status' => 1, ]; //平台 $data[] = [ 'store_id' => $order['store_id'], 'product_id' => $find['product_id'], 'number' => bcmul($total_price, $Distribution['platform'], 2), 'oid' => $order['id'], 'type' => 2, 'status' => 1, ]; //村长 $data[] = [ 'store_id' => $order['store_id'], 'product_id' => $find['product_id'], 'other_uid' => $village_uid, 'number' => bcmul($total_price, $Distribution['village'], 2), 'oid' => $order['id'], 'type' => 3, 'status' => 1, ]; //队长 $data[] = [ 'store_id' => $order['store_id'], 'product_id' => $find['product_id'], 'other_uid' => $brigade_uid, 'number' => bcmul($total_price, $Distribution['brigade'], 2), 'oid' => $order['id'], 'type' => 4, 'status' => 1, ]; //会员 $data[] = [ 'store_id' => $order['store_id'], 'product_id' => $find['product_id'], 'other_uid' => $order['spread_uid'], 'number' => bcmul($total_price, $Distribution['user'], 2), 'oid' => $order['id'], 'type' => 0, 'status' => 1, ]; //个人店铺 if ($order['spread_uid'] > 0) { $data[] = [ 'store_id' => $order['store_id'], 'product_id' => $find['product_id'], 'other_uid' => $order['spread_uid'], 'number' => bcmul($total_price, $Distribution['person_store'], 2), 'oid' => $order['id'], 'type' => 5, 'status' => 1, ]; } (new StoreFinanceFlowProduct())->saveAll($data); } } } }