You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ds8-solution-pro/ds-wms-service/DS.WMS.Core/Op/Method/BusinessOrderContactService.cs

171 lines
6.5 KiB
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using DS.Module.Core.Extensions;
using DS.Module.SqlSugar;
using DS.Module.UserModule;
using DS.WMS.Core.Code.Dtos;
using DS.WMS.Core.Info.Dtos;
using DS.WMS.Core.Info.Entity;
using DS.WMS.Core.Map.Entity;
using DS.WMS.Core.Op.Dtos;
using DS.WMS.Core.Op.Entity;
using DS.WMS.Core.Op.Interface;
using DS.WMS.Core.TaskPlat.Dtos;
using Mapster;
using Microsoft.Extensions.DependencyInjection;
using NLog;
using Org.BouncyCastle.Ocsp;
using SqlSugar;
using Logger = NLog.Logger;
namespace DS.WMS.Core.Op.Method
{
public class BusinessOrderContactService: IBusinessOrderContactService
{
private readonly IServiceProvider _serviceProvider;
private readonly ISqlSugarClient db;
private readonly IUser user;
private readonly ISaasDbService saasService;
private static readonly Logger _logger = LogManager.GetCurrentClassLogger();
private readonly ISeaExportCommonService seaComService;
/// <summary>
///
/// </summary>
/// <param name="serviceProvider"></param>
public BusinessOrderContactService(IServiceProvider serviceProvider)
{
_serviceProvider = serviceProvider;
db = _serviceProvider.GetRequiredService<ISqlSugarClient>();
user = _serviceProvider.GetRequiredService<IUser>();
saasService = _serviceProvider.GetRequiredService<ISaasDbService>();
}
public DataResult<List<BusinessOrderContactRes>> GetListByPage(PageRequest request)
{
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
//序列化查询条件
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
var data = tenantDb.Queryable<BusinessOrderContact>()
.Where(whereList)
.Select<BusinessOrderContactRes>().ToQueryPage(request.PageCondition);
return data;
}
public async Task<DataResult> EditBusinessOrderContact(BusinessOrderContactReq req)
{
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
if (req.Id == 0)
{
var data = req.Adapt<BusinessOrderContact>();
var entity = await tenantDb.Insertable(data).ExecuteReturnEntityAsync();
// 处理客户联系人
DealClientContact(req, tenantDb);
return await Task.FromResult(DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess));
}
else
{
var info = await tenantDb.Queryable<BusinessOrderContact>().Where(x => x.Id == req.Id).FirstAsync();
info = req.Adapt(info);
await tenantDb.Updateable(info).IgnoreColumns(ignoreAllNullColumns: true).IgnoreColumns(it => new
{
it.BusinessId,
}).ExecuteCommandAsync();
// 处理客户联系人
DealClientContact(req, tenantDb);
return await Task.FromResult(DataResult.Successed("更新成功!", MultiLanguageConst.DataUpdateSuccess));
}
}
/// <summary>
/// 处理客户联系人
/// </summary>
/// <param name="req"></param>
/// <param name="tenantDb"></param>
private async void DealClientContact(BusinessOrderContactReq req, SqlSugarScopeProvider tenantDb)
{
if (req.CustomerContactId == 0)
{
var data = new InfoClientContact()
{
ClientId = req.CustomerId,
Name = req.Name,
Email = req.Email,
Mobile = req.Mobile,
Tel = req.Tel,
Note = req.Note,
};
await tenantDb.Insertable(data).ExecuteCommandAsync();
}
else
{
var contact = await tenantDb.Queryable<InfoClientContact>().Where(x => x.Id == req.CustomerContactId).FirstAsync();
if (contact.IsNotNull())
{
if (contact.Name == req.Name.Trim())
{
contact.Email = req.Email;
contact.Mobile = req.Mobile;
contact.Tel = req.Tel;
await tenantDb.Updateable(contact).ExecuteCommandAsync();
}
else
{
var data = new InfoClientContact()
{
ClientId = req.CustomerId,
Name = req.Name,
Email = req.Email,
Mobile = req.Mobile,
Tel = req.Tel,
Note = req.Note,
};
await tenantDb.Insertable(data).ExecuteCommandAsync();
}
}
}
}
public DataResult<BusinessOrderContactRes> GetBusinessOrderContactInfo(string id)
{
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
var data = tenantDb.Queryable<BusinessOrderContact>()
.Where(a => a.Id == long.Parse(id))
.Select<BusinessOrderContactRes>()
.First();
return DataResult<BusinessOrderContactRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
}
public DataResult BatchDelBusinessOrderContact(IdModel req)
{
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
var list = tenantDb.Queryable<BusinessOrderContact>().Where(x => req.Ids.Contains(x.Id)).ToList();
if (list.Count > 0)
{
tenantDb.Deleteable(list).ExecuteCommand();
}
return DataResult.Successed("删除成功!", MultiLanguageConst.DataDelSuccess);
}
public DataResult<List<ClientContactRes>> GetOrderContactListByClientId(string id)
{
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
var data = tenantDb.Queryable<InfoClientContact>()
.Where(x => x.ClientId == long.Parse(id) && x.Status == StatusEnum.Enable)
.Select<ClientContactRes>()
.ToList();
return DataResult<List<ClientContactRes>>.Success(data, MultiLanguageConst.DataQuerySuccess);
}
}
}