mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
升级自定义交易组件常用商品接口,spu接口,品牌接口,订单接口,物流接口。
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
namespace CoreCms.Net.Configuration
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CoreCms.Net.Configuration
|
||||
{
|
||||
public class GlobalConstVars
|
||||
{
|
||||
@@ -434,20 +436,17 @@
|
||||
/// </summary>
|
||||
public static string OrderPath(string orderId)
|
||||
{
|
||||
return "/pages/member/order/orderdetail?orderId=" + orderId;
|
||||
return "/pages/member/order/detail/detail?orderId=" + orderId;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 订单地址
|
||||
/// 商品地址
|
||||
/// </summary>
|
||||
public static string GoodDetail(string goodId)
|
||||
{
|
||||
return "/pages/goods/goodDetails/goodDetails?id=" + goodId;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -2969,6 +2969,37 @@ namespace CoreCms.Net.Configuration
|
||||
否 = 2
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 下单前置检查-是否需要推单
|
||||
/// </summary>
|
||||
public enum RequireOrderType
|
||||
{
|
||||
需要 = 1,
|
||||
不需要 = 2
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 下单前置检查-商户订单类型(原则上只能是1,应为官方文档说以后只有1,所以我们也只是用1)
|
||||
/// </summary>
|
||||
public enum RequiredFundType
|
||||
{
|
||||
非二级商户号订单 = 0,
|
||||
二级商户号订单 = 1,
|
||||
两种方式皆可 = 2,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 下单前置检查-商户订单类型(原则上只能是1,应为官方文档说以后只有1,所以我们也只是用1)
|
||||
/// </summary>
|
||||
public enum PayMethodType
|
||||
{
|
||||
微信支付 = 0,
|
||||
货到付款 = 1,
|
||||
商家会员储蓄卡 = 2,
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region 佣金相关
|
||||
|
||||
Reference in New Issue
Block a user