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.
115 lines
4.3 KiB
C#
115 lines
4.3 KiB
C#
4 months ago
|
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.Info.Dtos;
|
||
|
using DS.WMS.Core.Info.Entity;
|
||
|
using DS.WMS.Core.Info.Interface;
|
||
|
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;
|
||
|
|
||
4 months ago
|
public class CM_BaseInfoService : ICM_BaseInfoService
|
||
4 months ago
|
{
|
||
|
private readonly IServiceProvider _serviceProvider;
|
||
|
private readonly ISqlSugarClient db;
|
||
|
private readonly IUser user;
|
||
|
private readonly ISaasDbService saasService;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
/// <param name="serviceProvider"></param>
|
||
4 months ago
|
public CM_BaseInfoService(IServiceProvider serviceProvider)
|
||
4 months ago
|
{
|
||
|
_serviceProvider = serviceProvider;
|
||
|
db = _serviceProvider.GetRequiredService<ISqlSugarClient>();
|
||
|
user = _serviceProvider.GetRequiredService<IUser>();
|
||
|
saasService = _serviceProvider.GetRequiredService<ISaasDbService>();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 列表
|
||
|
/// </summary>
|
||
|
/// <param name="request"></param>
|
||
|
/// <returns></returns>
|
||
4 months ago
|
public async Task<DataResult<List<CM_BaseInfoRes>>> GetListByPage(PageRequest request)
|
||
4 months ago
|
{
|
||
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
||
|
//序列化查询条件
|
||
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
||
4 months ago
|
var data = tenantDb.Queryable<CM_BaseInfo>()
|
||
4 months ago
|
.Where(whereList)
|
||
4 months ago
|
.Select<CM_BaseInfoRes>().ToQueryPage(request.PageCondition);
|
||
4 months ago
|
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>
|
||
4 months ago
|
public DataResult EditCM_BaseInfo(CM_BaseInfoReq req)
|
||
4 months ago
|
{
|
||
|
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);
|
||
|
//}
|
||
|
|
||
4 months ago
|
var data = req.Adapt<CM_BaseInfo>();
|
||
4 months ago
|
|
||
|
var entity = tenantDb.Insertable(data).ExecuteReturnEntity();
|
||
|
|
||
|
return DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
4 months ago
|
var info = tenantDb.Queryable<CM_BaseInfo>().Where(x => x.Id == req.Id).First();
|
||
4 months ago
|
|
||
|
info = req.Adapt(info);
|
||
|
|
||
|
tenantDb.Updateable(info).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommand();
|
||
|
return DataResult.Successed("更新成功!", MultiLanguageConst.DataUpdateSuccess);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 详情
|
||
|
/// </summary>
|
||
|
/// <param name="id"></param>
|
||
|
/// <returns></returns>
|
||
4 months ago
|
public DataResult<CM_BaseInfoRes> GetCM_BaseInfo(string id)
|
||
4 months ago
|
{
|
||
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
||
4 months ago
|
var data = tenantDb.Queryable<CM_BaseInfo>()
|
||
4 months ago
|
.Where(a => a.Id == long.Parse(id))
|
||
4 months ago
|
.Select<CM_BaseInfoRes>()
|
||
4 months ago
|
.First();
|
||
4 months ago
|
return DataResult<CM_BaseInfoRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
|
||
4 months ago
|
}
|
||
|
}
|