|
@@ -62,12 +62,29 @@ namespace GxPress.Repository.Implement.Attach
|
|
|
|
|
|
public async Task<int> InsertAsync(Entity.tede2.Attach.Attach note)
|
|
|
{
|
|
|
-
|
|
|
+ var categoryId = "";
|
|
|
+ var categoryIds = StringUtils.StringCollectionToStringList(note.CategoryId);
|
|
|
+ foreach (var item in categoryIds)
|
|
|
+ {
|
|
|
+ categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
|
|
|
+ }
|
|
|
+ categoryId = categoryId.Remove(categoryId.Length - 1, 1);
|
|
|
+ note.FullCategoryId = note.CategoryId;
|
|
|
+ note.CategoryId = categoryId;
|
|
|
return await _repository.InsertAsync(note);
|
|
|
}
|
|
|
|
|
|
public async Task<bool> UpdateAsync(Entity.tede2.Attach.Attach note)
|
|
|
{
|
|
|
+ var categoryId = "";
|
|
|
+ var categoryIds = StringUtils.StringCollectionToStringList(note.CategoryId);
|
|
|
+ foreach (var item in categoryIds)
|
|
|
+ {
|
|
|
+ categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
|
|
|
+ }
|
|
|
+ categoryId = categoryId.Remove(categoryId.Length - 1, 1);
|
|
|
+ note.FullCategoryId = note.CategoryId;
|
|
|
+ note.CategoryId = categoryId;
|
|
|
return await _repository.UpdateAsync(note);
|
|
|
}
|
|
|
|