【修复】修复商家中心传值问题,导致获取订单列表错误的情况。

This commit is contained in:
JianWeie
2022-06-07 12:08:12 +08:00
parent f8a3910fa9
commit 85b0cdab7f

View File

@@ -243,7 +243,7 @@ namespace CoreCms.Net.Web.WebApi.Controllers
var store = await _storeServices.GetStoreByUserId(_user.ID); var store = await _storeServices.GetStoreByUserId(_user.ID);
if (store != null) if (store != null)
{ {
jm = await _orderServices.GetOrderPageByMerchant(entity.dateType, entity.date, entity.status, entity.storeId, entity.page, entity.limit); jm = await _orderServices.GetOrderPageByMerchant(entity.dateType, entity.date, entity.status, entity.receiptType, entity.storeId, entity.page, entity.limit);
} }
else else
{ {