mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:43:26 +08:00
# 2022-02-09
### 1.3.5 开源社区版(会员专业版同步修改): 无 ### 0.1.5 会员专业版: 【升级】nuget升级常用组件到最新版本。 【修复】服务商品列表图片组件从image调整为u--image组件。#I4RUC6 【优化】规范coreshop-goods.vue组件for循环未定义key的问题。 【修复】修复因升级uview版本导致【商品选项卡goodTabBar组件】切换失效的问题。 【新增】微信自定义交易组件增加【商品审核结果回调】,【类目审核结果回调】微信服务器消息推送处理。 【优化】调整自定义交易组件sku价格为decimal(18, 2)类型,方便小数处理。 【优化】微信自定义交易组件增加图片同步至微信侧功能。 【优化】重命名一些方法名称大小写。 【新增】首页设计轮播图增加高度设置功能。#I4SWEA 【修复】优化在苹果6/7/8plus及安卓一些机型出现分享海报弹窗文字被遮挡的问题。#I4SWCA
This commit is contained in:
@@ -14,8 +14,8 @@ using System.Linq.Expressions;
|
||||
using System.Threading.Tasks;
|
||||
using CoreCms.Net.Model.Entities;
|
||||
using CoreCms.Net.Model.ViewModels.Basics;
|
||||
using CoreCms.Net.Model.ViewModels.UI;
|
||||
using CoreCms.Net.Model.ViewModels.DTO;
|
||||
using CoreCms.Net.Model.ViewModels.UI;
|
||||
using SqlSugar;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
@@ -77,6 +77,14 @@ namespace CoreCms.Net.IServices
|
||||
/// <returns></returns>
|
||||
Task<WebApiCallBack> GetOrderInfoByOrderId(string id, int userId = 0, int aftersaleLevel = 0);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 把退款金额和退货商品查出来判断是否能进行售后
|
||||
/// </summary>
|
||||
/// <param name="order"></param>
|
||||
/// <param name="afterSaleLevel">取售后单的时候,售后单的等级,0:待审核的和审核通过的售后单,1未审核的,2审核通过的</param>
|
||||
void AfterSalesVal(CoreCmsOrder order, int afterSaleLevel = 0);
|
||||
|
||||
/// <summary>
|
||||
/// 获取订单不同状态的数量
|
||||
/// </summary>
|
||||
@@ -112,9 +120,10 @@ namespace CoreCms.Net.IServices
|
||||
/// 商家获取订单列表
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<WebApiCallBack> GetOrderPageByMerchant(string dateType, string[] date, int status = 0, int storeId = 0,
|
||||
Task<WebApiCallBack> GetOrderPageByMerchant(string dateType, string[] date, int status = 0, int receiptType = 0, int storeId = 0,
|
||||
int page = 1, int limit = 5);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 根据搜索条件商家获取订单列表
|
||||
/// </summary>
|
||||
@@ -154,17 +163,19 @@ namespace CoreCms.Net.IServices
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 构建需要发货的数据,和发货单密切关联
|
||||
/// 构建多个需要发货的数据,和发货单密切关联
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<WebApiCallBack> GetOrderShipInfo(string[] ids);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 构建单个需要发货的数据,和发货单密切关联
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<WebApiCallBack> GetOrderShipInfo(string orderId);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 发货改状态
|
||||
/// </summary>
|
||||
@@ -273,8 +284,6 @@ namespace CoreCms.Net.IServices
|
||||
/// <returns></returns>
|
||||
Task<WebApiCallBack> RemindOrderPay();
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 重写根据条件列表数据
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user