mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:53:25 +08:00
# 2022-02-12
### 1.3.5 开源社区版: 无 ### 0.1.7 会员专业版: 【新增】表【CoreCmsUserShip】增加【精度longitude】【纬度latitude】【街道street】三字段。 【新增】用户地址新增及编辑增加地图选择获取街道及经纬度坐标功能。 【新增】【平台设置-订单管理】,新增【同城配送运费设置】,可设置2公里内,5公里内,10公里内,15公里内,20公里内不同距离运费。根据用户地址坐标与门店坐标进行计算。 【新增】商品详情轮播图增加视频图片混播结合功能,类似淘宝打开商品详情后显示视频并支持播放,左右滑动切换图片,实现混播。 【新增】商品添加/删除面板增加视频上传功能。
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
using System.Threading.Tasks;
|
||||
using CoreCms.Net.Configuration;
|
||||
using CoreCms.Net.Model.Entities;
|
||||
using CoreCms.Net.Model.ViewModels.UI;
|
||||
using CoreCms.Net.Model.ViewModels.DTO;
|
||||
using CoreCms.Net.Model.ViewModels.UI;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
@@ -76,7 +76,6 @@ namespace CoreCms.Net.IServices
|
||||
Task<WebApiCallBack> GetCartDtoData(int userId, int[] ids = null, int type = 1, int objectId = 0);
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取处理后的购物车信息
|
||||
/// </summary>
|
||||
@@ -86,13 +85,12 @@ namespace CoreCms.Net.IServices
|
||||
/// <param name="areaId">收货地址id</param>
|
||||
/// <param name="point">消费的积分</param>
|
||||
/// <param name="couponCode">优惠券码</param>
|
||||
/// <param name="freeFreight">是否免运费</param>
|
||||
/// <param name="deliveryType">关联上面的是否免运费/1=快递配送(要去算运费)生成订单记录快递方式,2=同城配送/3=门店自提(不需要计算运费)生成订单记录门店自提信息</param>
|
||||
/// <param name="userShipId">用户收货地址</param>
|
||||
/// <param name="objectId">关联非普通订单营销类型序列</param>
|
||||
/// <returns></returns>
|
||||
Task<WebApiCallBack> GetCartInfos(int userId, int[] ids, int orderType, int areaId, int point,
|
||||
string couponCode, bool freeFreight = false,
|
||||
int deliveryType = (int)GlobalEnumVars.OrderReceiptType.Logistics, int objectId = 0);
|
||||
string couponCode, int deliveryType = (int)GlobalEnumVars.OrderReceiptType.Logistics, int userShipId = 0, int objectId = 0);
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -100,9 +98,8 @@ namespace CoreCms.Net.IServices
|
||||
/// </summary>
|
||||
/// <param name="cartDto">购物车信息</param>
|
||||
/// <param name="areaId">收货地址id</param>
|
||||
/// <param name="freeFreight">是否包邮,默认false</param>
|
||||
/// <returns></returns>
|
||||
bool CartFreight(CartDto cartDto, int areaId, bool freeFreight = false);
|
||||
bool CartFreight(CartDto cartDto, int areaId);
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user