mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43: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:
@@ -5,7 +5,7 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
||||
<PackageReference Include="AutoMapper" Version="11.0.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -278,7 +278,8 @@
|
||||
public const string CacheCoreCmsProductsDistribution = "CacheCoreCmsProductsDistribution"; //货品三级佣金表
|
||||
public const string CacheCoreCmsServiceDescription = "CacheCoreCmsServiceDescription";
|
||||
public const string CacheCoreCmsAgentGrade = "CacheCoreCmsAgentGrade";
|
||||
|
||||
public const string CacheCoreCmsSolitaireItems = "CacheCoreCmsSolitaireItems";
|
||||
public const string CacheCoreCmsSolitaire = "CacheCoreCmsSolitaire";
|
||||
public const string CacheWeChatTCThirdCatList = "CacheWeChatTCThirdCatList";
|
||||
public const string CacheWeChatTransactionComponentGood = "CacheWeChatTransactionComponentGood";
|
||||
public const string CacheWeChatTransactionComponentDeliveryCompany = "CacheWeChatTransactionComponentDeliveryCompany";
|
||||
|
||||
@@ -1839,6 +1839,11 @@ namespace CoreCms.Net.Configuration
|
||||
/// </summary>
|
||||
[Description("11代理")]
|
||||
Agent = 11,
|
||||
/// <summary>
|
||||
/// 12接龙
|
||||
/// </summary>
|
||||
[Description("12接龙")]
|
||||
Solitaire = 12,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -2491,27 +2496,25 @@ namespace CoreCms.Net.Configuration
|
||||
/// <summary>
|
||||
/// 正常
|
||||
/// </summary>
|
||||
[Description("正常")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-normal layui-btn-xs'>正常</button>")]
|
||||
Normal = 0,
|
||||
/// <summary>
|
||||
/// 过期
|
||||
/// </summary>
|
||||
[Description("过期")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-warm layui-btn-disabled layui-btn-xs'>过期</button>")]
|
||||
Overdue = 1,
|
||||
/// <summary>
|
||||
/// 作废
|
||||
/// </summary>
|
||||
[Description("作废")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-primary layui-btn-disabled layui-btn-xs'>作废</button>")]
|
||||
Cancellation = 2,
|
||||
/// <summary>
|
||||
/// 已核销
|
||||
/// </summary>
|
||||
[Description("已核销")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-disabled layui-btn-xs'>已核销</button>")]
|
||||
Verification = 3
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 服务订单状态
|
||||
/// </summary>
|
||||
@@ -2520,24 +2523,24 @@ namespace CoreCms.Net.Configuration
|
||||
/// <summary>
|
||||
/// 正常
|
||||
/// </summary>
|
||||
[Description("正常")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-normal layui-btn-xs'>订单正常</button>")]
|
||||
正常 = 1,
|
||||
/// <summary>
|
||||
/// 作废
|
||||
/// </summary>
|
||||
[Description("作废")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-primary layui-btn-disabled layui-btn-xs'>订单作废</button>")]
|
||||
作废 = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 过期
|
||||
/// </summary>
|
||||
[Description("过期")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-warm layui-btn-disabled layui-btn-xs'>订单过期</button>")]
|
||||
过期 = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 用罄
|
||||
/// </summary>
|
||||
[Description("用罄")]
|
||||
[Description("<button type='button' class='layui-btn layui-btn-disabled layui-btn-xs'>订单用罄</button>")]
|
||||
用罄 = 4
|
||||
}
|
||||
|
||||
|
||||
@@ -537,6 +537,15 @@ namespace CoreCms.Net.Configuration
|
||||
public const string Code20039 = "";
|
||||
public const string Code20040 = "";
|
||||
|
||||
//接龙
|
||||
public const string Code21001 = "没有找到此接龙活动";
|
||||
public const string Code21002 = "还没到时间";
|
||||
public const string Code21003 = "已经结束了";
|
||||
public const string Code21004 = "未获取到此活动下货品信息";
|
||||
public const string Code21005 = "活动下未找到此货品信息";
|
||||
public const string Code21006 = "货品折扣后价格已经小于0";
|
||||
|
||||
|
||||
//会员管理 -21000
|
||||
|
||||
//商品管理 -22000
|
||||
|
||||
Reference in New Issue
Block a user