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.
228 lines
8.1 KiB
C#
228 lines
8.1 KiB
C#
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.Application.Dtos;
|
|
using DS.WMS.Core.Application.Entity;
|
|
using DS.WMS.Core;
|
|
using DS.WMS.Core.Info.Dtos;
|
|
using DS.WMS.Core.Info.Entity;
|
|
using DS.WMS.Core.Info.Interface;
|
|
using DS.WMS.Core.Invoice.Dtos;
|
|
using DS.WMS.Core.Op.View;
|
|
using DS.WMS.Core.Sys.Entity;
|
|
using Mapster;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Newtonsoft.Json;
|
|
using SqlSugar;
|
|
using DS.WMS.Core.Fee.Entity;
|
|
using DS.WMS.Core.Op.Entity;
|
|
using AngleSharp.Dom;
|
|
using NPOI.Util;
|
|
using DS.WMS.Core.Sys.Method;
|
|
using DS.WMS.Core.Sys.Interface;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Method;
|
|
|
|
//<TEntity> : FeeServiceBase, ISettlementService<TEntity> where TEntity : SettlementBase, new ()
|
|
public class CM_RentInService : CMServiceBase, ICM_RentInService
|
|
{
|
|
private readonly IServiceProvider _serviceProvider;
|
|
private readonly ISqlSugarClient db;
|
|
private readonly IUser user;
|
|
private readonly ISaasDbService saasService;
|
|
private readonly ICommonService commonService;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="serviceProvider"></param>
|
|
public CM_RentInService(IServiceProvider serviceProvider) : base(serviceProvider)
|
|
{
|
|
_serviceProvider = serviceProvider;
|
|
db = _serviceProvider.GetRequiredService<ISqlSugarClient>();
|
|
user = _serviceProvider.GetRequiredService<IUser>();
|
|
saasService = _serviceProvider.GetRequiredService<ISaasDbService>();
|
|
|
|
commonService = _serviceProvider.GetRequiredService<ICommonService>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
public async Task<DataResult<List<CM_RentInRes>>> GetListByPage(PageRequest request)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
//序列化查询条件
|
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
var data = tenantDb.Queryable<CM_RentIn>()
|
|
.Where(whereList)
|
|
.Select<CM_RentInRes>().ToQueryPage(request.PageCondition);
|
|
return data;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="req"></param>
|
|
/// <returns></returns>
|
|
public async Task<DataResult> EditCM_RentIn(CM_RentInReq req)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
if (req.Id == 0)
|
|
{
|
|
var data = req.Adapt<CM_RentIn>();
|
|
|
|
var sequence = commonService.GetSequenceNext<CM_RentIn>();
|
|
if (!sequence.Succeeded)
|
|
{
|
|
return await Task.FromResult(DataResult.Failed(sequence.Message, MultiLanguageConst.SequenceSetNotExist));
|
|
}
|
|
data.Billno = sequence.Data;
|
|
|
|
//var entity = tenantDb.Insertable(data).ExecuteReturnEntity();
|
|
var entity = await tenantDb.Insertable(data).ExecuteReturnEntityAsync();
|
|
|
|
if (req.BodyList.Count > 0)
|
|
{
|
|
//var ctnList = await tenantDb.Queryable<CM_RentIn_Detail>().Where(x => x.pid == req.Id.ToString()).ToListAsync();
|
|
foreach (var item in req.BodyList)
|
|
{
|
|
item.Id = 0;
|
|
item.Pid = entity.Id;
|
|
var newdetail = item.Adapt<CM_RentIn_Detail>();
|
|
await tenantDb.Insertable(newdetail).ExecuteCommandAsync();
|
|
}
|
|
}
|
|
|
|
//return DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess);
|
|
return await Task.FromResult(DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess));
|
|
}
|
|
else
|
|
{
|
|
var info = await tenantDb.Queryable<CM_RentIn>().Where(x => x.Id == req.Id).FirstAsync();
|
|
|
|
info = req.Adapt(info);
|
|
|
|
await tenantDb.Updateable(info).ExecuteCommandAsync();
|
|
|
|
if (req.BodyList.Count > 0)
|
|
{
|
|
var _BodyList = await tenantDb.Queryable<CM_RentIn_Detail>().Where(x => x.Pid == req.Id).ToListAsync();
|
|
foreach (var item in req.BodyList)
|
|
{
|
|
if (item.Id == 0)
|
|
{
|
|
//item.Id = 0;
|
|
item.Pid = info.Id;
|
|
var newdetail = item.Adapt<CM_RentIn_Detail>();
|
|
await tenantDb.Insertable(newdetail).ExecuteCommandAsync();
|
|
}
|
|
else
|
|
{
|
|
var updrec = _BodyList.First(x => x.Id == item.Id);
|
|
updrec = item.Adapt(updrec);
|
|
await tenantDb.Updateable(updrec).ExecuteCommandAsync();
|
|
}
|
|
}
|
|
}
|
|
|
|
return await Task.FromResult(DataResult.Successed("更新成功!", MultiLanguageConst.DataUpdateSuccess));
|
|
}
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 详情
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
public DataResult<CM_RentInRes> GetCM_RentIn(string id)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
var data = tenantDb.Queryable<CM_RentIn>()
|
|
.Where(a => a.Id == long.Parse(id))
|
|
.Select<CM_RentInRes>()
|
|
.First();
|
|
return DataResult<CM_RentInRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
|
|
}
|
|
|
|
#region 删除
|
|
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <param name="ids">费用记录ID</param>
|
|
/// <returns></returns>
|
|
public async Task<DataResult> DeleteCM_RentInAsync(params long[] ids)
|
|
{
|
|
|
|
foreach (var _id in ids) {
|
|
if (await IsLockedAsync(_id, BusinessType.CM_RentIn))
|
|
return DataResult.FailedWithDesc(nameof(MultiLanguageConst.FeeLocked));
|
|
}
|
|
|
|
//如果包含费用 不允许删除
|
|
var feeCount = await TenantDb.Queryable<FeeRecord>().Where(x => ids.Contains(x.BusinessId)).CountAsync();
|
|
|
|
if (feeCount > 0) {
|
|
return DataResult.FailedWithDesc(nameof(MultiLanguageConst.CM_FeeExist));
|
|
}
|
|
|
|
int result = await TenantDb.Deleteable<CM_RentIn>(x => ids.Contains(x.Id)).ExecuteCommandAsync();
|
|
|
|
if (result > 0) {
|
|
//删除所有明细
|
|
await TenantDb.Deleteable<CM_RentIn_Detail>(x => ids.Contains(x.Pid)).ExecuteCommandAsync();
|
|
}
|
|
|
|
//await WriteBackStatusAsync(model.BusinessId, model.BusinessType);
|
|
|
|
return result > 0 ? DataResult.Success : DataResult.FailedWithDesc(nameof(MultiLanguageConst.Operation_Failed));
|
|
}
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// 租箱租入_确认
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
public async Task<DataResult> CM_RentIn_Confirm(string id)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
var data = tenantDb.Queryable<CM_RentIn>()
|
|
.Where(a => a.Id == long.Parse(id))
|
|
.Select<CM_RentInRes>()
|
|
.First();
|
|
|
|
//20240808 首先判断该箱号能否
|
|
|
|
data.IsBusinessLocking = true;
|
|
var entity = await tenantDb.Insertable(data).ExecuteReturnEntityAsync();
|
|
return await Task.FromResult(DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess));
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 租箱租入_取消
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
public async Task<DataResult> CM_RentIn_Cancel(string id)
|
|
{
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
var data = tenantDb.Queryable<CM_RentIn>()
|
|
.Where(a => a.Id == long.Parse(id))
|
|
.Select<CM_RentInRes>()
|
|
.First();
|
|
data.IsBusinessLocking = false;
|
|
var entity = await tenantDb.Insertable(data).ExecuteReturnEntityAsync();
|
|
return await Task.FromResult(DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess));
|
|
}
|
|
} |