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.
122 lines
5.1 KiB
C#
122 lines
5.1 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.Entity;
|
|
using DS.WMS.Core.Info.Entity;
|
|
using DS.WMS.Core.Map.Dtos;
|
|
using DS.WMS.Core.Map.Entity;
|
|
using DS.WMS.Core.Map.Interface;
|
|
using Mapster;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Map.Method
|
|
{
|
|
public class RelationLaneAndPortService : IRelationLaneAndPortService
|
|
{
|
|
private readonly IServiceProvider _serviceProvider;
|
|
private readonly ISqlSugarClient db;
|
|
private readonly IUser user;
|
|
private readonly ISaasDbService saasService;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="serviceProvider"></param>
|
|
public RelationLaneAndPortService(IServiceProvider serviceProvider)
|
|
{
|
|
_serviceProvider = serviceProvider;
|
|
db = _serviceProvider.GetRequiredService<ISqlSugarClient>();
|
|
user = _serviceProvider.GetRequiredService<IUser>();
|
|
saasService = _serviceProvider.GetRequiredService<ISaasDbService>();
|
|
}
|
|
public DataResult BatchDelRelationLaneAndPort(IdModel req)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
var list = tenantDb.Queryable<RelationLaneAndPort>().Where(x => req.Ids.Contains(x.Id)).ToList();
|
|
;
|
|
if (list.Count > 0)
|
|
{
|
|
tenantDb.Deleteable(list).ExecuteCommand();
|
|
}
|
|
return DataResult.Successed("删除成功!", MultiLanguageConst.DataDelSuccess);
|
|
}
|
|
|
|
public DataResult DelRelationLaneAndPort(IdModel req)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
var info = tenantDb.Queryable<RelationLaneAndPort>().Where(x => x.Id == long.Parse(req.Id)).First();
|
|
if (info == null)
|
|
{
|
|
return DataResult.Failed("航线与港口关系信息不存在!", MultiLanguageConst.RelationLaneAndPortNotExist);
|
|
}
|
|
|
|
tenantDb.Deleteable(info).ExecuteCommand();
|
|
return DataResult.Successed("删除成功!", MultiLanguageConst.DataDelSuccess);
|
|
}
|
|
|
|
public DataResult EditRelationLaneAndPort(RelationLaneAndPortReq req)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
if (req.Id == 0)
|
|
{
|
|
|
|
if (tenantDb.Queryable<RelationLaneAndPort>().Where(x => x.LaneId == req.LaneId && x.PortId == req.PortId && x.Module == req.Module).Any())
|
|
{
|
|
return DataResult.Failed("航线与港口关系信息已存在!", MultiLanguageConst.RelationLaneAndPortExist);
|
|
}
|
|
|
|
var data = req.Adapt<RelationLaneAndPort>();
|
|
|
|
var entity = tenantDb.Insertable(data).ExecuteReturnEntity();
|
|
|
|
return DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess);
|
|
}
|
|
else
|
|
{
|
|
var info = tenantDb.Queryable<RelationLaneAndPort>().Where(x => x.Id == req.Id).First();
|
|
|
|
info = req.Adapt(info);
|
|
|
|
tenantDb.Updateable(info).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommand();
|
|
return DataResult.Successed("更新成功!", MultiLanguageConst.DataUpdateSuccess);
|
|
}
|
|
}
|
|
|
|
public DataResult<List<RelationLaneAndPortRes>> GetListByPage(PageRequest request)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
//序列化查询条件
|
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
var data = tenantDb.Queryable<RelationLaneAndPort>()
|
|
.Where(whereList)
|
|
.Select<RelationLaneAndPortRes>()
|
|
.Mapper(it =>
|
|
{
|
|
it.LaneName = tenantDb.Queryable<CodeLanes>().Where(x => x.Id == it.LaneId).Select(n => n.LaneName).First();
|
|
it.PortName = tenantDb.Queryable<CodePort>().Where(x => x.Id == it.PortId).Select(n => n.CnName).First();
|
|
|
|
}
|
|
).ToQueryPage(request.PageCondition);
|
|
return data;
|
|
}
|
|
|
|
public DataResult<RelationLaneAndPortRes> GetRelationLaneAndPortInfo(string id)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
var data = tenantDb.Queryable<RelationLaneAndPort>()
|
|
.Where(a => a.Id == long.Parse(id))
|
|
.Select<RelationLaneAndPortRes>()
|
|
.Mapper(it =>
|
|
{
|
|
it.LaneName = tenantDb.Queryable<CodeLanes>().Where(x => x.Id == it.LaneId).Select(n => n.LaneName).First();
|
|
it.PortName = tenantDb.Queryable<CodePort>().Where(x => x.Id == it.PortId).Select(n => n.CnName).First();
|
|
}
|
|
)
|
|
.First();
|
|
return DataResult<RelationLaneAndPortRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
|
|
}
|
|
}
|
|
}
|