mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:13:26 +08:00
# 2022-01-17
### 1.3.0 开源社区版: 【新增】完善商品查看详情功能。#I4QTLR 【新增】订单详情页面需要增加下单客户信息。 【新增】完善服务订单管理功能,实现订单作废、导出功能;核销码实现列表,作废,导出功能。#I4OSBK 【修复】修复普通订单查看详情,因优惠信息问题导致的异常情况。#I4QXUQ 【修复】修复门店列表下的用户编辑页面名称大小写问题(linux下大小写敏感问题)。 【修复】修复微信支付成功相应的日志记录类型有误。#I4QSNZ 【修复】修复发货日志记录sku货号错误问题。#I4PX25 【修复】修复发货单列表查看详情,提示权限不足的问题。#I4QDQR ### 0.0.8 会员专业版: 【新增】新增接龙功能营销功能,实现单个活动,可以添加多个不同商品的不同sku混合选择下单。 【新增】增加接龙数据库脚本及演示文件。 【升级】升级uView组件到2.0.20版本。 【修复】修复编辑收货地址的路径中选取区域部分可以手动输入文字。 【修复】修复【微信直播带货】组件缺少获取sku分页数据的问题。#I4QKSU 【优化】调整【微信自定义交易组件】商品类目排序方式及展示内容。#I4QE0N
This commit is contained in:
@@ -54,6 +54,8 @@ namespace CoreCms.Net.Services
|
||||
private readonly ICoreCmsPinTuanRecordServices _pinTuanRecordServices;
|
||||
private readonly ICoreCmsGoodsServices _goodsServices;
|
||||
private readonly ICoreCmsGoodsCategoryServices _goodsCategoryServices;
|
||||
private readonly ICoreCmsSolitaireServices _solitaireServices;
|
||||
|
||||
|
||||
public CoreCmsCartServices(
|
||||
ICoreCmsCartRepository dal
|
||||
@@ -66,7 +68,7 @@ namespace CoreCms.Net.Services
|
||||
, ICoreCmsUserServices userServices
|
||||
, ICoreCmsSettingServices settingServices
|
||||
, ICoreCmsProductsServices productsServices
|
||||
, ICoreCmsPinTuanGoodsServices pinTuanGoodsServices, ICoreCmsPromotionConditionServices promotionConditionServices, ICoreCmsGoodsServices goodsServices, ICoreCmsGoodsCategoryServices goodsCategoryServices, ICoreCmsPromotionResultServices promotionResultServices, ICoreCmsPinTuanRecordServices pinTuanRecordServices)
|
||||
, ICoreCmsPinTuanGoodsServices pinTuanGoodsServices, ICoreCmsPromotionConditionServices promotionConditionServices, ICoreCmsGoodsServices goodsServices, ICoreCmsGoodsCategoryServices goodsCategoryServices, ICoreCmsPromotionResultServices promotionResultServices, ICoreCmsPinTuanRecordServices pinTuanRecordServices, ICoreCmsSolitaireServices solitaireServices)
|
||||
{
|
||||
this._dal = dal;
|
||||
base.BaseDal = dal;
|
||||
@@ -86,6 +88,7 @@ namespace CoreCms.Net.Services
|
||||
_goodsCategoryServices = goodsCategoryServices;
|
||||
_promotionResultServices = promotionResultServices;
|
||||
_pinTuanRecordServices = pinTuanRecordServices;
|
||||
_solitaireServices = solitaireServices;
|
||||
}
|
||||
|
||||
#region 设置购物车商品数量====================================================
|
||||
@@ -501,6 +504,16 @@ namespace CoreCms.Net.Services
|
||||
break;
|
||||
case (int)GlobalEnumVars.OrderType.Solitaire:
|
||||
//接龙模式,去获取接龙商品价格。
|
||||
var solitaireInfo = await _solitaireServices.SolitaireInfo(objectId, cartDto.list);
|
||||
if (solitaireInfo.status)
|
||||
{
|
||||
cartDto.list = solitaireInfo.data as List<CartProducts>;
|
||||
}
|
||||
else
|
||||
{
|
||||
return solitaireInfo;
|
||||
}
|
||||
break;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user