|
|
|
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;
|
|
|
|
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Method;
|
|
|
|
|
|
|
|
//<TEntity> : FeeServiceBase, ISettlementService<TEntity> where TEntity : SettlementBase, new ()
|
|
|
|
public class CM_RentOutService : CMServiceBase, ICM_RentOutService
|
|
|
|
{
|
|
|
|
private readonly IServiceProvider _serviceProvider;
|
|
|
|
private readonly ISqlSugarClient db;
|
|
|
|
private readonly IUser user;
|
|
|
|
private readonly ISaasDbService saasService;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="serviceProvider"></param>
|
|
|
|
public CM_RentOutService(IServiceProvider serviceProvider) : base(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_RentOutRes>>> GetListByPage(PageRequest request)
|
|
|
|
{
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
//序列化查询条件
|
|
|
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
|
|
var data = tenantDb.Queryable<CM_RentOut>()
|
|
|
|
.Where(whereList)
|
|
|
|
.Select<CM_RentOutRes>()
|
|
|
|
.ToQueryPage(request.PageCondition);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 编辑
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="req"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public async Task<DataResult> EditCM_RentOut(CM_RentOutReq req)
|
|
|
|
{
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
if (req.Id == 0)
|
|
|
|
{
|
|
|
|
var data = req.Adapt<CM_RentOut>();
|
|
|
|
|
|
|
|
//var entity = tenantDb.Insertable(data).ExecuteReturnEntity();
|
|
|
|
var entity = await tenantDb.Insertable(data).ExecuteReturnEntityAsync();
|
|
|
|
|
|
|
|
if (req.BodyList.Count > 0)
|
|
|
|
{
|
|
|
|
//var ctnList = await tenantDb.Queryable<CM_RentOut_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_RentOut_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_RentOut>().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_RentOut_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_RentOut_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_RentOutRes> GetCM_RentOut(string id)
|
|
|
|
{
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
var data = tenantDb.Queryable<CM_RentOut>()
|
|
|
|
.Where(a => a.Id == long.Parse(id))
|
|
|
|
.Select<CM_RentOutRes>()
|
|
|
|
.First();
|
|
|
|
return DataResult<CM_RentOutRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
|
|
|
|
}
|
|
|
|
|
|
|
|
#region 删除
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 删除
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="ids">费用记录ID</param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public async Task<DataResult> DeleteCM_RentOutAsync(params long[] ids)
|
|
|
|
{
|
|
|
|
|
|
|
|
foreach (var _id in ids)
|
|
|
|
{
|
|
|
|
if (await IsLockedAsync(_id, BusinessType.CM_RentOut))
|
|
|
|
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_RentOut>(x => ids.Contains(x.Id)).ExecuteCommandAsync();
|
|
|
|
|
|
|
|
if (result > 0)
|
|
|
|
{
|
|
|
|
//删除所有明细
|
|
|
|
await TenantDb.Deleteable<CM_RentOut_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
|
|
|
|
}
|