mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:03:25 +08:00
【新增】新增【微信发货信息管理】功能对接。实现微信小程序二次发货功能平移到后台业务,减少繁琐的二次发货操作。
This commit is contained in:
@@ -353,6 +353,10 @@ namespace CoreCms.Net.Configuration
|
||||
/// </summary>
|
||||
public const string WeChatPayNotice = "WeChatPayNoticeQueue";
|
||||
/// <summary>
|
||||
/// 微信支付成功后推送到接口进行发货处理
|
||||
/// </summary>
|
||||
public const string WeChatPayShipping = "WeChatPayShippingQueue";
|
||||
/// <summary>
|
||||
/// 微信模板消息
|
||||
/// </summary>
|
||||
public const string SendWxTemplateMessage = "SendWxTemplateMessage";
|
||||
|
||||
@@ -1066,12 +1066,6 @@ namespace CoreCms.Net.Configuration
|
||||
/// </summary>
|
||||
[Description("接龙")]
|
||||
Solitaire = 8,
|
||||
/// <summary>
|
||||
/// 微信交易组件
|
||||
/// </summary>
|
||||
[Description("微信交易组件")]
|
||||
TransactionComponent = 10,
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
@@ -3260,5 +3254,91 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#endregion
|
||||
|
||||
#region 微信发货管理
|
||||
|
||||
/// <summary>
|
||||
/// 微信发货信息管理订单状态
|
||||
/// </summary>
|
||||
public enum WeChatShippingOrderStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// 待发货
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-bg-red layui-btn-xs'>待发货</button>")]
|
||||
待发货 = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 已发货
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-bg-orange layui-btn-xs'>已发货</button>")]
|
||||
已发货 = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 确认收货
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-bg-blue layui-btn-xs'>确认收货</button>")]
|
||||
确认收货 = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 交易完成
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-btn-xs'>交易完成</button>")]
|
||||
交易完成 = 4,
|
||||
|
||||
/// <summary>
|
||||
/// 已退款
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-bg-purple layui-btn-xs'>已退款</button>")]
|
||||
已退款 = 5
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 物流模式
|
||||
/// </summary>
|
||||
public enum WeChatShippingLogisticsType
|
||||
{
|
||||
/// <summary>
|
||||
/// 物流配送
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-bg-red layui-btn-xs'>物流配送</button>")]
|
||||
物流配送 = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 同城配送
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-bg-orange layui-btn-xs'>同城配送</button>")]
|
||||
同城配送 = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 虚拟商品
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-bg-blue layui-btn-xs'>虚拟商品</button>")]
|
||||
虚拟商品 = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 用户自提
|
||||
/// </summary>
|
||||
[Description("<button type='button' class='layui-btn layui-btn-xs'>用户自提</button>")]
|
||||
用户自提 = 4,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 发货模式
|
||||
/// </summary>
|
||||
public enum WeChatShippingDeliveryMode
|
||||
{
|
||||
/// <summary>
|
||||
/// 统一发货
|
||||
/// </summary>
|
||||
UNIFIED_DELIVERY = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 分拆发货
|
||||
/// </summary>
|
||||
SPLIT_DELIVERY = 2
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user