|
@@ -363,6 +363,7 @@ class PayProc {
|
|
|
$shopItem = GameConfig::shop_getItem($order->product_id); # 商城总表中查找下配置数据
|
|
|
$mod = "";
|
|
|
if (null != $shopItem) {
|
|
|
+ $mod = $shopItem->shopItemType;
|
|
|
switch ($shopItem->shopItemType) {
|
|
|
case 'cash': # 充值二级货币
|
|
|
$cashMo = GameConfig::shop_cash_getItem($shopItem->shopItemTypeId);
|
|
@@ -394,7 +395,6 @@ class PayProc {
|
|
|
my_Assert(false, "该道具并非现金充值类!");
|
|
|
break;
|
|
|
}
|
|
|
- $mod = $shopItem->shopItemType;
|
|
|
}
|
|
|
|
|
|
// <editor-fold defaultstate="collapsed" desc="已废弃逻辑">
|
|
@@ -664,7 +664,7 @@ class PayProc {
|
|
|
'goods' => $item->goods, # # 发货内容
|
|
|
'count' => $product_count, # # 发货数量
|
|
|
)
|
|
|
- );
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
/**
|