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.
139 lines
5.1 KiB
C#
139 lines
5.1 KiB
C#
using AngleSharp.Dom;
|
|
using Castle.Core.Resource;
|
|
using DS.Module.Core;
|
|
using DS.Module.Core.Extensions;
|
|
using DS.Module.SqlSugar;
|
|
using DS.Module.UserModule;
|
|
using DS.WMS.ContainerManagement.Info.Dtos;
|
|
using DS.WMS.ContainerManagement.Info.Entity;
|
|
using DS.WMS.ContainerManagement.Info.Interface;
|
|
using DS.WMS.Core.Fee.Entity;
|
|
using DS.WMS.Core.Info.Dtos;
|
|
using DS.WMS.Core.Info.Entity;
|
|
using DS.WMS.Core.Info.Interface;
|
|
using DS.WMS.Core.Op.Entity;
|
|
using DS.WMS.Core.Op.View;
|
|
using DS.WMS.Core.Sys.Entity;
|
|
using Mapster;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Method;
|
|
|
|
public class CM_BaseInfoService : ICM_BaseInfoService
|
|
{
|
|
private readonly IServiceProvider _serviceProvider;
|
|
private readonly ISqlSugarClient db;
|
|
private readonly IUser user;
|
|
private readonly ISaasDbService saasService;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="serviceProvider"></param>
|
|
public CM_BaseInfoService(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 async Task<DataResult<List<CM_BaseInfoRes>>> GetListByPage(PageRequest request)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
//序列化查询条件
|
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
var data = tenantDb.Queryable<CM_BaseInfo>()
|
|
.Where(whereList)
|
|
.Select<CM_BaseInfoRes>().ToQueryPage(request.PageCondition);
|
|
return data;
|
|
}
|
|
//public async Task<DataResult<List<CM_CurrentStateRes>>> GetListByPage(PageRequest request)
|
|
//{
|
|
// var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
// //序列化查询条件
|
|
// var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
// var data = await tenantDb.Queryable<CM_CurrentStateRes>()
|
|
// .Where(whereList)
|
|
// .ToQueryPageAsync(request.PageCondition);
|
|
// return data;
|
|
//}
|
|
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="req"></param>
|
|
/// <returns></returns>
|
|
public DataResult EditCM_BaseInfo(CM_BaseInfoReq req)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
if (req.Id == 0)
|
|
{
|
|
//if (tenantDb.Queryable<InfoClientAccountDate>().Where(x => x.AccountType == req.AccountType &&
|
|
// x.AccountType == req.AccountType &&
|
|
// x.SaleId == req.SaleId &&
|
|
// x.BeginDate == req.BeginDate &&
|
|
// x.EndDate == req.EndDate).Any())
|
|
//{
|
|
// return DataResult.Failed("客户账期信息已存在!", MultiLanguageConst.ClientAccountDateExist);
|
|
//}
|
|
|
|
var data = req.Adapt<CM_BaseInfo>();
|
|
|
|
var entity = tenantDb.Insertable(data).ExecuteReturnEntity();
|
|
|
|
var curr = tenantDb.Queryable<CM_CurrentState>().Where(x => x.CtnBaseinfoId == entity.Id).First();
|
|
|
|
if (curr != null && curr.Cntrno != entity.Cntrno)
|
|
{
|
|
curr.Cntrno = entity.Cntrno;
|
|
tenantDb.Updateable(curr).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommand();
|
|
}
|
|
|
|
return DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess);
|
|
}
|
|
else
|
|
{
|
|
var info = tenantDb.Queryable<CM_BaseInfo>().Where(x => x.Id == req.Id).First();
|
|
|
|
info = req.Adapt(info);
|
|
|
|
tenantDb.Updateable(info).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommand();
|
|
|
|
|
|
var curr = tenantDb.Queryable<CM_CurrentState>().Where(x => x.CtnBaseinfoId == info.Id).First();
|
|
|
|
if (curr != null && curr.Cntrno != info.Cntrno)
|
|
{
|
|
curr.Cntrno = info.Cntrno;
|
|
tenantDb.Updateable(curr).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommand();
|
|
}
|
|
|
|
return DataResult.Successed("更新成功!", MultiLanguageConst.DataUpdateSuccess);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 详情
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
public DataResult<CM_BaseInfoRes> GetCM_BaseInfo(string id)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
var data = tenantDb.Queryable<CM_BaseInfo>()
|
|
.Where(a => a.Id == long.Parse(id))
|
|
.Select<CM_BaseInfoRes>()
|
|
.First();
|
|
return DataResult<CM_BaseInfoRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
|
|
}
|
|
|
|
|
|
} |