feat: 修改了OrderLogic和PayNotifyLogic类,添加了'rose'字段查询和支付通知逻辑。
This commit is contained in:
parent
f4d45c7e5e
commit
78aa37bb3b
@ -82,13 +82,13 @@ class OrderLogic extends BaseLogic
|
||||
self::$fresh_price = 0; //生鲜金额
|
||||
/** 计算价格 */
|
||||
$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) {
|
||||
$find = StoreBranchProduct::where(['product_id' => $v['product_id'], 'store_id' => $params['store_id']])->field($field)->find();
|
||||
if (!$find) {
|
||||
// unset($cart_select[$k]);
|
||||
// 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();
|
||||
if ($find) {
|
||||
$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]['vip_frozen_price'] = 0;
|
||||
$cart_select[$k]['store_info'] = $find['store_info'];
|
||||
$cart_select[$k]['rose'] = $find['rose'];
|
||||
//会员待返回金额
|
||||
// if ($user && $off_activity == 0) {
|
||||
// if ($user['user_ship'] == 4) {
|
||||
|
34
app/common/logic/CommissionProductLogic.php
Normal file
34
app/common/logic/CommissionProductLogic.php
Normal 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;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -651,7 +651,7 @@ class PayNotifyLogic extends BaseLogic
|
||||
//case 5: // 种养殖
|
||||
// case 6: // 酒店
|
||||
// case 7: // 食堂
|
||||
case 8: // 一条龙
|
||||
// case 8: // 一条龙
|
||||
CommissionLogic::setCook($order, $village_uid, $brigade_uid, $transaction_id);
|
||||
break;
|
||||
case 2: // 村长
|
||||
|
Loading…
x
Reference in New Issue
Block a user