|
|
|
using DS.Module.Core;
|
|
|
|
using DS.Module.Core.Extensions;
|
|
|
|
using DS.Module.SqlSugar;
|
|
|
|
using DS.Module.UserModule;
|
|
|
|
using DS.WMS.Core.Info.Dtos;
|
|
|
|
using DS.WMS.Core.Info.Entity;
|
|
|
|
using DS.WMS.Core.Info.Interface;
|
|
|
|
using DS.WMS.Core.System.Entity;
|
|
|
|
using Mapster;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Info.Method;
|
|
|
|
|
|
|
|
public class ClientInfoService : IClientInfoService
|
|
|
|
{
|
|
|
|
private readonly IServiceProvider _serviceProvider;
|
|
|
|
private readonly ISqlSugarClient db;
|
|
|
|
private readonly IUser user;
|
|
|
|
private readonly ISaasDbService saasService;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="serviceProvider"></param>
|
|
|
|
public ClientInfoService(IServiceProvider serviceProvider)
|
|
|
|
{
|
|
|
|
_serviceProvider = serviceProvider;
|
|
|
|
db = _serviceProvider.GetRequiredService<ISqlSugarClient>();
|
|
|
|
user = _serviceProvider.GetRequiredService<IUser>();
|
|
|
|
saasService = _serviceProvider.GetRequiredService<ISaasDbService>();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 列表
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public DataResult<List<ClientInfoRes>> GetListByPage(PageRequest request)
|
|
|
|
{
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
//序列化查询条件
|
|
|
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
|
|
var data = tenantDb.Queryable<InfoClient>()
|
|
|
|
.Where(whereList)
|
|
|
|
.Select<ClientInfoRes>().ToQueryPage(request.PageCondition);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 编辑
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="req"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public DataResult EditClientInfo(ClientInfoReq req)
|
|
|
|
{
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
if (req.Id == 0)
|
|
|
|
{
|
|
|
|
if (tenantDb.Queryable<InfoClient>().Where(x => x.CodeName == req.CodeName).Any())
|
|
|
|
{
|
|
|
|
return DataResult.Failed("客户信息已存在!", MultiLanguageConst.ClientInfoExist);
|
|
|
|
}
|
|
|
|
|
|
|
|
var data = req.Adapt<InfoClient>();
|
|
|
|
var tag = req.ClientTag.Adapt<InfoClientTag>();
|
|
|
|
|
|
|
|
var entity = tenantDb.Insertable(data).ExecuteReturnEntity();
|
|
|
|
tag.ClientId = entity.Id;
|
|
|
|
tenantDb.Insertable(tag).ExecuteCommand();
|
|
|
|
return DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var info = tenantDb.Queryable<InfoClient>().Where(x => x.Id == req.Id).First();
|
|
|
|
var tag = tenantDb.Queryable<InfoClientTag>().Where(x => x.Id == req.ClientTag.Id).First();
|
|
|
|
|
|
|
|
info = req.Adapt(info);
|
|
|
|
tag = req.ClientTag.Adapt(tag);
|
|
|
|
|
|
|
|
tenantDb.Updateable(info).IgnoreColumns(ignoreAllNullColumns: true).EnableDiffLogEvent().ExecuteCommand();
|
|
|
|
tenantDb.Updateable(tag).IgnoreColumns(ignoreAllNullColumns: true).EnableDiffLogEvent().ExecuteCommand();
|
|
|
|
return DataResult.Successed("更新成功!", MultiLanguageConst.DataUpdateSuccess);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 详情
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="id"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public DataResult<ClientInfoRes> GetClientInfo(string id)
|
|
|
|
{
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
var tag = tenantDb.Queryable<InfoClientTag>().Select<ClientTagRes>()
|
|
|
|
.First(a => a.ClientId == long.Parse(id));
|
|
|
|
var data = tenantDb.Queryable<InfoClient>()
|
|
|
|
.Where(a => a.Id == long.Parse(id))
|
|
|
|
.Select<ClientInfoRes>()
|
|
|
|
// .Select(x => new ClientInfoRes()
|
|
|
|
// {
|
|
|
|
// ClientTag = tag
|
|
|
|
// })
|
|
|
|
.First();
|
|
|
|
data.ClientTag = tag;
|
|
|
|
return DataResult<ClientInfoRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
|
|
|
|
}
|
|
|
|
}
|