feat: 调整佣金计算逻辑以区分门店和平台收入
This commit is contained in:
parent
fcf6efe6ae
commit
b5e2707c3c
@ -21,18 +21,47 @@ 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 ($product['rose'] >= 4 && $product['rose'] < 8) {
|
if ($product['rose'] >= 0 && $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']);
|
||||||
$commission = bcmul($total_price, $rose, 2);
|
$commission = bcmul($total_price, $rose, 2);
|
||||||
StoreFinanceFlowProduct::create([
|
|
||||||
'store_id' => $order['store_id'],
|
//供货价
|
||||||
'product_id' => $find['product_id'],
|
$total_cost = bcmul($product['cost'], $find['cart_num']);
|
||||||
'number' => $commission,
|
$total = bcsub($total_cost, $total_price, 2);
|
||||||
'oid' => $order['id'],
|
$number = bcsub($total, $commission, 2);
|
||||||
'type' => 2,
|
if ($product['rose'] <= 4) {
|
||||||
'status' => 1,
|
//门店
|
||||||
]);
|
$data = [
|
||||||
|
'store_id' => $order['store_id'],
|
||||||
|
'product_id' => $find['product_id'],
|
||||||
|
'number' => $total,
|
||||||
|
'oid' => $order['id'],
|
||||||
|
'type' => 1,
|
||||||
|
'status' => 1,
|
||||||
|
];
|
||||||
|
StoreFinanceFlowProduct::create($data);
|
||||||
|
} else {
|
||||||
|
//门店
|
||||||
|
$data[] = [
|
||||||
|
'store_id' => $order['store_id'],
|
||||||
|
'product_id' => $find['product_id'],
|
||||||
|
'number' => $number,
|
||||||
|
'oid' => $order['id'],
|
||||||
|
'type' => 1,
|
||||||
|
'status' => 1,
|
||||||
|
];
|
||||||
|
//平台
|
||||||
|
$data[] = [
|
||||||
|
'store_id' => $order['store_id'],
|
||||||
|
'product_id' => $find['product_id'],
|
||||||
|
'number' => $commission,
|
||||||
|
'oid' => $order['id'],
|
||||||
|
'type' => 2,
|
||||||
|
'status' => 1,
|
||||||
|
];
|
||||||
|
(new StoreFinanceFlowProduct())->saveAll($data);
|
||||||
|
}
|
||||||
} elseif ($product['rose'] >= 8) {
|
} elseif ($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']);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user