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.
80 lines
3.0 KiB
C#
80 lines
3.0 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.SqlSugar;
|
|
using DS.Module.UserModule;
|
|
using DS.WMS.Core.Op.Dtos;
|
|
using DS.WMS.Core.Op.Entity;
|
|
using DS.WMS.Core.Op.Interface;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using SqlSugar;
|
|
using DS.Module.Core.Extensions;
|
|
using Mapster;
|
|
using Org.BouncyCastle.Ocsp;
|
|
|
|
namespace DS.WMS.Core.Op.Method
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class BookingGoodsStatusConfigService: IBookingGoodsStatusConfigService
|
|
{
|
|
private readonly IServiceProvider _serviceProvider;
|
|
private readonly ISqlSugarClient db;
|
|
private readonly IUser user;
|
|
private readonly ISaasDbService saasService;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="serviceProvider"></param>
|
|
public BookingGoodsStatusConfigService(IServiceProvider serviceProvider)
|
|
{
|
|
_serviceProvider = serviceProvider;
|
|
db = _serviceProvider.GetRequiredService<ISqlSugarClient>();
|
|
user = _serviceProvider.GetRequiredService<IUser>();
|
|
saasService = _serviceProvider.GetRequiredService<ISaasDbService>();
|
|
}
|
|
|
|
public DataResult EditBookingGoodsStatusConfig(BookingGoodsStatusConfigReq req)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
if (req.Id == 0)
|
|
{
|
|
var data = req.Adapt<BookingGoodsStatusConfig>();
|
|
|
|
var entity = tenantDb.Insertable(data).ExecuteReturnEntity();
|
|
|
|
return DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess);
|
|
}
|
|
else
|
|
{
|
|
var info = tenantDb.Queryable<BookingGoodsStatusConfig>().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<BookingGoodsStatusConfigRes> GetBookingGoodsStatusConfigInfo(string id)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
var data = tenantDb.Queryable<BookingGoodsStatusConfig>()
|
|
.Where(a => a.Id == long.Parse(id))
|
|
.Select<BookingGoodsStatusConfigRes>()
|
|
.First();
|
|
return DataResult<BookingGoodsStatusConfigRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
|
|
}
|
|
|
|
public DataResult<List<BookingGoodsStatusConfigRes>> GetListByPage(PageRequest request)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
//序列化查询条件
|
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
var data = tenantDb.Queryable<BookingGoodsStatusConfig>()
|
|
.Where(whereList)
|
|
.Select<BookingGoodsStatusConfigRes>().ToQueryPage(request.PageCondition);
|
|
return data;
|
|
}
|
|
}
|
|
}
|