feat: 修改计算商品流程方法,优化了代码结构,并调整了参数,使其更符合逻辑。
This commit is contained in:
parent
527dd756ec
commit
665c8e89d2
@ -17,82 +17,87 @@ class CommissionProductLogic extends BaseLogic
|
|||||||
/**
|
/**
|
||||||
* 根据毛利率计算
|
* 根据毛利率计算
|
||||||
*/
|
*/
|
||||||
function calculate_product_flow($find,$oid, $store_id, $product_id, $village_uid = 0, $brigade_uid = 0, $uid = 0, $spread_uid = 0)
|
function calculate_product_flow($find, $order, $village_uid = 0, $brigade_uid = 0, $user_ship = 0)
|
||||||
{
|
{
|
||||||
$product = StoreBranchProduct::where('store_id', $store_id)->where('product_id', $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']);
|
||||||
$commission = bcmul($total_price, $rose, 2);
|
$commission = bcmul($total_price, $rose, 2);
|
||||||
StoreFinanceFlowProduct::create([
|
StoreFinanceFlowProduct::create([
|
||||||
'store_id' => $store_id,
|
'store_id' => $order['store_id'],
|
||||||
'product_id' => $product_id,
|
'product_id' => $find['product_id'],
|
||||||
'number' => $commission,
|
'number' => $commission,
|
||||||
'oid' => $oid,
|
'oid' => $order['id'],
|
||||||
'type' => 2,
|
'type' => 2,
|
||||||
'status' => 1,
|
'status' => 1,
|
||||||
]);
|
]);
|
||||||
} 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']);
|
||||||
$Distribution = Distribution::where('rate', $rose)->find();
|
$Distribution = Distribution::where('rate', $rose)->find();
|
||||||
//门店
|
//门店
|
||||||
$data[] = [
|
$data[] = [
|
||||||
'store_id' => $store_id,
|
'store_id' => $order['store_id'],
|
||||||
'product_id' => $product_id,
|
'product_id' => $find['product_id'],
|
||||||
'number' => bcmul($total_price, $Distribution['store'], 2),
|
'number' => bcmul($total_price, $Distribution['store'], 2),
|
||||||
'oid' => $oid,
|
'oid' => $order['id'],
|
||||||
'type' => 1,
|
'type' => 1,
|
||||||
'status' => 1,
|
'status' => 1,
|
||||||
];
|
];
|
||||||
//平台
|
//平台
|
||||||
$data[] = [
|
$data[] = [
|
||||||
'store_id' => $store_id,
|
'store_id' => $order['store_id'],
|
||||||
'product_id' => $product_id,
|
'product_id' => $find['product_id'],
|
||||||
'number' => bcmul($total_price, $Distribution['platform'],2),
|
'number' => bcmul($total_price, $Distribution['platform'], 2),
|
||||||
'oid' => $oid,
|
'oid' => $order['id'],
|
||||||
'type' => 2,
|
'type' => 2,
|
||||||
'status' => 1,
|
'status' => 1,
|
||||||
];
|
];
|
||||||
//村长
|
//村长
|
||||||
$data[] = [
|
$data[] = [
|
||||||
'store_id' => $store_id,
|
'store_id' => $order['store_id'],
|
||||||
'product_id' => $product_id,
|
'product_id' => $find['product_id'],
|
||||||
'other_uid' => $village_uid,
|
'other_uid' => $village_uid,
|
||||||
'number' => bcmul($total_price, $Distribution['village'], 2),
|
'number' => bcmul($total_price, $Distribution['village'], 2),
|
||||||
'oid' => $oid,
|
'oid' => $order['id'],
|
||||||
'type' => 3,
|
'type' => 3,
|
||||||
'status' => 1,
|
'status' => 1,
|
||||||
];
|
];
|
||||||
//队长
|
//队长
|
||||||
$data[] = [
|
$data[] = [
|
||||||
'store_id' => $store_id,
|
'store_id' => $order['store_id'],
|
||||||
'product_id' => $product_id,
|
'product_id' => $find['product_id'],
|
||||||
'other_uid' => $brigade_uid,
|
'other_uid' => $brigade_uid,
|
||||||
'number' => bcmul($total_price, $Distribution['brigade'], 2),
|
'number' => bcmul($total_price, $Distribution['brigade'], 2),
|
||||||
'oid' => $oid,
|
'oid' => $order['id'],
|
||||||
'type' => 4,
|
'type' => 4,
|
||||||
'status' => 1,
|
'status' => 1,
|
||||||
];
|
];
|
||||||
//会员
|
//会员
|
||||||
$data[] = [
|
if ($user_ship == 1) {
|
||||||
'store_id' => $store_id,
|
|
||||||
'product_id' => $product_id,
|
|
||||||
'other_uid' => $uid,
|
|
||||||
'number' => bcmul($total_price, $Distribution['user'], 2),
|
|
||||||
'oid' => $oid,
|
|
||||||
'type' => 0,
|
|
||||||
'status' => 1,
|
|
||||||
];
|
|
||||||
//个人店铺
|
|
||||||
if ($spread_uid > 0) {
|
|
||||||
$data[] = [
|
$data[] = [
|
||||||
'store_id' => $store_id,
|
'store_id' => $order['store_id'],
|
||||||
'product_id' => $product_id,
|
'product_id' => $find['product_id'],
|
||||||
|
'other_uid' => $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' => $uid,
|
'other_uid' => $uid,
|
||||||
'number' => bcmul($total_price, $Distribution['person_store'], 2),
|
'number' => bcmul($total_price, $Distribution['person_store'], 2),
|
||||||
'oid' => $oid,
|
'oid' => $order['id'],
|
||||||
'type' => 5,
|
'type' => 5,
|
||||||
'status' => 1,
|
'status' => 1,
|
||||||
];
|
];
|
||||||
|
@ -646,7 +646,7 @@ class PayNotifyLogic extends BaseLogic
|
|||||||
$info = StoreOrderCartInfo::where('oid', $order['id'])->field('store_id,product_id,cart_num')->select();
|
$info = StoreOrderCartInfo::where('oid', $order['id'])->field('store_id,product_id,cart_num')->select();
|
||||||
$comm = new CommissionProductLogic();
|
$comm = new CommissionProductLogic();
|
||||||
foreach ($info as $v) {
|
foreach ($info as $v) {
|
||||||
$comm->calculate_product_flow($v, $order['id'], $order['store_id'], $v['product_id'], $village_uid, $brigade_uid, $order['uid'], $order['spread_uid']);
|
$comm->calculate_product_flow($v, $order, $village_uid, $brigade_uid,$user_ship);
|
||||||
}
|
}
|
||||||
CommissionLogic::setStore($order,$village_uid, $brigade_uid, $transaction_id);
|
CommissionLogic::setStore($order,$village_uid, $brigade_uid, $transaction_id);
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user