mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:03:27 +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:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user