feat: 修改CommissionProductLogic类以调整分销逻辑

This commit is contained in:
mkm 2024-07-27 16:12:33 +08:00
parent 665c8e89d2
commit 46fdf20b47

View File

@ -21,9 +21,6 @@ class CommissionProductLogic extends BaseLogic
{ {
$product = StoreBranchProduct::where('store_id', $order['store_id'])->where('product_id', $find['product_id'])->find(); $product = StoreBranchProduct::where('store_id', $order['store_id'])->where('product_id', $find['product_id'])->find();
if ($product && $product['rose'] > 0) { if ($product && $product['rose'] > 0) {
if ($order['spread_uid'] > 0) {
$uid = $order['spread_uid'];
}
if ($product['rose'] >= 4 && $product['rose'] < 8) { if ($product['rose'] >= 4 && $product['rose'] < 8) {
$rose = bcdiv($product['rose'], 100, 2); $rose = bcdiv($product['rose'], 100, 2);
$total_price = bcmul($product['purchase'], $find['cart_num']); $total_price = bcmul($product['purchase'], $find['cart_num']);
@ -77,25 +74,24 @@ class CommissionProductLogic extends BaseLogic
'oid' => $order['id'], 'oid' => $order['id'],
'type' => 4, 'type' => 4,
'status' => 1, 'status' => 1,
]; ];
//会员 //会员
if ($user_ship == 1) { $data[] = [
$data[] = [ 'store_id' => $order['store_id'],
'store_id' => $order['store_id'], 'product_id' => $find['product_id'],
'product_id' => $find['product_id'], 'other_uid' => $order['spread_uid'],
'other_uid' => $uid, 'number' => bcmul($total_price, $Distribution['user'], 2),
'number' => bcmul($total_price, $Distribution['user'], 2), 'oid' => $order['id'],
'oid' => $order['id'], 'type' => 0,
'type' => 0, 'status' => 1,
'status' => 1, ];
];
}
//个人店铺 //个人店铺
if ($order['spread_uid'] > 0) { if ($order['spread_uid'] > 0) {
$data[] = [ $data[] = [
'store_id' => $order['store_id'], 'store_id' => $order['store_id'],
'product_id' => $find['product_id'], 'product_id' => $find['product_id'],
'other_uid' => $uid, 'other_uid' => $order['spread_uid'],
'number' => bcmul($total_price, $Distribution['person_store'], 2), 'number' => bcmul($total_price, $Distribution['person_store'], 2),
'oid' => $order['id'], 'oid' => $order['id'],
'type' => 5, 'type' => 5,