|
@@ -130,7 +130,7 @@ class OrderController extends Controller
|
130
|
130
|
$props_name = $goods_sku_info->propsName;
|
131
|
131
|
$is_weigh = $goods_sku_info->is_weigh;
|
132
|
132
|
$weigh_note = $is_weigh==1 ? '重量(斤)':'数量';
|
133
|
|
- $v['pre_cost'] += $goods_sku_info->referenceCost * $item->num;
|
|
133
|
+ if(!$item->is_gift) $v['pre_cost'] += $goods_sku_info->referenceCost * $item->num;
|
134
|
134
|
}else{
|
135
|
135
|
$props_name = '';
|
136
|
136
|
$weigh_note = '数量';
|