mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 21:03:26 +08:00
# 2022-02-25
### 1.3.7 开源社区版: 无 ### 0.2.5 会员专业版: 【新增】数据库sku表【CoreCmsProducts】增加"赠送积分"【points】字段。 【新增】商品sku新增赠送积分功能,订单结算后可根据单品的积分与数量进行计算。与订单积分按照金额比例获取并存。 【新增】前端新增是否显示单品赠送积分功能,勾选显示,将在商品详情,购物车等界面显示购买此物品赠送多少积分的效果。 【优化】前端使用显示“积分”两个字的界面,替换为后台设置的名称。 【修复】修复form表单录入编辑界面属性值重复的问题。#I4V1PE 【修复】修复商品添加和编辑界面存在的错别字。#I4V1OR 【修复】修复广告位设置商品,弹出选择框不显示图片的问题。#I4V1EO
This commit is contained in:
@@ -231,12 +231,12 @@ namespace CoreCms.Net.Configuration
|
||||
/// <summary>
|
||||
/// 购物返积分
|
||||
/// </summary>
|
||||
[Description("购物返积分")]
|
||||
[Description("购物返")]
|
||||
PointTypeRebate = 2,
|
||||
/// <summary>
|
||||
/// 购物使用积分
|
||||
/// </summary>
|
||||
[Description("购物使用积分")]
|
||||
[Description("购物使用")]
|
||||
PointTypeDiscount = 3,
|
||||
/// <summary>
|
||||
/// 后台编辑
|
||||
@@ -246,7 +246,7 @@ namespace CoreCms.Net.Configuration
|
||||
/// <summary>
|
||||
/// 奖励积分
|
||||
/// </summary>
|
||||
[Description("奖励积分")]
|
||||
[Description("奖励")]
|
||||
PointTypePrize = 5,
|
||||
/// <summary>
|
||||
/// 积分兑换
|
||||
|
||||
@@ -256,6 +256,17 @@ namespace CoreCms.Net.Configuration
|
||||
/// </summary>
|
||||
public const string PointShowExchangePrice = "pointShowExchangePrice";
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 积分赠送模式
|
||||
/// </summary>
|
||||
public const string PointGetModel = "pointGetModel";
|
||||
|
||||
/// <summary>
|
||||
/// 显示积分赠送信息
|
||||
/// </summary>
|
||||
public const string PointShowPoint = "pointShowPoint";
|
||||
|
||||
/// <summary>
|
||||
/// 订单积分折现比例
|
||||
/// </summary>
|
||||
|
||||
@@ -117,9 +117,14 @@ namespace CoreCms.Net.Configuration
|
||||
di.Add(SystemSettingConstVars.ContinuitySignAdditional, new DictionaryKeyValues() { sKey = "连续签到追加", sValue = "1" });
|
||||
di.Add(SystemSettingConstVars.SignMostPoint, new DictionaryKeyValues() { sKey = "单日最大奖励", sValue = "10" });
|
||||
di.Add(SystemSettingConstVars.PointSwitch, new DictionaryKeyValues() { sKey = "开启积分功能", sValue = "1" });
|
||||
di.Add(SystemSettingConstVars.PointExchangeModel, new DictionaryKeyValues() { sKey = "积分模式", sValue = "1" });
|
||||
di.Add(SystemSettingConstVars.PointExchangeModel, new DictionaryKeyValues() { sKey = "积分兑换模式", sValue = "1" });
|
||||
di.Add(SystemSettingConstVars.PointShowName, new DictionaryKeyValues() { sKey = "积分昵称", sValue = "积分" });
|
||||
di.Add(SystemSettingConstVars.PointShowExchangePrice, new DictionaryKeyValues() { sKey = "显示积分组合兑换价", sValue = "1" });
|
||||
|
||||
di.Add(SystemSettingConstVars.PointGetModel, new DictionaryKeyValues() { sKey = "积分赠送模式", sValue = "1" });
|
||||
di.Add(SystemSettingConstVars.PointShowPoint, new DictionaryKeyValues() { sKey = "显示积分赠送信息", sValue = "1" });
|
||||
|
||||
|
||||
di.Add(SystemSettingConstVars.PointDiscountedProportion, new DictionaryKeyValues() { sKey = "订单积分折现比例", sValue = "100" });
|
||||
di.Add(SystemSettingConstVars.OrdersPointProportion, new DictionaryKeyValues() { sKey = "订单积分使用比例", sValue = "10" });
|
||||
di.Add(SystemSettingConstVars.OrdersRewardProportion, new DictionaryKeyValues() { sKey = "订单积分奖励比例", sValue = "1" });
|
||||
|
||||
Reference in New Issue
Block a user