using CMS.Plugin.$NameSpacePath$.Application.Contracts.Dtos.$EntityName$;
|
using CMS.Plugin.$NameSpacePath$.Application.Contracts.Services;
|
using CMS.Plugin.$NameSpacePath$.Domain.Shared;
|
using CMS.Plugin.$NameSpacePath$.Domain.Shared.Util;
|
using CMS.Plugin.$NameSpacePath$.Domain.Shared.$EntityInstanceName$s;
|
using CMS.Plugin.$NameSpacePath$.Domain.$EntityInstanceName$s;
|
using CmsQueryExtensions.Extension;
|
using System.Linq.Expressions;
|
using Volo.Abp;
|
using Volo.Abp.Application.Dtos;
|
using Volo.Abp.Data;
|
using Volo.Abp.ObjectExtending;
|
using Volo.Abp.ObjectMapping;
|
|
namespace CMS.Plugin.$NameSpacePath$.Application.Implements;
|
|
/// <summary>
|
/// $ChinaComment$Ó¦Ó÷þÎñ
|
/// </summary>
|
public class $EntityName$AppService : CMSPluginAppService, I$EntityName$AppService
|
{
|
private readonly I$EntityName$Repository $EntityInstanceName$Repository;
|
|
/// <summary>
|
/// Initializes a new instance of the <see cref="$EntityName$AppService"/> class.
|
/// </summary>
|
/// <param name="$EntityName$Repository">The task job repository.</param>
|
public $EntityName$AppService(I$EntityName$Repository $EntityName$Repository)
|
{
|
$EntityInstanceName$Repository = $EntityName$Repository;
|
}
|
|
/// <summary>
|
/// »ñȡָ¶¨$ChinaComment$
|
/// </summary>
|
/// <param name="id"></param>
|
/// <returns></returns>
|
public virtual async Task<$EntityName$Dto> GetAsync(Guid id)
|
{
|
return ObjectMapper.Map<$EntityName$, $EntityName$Dto>(await $EntityInstanceName$Repository.GetAsync(id));
|
}
|
|
/// <summary>
|
/// ·ÖÒ³»ñÈ¡$ChinaComment$
|
/// </summary>
|
/// <param name="input"></param>
|
/// <returns></returns>
|
public virtual async Task<PagedResultDto<$EntityName$Dto>> GetListAsync(Get$EntityName$Input input)
|
{
|
Check.NotNull(input, nameof(input));
|
|
if (input.Sorting.IsNullOrWhiteSpace())
|
{
|
input.Sorting = nameof($EntityName$.Sort);
|
}
|
|
#region ¶¯Ì¬¹¹Ôì²éѯÌõ¼þ
|
|
//¶¯Ì¬¹¹Ôì²éѯÌõ¼þ
|
var whereConditions = DynamicGetQueryParams(input);
|
|
#endregion
|
|
var count = await $EntityInstanceName$Repository.GetCountAsync(whereConditions);
|
var list = await $EntityInstanceName$Repository.GetListAsync(whereConditions, input.Sorting, input.MaxResultCount, input.SkipCount);
|
|
return new PagedResultDto<$EntityName$Dto>(count, ObjectMapper.Map<List<$EntityName$>, List<$EntityName$Dto>>(list));
|
}
|
|
/// <summary>
|
/// ¶¯Ì¬¹¹Ôì²éѯÌõ¼þ
|
/// </summary>
|
/// <param name="input">ÊäÈë²ÎÊý</param>
|
/// <returns></returns>
|
private FunReturnResultModel<Expression<Func<$EntityName$, bool>>> DynamicGetQueryParams(Get$EntityName$Input input)
|
{
|
//¶¯Ì¬¹¹Ôì²éѯÌõ¼þ
|
var whereConditions = WhereConditionsExtensions.GetWhereConditions<$EntityName$, Get$EntityName$Input>(input);
|
if (!whereConditions.IsSuccess)
|
{
|
throw new Exception("¶¯Ì¬¹¹Ôì²éѯÌõ¼þʧ°Ü:" + whereConditions.ErrMsg);
|
}
|
|
//Ò²¿ÉÔÙ´Î×Ô¶¨Òå¹¹½¨²éѯÌõ¼þ
|
Expression<Func<$EntityName$, bool>> extendExpression = a => a.IsDeleted == false;
|
// ʹÓà System.Linq.PredicateBuilder µÄ And
|
var pres = (System.Linq.Expressions.Expression<Func<$EntityName$, bool>>)(whereConditions.data);
|
whereConditions.data = System.Linq.PredicateBuilder.And(pres, extendExpression);
|
|
return whereConditions;
|
}
|
|
/// <summary>
|
/// н¨$ChinaComment$
|
/// </summary>
|
/// <param name="input"></param>
|
/// <returns></returns>
|
/// <exception cref="UserFriendlyException"></exception>
|
public virtual async Task<$EntityName$Dto> CreateAsync($EntityName$CreateDto input)
|
{
|
await CheckCreateOrUpdateDtoAsync(input);
|
|
var exist = await $EntityInstanceName$Repository.NameExistAsync(input.MaterialCode);
|
if (exist)
|
{
|
throw new UserFriendlyException(L[CMSPluginDomainErrorCodes.NameAlreadyExists, input.MaterialCode]);
|
}
|
|
var maxSort = await $EntityInstanceName$Repository.GetMaxSortAsync();
|
var sort = input.Sort ?? maxSort;
|
|
var insertObj = ObjectMapper.Map<$EntityName$CreateDto, $EntityName$>(input);
|
insertObj.Sort = sort;
|
input.MapExtraPropertiesTo(insertObj, MappingPropertyDefinitionChecks.None);
|
|
await $EntityInstanceName$Repository.InsertAsync(insertObj);
|
|
if (input.Sort.HasValue && insertObj.Sort != maxSort)
|
{
|
await AdjustSortAsync(insertObj.Id, insertObj.Sort);
|
}
|
|
return ObjectMapper.Map<$EntityName$, $EntityName$Dto>(insertObj);
|
}
|
|
/// <summary>
|
/// ¸üÐÂ$ChinaComment$
|
/// </summary>
|
/// <param name="id"></param>
|
/// <param name="input"></param>
|
/// <returns></returns>
|
/// <exception cref="UserFriendlyException"></exception>
|
public virtual async Task<$EntityName$Dto> UpdateAsync(Guid id, $EntityName$UpdateDto input)
|
{
|
await CheckCreateOrUpdateDtoAsync(input);
|
|
var updateObj = await $EntityInstanceName$Repository.GetAsync(id);
|
var exist = await $EntityInstanceName$Repository.NameExistAsync(input.MaterialCode, updateObj.Id);
|
if (exist)
|
{
|
throw new UserFriendlyException(L[CMSPluginDomainErrorCodes.NameAlreadyExists, input.MaterialCode]);
|
}
|
|
updateObj.SetConcurrencyStampIfNotNull(input.ConcurrencyStamp);
|
input.MapExtraPropertiesTo(updateObj, MappingPropertyDefinitionChecks.None);
|
|
$UpdateAttributes$
|
|
await $EntityInstanceName$Repository.UpdateAsync(updateObj);
|
|
return ObjectMapper.Map<$EntityName$, $EntityName$Dto>(updateObj);
|
}
|
|
/// <summary>
|
/// ¿Ë¡$ChinaComment$
|
/// </summary>
|
/// <param name="ids"></param>
|
/// <returns></returns>
|
public async Task<List<$EntityName$Dto>> CloneAsync(IEnumerable<Guid> ids)
|
{
|
//var $EntityInstanceName$s = new List<$EntityName$>();
|
//if (ids != null)
|
//{
|
// var sort = await $EntityInstanceName$Repository.GetMaxSortAsync();
|
// foreach (var id in ids)
|
// {
|
// var $EntityName$ = await $EntityInstanceName$Repository.FindAsync(id);
|
// if ($EntityName$ != null)
|
// {
|
// var name = $EntityName$.Name + $EntityName$Consts.CloneTag;
|
// var notExist = false;
|
// while (!notExist)
|
// {
|
// var exist = await $EntityInstanceName$Repository.NameExistAsync(name);
|
// if (exist || $EntityInstanceName$s.Any(x => x.Name == name))
|
// {
|
// name += $EntityName$Consts.CloneTag;
|
// continue;
|
// }
|
|
// notExist = true;
|
// }
|
|
// //$EntityName$ = await $EntityInstanceName$Repository.InsertAsync($EntityName$.Clone(GuidGenerator.Create(), name, sort++));
|
// $EntityInstanceName$s.Add($EntityName$);
|
// }
|
// }
|
//}
|
|
//return ObjectMapper.Map<List<$EntityName$>, List<$EntityName$Dto>>($EntityInstanceName$s);
|
return new List<$EntityName$Dto>();
|
}
|
|
/// <summary>
|
/// ɾ³ýµ¥¸ö$ChinaComment$
|
/// </summary>
|
/// <param name="id"></param>
|
/// <returns></returns>
|
public virtual Task DeleteAsync(Guid id)
|
{
|
return $EntityInstanceName$Repository.DeleteAsync(id);
|
}
|
|
/// <summary>
|
/// ɾ³ý¶à¸ö$ChinaComment$
|
/// </summary>
|
/// <param name="ids"></param>
|
/// <returns></returns>
|
public async Task DeleteManyAsync(IEnumerable<Guid> ids)
|
{
|
foreach (var id in ids)
|
{
|
await DeleteAsync(id);
|
}
|
}
|
|
/// <summary>
|
/// µ÷ÕûÅÅÐò$ChinaComment$
|
/// </summary>
|
/// <param name="id"></param>
|
/// <param name="sort"></param>
|
/// <returns></returns>
|
public virtual async Task AdjustSortAsync(Guid id, int sort)
|
{
|
var list = await $EntityInstanceName$Repository.GetListAsync(null, nameof($EntityName$.Sort));
|
if (list != null && list.Any())
|
{
|
var initSort = 1;
|
list.ForEach(x => x.AdjustSort(initSort++));
|
var entity = list.FirstOrDefault(x => x.Id == id);
|
if (entity != null)
|
{
|
if (sort == 1)
|
{
|
list.Where(x => x.Id != id).ToList()?.ForEach(x => x.AdjustSort(x.Sort + 1));
|
}
|
else if (entity.Sort > sort)
|
{
|
list.Where(x => x.Id != id && x.Sort >= sort).ToList()?.ForEach(x => x.AdjustSort(x.Sort + 1));
|
list.Where(x => x.Id != id && x.Sort < sort).ToList()?.ForEach(x => x.AdjustSort(x.Sort - 1));
|
}
|
else if (entity.Sort < sort)
|
{
|
list.Where(x => x.Id != id && x.Sort > sort).ToList()?.ForEach(x => x.AdjustSort(x.Sort + 1));
|
list.Where(x => x.Id != id && x.Sort <= sort).ToList()?.ForEach(x => x.AdjustSort(x.Sort - 1));
|
}
|
|
entity.AdjustSort(sort);
|
}
|
}
|
|
await $EntityInstanceName$Repository.UpdateManyAsync(list);
|
}
|
|
/// <summary>
|
/// µ¼Èë$ChinaComment$
|
/// </summary>
|
/// <param name="input"></param>
|
/// <returns></returns>
|
/// <exception cref="UserFriendlyException"></exception>
|
public async Task ImportAsync($EntityName$sImportModel input)
|
{
|
Check.NotNull(input, nameof(input));
|
|
var $EntityInstanceName$CreateDtos = new List<(int RowIndex, $EntityName$CreateDto Item)>();
|
var $EntityInstanceName$UpdateDtos = new List<(int RowIndex, Guid Id, $EntityName$UpdateDto Item)>();
|
var $EntityInstanceName$s = input.$EntityInstanceName$s;
|
|
if ($EntityInstanceName$s != null && $EntityInstanceName$s.Any())
|
{
|
#region µ¼ÈëУÑé
|
|
// ÅжÏÃû³ÆÊÇ·ñÖØ¸´£¬²¢Êä³öµÚ¼¸ÐÐÖØ¸´
|
var duplicate$EntityName$s = $EntityInstanceName$s.GroupBy(x => x.MaterialCode).Where(x => x.Count() > 1).ToList();
|
if (duplicate$EntityName$s?.Any() == true)
|
{
|
var duplicate$EntityName$Msgs = duplicate$EntityName$s.Select(x => $"µÚ {string.Join(",", x.Select(x => x.RowIndex))} ÐУº{x.Key} Ãû³ÆÖظ´");
|
var errorMsg = $"µ¼Èëʧ°Ü£¡ÅäÖ㬠{string.Join(",", duplicate$EntityName$Msgs)}£¬ÖÕÖ¹µ¼Èë";
|
throw new UserFriendlyException(errorMsg);
|
}
|
|
#endregion
|
|
foreach (var $EntityInstanceName$ in $EntityInstanceName$s)
|
{
|
if ($EntityInstanceName$.MaterialCode.IsNullOrWhiteSpace() && $EntityInstanceName$.MaterialName.IsNullOrWhiteSpace())
|
{
|
continue;
|
}
|
|
if ($EntityInstanceName$.MaterialCode.IsNullOrWhiteSpace())
|
{
|
var errorMsg = $"µ¼Èëʧ°Ü£¡ÅäÖ㬵Ú{$EntityInstanceName$.RowIndex}ÐУº$EntityInstanceName$Ãû³Æ²»ÄÜΪ¿Õ";
|
throw new UserFriendlyException(errorMsg);
|
}
|
|
var old$EntityName$ = await $EntityInstanceName$Repository.FindByNameAsync($EntityName$.MaterialCode);
|
if (old$EntityName$ != null)
|
{
|
var $EntityInstanceName$UpdateDto = new $EntityName$UpdateDto
|
{
|
$UpdateAttributesForImport$
|
};
|
|
$EntityInstanceName$UpdateDtos.Add(($EntityName$.RowIndex, old$EntityName$.Id, $EntityInstanceName$UpdateDto));
|
}
|
else
|
{
|
var $EntityName$CreateDto = new $EntityName$CreateDto
|
{
|
$UpdateAttributesForImport$
|
};
|
|
$EntityInstanceName$CreateDtos.Add(($EntityName$.RowIndex, $EntityName$CreateDto));
|
}
|
}
|
}
|
|
// ÐÂÔö
|
foreach (var $EntityName$Dto in $EntityInstanceName$CreateDtos)
|
{
|
try
|
{
|
await CreateAsync($EntityName$Dto.Item);
|
}
|
catch (Exception e)
|
{
|
var errorMsg = $"µ¼Èëʧ°Ü£¡ÅäÖ㬵Ú{$EntityName$Dto.RowIndex}ÐУº{e.Message}£¬ÖÕÖ¹µ¼Èë";
|
throw new UserFriendlyException(errorMsg);
|
}
|
}
|
|
// ¸üÐÂ
|
foreach (var $EntityName$Dto in $EntityInstanceName$UpdateDtos)
|
{
|
try
|
{
|
await UpdateAsync($EntityName$Dto.Id, $EntityName$Dto.Item);
|
}
|
catch (Exception e)
|
{
|
var errorMsg = $"µ¼Èëʧ°Ü£¡ÅäÖ㬵Ú{$EntityName$Dto.RowIndex}ÐУº{e.Message}£¬ÖÕÖ¹µ¼Èë";
|
throw new UserFriendlyException(errorMsg);
|
}
|
}
|
}
|
|
/// <summary>
|
/// µ¼³ö$ChinaComment$
|
/// </summary>
|
/// <param name="input"></param>
|
/// <returns></returns>
|
public async Task<(Dictionary<string, object> Sheets, string FileName)> ExportAsync(Get$EntityName$Input input)
|
{
|
Check.NotNull(input, nameof(input));
|
|
if (input.Sorting.IsNullOrWhiteSpace())
|
{
|
input.Sorting = nameof($EntityName$.Sort);
|
}
|
|
#region ¶¯Ì¬¹¹Ôì²éѯÌõ¼þ
|
|
//¶¯Ì¬¹¹Ôì²éѯÌõ¼þ
|
var whereConditions = DynamicGetQueryParams(input);
|
|
#endregion
|
|
|
var list = await $EntityInstanceName$Repository.GetListAsync(whereConditions, input.Sorting, input.MaxResultCount, input.SkipCount, includeDetails: true);
|
var result = ObjectMapper.Map<List<$EntityName$>, List<$EntityName$Dto>>(list);
|
|
var sheets = new Dictionary<string, object>
|
{
|
["ÅäÖÃ"] = ExportHelper.ConvertListToExportData(result),
|
};
|
|
var fileName = result.Count > 1 ? "$EntityName$Áбí" : result.Count == 1 ? result[0]?.MaterialCode : "$EntityName$Ä£°æ";
|
return (sheets, fileName);
|
}
|
|
/// <summary>
|
/// УÑé$ChinaComment$£¬µ±Ð½¨»ò¸üÐÂʱ
|
/// </summary>
|
/// <param name="input"></param>
|
/// <returns></returns>
|
protected Task CheckCreateOrUpdateDtoAsync($EntityName$CreateOrUpdateDtoBase input)
|
{
|
Check.NotNull(input, nameof(input));
|
$UpdateAttributesForCheckCreateOrUpdateDtoAsync$
|
return Task.CompletedTask;
|
}
|
}
|