mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-02-05 12:09:49 +08:00
### 开源社区版(会员专业版同步修改): --无修改 ### 0.1.1 会员专业版: 【新增】增加微信支付服务商配置,支付微信支付服务商及子商户功能。 【新增】增加根据不同下单类型,控制不同的下单送货模式的功能,如普通商品购买只需要【物流快递,同城配送】,团购秒杀只需要【同城配送,上门自提】,可后台自定义。 【新增】微信直播带货功能新增【上传图片】功能,可直接将本地图片上传至微信侧,获取cdn图片进行处理。 【更新】nuget更新组件。 【修复】修复首页商品组件图片高度被错写array的问题。 【修复】修复生成海报保存路径问题,调整开发版或者预览版小程序获取不到的二维码的报错问题。 【优化】调整订单详情商品tag未设置宽度,导致撑破容易的问题。 【修复】调整订单列表左侧图片大小,防止被遮挡。I4PP1F 【修复】修复微信自定义交易组件申请商品类目失败的问题。#I4QE17
566 lines
19 KiB
C#
566 lines
19 KiB
C#
/***********************************************************************
|
|
* Project: CoreCms
|
|
* ProjectName: 核心内容管理系统
|
|
* Web: https://www.corecms.net
|
|
* Author: 大灰灰
|
|
* Email: jianweie@163.com
|
|
* CreateTime: 2021/1/31 21:45:10
|
|
* Description: 暂无
|
|
***********************************************************************/
|
|
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using CoreCms.Net.Auth.HttpContextUser;
|
|
using CoreCms.Net.Configuration;
|
|
using CoreCms.Net.IServices;
|
|
using CoreCms.Net.Model.Entities;
|
|
using CoreCms.Net.Model.Entities.Expression;
|
|
using CoreCms.Net.Model.FromBody;
|
|
using CoreCms.Net.Model.ViewModels.UI;
|
|
using CoreCms.Net.Model.ViewModels.DTO;
|
|
using CoreCms.Net.Utility.Extensions;
|
|
using CoreCms.Net.Utility.Helper;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using SqlSugar;
|
|
|
|
namespace CoreCms.Net.Web.WebApi.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 订单调用接口数据
|
|
/// </summary>
|
|
[Route("api/[controller]/[action]")]
|
|
[ApiController]
|
|
public class OrderController : ControllerBase
|
|
{
|
|
private readonly IHttpContextUser _user;
|
|
private readonly ICoreCmsOrderServices _orderServices;
|
|
private readonly ICoreCmsBillAftersalesServices _aftersalesServices;
|
|
private readonly ICoreCmsSettingServices _settingServices;
|
|
private readonly ICoreCmsAreaServices _areaServices;
|
|
private readonly ICoreCmsBillReshipServices _reshipServices;
|
|
private readonly ICoreCmsShipServices _shipServices;
|
|
private readonly ICoreCmsBillDeliveryServices _billDeliveryServices;
|
|
private readonly ICoreCmsLogisticsServices _logisticsServices;
|
|
private readonly ICoreCmsGoodsServices _goodsServices;
|
|
private readonly ICoreCmsStoreServices _storeServices;
|
|
private readonly ICoreCmsOrderDistributionModelServices _orderDistributionModelServices;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
public OrderController(IHttpContextUser user
|
|
, ICoreCmsOrderServices orderServices
|
|
, ICoreCmsBillAftersalesServices aftersalesServices
|
|
, ICoreCmsSettingServices settingServices
|
|
, ICoreCmsAreaServices areaServices
|
|
, ICoreCmsBillReshipServices reshipServices, ICoreCmsShipServices shipServices
|
|
, ICoreCmsBillDeliveryServices billDeliveryServices, ICoreCmsLogisticsServices logisticsServices, ICoreCmsGoodsServices goodsServices, ICoreCmsStoreServices storeServices, ICoreCmsOrderDistributionModelServices orderDistributionModelServices)
|
|
{
|
|
_user = user;
|
|
_orderServices = orderServices;
|
|
_aftersalesServices = aftersalesServices;
|
|
_settingServices = settingServices;
|
|
_areaServices = areaServices;
|
|
_reshipServices = reshipServices;
|
|
_shipServices = shipServices;
|
|
_billDeliveryServices = billDeliveryServices;
|
|
_logisticsServices = logisticsServices;
|
|
_goodsServices = goodsServices;
|
|
_storeServices = storeServices;
|
|
_orderDistributionModelServices = orderDistributionModelServices;
|
|
}
|
|
|
|
|
|
//公共接口====================================================================================================
|
|
|
|
|
|
//验证接口====================================================================================================
|
|
|
|
#region 获取不同类型营销下单支持的配送方式==================================================
|
|
/// <summary>
|
|
/// 获取不同类型营销下单支持的配送方式
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> GetOrderDistributionModel([FromBody] FMIntId entity)
|
|
{
|
|
var jm = new WebApiCallBack() { status = true };
|
|
|
|
var cache = await _orderDistributionModelServices.GetCaChe();
|
|
var model = cache.Find(p => p.orderType == entity.id);
|
|
if (model == null)
|
|
{
|
|
jm.data = new
|
|
{
|
|
isOpenMailing = true,
|
|
isOpenHomeDelivery = true,
|
|
isOpenSelfDelivery = true
|
|
};
|
|
}
|
|
else
|
|
{
|
|
jm.data = new
|
|
{
|
|
model.isOpenMailing,
|
|
model.isOpenHomeDelivery,
|
|
model.isOpenSelfDelivery
|
|
};
|
|
}
|
|
|
|
return jm;
|
|
}
|
|
#endregion
|
|
|
|
#region 发票模糊查询==================================================
|
|
/// <summary>
|
|
/// 发票模糊查询
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> GetTaxCode([FromBody] GetTaxCodePost entity)
|
|
{
|
|
var jm = await _orderServices.GetTaxCode(entity.name);
|
|
return jm;
|
|
}
|
|
#endregion
|
|
|
|
#region 创建订单==================================================
|
|
/// <summary>
|
|
/// 创建订单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> CreateOrder([FromBody] CreateOrder entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
var type = entity.receiptType;
|
|
if (type == (int)GlobalEnumVars.OrderReceiptType.Logistics || type == (int)GlobalEnumVars.OrderReceiptType.IntraCityService)
|
|
{
|
|
//收货地址id
|
|
if (entity.ushipId == 0)
|
|
{
|
|
jm.data = 13001;
|
|
jm.msg = GlobalErrorCodeVars.Code13001;
|
|
}
|
|
}
|
|
else if (type == (int)GlobalEnumVars.OrderReceiptType.SelfDelivery)
|
|
{
|
|
//提货门店
|
|
if (entity.storeId == 0)
|
|
{
|
|
jm.data = 13001;
|
|
jm.msg = GlobalErrorCodeVars.Code13001;
|
|
}
|
|
//提货人姓名 提货人电话
|
|
if (string.IsNullOrEmpty(entity.ladingName))
|
|
{
|
|
jm.data = 13001;
|
|
jm.msg = "请输入姓名";
|
|
}
|
|
if (string.IsNullOrEmpty(entity.ladingMobile))
|
|
{
|
|
jm.data = 13001;
|
|
jm.msg = "请输入电话";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
jm.data = 13001;
|
|
jm.msg = "未查询到配送方式";
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(entity.cartIds))
|
|
{
|
|
jm.data = 10000;
|
|
jm.msg = GlobalErrorCodeVars.Code10000;
|
|
}
|
|
jm = await _orderServices.ToAdd(_user.ID, entity.orderType, entity.cartIds, entity.receiptType,
|
|
entity.ushipId, entity.storeId, entity.ladingName, entity.ladingMobile, entity.memo,
|
|
entity.point, entity.couponCode, entity.source, entity.scene, entity.taxType, entity.taxName,
|
|
entity.taxCode, entity.objectId, entity.teamId);
|
|
jm.otherData = entity;
|
|
|
|
return jm;
|
|
}
|
|
#endregion
|
|
|
|
#region 订单预览==================================================
|
|
/// <summary>
|
|
/// 订单预览
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> OrderDetails([FromBody] FMStringId entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
var userId = _user.ID;
|
|
if ((string)entity.data == "merchant")
|
|
{
|
|
var store = await _storeServices.GetStoreByUserId(_user.ID);
|
|
if (store == null)
|
|
{
|
|
jm.status = false;
|
|
jm.msg = "你不是店员";
|
|
return jm;
|
|
}
|
|
else
|
|
{
|
|
userId = 0;
|
|
}
|
|
}
|
|
jm = await _orderServices.GetOrderInfoByOrderId(entity.id, userId);
|
|
return jm;
|
|
}
|
|
#endregion
|
|
|
|
#region 获取订单不同状态的数量==================================================
|
|
/// <summary>
|
|
/// 获取订单不同状态的数量
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> GetOrderStatusNum([FromBody] GetOrderStatusNumPost entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
if (string.IsNullOrEmpty(entity.ids))
|
|
{
|
|
jm.msg = "请提交要查询的订单统计类型";
|
|
}
|
|
var ids = CommonHelper.StringToIntArray(entity.ids);
|
|
jm = await _orderServices.GetOrderStatusNum(_user.ID, ids, entity.isAfterSale);
|
|
return jm;
|
|
|
|
}
|
|
#endregion
|
|
|
|
#region 获取个人订单列表=======================================================
|
|
|
|
/// <summary>
|
|
/// 获取个人订单列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> GetOrderList([FromBody] GetOrderListPost entity)
|
|
{
|
|
var jm = await _orderServices.GetOrderList(entity.status, _user.ID, entity.page, entity.limit);
|
|
return jm;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 取消订单====================================================
|
|
|
|
/// <summary>
|
|
/// 取消订单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> CancelOrder([FromBody] FMStringId entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
if (string.IsNullOrEmpty(entity.id))
|
|
{
|
|
jm.msg = "请提交要取消的订单号";
|
|
return jm;
|
|
}
|
|
var ids = entity.id.Split(",");
|
|
jm = await _orderServices.CancelOrder(ids, _user.ID);
|
|
return jm;
|
|
|
|
}
|
|
#endregion
|
|
|
|
#region 删除订单====================================================
|
|
|
|
/// <summary>
|
|
/// 删除订单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> DeleteOrder([FromBody] FMStringId entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
if (string.IsNullOrEmpty(entity.id))
|
|
{
|
|
jm.msg = "请提交要取消的订单号";
|
|
return jm;
|
|
}
|
|
var ids = entity.id.Split(",");
|
|
jm.status = await _orderServices.DeleteAsync(p => ids.Contains(p.orderId) && p.userId == _user.ID);
|
|
jm.msg = jm.status ? "删除成功" : "删除失败";
|
|
return jm;
|
|
|
|
}
|
|
#endregion
|
|
|
|
#region 确认签收订单====================================================
|
|
/// <summary>
|
|
/// 确认签收订单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> OrderConfirm([FromBody] FMStringId entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
if (string.IsNullOrEmpty(entity.id))
|
|
{
|
|
jm.msg = "请提交要确认签收的订单号";
|
|
return jm;
|
|
}
|
|
jm = await _orderServices.ConfirmOrder(entity.id, Convert.ToInt32(entity.data));
|
|
return jm;
|
|
|
|
}
|
|
#endregion
|
|
|
|
#region 添加售后单=======================================================
|
|
|
|
/// <summary>
|
|
/// 添加售后单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> AddAftersales([FromBody] ToAddBillAfterSalesPost entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
jm.otherData = entity;
|
|
if (string.IsNullOrEmpty(entity.orderId))
|
|
{
|
|
jm.msg = GlobalErrorCodeVars.Code13100;
|
|
jm.code = 13100;
|
|
return jm;
|
|
}
|
|
if (entity.type == 0)
|
|
{
|
|
jm.msg = GlobalErrorCodeVars.Code10051;
|
|
jm.code = 10051;
|
|
return jm;
|
|
}
|
|
jm = await _aftersalesServices.ToAdd(_user.ID, entity.orderId, entity.type, entity.items, entity.images,
|
|
entity.reason, entity.refund);
|
|
return jm;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 获取售后单列表=======================================================
|
|
|
|
/// <summary>
|
|
/// 获取售后单列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> AftersalesList([FromBody] FMPageByStringId entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
jm.status = true;
|
|
jm.msg = "数据获取成功";
|
|
|
|
var where = PredicateBuilder.True<CoreCmsBillAftersales>();
|
|
where = where.And(p => p.userId == _user.ID);
|
|
if (!string.IsNullOrEmpty(entity.order))
|
|
{
|
|
where = where.And(p => p.orderId == entity.id);
|
|
}
|
|
var data = await _aftersalesServices.QueryPageAsync(where, p => p.createTime, OrderByType.Desc, entity.page, entity.limit);
|
|
|
|
jm.data = new
|
|
{
|
|
list = data,
|
|
page = data.PageIndex,
|
|
totalPage = data.TotalPages,
|
|
hasNextPage = data.HasNextPage
|
|
};
|
|
|
|
return jm;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 获取单个售后单详情
|
|
|
|
/// <summary>
|
|
/// 获取售后单列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> Aftersalesinfo([FromBody] FMStringId entity)
|
|
{
|
|
var jm = new WebApiCallBack { status = true, msg = "数据获取成功" };
|
|
|
|
var info = await _aftersalesServices.GetInfo(entity.id, _user.ID);
|
|
|
|
var allConfigs = await _settingServices.GetConfigDictionaries();
|
|
|
|
var reshipAddress = CommonHelper.GetConfigDictionary(allConfigs, SystemSettingConstVars.ReshipAddress);
|
|
var reshipArea = string.Empty;
|
|
var reshipId = CommonHelper.GetConfigDictionary(allConfigs, SystemSettingConstVars.ReshipAreaId).ObjectToInt(0);
|
|
if (reshipId > 0)
|
|
{
|
|
var result = await _areaServices.GetAreaFullName(reshipId);
|
|
if (result.status)
|
|
{
|
|
reshipArea = result.data.ToString();
|
|
}
|
|
}
|
|
var reshipMobile = CommonHelper.GetConfigDictionary(allConfigs, SystemSettingConstVars.ReshipMobile);
|
|
var reshipName = CommonHelper.GetConfigDictionary(allConfigs, SystemSettingConstVars.ReshipName);
|
|
var reship = new
|
|
{
|
|
reshipAddress,
|
|
reshipArea,
|
|
reshipMobile,
|
|
reshipName
|
|
};
|
|
|
|
jm.data = new
|
|
{
|
|
info,
|
|
reship
|
|
};
|
|
return jm;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 提交售后发货快递信息
|
|
|
|
/// <summary>
|
|
/// 提交售后发货快递信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> SendReship([FromBody] FMBillReshipForSendReshipPost entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
if (string.IsNullOrEmpty(entity.reshipId))
|
|
{
|
|
jm.data = jm.msg = GlobalErrorCodeVars.Code13212;
|
|
return jm;
|
|
}
|
|
else if (string.IsNullOrEmpty(entity.logiCode))
|
|
{
|
|
jm.data = jm.msg = GlobalErrorCodeVars.Code13213;
|
|
return jm;
|
|
}
|
|
else if (string.IsNullOrEmpty(entity.logiNo))
|
|
{
|
|
jm.data = jm.msg = GlobalErrorCodeVars.Code13214;
|
|
return jm;
|
|
}
|
|
|
|
|
|
var model = await _reshipServices.QueryByIdAsync(entity.reshipId);
|
|
if (model == null)
|
|
{
|
|
jm.data = jm.msg = GlobalErrorCodeVars.Code13211;
|
|
return jm;
|
|
}
|
|
|
|
var up = await _reshipServices.UpdateAsync(
|
|
p => new CoreCmsBillReship()
|
|
{
|
|
logiCode = entity.logiCode,
|
|
logiNo = entity.logiNo,
|
|
status = (int)GlobalEnumVars.BillReshipStatus.运输中
|
|
}, p => p.reshipId == entity.reshipId);
|
|
|
|
jm.status = true;
|
|
jm.msg = "数据保存成功";
|
|
|
|
return jm;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 获取配送方式列表=======================================================
|
|
|
|
/// <summary>
|
|
/// 获取配送方式列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public WebApiCallBack GetShip([FromBody] FMIntId entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
jm.msg = "暂未设置配送方式";
|
|
|
|
var ship = _shipServices.GetShip(entity.id);
|
|
if (ship != null)
|
|
{
|
|
jm.status = true;
|
|
jm.data = ship;
|
|
jm.msg = "获取成功";
|
|
}
|
|
return jm;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 前台物流查询接口=======================================================
|
|
|
|
/// <summary>
|
|
/// 前台物流查询接口
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Authorize]
|
|
public async Task<WebApiCallBack> LogisticsByApi([FromBody] FMApiLogisticsByApiPost entity)
|
|
{
|
|
var jm = new WebApiCallBack();
|
|
|
|
if (string.IsNullOrEmpty(entity.code) || string.IsNullOrEmpty(entity.no))
|
|
{
|
|
jm.msg = GlobalErrorCodeVars.Code13225;
|
|
return jm;
|
|
}
|
|
|
|
var systemLogistics = SystemSettingDictionary.GetSystemLogistics();
|
|
foreach (var p in systemLogistics)
|
|
{
|
|
if (entity.code == p.sKey)
|
|
{
|
|
jm.msg = p.sDescription + "不支持轨迹查询";
|
|
return jm;
|
|
}
|
|
}
|
|
|
|
jm = await _logisticsServices.ExpressPoll(entity.code, entity.no, entity.mobile);
|
|
return jm;
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
} |