feat: 修改了OrderLogic和PayNotifyLogic类,添加了'rose'字段查询和支付通知逻辑。

This commit is contained in:
mkm 2024-07-25 11:41:49 +08:00
parent f4d45c7e5e
commit 78aa37bb3b
3 changed files with 38 additions and 3 deletions

View File

@ -82,13 +82,13 @@ class OrderLogic extends BaseLogic
self::$fresh_price = 0; //生鲜金额 self::$fresh_price = 0; //生鲜金额
/** 计算价格 */ /** 计算价格 */
$off_activity = Config::where('name', 'off_activity')->value('value'); $off_activity = Config::where('name', 'off_activity')->value('value');
$field = 'id branch_product_id,store_name,image,unit,price,vip_price,cost,purchase,product_id,top_cate_id,store_info'; $field = 'id branch_product_id,store_name,image,unit,price,vip_price,cost,purchase,product_id,top_cate_id,store_info,rose';
foreach ($cart_select as $k => $v) { foreach ($cart_select as $k => $v) {
$find = StoreBranchProduct::where(['product_id' => $v['product_id'], 'store_id' => $params['store_id']])->field($field)->find(); $find = StoreBranchProduct::where(['product_id' => $v['product_id'], 'store_id' => $params['store_id']])->field($field)->find();
if (!$find) { if (!$find) {
// unset($cart_select[$k]); // unset($cart_select[$k]);
// continue; // continue;
$field = 'id branch_product_id,store_name,image,unit,price,vip_price,cost,purchase, id product_id,cate_id,store_info'; $field = 'id branch_product_id,store_name,image,unit,price,vip_price,cost,purchase, id product_id,cate_id,store_info,rose';
$find = StoreProduct::where(['id' => $v['product_id']])->field($field)->find(); $find = StoreProduct::where(['id' => $v['product_id']])->field($field)->find();
if ($find) { if ($find) {
$cate_id = StoreCategory::where('id', $find['cate_id'])->value('pid'); $cate_id = StoreCategory::where('id', $find['cate_id'])->value('pid');
@ -135,6 +135,7 @@ class OrderLogic extends BaseLogic
$cart_select[$k]['verify_code'] = $params['verify_code'] ?? ''; $cart_select[$k]['verify_code'] = $params['verify_code'] ?? '';
$cart_select[$k]['vip_frozen_price'] = 0; $cart_select[$k]['vip_frozen_price'] = 0;
$cart_select[$k]['store_info'] = $find['store_info']; $cart_select[$k]['store_info'] = $find['store_info'];
$cart_select[$k]['rose'] = $find['rose'];
//会员待返回金额 //会员待返回金额
// if ($user && $off_activity == 0) { // if ($user && $off_activity == 0) {
// if ($user['user_ship'] == 4) { // if ($user['user_ship'] == 4) {

View File

@ -0,0 +1,34 @@
<?php
namespace app\common\logic;
use app\common\model\store_branch_product\StoreBranchProduct;
use app\common\model\store_order_cart_info\StoreOrderCartInfo;
/**
* 产品佣金计算
*
*/
class CommissionProductLogic extends BaseLogic
{
/**
* 根据毛利率计算
*/
function calculate_product_flow($oid,$store_id,$product_id,$village_uid=0, $brigade_uid=0){
$find=StoreOrderCartInfo::where($oid,$product_id)->field('price,cart_num,rose')->find();
if($find && $find['rose']>0){
$product= StoreBranchProduct::where('store_id',$store_id)->where('product_id',$product_id)->find();
$price=bcmul($find['price'], $find['cart_num'], 2);
// $rose= bcdiv($find['rose'], 100, 2);
// $price=bcsub($price, $price
// )
// bcsub($price, $find['rose'], 2);
// return $price;
}
}
}

View File

@ -651,7 +651,7 @@ class PayNotifyLogic extends BaseLogic
//case 5: // 种养殖 //case 5: // 种养殖
// case 6: // 酒店 // case 6: // 酒店
// case 7: // 食堂 // case 7: // 食堂
case 8: // 一条龙 // case 8: // 一条龙
CommissionLogic::setCook($order, $village_uid, $brigade_uid, $transaction_id); CommissionLogic::setCook($order, $village_uid, $brigade_uid, $transaction_id);
break; break;
case 2: // 村长 case 2: // 村长