Compare commits
111 Commits
Feature/Re
...
Feature/Ch
| Author | SHA1 | Date | |
|---|---|---|---|
| ab604d3be5 | |||
|
|
d713cbb1fe | ||
|
|
8418c2edc4 | ||
|
|
e109a41b90 | ||
|
|
158fc91a67 | ||
|
|
d1fb6e933d | ||
|
|
0811482370 | ||
| 24982e11d3 | |||
| 394d65db31 | |||
| 59deae29c2 | |||
|
|
46833f93da | ||
|
|
8d78ea548a | ||
|
|
ffbadc5a96 | ||
| e889b61d27 | |||
| b492aa39e8 | |||
| 2201ade168 | |||
|
|
baeeec183b | ||
|
|
3142a80b44 | ||
|
|
7c2354b386 | ||
|
|
175158a3d7 | ||
|
|
b79abcb175 | ||
|
|
7388fd8a81 | ||
|
|
a9c489b43d | ||
|
|
66ada45d29 | ||
|
|
04e51fe3b5 | ||
|
|
e486f20a5a | ||
|
|
2db6a9695c | ||
|
|
cea68fce49 | ||
|
|
3f2c0c5531 | ||
|
|
22f13aea0b | ||
| 0ec62e5e83 | |||
|
|
86a3a21d5b | ||
|
|
e02bc9adc5 | ||
|
|
39bc95731e | ||
|
|
759792b44b | ||
|
|
1409d30dfd | ||
|
|
ad9f747027 | ||
|
|
b021636913 | ||
|
|
3007a87104 | ||
|
|
d7eb8517f7 | ||
|
|
eaaab56421 | ||
|
|
7d763715cd | ||
|
|
7d1eb780a5 | ||
|
|
3e1758d35c | ||
|
|
88a9a62dd3 | ||
|
|
7bcc052ec6 | ||
|
|
6fd9b336a9 | ||
|
|
44d5225ff3 | ||
|
|
03e4f7e8c1 | ||
|
|
2c6512faa2 | ||
|
|
406212a1f0 | ||
|
|
53e93bd410 | ||
|
|
19f109254d | ||
|
|
9311d68a91 | ||
|
|
9e91214941 | ||
|
|
aded6b2839 | ||
|
|
08d40ae299 | ||
|
|
659f647b31 | ||
|
|
0ddcb3653a | ||
|
|
3e3eccf0f0 | ||
|
|
22d7c49379 | ||
|
|
ca7e46907c | ||
|
|
ed7e6a3dee | ||
|
|
40482e167a | ||
|
|
3807b213bb | ||
| 2719639333 | |||
|
|
3aa6c6d1ed | ||
|
|
0112772d3f | ||
|
|
7eb8255215 | ||
|
|
3650caabfa | ||
|
|
faac2bf707 | ||
|
|
3058f95e0e | ||
|
|
8fa8c33415 | ||
|
|
9393993755 | ||
|
|
4d81de755e | ||
|
|
f02aa4e217 | ||
|
|
6cce3f5321 | ||
|
|
59112d9635 | ||
|
|
987c1b51fa | ||
|
|
5e186a2352 | ||
|
|
f68739cc22 | ||
|
|
db8bb247b3 | ||
|
|
9cc3bb07f1 | ||
|
|
4fd71690d5 | ||
|
|
8078d8bfdd | ||
|
|
3b38b80a28 | ||
|
|
0cd8d5b4cf | ||
|
|
4b23448cc1 | ||
|
|
aeebb983a4 | ||
|
|
2fffa67ff6 | ||
|
|
acb6764271 | ||
|
|
c0f9fb6389 | ||
|
|
e17ca40df6 | ||
|
|
abc8f408a7 | ||
|
|
b8937ef79c | ||
|
|
789b0fbc24 | ||
|
|
65ce181001 | ||
|
|
b8e831ce4d | ||
|
|
56def568b5 | ||
|
|
f4961a46eb | ||
|
|
ffa728d05d | ||
|
|
30c70c83b2 | ||
|
|
ec0996f53c | ||
|
|
541f60d6cd | ||
|
|
0aebb8c498 | ||
|
|
dbb0b2e53a | ||
|
|
7f900755be | ||
|
|
dc39f30c21 | ||
|
|
8dd9ee508a | ||
|
|
9f42af6a23 | ||
|
|
4449195aed |
@@ -4,5 +4,5 @@ public enum IsActive
|
|||||||
{
|
{
|
||||||
False,
|
False,
|
||||||
True,
|
True,
|
||||||
|
None
|
||||||
}
|
}
|
||||||
@@ -51,4 +51,11 @@ public class OperationResult<T>
|
|||||||
Message = message;
|
Message = message;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
public OperationResult<T> Failed(string message, T data)
|
||||||
|
{
|
||||||
|
IsSuccedded = false;
|
||||||
|
Message = message;
|
||||||
|
Data = data;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -41,23 +41,6 @@ public static class Tools
|
|||||||
return Regex.IsMatch(mobileNo, "^((09))(\\d{9})$");
|
return Regex.IsMatch(mobileNo, "^((09))(\\d{9})$");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// تاریخ شروع و تعداد ماه را میگیرد و تاریخ پایان قراردا را بر میگرداند
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="startDate"></param>
|
|
||||||
/// <param name="monthPlus"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static (DateTime endDateGr, string endDateFa) FindEndOfContract(string startDate, string monthPlus)
|
|
||||||
{
|
|
||||||
|
|
||||||
int startYear = Convert.ToInt32(startDate.Substring(0, 4));
|
|
||||||
int startMonth = Convert.ToInt32(startDate.Substring(5, 2));
|
|
||||||
int startDay = Convert.ToInt32(startDate.Substring(8, 2));
|
|
||||||
var start = new PersianDateTime(startYear, startMonth, startDay);
|
|
||||||
var end = (start.AddMonths(Convert.ToInt32(monthPlus))).AddDays(-1);
|
|
||||||
return ($"{end}".ToGeorgianDateTime(), $"{end}");
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// دریافت روزهای کارکرد پرسنل در لیست بیمه ماه مشخص شده
|
/// دریافت روزهای کارکرد پرسنل در لیست بیمه ماه مشخص شده
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace AccountManagement.Application.Contracts.Account;
|
||||||
|
|
||||||
|
public class AccountSelectListViewModel
|
||||||
|
{
|
||||||
|
public long Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
|
||||||
|
public long RoleId { get; set; }
|
||||||
|
}
|
||||||
@@ -41,6 +41,8 @@ public interface IAccountApplication
|
|||||||
List<AccountViewModel> GetAccountsByPositionId(long positionId);
|
List<AccountViewModel> GetAccountsByPositionId(long positionId);
|
||||||
|
|
||||||
List<AccountViewModel> GetAccountEqualToLowerPositionValue();
|
List<AccountViewModel> GetAccountEqualToLowerPositionValue();
|
||||||
|
Task<List<AccountSelectListViewModel>> GetAdminSelectList();
|
||||||
|
|
||||||
OperationResult ReLogin();
|
OperationResult ReLogin();
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@@ -15,6 +15,6 @@ namespace AccountManagement.Application.Contracts.SubAccount
|
|||||||
public string PhoneNumber { get; set; }
|
public string PhoneNumber { get; set; }
|
||||||
public string Username { get; set; }
|
public string Username { get; set; }
|
||||||
public string ProfilePhoto { get; set; }
|
public string ProfilePhoto { get; set; }
|
||||||
public List<long> WorkshopIds { get; set; }
|
//public List<long> WorkshopIds { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,5 +8,6 @@ namespace AccountManagement.Application.Contracts.SubAccount
|
|||||||
public string Title { get; set; }
|
public string Title { get; set; }
|
||||||
public long AccountId { get; set; }
|
public long AccountId { get; set; }
|
||||||
public List<int> Permissions { get; set; }
|
public List<int> Permissions { get; set; }
|
||||||
|
public List<long> WorkshopIds { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ namespace AccountManagement.Application.Contracts.SubAccount
|
|||||||
public string PhoneNumber { get; set; }
|
public string PhoneNumber { get; set; }
|
||||||
public string RePassword { get; set; }
|
public string RePassword { get; set; }
|
||||||
public long SubAccountRoleId { get; set; }
|
public long SubAccountRoleId { get; set; }
|
||||||
public List<long> WorkshopIds { get; set; }
|
//public List<long> WorkshopIds { get; set; }
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,5 +7,6 @@ namespace AccountManagement.Application.Contracts.SubAccount
|
|||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
public string Title { get; set; }
|
public string Title { get; set; }
|
||||||
public List<int> Permissions { get; set; }
|
public List<int> Permissions { get; set; }
|
||||||
|
public List<long> WorkshopIds { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,4 +21,5 @@ public class EditTask:CreateTask
|
|||||||
public List<AccountViewModel> AssignsLists { get; set; }
|
public List<AccountViewModel> AssignsLists { get; set; }
|
||||||
public bool HasTicket { get; set; }
|
public bool HasTicket { get; set; }
|
||||||
public long TaskScheduleId { get; set; }
|
public long TaskScheduleId { get; set; }
|
||||||
|
public bool HasRequest { get; set; }
|
||||||
}
|
}
|
||||||
@@ -48,6 +48,7 @@ public class TaskViewModel
|
|||||||
public bool CanDelete { get; set; }
|
public bool CanDelete { get; set; }
|
||||||
public bool CanAssign { get; set; }
|
public bool CanAssign { get; set; }
|
||||||
public bool CanCheckRequests { get; set; }
|
public bool CanCheckRequests { get; set; }
|
||||||
|
public bool HasRequest { get; set; }
|
||||||
public AssignViewModel AssignedReceiverViewModel { get; set; }
|
public AssignViewModel AssignedReceiverViewModel { get; set; }
|
||||||
|
|
||||||
public TaskScheduleType ScheduleType { get; set; }
|
public TaskScheduleType ScheduleType { get; set; }
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ public class TaskScheduleDetailsViewModel
|
|||||||
public string ContractingPartyName { get; set; }
|
public string ContractingPartyName { get; set; }
|
||||||
public string Title { get; set; }
|
public string Title { get; set; }
|
||||||
public string Description { get; set; }
|
public string Description { get; set; }
|
||||||
|
public string Count { get; set; }
|
||||||
|
public string FirstEndTaskDate { get; set; }
|
||||||
public List<MediaViewModel> Medias { get; set; }
|
public List<MediaViewModel> Medias { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -308,7 +308,7 @@ public class AccountApplication : IAccountApplication
|
|||||||
{
|
{
|
||||||
Slug = _passwordHasher.SlugHasher(x.WorkshopId),
|
Slug = _passwordHasher.SlugHasher(x.WorkshopId),
|
||||||
Name = x.WorkshopName,
|
Name = x.WorkshopName,
|
||||||
PersonnelCount = 0,
|
PersonnelCount = x.PersonnelCount,
|
||||||
Id = x.WorkshopId
|
Id = x.WorkshopId
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
@@ -627,7 +627,10 @@ public class AccountApplication : IAccountApplication
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task<List<AccountSelectListViewModel>> GetAdminSelectList()
|
||||||
|
{
|
||||||
|
return await _accountRepository.GetAdminSelectList();
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
#region Pooya
|
#region Pooya
|
||||||
|
|||||||
@@ -113,12 +113,12 @@ namespace AccountManagement.Application
|
|||||||
if (cmd.PhoneNumber.Length != 11)
|
if (cmd.PhoneNumber.Length != 11)
|
||||||
return op.Failed("شماره تلفن همراه نامعتبر است");
|
return op.Failed("شماره تلفن همراه نامعتبر است");
|
||||||
|
|
||||||
if (!cmd.WorkshopIds.Any())
|
//if (!cmd.WorkshopIds.Any())
|
||||||
return op.Failed("حداقل یک کارگاه را انتخاب کنید");
|
// return op.Failed("حداقل یک کارگاه را انتخاب کنید");
|
||||||
|
|
||||||
|
|
||||||
if (!cmd.WorkshopIds.All(x => accountWorkshopsList.Contains(x)))
|
//if (!cmd.WorkshopIds.All(x => accountWorkshopsList.Contains(x)))
|
||||||
return op.Failed("خطای سیستمی");
|
// return op.Failed("خطای سیستمی");
|
||||||
|
|
||||||
|
|
||||||
if (cmd.SubAccountRoleId == 0 || !_subAccountRoleRepository.Exists(x => cmd.SubAccountRoleId == x.id))
|
if (cmd.SubAccountRoleId == 0 || !_subAccountRoleRepository.Exists(x => cmd.SubAccountRoleId == x.id))
|
||||||
@@ -131,6 +131,10 @@ namespace AccountManagement.Application
|
|||||||
_cameraAccountRepository.Exists(x => x.Username == cmd.Username))
|
_cameraAccountRepository.Exists(x => x.Username == cmd.Username))
|
||||||
return op.Failed("نام کاربری نمی تواند تکراری باشد");
|
return op.Failed("نام کاربری نمی تواند تکراری باشد");
|
||||||
|
|
||||||
|
var role = _subAccountRoleRepository.Get(cmd.SubAccountRoleId);
|
||||||
|
var workshopId = role.RoleWorkshops.Select(x => x.WorkshopId).ToList();
|
||||||
|
|
||||||
|
|
||||||
var entity = new SubAccount(cmd.AccountId, cmd.SubAccountRoleId, cmd.NationalCode, cmd.FName, cmd.LName, cmd.PhoneNumber, cmd.Username, _passwordHasher.Hash(cmd.Password),
|
var entity = new SubAccount(cmd.AccountId, cmd.SubAccountRoleId, cmd.NationalCode, cmd.FName, cmd.LName, cmd.PhoneNumber, cmd.Username, _passwordHasher.Hash(cmd.Password),
|
||||||
cmd.ProfilePhoto);
|
cmd.ProfilePhoto);
|
||||||
|
|
||||||
@@ -142,7 +146,7 @@ namespace AccountManagement.Application
|
|||||||
_subAccountRepository.SaveChanges();
|
_subAccountRepository.SaveChanges();
|
||||||
|
|
||||||
|
|
||||||
var workshops = cmd.WorkshopIds.Select(x => new WorkshopSubAccount(x, entity.id));
|
var workshops = workshopId.Select(x => new WorkshopSubAccount(x, entity.id));
|
||||||
|
|
||||||
foreach (var w in workshops)
|
foreach (var w in workshops)
|
||||||
_workshopSubAccountRepository.Create(w);
|
_workshopSubAccountRepository.Create(w);
|
||||||
@@ -175,22 +179,22 @@ namespace AccountManagement.Application
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (!cmd.WorkshopIds.All(x => accountWorkshopsList.Contains(x)))
|
//if (!cmd.WorkshopIds.All(x => accountWorkshopsList.Contains(x)))
|
||||||
return op.Failed("خطای سیستمی");
|
// return op.Failed("خطای سیستمی");
|
||||||
|
|
||||||
|
|
||||||
if (cmd.SubAccountRoleId == 0 || !_subAccountRoleRepository.Exists(x => cmd.SubAccountRoleId == x.id))
|
if (cmd.SubAccountRoleId == 0 || !_subAccountRoleRepository.Exists(x => cmd.SubAccountRoleId == x.id))
|
||||||
return op.Failed("نقش مورد نظر وجود ندارد");
|
return op.Failed("نقش مورد نظر وجود ندارد");
|
||||||
|
|
||||||
var workshopSubAccounts = _workshopSubAccountRepository.GetWorkshopsSubAccountEntityBySubAccountId(entity.id);
|
//var workshopSubAccounts = _workshopSubAccountRepository.GetWorkshopsSubAccountEntityBySubAccountId(entity.id);
|
||||||
foreach (var workshopSubAccount in workshopSubAccounts)
|
//foreach (var workshopSubAccount in workshopSubAccounts)
|
||||||
_workshopSubAccountRepository.Remove(workshopSubAccount);
|
// _workshopSubAccountRepository.Remove(workshopSubAccount);
|
||||||
|
|
||||||
|
|
||||||
var workshops = cmd.WorkshopIds.Select(x => new WorkshopSubAccount(x, entity.id));
|
//var workshops = cmd.WorkshopIds.Select(x => new WorkshopSubAccount(x, entity.id));
|
||||||
|
|
||||||
foreach (var w in workshops)
|
//foreach (var w in workshops)
|
||||||
_workshopSubAccountRepository.Create(w);
|
// _workshopSubAccountRepository.Create(w);
|
||||||
|
|
||||||
entity.Edit(cmd.SubAccountRoleId, cmd.NationalCode, cmd.FName, cmd.LName, cmd.ProfilePhoto);
|
entity.Edit(cmd.SubAccountRoleId, cmd.NationalCode, cmd.FName, cmd.LName, cmd.ProfilePhoto);
|
||||||
_workshopSubAccountRepository.SaveChanges();
|
_workshopSubAccountRepository.SaveChanges();
|
||||||
@@ -227,7 +231,8 @@ namespace AccountManagement.Application
|
|||||||
{
|
{
|
||||||
Id = entity.id,
|
Id = entity.id,
|
||||||
Title = entity.Title,
|
Title = entity.Title,
|
||||||
Permissions = entity.RolePermissions.Select(x => x.PermissionCode).ToList()
|
Permissions = entity.RolePermissions.Select(x => x.PermissionCode).ToList(),
|
||||||
|
WorkshopIds = entity.RoleWorkshops.Select(x=>x.WorkshopId).ToList()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -241,7 +246,7 @@ namespace AccountManagement.Application
|
|||||||
OperationResult op = new();
|
OperationResult op = new();
|
||||||
if (_subAccountRoleRepository.Exists(x => x.AccountId == command.AccountId && x.Title.Trim() == command.Title.Trim()))
|
if (_subAccountRoleRepository.Exists(x => x.AccountId == command.AccountId && x.Title.Trim() == command.Title.Trim()))
|
||||||
return op.Failed("یک نقش با این عنوان وجود دارد");
|
return op.Failed("یک نقش با این عنوان وجود دارد");
|
||||||
var role = new SubAccountRole(command.Title, command.Permissions, command.AccountId);
|
var role = new SubAccountRole(command.Title, command.Permissions, command.AccountId,command.WorkshopIds);
|
||||||
_subAccountRoleRepository.Create(role);
|
_subAccountRoleRepository.Create(role);
|
||||||
_subAccountRoleRepository.SaveChanges();
|
_subAccountRoleRepository.SaveChanges();
|
||||||
return op.Succcedded(role.id);
|
return op.Succcedded(role.id);
|
||||||
@@ -254,8 +259,26 @@ namespace AccountManagement.Application
|
|||||||
var entity = _subAccountRoleRepository.Get(cmd.Id);
|
var entity = _subAccountRoleRepository.Get(cmd.Id);
|
||||||
if (entity == null)
|
if (entity == null)
|
||||||
return op.Failed(ApplicationMessages.RecordNotFound);
|
return op.Failed(ApplicationMessages.RecordNotFound);
|
||||||
entity.Edit(cmd.Title, cmd.Permissions);
|
entity.Edit(cmd.Title, cmd.Permissions,cmd.WorkshopIds);
|
||||||
_subAccountRoleRepository.SaveChanges();
|
|
||||||
|
var subAccountRoles = _subAccountRepository.GetBySubAccountRole(cmd.Id);
|
||||||
|
|
||||||
|
foreach (var subAccount in subAccountRoles)
|
||||||
|
{
|
||||||
|
var workshopSubAccounts = _workshopSubAccountRepository.GetWorkshopsSubAccountEntityBySubAccountId(subAccount.id);
|
||||||
|
foreach (var workshopSubAccount in workshopSubAccounts)
|
||||||
|
_workshopSubAccountRepository.Remove(workshopSubAccount);
|
||||||
|
|
||||||
|
|
||||||
|
var workshops = cmd.WorkshopIds.Select(x => new WorkshopSubAccount(x, subAccount.id));
|
||||||
|
|
||||||
|
foreach (var w in workshops)
|
||||||
|
_workshopSubAccountRepository.Create(w);
|
||||||
|
}
|
||||||
|
|
||||||
|
_subAccountRoleRepository.SaveChanges();
|
||||||
|
_workshopSubAccountRepository.SaveChanges();
|
||||||
|
|
||||||
return op.Succcedded();
|
return op.Succcedded();
|
||||||
}
|
}
|
||||||
public OperationResult AssignRoleToSubAccount(AssignSubAccountRole command)
|
public OperationResult AssignRoleToSubAccount(AssignSubAccountRole command)
|
||||||
|
|||||||
@@ -597,7 +597,7 @@ public class TaskApplication : ITaskApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
assign.AcceptTimeRequest();
|
assign.AcceptTimeRequest();
|
||||||
message = string.IsNullOrWhiteSpace(message) ? "درخواست شما مورد تایید قرار گرفت" : message;
|
message = string.IsNullOrWhiteSpace(message) ? "درخواست شما مورد تایید قرار گرفت" : message;
|
||||||
var messageEntity = new TaskMessage(message, "تایید درخواست مهلت", assign.id);
|
var messageEntity = new TaskMessage(message, "تایید درخواست مهلت", assign.id);
|
||||||
@@ -622,6 +622,7 @@ public class TaskApplication : ITaskApplication
|
|||||||
{
|
{
|
||||||
return operation.Failed("چنین وظیفه ای درخواستی برای مهلت ندارد");
|
return operation.Failed("چنین وظیفه ای درخواستی برای مهلت ندارد");
|
||||||
}
|
}
|
||||||
|
|
||||||
assign.RejectTimeRequest();
|
assign.RejectTimeRequest();
|
||||||
if (assign.EndTaskDate.Date <= DateTime.Now.Date)
|
if (assign.EndTaskDate.Date <= DateTime.Now.Date)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -27,6 +27,8 @@ namespace AccountManagement.Domain.AccountAgg
|
|||||||
List<AccountViewModel> GetAccountEqualToLowerPositionValue();
|
List<AccountViewModel> GetAccountEqualToLowerPositionValue();
|
||||||
AccountViewModel GetAccountViewModel(long id);
|
AccountViewModel GetAccountViewModel(long id);
|
||||||
List<AccountViewModel> GetAccountsDeactivePositionValue(long Positionid);
|
List<AccountViewModel> GetAccountsDeactivePositionValue(long Positionid);
|
||||||
|
Task<List<AccountSelectListViewModel>> GetAdminSelectList();
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
List<AccountViewModel> GetAdminAccountsNew();
|
List<AccountViewModel> GetAdminAccountsNew();
|
||||||
|
|||||||
@@ -71,14 +71,16 @@ public class Assign : EntityBase
|
|||||||
|
|
||||||
public void AcceptTimeRequest()
|
public void AcceptTimeRequest()
|
||||||
{
|
{
|
||||||
TimeRequest = false;
|
ClearRequests();
|
||||||
|
TimeRequest = false;
|
||||||
AcceptedTimeRequest++;
|
AcceptedTimeRequest++;
|
||||||
EndTaskDate = RequestDate < DateTime.Today ? DateTime.Today : RequestDate.Value;
|
EndTaskDate = RequestDate < DateTime.Today ? DateTime.Today : RequestDate.Value;
|
||||||
|
|
||||||
}
|
}
|
||||||
public void RejectTimeRequest()
|
public void RejectTimeRequest()
|
||||||
{
|
{
|
||||||
TimeRequest = false;
|
ClearRequests();
|
||||||
|
TimeRequest = false;
|
||||||
TimeRequestDescription = null;
|
TimeRequestDescription = null;
|
||||||
RequestDate = null;
|
RequestDate = null;
|
||||||
}
|
}
|
||||||
@@ -92,31 +94,36 @@ public class Assign : EntityBase
|
|||||||
}
|
}
|
||||||
public void AcceptCancelRequest()
|
public void AcceptCancelRequest()
|
||||||
{
|
{
|
||||||
IsCanceledRequest = false;
|
ClearRequests();
|
||||||
|
IsCanceledRequest = false;
|
||||||
IsCancel = true;
|
IsCancel = true;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
public void RejectCancel()
|
public void RejectCancel()
|
||||||
{
|
{
|
||||||
CancelDescription = null;
|
ClearRequests();
|
||||||
|
CancelDescription = null;
|
||||||
IsCanceledRequest = false;
|
IsCanceledRequest = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CompleteRequest(string? doneDescription)
|
public void CompleteRequest(string? doneDescription)
|
||||||
{
|
{
|
||||||
DoneDescription = doneDescription;
|
ClearRequests();
|
||||||
|
DoneDescription = doneDescription;
|
||||||
IsDoneRequest = true;
|
IsDoneRequest = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RejectCompleteRequest()
|
public void RejectCompleteRequest()
|
||||||
{
|
{
|
||||||
IsDoneRequest = false;
|
ClearRequests();
|
||||||
|
IsDoneRequest = false;
|
||||||
DoneDescription = null;
|
DoneDescription = null;
|
||||||
}
|
}
|
||||||
public void Completed()
|
public void Completed()
|
||||||
{
|
{
|
||||||
IsDoneRequest = false;
|
ClearRequests();
|
||||||
|
IsDoneRequest = false;
|
||||||
IsDone = true;
|
IsDone = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -128,6 +135,13 @@ public class Assign : EntityBase
|
|||||||
TimeRequest = false;
|
TimeRequest = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void ClearRequests()
|
||||||
|
{
|
||||||
|
IsDoneRequest = false;
|
||||||
|
IsCanceledRequest = false;
|
||||||
|
TimeRequest = false;
|
||||||
|
}
|
||||||
|
|
||||||
public void InsertNewData(DateTime endTaskDate,bool timeRequest,int acceptedTimeRequest,DateTime? requestDate, string timeRequestDescription, bool isCanceledRequest,
|
public void InsertNewData(DateTime endTaskDate,bool timeRequest,int acceptedTimeRequest,DateTime? requestDate, string timeRequestDescription, bool isCanceledRequest,
|
||||||
bool isCancel,string cancelDescription,bool isDone,bool isDoneRequest,string? doneDescription)
|
bool isCancel,string cancelDescription,bool isDone,bool isDoneRequest,string? doneDescription)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
using _0_Framework.Domain;
|
using _0_Framework.Domain;
|
||||||
using AccountManagement.Application.Contracts.SubAccount;
|
using AccountManagement.Application.Contracts.SubAccount;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Collections.Specialized;
|
||||||
|
|
||||||
namespace AccountManagement.Domain.SubAccountAgg
|
namespace AccountManagement.Domain.SubAccountAgg
|
||||||
{
|
{
|
||||||
@@ -13,5 +14,6 @@ namespace AccountManagement.Domain.SubAccountAgg
|
|||||||
SubAccount GetDetails(long subAccountId);
|
SubAccount GetDetails(long subAccountId);
|
||||||
SubAccount GetBy(string commandUsername);
|
SubAccount GetBy(string commandUsername);
|
||||||
SubAccountViewModel GetByVerifyCodeAndPhoneNumber(string code, string phone);
|
SubAccountViewModel GetByVerifyCodeAndPhoneNumber(string code, string phone);
|
||||||
|
List<SubAccount> GetBySubAccountRole(long subAccountRoleId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,17 +13,21 @@ namespace AccountManagement.Domain.SubAccountRoleAgg
|
|||||||
|
|
||||||
public List<SubAccountRolePermission> RolePermissions { get; private set; }
|
public List<SubAccountRolePermission> RolePermissions { get; private set; }
|
||||||
public List<SubAccount> SubAccounts { get; private set; }
|
public List<SubAccount> SubAccounts { get; private set; }
|
||||||
|
public List<SubAccountRoleWorkshop> RoleWorkshops { get; set; }
|
||||||
|
|
||||||
private SubAccountRole()
|
private SubAccountRole()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public SubAccountRole(string title, List<int> permissions, long accountId)
|
public SubAccountRole(string title, List<int> permissions, long accountId, List<long> workshopIds)
|
||||||
{
|
{
|
||||||
Title = title;
|
Title = title;
|
||||||
RolePermissions = permissions.Select(x => new SubAccountRolePermission(x, id)).ToList();
|
RolePermissions = permissions.Select(x => new SubAccountRolePermission(x, id)).ToList();
|
||||||
AccountId = accountId;
|
AccountId = accountId;
|
||||||
|
RoleWorkshops = workshopIds.Select(x => new SubAccountRoleWorkshop(x, id)).ToList();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ChangeTitle(string title)
|
public void ChangeTitle(string title)
|
||||||
{
|
{
|
||||||
Title = title;
|
Title = title;
|
||||||
@@ -32,10 +36,12 @@ namespace AccountManagement.Domain.SubAccountRoleAgg
|
|||||||
{
|
{
|
||||||
RolePermissions.AddRange(permissionIds.Select(x => new SubAccountRolePermission(x, id)));
|
RolePermissions.AddRange(permissionIds.Select(x => new SubAccountRolePermission(x, id)));
|
||||||
}
|
}
|
||||||
public void Edit(string title, List<int> permissions)
|
public void Edit(string title, List<int> permissions,List<long> workshopIds)
|
||||||
{
|
{
|
||||||
Title = title;
|
Title = title;
|
||||||
RolePermissions = permissions.Select(x => new SubAccountRolePermission(x, id)).ToList();
|
RolePermissions = permissions.Select(x => new SubAccountRolePermission(x, id)).ToList();
|
||||||
}
|
RoleWorkshops = workshopIds.Select(x => new SubAccountRoleWorkshop(x, id)).ToList();
|
||||||
}
|
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
using _0_Framework.Domain;
|
||||||
|
|
||||||
|
namespace AccountManagement.Domain.SubAccountRoleAgg;
|
||||||
|
|
||||||
|
public class SubAccountRoleWorkshop:EntityBase
|
||||||
|
{
|
||||||
|
public SubAccountRoleWorkshop(long workshopId, long subAccountId)
|
||||||
|
{
|
||||||
|
WorkshopId = workshopId;
|
||||||
|
SubAccountId = subAccountId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long WorkshopId { get; set; }
|
||||||
|
public long SubAccountId { get; set; }
|
||||||
|
public SubAccountRole SubAccountRole { get; set; }
|
||||||
|
}
|
||||||
@@ -21,6 +21,10 @@ namespace AccountMangement.Infrastructure.EFCore.Mappings
|
|||||||
opt.WithOwner(x => x.SubAccountRole);
|
opt.WithOwner(x => x.SubAccountRole);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
builder.OwnsMany(x => x.RoleWorkshops, roleWorkshop =>
|
||||||
|
{
|
||||||
|
roleWorkshop.WithOwner(x => x.SubAccountRole).HasForeignKey(x => x.SubAccountId);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1303
AccountMangement.Infrastructure.EFCore/Migrations/20250530133036_add workshop to subAccountRole.Designer.cs
generated
Normal file
1303
AccountMangement.Infrastructure.EFCore/Migrations/20250530133036_add workshop to subAccountRole.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,43 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace AccountMangement.Infrastructure.EFCore.Migrations
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public partial class addworkshoptosubAccountRole : Migration
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "SubAccountRoleWorkshop",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
id = table.Column<long>(type: "bigint", nullable: false)
|
||||||
|
.Annotation("SqlServer:Identity", "1, 1"),
|
||||||
|
SubAccountId = table.Column<long>(type: "bigint", nullable: false),
|
||||||
|
WorkshopId = table.Column<long>(type: "bigint", nullable: false),
|
||||||
|
CreationDate = table.Column<DateTime>(type: "datetime2", nullable: false)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_SubAccountRoleWorkshop", x => new { x.SubAccountId, x.id });
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_SubAccountRoleWorkshop_SubAccountRoles_SubAccountId",
|
||||||
|
column: x => x.SubAccountId,
|
||||||
|
principalTable: "SubAccountRoles",
|
||||||
|
principalColumn: "id",
|
||||||
|
onDelete: ReferentialAction.Cascade);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "SubAccountRoleWorkshop");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1078,6 +1078,33 @@ namespace AccountMangement.Infrastructure.EFCore.Migrations
|
|||||||
|
|
||||||
modelBuilder.Entity("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRole", b =>
|
modelBuilder.Entity("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRole", b =>
|
||||||
{
|
{
|
||||||
|
b.OwnsMany("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRoleWorkshop", "RoleWorkshops", b1 =>
|
||||||
|
{
|
||||||
|
b1.Property<long>("SubAccountId")
|
||||||
|
.HasColumnType("bigint");
|
||||||
|
|
||||||
|
b1.Property<long>("id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("bigint");
|
||||||
|
|
||||||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b1.Property<long>("id"));
|
||||||
|
|
||||||
|
b1.Property<DateTime>("CreationDate")
|
||||||
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b1.Property<long>("WorkshopId")
|
||||||
|
.HasColumnType("bigint");
|
||||||
|
|
||||||
|
b1.HasKey("SubAccountId", "id");
|
||||||
|
|
||||||
|
b1.ToTable("SubAccountRoleWorkshop");
|
||||||
|
|
||||||
|
b1.WithOwner("SubAccountRole")
|
||||||
|
.HasForeignKey("SubAccountId");
|
||||||
|
|
||||||
|
b1.Navigation("SubAccountRole");
|
||||||
|
});
|
||||||
|
|
||||||
b.OwnsMany("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRolePermission", "RolePermissions", b1 =>
|
b.OwnsMany("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRolePermission", "RolePermissions", b1 =>
|
||||||
{
|
{
|
||||||
b1.Property<long>("id")
|
b1.Property<long>("id")
|
||||||
@@ -1105,6 +1132,8 @@ namespace AccountMangement.Infrastructure.EFCore.Migrations
|
|||||||
});
|
});
|
||||||
|
|
||||||
b.Navigation("RolePermissions");
|
b.Navigation("RolePermissions");
|
||||||
|
|
||||||
|
b.Navigation("RoleWorkshops");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("AccountManagement.Domain.TaskAgg.Tasks", b =>
|
modelBuilder.Entity("AccountManagement.Domain.TaskAgg.Tasks", b =>
|
||||||
|
|||||||
@@ -312,6 +312,17 @@ public class AccountRepository : RepositoryBase<long, Account>, IAccountReposito
|
|||||||
IsActiveString = x.IsActive ? "true" : "false",
|
IsActiveString = x.IsActive ? "true" : "false",
|
||||||
}).ToList();
|
}).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task<List<AccountSelectListViewModel>> GetAdminSelectList()
|
||||||
|
{
|
||||||
|
return await _context.Accounts.Where(x => x.AdminAreaPermission == "true").Select(x => new AccountSelectListViewModel()
|
||||||
|
{
|
||||||
|
Id = x.id,
|
||||||
|
Name = x.Fullname,
|
||||||
|
RoleId = x.RoleId
|
||||||
|
}).ToListAsync();
|
||||||
|
}
|
||||||
|
|
||||||
//public List<AccountViewModel> GetAdminAccounts()
|
//public List<AccountViewModel> GetAdminAccounts()
|
||||||
//{
|
//{
|
||||||
// return _context.Accounts.Where(x=>x.AdminAreaPermission == "true" && x.IsActiveString == "true").Select(x => new AccountViewModel()
|
// return _context.Accounts.Where(x=>x.AdminAreaPermission == "true" && x.IsActiveString == "true").Select(x => new AccountViewModel()
|
||||||
|
|||||||
@@ -77,5 +77,10 @@ namespace AccountMangement.Infrastructure.EFCore.Repository
|
|||||||
Username = entity.Username
|
Username = entity.Username
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<SubAccount> GetBySubAccountRole(long subAccountRoleId)
|
||||||
|
{
|
||||||
|
return _context.SubAccounts.Where(x => x.SubAccountRoleId == subAccountRoleId).ToList();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -106,14 +106,16 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
{
|
{
|
||||||
res.EndTaskDate = _accountContext.Assigns.First(a => a.TaskId == res.Id && a.AssignedId == userId)
|
res.EndTaskDate = _accountContext.Assigns.First(a => a.TaskId == res.Id && a.AssignedId == userId)
|
||||||
.EndTaskDate.ToFarsi();
|
.EndTaskDate.ToFarsi();
|
||||||
|
var userAssign = res.AssignViewModels.First(x => x.AssignedId == userId);
|
||||||
|
|
||||||
res.AssignViewModels = res.AssignViewModels.Where(x => x.AssignedId == userId).ToList();
|
res.AssignViewModels = res.AssignViewModels.Where(x => x.AssignedId == userId).ToList();
|
||||||
res.IsDone = res.AssignViewModels.First(x => x.AssignedId == userId).IsDone;
|
res.IsDone = userAssign.IsDone;
|
||||||
res.IsCancel = res.AssignViewModels.First(x => x.AssignedId == userId).IsCancel;
|
res.IsCancel = userAssign.IsCancel;
|
||||||
|
res.HasRequest = userAssign.IsCanceledRequest || userAssign.TimeRequest ||
|
||||||
|
userAssign.IsDoneRequest;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (res.TaskScheduleId>0)
|
if (res.TaskScheduleId > 0)
|
||||||
{
|
{
|
||||||
var taskSchedule = _accountContext.TaskSchedules.FirstOrDefault(x => x.id == res.TaskScheduleId);
|
var taskSchedule = _accountContext.TaskSchedules.FirstOrDefault(x => x.id == res.TaskScheduleId);
|
||||||
|
|
||||||
@@ -121,7 +123,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
res.ScheduleType = taskSchedule.Type;
|
res.ScheduleType = taskSchedule.Type;
|
||||||
res.ScheduleCount = taskSchedule.Count;
|
res.ScheduleCount = taskSchedule.Count;
|
||||||
res.ScheduleUnitNumber = taskSchedule.UnitNumber;
|
res.ScheduleUnitNumber = taskSchedule.UnitNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//_accountContext.Tasks.Where(x => x.id == TaskId).Select(x => new EditTask()
|
//_accountContext.Tasks.Where(x => x.id == TaskId).Select(x => new EditTask()
|
||||||
@@ -160,8 +162,6 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
Remove(task);
|
Remove(task);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public List<TaskViewModel> GetRequestedTasks(TaskSearchModel searchModel)
|
public List<TaskViewModel> GetRequestedTasks(TaskSearchModel searchModel)
|
||||||
{
|
{
|
||||||
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
|
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
|
||||||
@@ -900,7 +900,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||||
IsCancelRequest = x.IsCancelRequest,
|
IsCancelRequest = x.IsCancelRequest,
|
||||||
ContractingPartyName = x.ContractingPartyName,
|
ContractingPartyName = x.ContractingPartyName,
|
||||||
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
|
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel,false),
|
||||||
MediaCount = x.MediaCount,
|
MediaCount = x.MediaCount,
|
||||||
HasAttachment = x.MediaCount > 0,
|
HasAttachment = x.MediaCount > 0,
|
||||||
SelfName = x.SelfName,
|
SelfName = x.SelfName,
|
||||||
@@ -1229,7 +1229,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||||
IsCancelRequest = x.IsCancelRequest,
|
IsCancelRequest = x.IsCancelRequest,
|
||||||
ContractingPartyName = x.ContractingPartyName,
|
ContractingPartyName = x.ContractingPartyName,
|
||||||
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
|
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel, false),
|
||||||
MediaCount = x.MediaCount,
|
MediaCount = x.MediaCount,
|
||||||
HasAttachment = x.MediaCount > 0,
|
HasAttachment = x.MediaCount > 0,
|
||||||
SelfName = x.SelfName,
|
SelfName = x.SelfName,
|
||||||
@@ -1788,7 +1788,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||||
IsCancelRequest = x.IsCancelRequest,
|
IsCancelRequest = x.IsCancelRequest,
|
||||||
ContractingPartyName = x.ContractingPartyName,
|
ContractingPartyName = x.ContractingPartyName,
|
||||||
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
|
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel, false),
|
||||||
MediaCount = x.MediaCount,
|
MediaCount = x.MediaCount,
|
||||||
HasAttachment = x.MediaCount > 0,
|
HasAttachment = x.MediaCount > 0,
|
||||||
SelfName = x.SelfName,
|
SelfName = x.SelfName,
|
||||||
@@ -1866,7 +1866,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
.Include(x => x.Task).ThenInclude(x => x.TaskSchedule)
|
.Include(x => x.Task).ThenInclude(x => x.TaskSchedule)
|
||||||
.Where(x =>
|
.Where(x =>
|
||||||
x.Task.IsActiveString == "true" && x.Task.SenderId == accountId
|
x.Task.IsActiveString == "true" && x.Task.SenderId == accountId
|
||||||
&& x.Task.TaskScheduleId != null && x.Task.TaskScheduleId > 0 && (!x.IsCanceledRequest && !x.TimeRequest && !x.IsDoneRequest) && x.Task.TaskSchedule.IsActive == IsActive.True);
|
&& x.Task.TaskScheduleId != null && x.Task.TaskScheduleId > 0 && (!x.IsCanceledRequest && !x.TimeRequest && !x.IsDoneRequest) && x.Task.TaskSchedule.IsActive== IsActive.True);
|
||||||
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
|
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
|
||||||
{
|
{
|
||||||
raw = raw.Where(x =>
|
raw = raw.Where(x =>
|
||||||
@@ -2056,7 +2056,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
TaskScheduleId = x.TaskScheduleId
|
TaskScheduleId = x.TaskScheduleId
|
||||||
|
|
||||||
|
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
|
|
||||||
final = final.Select(x => new TaskViewModel()
|
final = final.Select(x => new TaskViewModel()
|
||||||
@@ -2082,7 +2082,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||||
IsCancelRequest = x.IsCancelRequest,
|
IsCancelRequest = x.IsCancelRequest,
|
||||||
ContractingPartyName = x.ContractingPartyName,
|
ContractingPartyName = x.ContractingPartyName,
|
||||||
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
|
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel, false),
|
||||||
MediaCount = x.MediaCount,
|
MediaCount = x.MediaCount,
|
||||||
HasAttachment = x.MediaCount > 0,
|
HasAttachment = x.MediaCount > 0,
|
||||||
SelfName = x.SelfName,
|
SelfName = x.SelfName,
|
||||||
@@ -2095,7 +2095,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
ScheduleUnitType = x.ScheduleUnitType,
|
ScheduleUnitType = x.ScheduleUnitType,
|
||||||
TaskScheduleId = x.TaskScheduleId
|
TaskScheduleId = x.TaskScheduleId
|
||||||
|
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
final = final.Select(x => new TaskViewModel()
|
final = final.Select(x => new TaskViewModel()
|
||||||
{
|
{
|
||||||
@@ -2149,12 +2149,15 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
ScheduleUnitType = x.ScheduleUnitType,
|
ScheduleUnitType = x.ScheduleUnitType,
|
||||||
TaskScheduleId = x.TaskScheduleId
|
TaskScheduleId = x.TaskScheduleId
|
||||||
|
|
||||||
}).ToList();
|
}).ToList();
|
||||||
return final;
|
return final;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string SetTasksColors(DateTime date, bool isCancel)
|
public string SetTasksColors(DateTime date, bool isCancel,bool hasRequest)
|
||||||
{
|
{
|
||||||
|
if (hasRequest)
|
||||||
|
return "red";
|
||||||
|
|
||||||
if (isCancel)
|
if (isCancel)
|
||||||
{
|
{
|
||||||
//return "brown";
|
//return "brown";
|
||||||
@@ -2390,7 +2393,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
|
|
||||||
public List<Tasks> GetTasksByTaskScheduleId(long taskScheduleId)
|
public List<Tasks> GetTasksByTaskScheduleId(long taskScheduleId)
|
||||||
{
|
{
|
||||||
return _accountContext.Tasks.Include(x=>x.Assigns).Where(x => x.TaskScheduleId != null && x.TaskScheduleId == taskScheduleId).ToList();
|
return _accountContext.Tasks.Include(x => x.Assigns).Where(x => x.TaskScheduleId != null && x.TaskScheduleId == taskScheduleId).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -2658,7 +2661,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||||
IsCancelRequest = x.IsCancelRequest,
|
IsCancelRequest = x.IsCancelRequest,
|
||||||
ContractingPartyName = x.ContractingPartyName,
|
ContractingPartyName = x.ContractingPartyName,
|
||||||
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
|
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel, false),
|
||||||
MediaCount = x.MediaCount,
|
MediaCount = x.MediaCount,
|
||||||
HasAttachment = x.MediaCount > 0,
|
HasAttachment = x.MediaCount > 0,
|
||||||
SelfName = x.SelfName,
|
SelfName = x.SelfName,
|
||||||
@@ -2722,6 +2725,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
{
|
{
|
||||||
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
|
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
|
||||||
var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value);
|
var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value);
|
||||||
|
var today = DateTime.Today;
|
||||||
var emptyAcc = new AccountViewModel()
|
var emptyAcc = new AccountViewModel()
|
||||||
{
|
{
|
||||||
Fullname = "-",
|
Fullname = "-",
|
||||||
@@ -2731,7 +2735,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
var raw = _accountContext.Assigns.Include(x => x.Task).ThenInclude(x => x.TaskMedias)
|
var raw = _accountContext.Assigns.Include(x => x.Task).ThenInclude(x => x.TaskMedias)
|
||||||
.ThenInclude(x => x.Media)
|
.ThenInclude(x => x.Media)
|
||||||
.Where(x =>
|
.Where(x =>
|
||||||
x.Task.IsActiveString == "true" && x.AssignedId == accountId && (!x.IsCanceledRequest && !x.TimeRequest && !x.IsDoneRequest) && x.Task.TicketId == null);
|
x.Task.IsActiveString == "true" && x.AssignedId == accountId && x.Task.TicketId == null &&!x.IsDoneRequest && !x.IsCanceledRequest);
|
||||||
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
|
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
|
||||||
{
|
{
|
||||||
raw = raw.Where(x =>
|
raw = raw.Where(x =>
|
||||||
@@ -2764,6 +2768,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
MediaCount = _accountContext.TaskMedias.Count(m => m.TaskId == x.Task.id),
|
MediaCount = _accountContext.TaskMedias.Count(m => m.TaskId == x.Task.id),
|
||||||
Description = x.Task.Description,
|
Description = x.Task.Description,
|
||||||
IsDoneRequest = x.IsDoneRequest,
|
IsDoneRequest = x.IsDoneRequest,
|
||||||
|
|
||||||
});
|
});
|
||||||
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
|
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
|
||||||
{
|
{
|
||||||
@@ -2802,7 +2807,8 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
ContractingPartyName = x.ContractingPartyName,
|
ContractingPartyName = x.ContractingPartyName,
|
||||||
MediaCount = x.MediaCount,
|
MediaCount = x.MediaCount,
|
||||||
Description = x.Description,
|
Description = x.Description,
|
||||||
IsDoneRequest = x.IsDoneRequest
|
IsDoneRequest = x.IsDoneRequest,
|
||||||
|
HasRequest = x.IsCancelRequest || x.RequestTime || x.IsDoneRequest
|
||||||
});
|
});
|
||||||
if (!string.IsNullOrWhiteSpace(searchModel.StartDate) && !string.IsNullOrWhiteSpace(searchModel.EndDate))
|
if (!string.IsNullOrWhiteSpace(searchModel.StartDate) && !string.IsNullOrWhiteSpace(searchModel.EndDate))
|
||||||
{
|
{
|
||||||
@@ -2871,8 +2877,10 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var orderResult = result.OrderByDescending(x => x.IsCancel ? 0 : 1).ThenBy(x => x.IsDone ? 1 : 0)
|
var orderResult = result.OrderBy(x => x.IsDone || x.IsCancel)
|
||||||
.ThenBy(x => x.EndTaskDateGE);
|
.ThenByDescending(x => x.EndTaskDateGE <= today.AddDays(1) && !x.RequestTime)
|
||||||
|
.ThenByDescending(x => x.RequestTime)
|
||||||
|
.ThenBy(x => x.EndTaskDateGE); // مرتبسازی داخلی بر اساس تاریخ
|
||||||
|
|
||||||
|
|
||||||
var final = orderResult.Skip(searchModel.PageIndex).Take(30).ToList();
|
var final = orderResult.Skip(searchModel.PageIndex).Take(30).ToList();
|
||||||
@@ -2906,7 +2914,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
MediaCount = x.MediaCount,
|
MediaCount = x.MediaCount,
|
||||||
SelfName = x.SelfName,
|
SelfName = x.SelfName,
|
||||||
Description = x.Description,
|
Description = x.Description,
|
||||||
IsDoneRequest = x.IsDoneRequest
|
IsDoneRequest = x.IsDoneRequest,
|
||||||
|
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
@@ -2934,7 +2942,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||||
IsCancelRequest = x.IsCancelRequest,
|
IsCancelRequest = x.IsCancelRequest,
|
||||||
ContractingPartyName = x.ContractingPartyName,
|
ContractingPartyName = x.ContractingPartyName,
|
||||||
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
|
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel,x.RequestTime),
|
||||||
MediaCount = x.MediaCount,
|
MediaCount = x.MediaCount,
|
||||||
HasAttachment = x.MediaCount > 0,
|
HasAttachment = x.MediaCount > 0,
|
||||||
SelfName = x.SelfName,
|
SelfName = x.SelfName,
|
||||||
@@ -2993,6 +3001,8 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
|||||||
AssignedName = "-",
|
AssignedName = "-",
|
||||||
AssignedPositionValue = 0
|
AssignedPositionValue = 0
|
||||||
},
|
},
|
||||||
|
HasRequest = x.IsCancelRequest || x.RequestTime || x.IsDoneRequest
|
||||||
|
|
||||||
}).ToList();
|
}).ToList();
|
||||||
return final;
|
return final;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,25 +3,26 @@ using System.Threading.Tasks;
|
|||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using _0_Framework.InfraStructure;
|
using _0_Framework.InfraStructure;
|
||||||
using AccountManagement.Application.Contracts.Media;
|
using AccountManagement.Application.Contracts.Media;
|
||||||
|
using AccountManagement.Application.Contracts.Task;
|
||||||
using AccountManagement.Application.Contracts.TaskSchedule;
|
using AccountManagement.Application.Contracts.TaskSchedule;
|
||||||
using AccountManagement.Domain.TaskScheduleAgg;
|
using AccountManagement.Domain.TaskScheduleAgg;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
namespace AccountMangement.Infrastructure.EFCore.Repository;
|
namespace AccountMangement.Infrastructure.EFCore.Repository;
|
||||||
|
|
||||||
public class TaskScheduleRepository: RepositoryBase<long, TaskSchedule>, ITaskScheduleRepository
|
public class TaskScheduleRepository : RepositoryBase<long, TaskSchedule>, ITaskScheduleRepository
|
||||||
{
|
{
|
||||||
private readonly AccountContext _accountContext;
|
private readonly AccountContext _accountContext;
|
||||||
|
|
||||||
public TaskScheduleRepository(AccountContext accountContext):base(accountContext)
|
public TaskScheduleRepository(AccountContext accountContext) : base(accountContext)
|
||||||
{
|
{
|
||||||
_accountContext = accountContext;
|
_accountContext = accountContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<TaskScheduleDetailsViewModel> GetDetails(long id)
|
public async Task<TaskScheduleDetailsViewModel> GetDetails(long id)
|
||||||
{
|
{
|
||||||
var taskSchedule=await _accountContext.TaskSchedules.Include(x=>x.TasksList).ThenInclude(x=>x.Assigns)
|
var taskSchedule = await _accountContext.TaskSchedules.Include(x => x.TasksList).ThenInclude(x => x.Assigns)
|
||||||
.Include(x=>x.TasksList).ThenInclude(x=>x.TaskMedias).ThenInclude(x=>x.Media).FirstOrDefaultAsync(x => x.id == id);
|
.Include(x => x.TasksList).ThenInclude(x => x.TaskMedias).ThenInclude(x => x.Media).FirstOrDefaultAsync(x => x.id == id);
|
||||||
if (taskSchedule == null)
|
if (taskSchedule == null)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
@@ -29,7 +30,7 @@ public class TaskScheduleRepository: RepositoryBase<long, TaskSchedule>, ITaskSc
|
|||||||
|
|
||||||
var firstTaskDetails = taskSchedule.TasksList.First();
|
var firstTaskDetails = taskSchedule.TasksList.First();
|
||||||
|
|
||||||
var firstTimeAssigns = firstTaskDetails.Assigns.Where(x=>x.FirstTimeCreation).ToList();
|
var firstTimeAssigns = firstTaskDetails.Assigns.Where(x => x.FirstTimeCreation).ToList();
|
||||||
|
|
||||||
var assignedIds = firstTimeAssigns.Select(x => x.AssignedId).ToList();
|
var assignedIds = firstTimeAssigns.Select(x => x.AssignedId).ToList();
|
||||||
|
|
||||||
@@ -46,13 +47,15 @@ public class TaskScheduleRepository: RepositoryBase<long, TaskSchedule>, ITaskSc
|
|||||||
Title = firstTaskDetails.Title,
|
Title = firstTaskDetails.Title,
|
||||||
Description = firstTaskDetails.Description,
|
Description = firstTaskDetails.Description,
|
||||||
ContractingPartyName = firstTaskDetails.ContractingPartyName,
|
ContractingPartyName = firstTaskDetails.ContractingPartyName,
|
||||||
AssignedName = assignedAccounts.Select(x=>x.Fullname).ToList(),
|
AssignedName = assignedAccounts.Select(x => x.Fullname).ToList(),
|
||||||
CreationDateFa = firstTaskDetails.CreationDate.ToFarsi(),
|
CreationDateFa = firstTaskDetails.CreationDate.ToFarsi(),
|
||||||
SenderName = sender.Fullname,
|
SenderName = sender.Fullname,
|
||||||
TaskScheduleType = taskSchedule.Type,
|
TaskScheduleType = taskSchedule.Type,
|
||||||
TaskScheduleUnitType = taskSchedule.UnitType,
|
TaskScheduleUnitType = taskSchedule.UnitType,
|
||||||
UnitNumber = taskSchedule.UnitNumber,
|
UnitNumber = taskSchedule.UnitNumber,
|
||||||
Medias = firstTaskDetails.TaskMedias.Select(x=> new MediaViewModel()
|
Count = taskSchedule.Type == TaskScheduleType.Limited ? taskSchedule.Count : "نامحدود",
|
||||||
|
FirstEndTaskDate = firstTaskDetails.Assigns.FirstOrDefault()?.EndTaskDate.ToFarsi() ?? "",
|
||||||
|
Medias = firstTaskDetails.TaskMedias.Select(x => new MediaViewModel()
|
||||||
{
|
{
|
||||||
Category = x.Media.Category,
|
Category = x.Media.Category,
|
||||||
Id = x.MediaId,
|
Id = x.MediaId,
|
||||||
|
|||||||
@@ -0,0 +1,55 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using _0_Framework.Domain;
|
||||||
|
using CompanyManagment.App.Contracts.AdminMonthlyOverview;
|
||||||
|
using Microsoft.AspNetCore.JsonPatch.Operations;
|
||||||
|
|
||||||
|
namespace Company.Domain.AdminMonthlyOverviewAgg;
|
||||||
|
|
||||||
|
public class AdminMonthlyOverview:EntityBase
|
||||||
|
{
|
||||||
|
public AdminMonthlyOverview(long workshopId, int month, int year, AdminMonthlyOverviewStatus status)
|
||||||
|
{
|
||||||
|
WorkshopId = workshopId;
|
||||||
|
Month = month;
|
||||||
|
Year = year;
|
||||||
|
Status = status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long WorkshopId { get; set; }
|
||||||
|
public int Month { get; set; }
|
||||||
|
public int Year { get; set; }
|
||||||
|
public AdminMonthlyOverviewStatus Status { get; set; }
|
||||||
|
|
||||||
|
public void Next()
|
||||||
|
{
|
||||||
|
var maxValue = Enum.GetValues(typeof(AdminMonthlyOverviewStatus))
|
||||||
|
.Cast<AdminMonthlyOverviewStatus>()
|
||||||
|
.Max();
|
||||||
|
|
||||||
|
if (Status >= maxValue)
|
||||||
|
{
|
||||||
|
throw new InvalidDataException("تغییر وضعیت وارد شده نامعتبر است");
|
||||||
|
}
|
||||||
|
Status += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Back()
|
||||||
|
{
|
||||||
|
var minValue = Enum.GetValues(typeof(AdminMonthlyOverviewStatus))
|
||||||
|
.Cast<AdminMonthlyOverviewStatus>()
|
||||||
|
.Min();
|
||||||
|
|
||||||
|
if (Status <= minValue)
|
||||||
|
{
|
||||||
|
throw new InvalidDataException("تغییر وضعیت وارد شده نامعتبر است");
|
||||||
|
}
|
||||||
|
Status -= 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetStatus(AdminMonthlyOverviewStatus status)
|
||||||
|
{
|
||||||
|
Status = status;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using _0_Framework.Domain;
|
||||||
|
using CompanyManagment.App.Contracts.AdminMonthlyOverview;
|
||||||
|
|
||||||
|
namespace Company.Domain.AdminMonthlyOverviewAgg;
|
||||||
|
|
||||||
|
public interface IAdminMonthlyOverviewRepository:IRepository<long, AdminMonthlyOverview>
|
||||||
|
{
|
||||||
|
Task<List<AdminMonthlyOverviewListViewModel>> GetWorkshopStatus(AdminMonthlyOverviewSearchModel searchModel);
|
||||||
|
Task<AdminMonthlyOverViewCounterVm> GetCounter(int year, int month, long accountId);
|
||||||
|
}
|
||||||
@@ -1,6 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using _0_Framework.Domain;
|
using _0_Framework.Domain;
|
||||||
|
using Company.Domain.CheckoutAgg.ValueObjects;
|
||||||
|
using Company.Domain.CustomizeCheckoutAgg.ValueObjects;
|
||||||
using Company.Domain.WorkshopAgg;
|
using Company.Domain.WorkshopAgg;
|
||||||
|
|
||||||
namespace Company.Domain.CheckoutAgg;
|
namespace Company.Domain.CheckoutAgg;
|
||||||
@@ -21,7 +25,11 @@ public class Checkout : EntityBase
|
|||||||
double salaryAidDeduction, double absenceDeduction, string sumOfWorkingDays
|
double salaryAidDeduction, double absenceDeduction, string sumOfWorkingDays
|
||||||
, string archiveCode, string personnelCode,
|
, string archiveCode, string personnelCode,
|
||||||
string totalClaims, string totalDeductions, double totalPayment, string signature, double marriedAllowance, bool leaveCheckout,
|
string totalClaims, string totalDeductions, double totalPayment, string signature, double marriedAllowance, bool leaveCheckout,
|
||||||
double creditLeaves, double absencePeriod, double averageHoursPerDay, bool hasRollCall, string overTimeWorkvalue, string overNightWorkValue, string fridayWorkValue, string rotatingShifValue, string absenceValue, string totalDayOfLeaveCompute, string totalDayOfYearsCompute, string totalDayOfBunosesCompute)
|
double creditLeaves, double absencePeriod, double averageHoursPerDay, bool hasRollCall, string overTimeWorkvalue,
|
||||||
|
string overNightWorkValue, string fridayWorkValue, string rotatingShifValue, string absenceValue,
|
||||||
|
string totalDayOfLeaveCompute, string totalDayOfYearsCompute, string totalDayOfBunosesCompute,
|
||||||
|
ICollection<CheckoutLoanInstallment> loanInstallments,
|
||||||
|
ICollection<CheckoutSalaryAid> salaryAids)
|
||||||
{
|
{
|
||||||
EmployeeFullName = employeeFullName;
|
EmployeeFullName = employeeFullName;
|
||||||
FathersName = fathersName;
|
FathersName = fathersName;
|
||||||
@@ -78,6 +86,8 @@ public class Checkout : EntityBase
|
|||||||
TotalDayOfLeaveCompute = totalDayOfLeaveCompute;
|
TotalDayOfLeaveCompute = totalDayOfLeaveCompute;
|
||||||
TotalDayOfYearsCompute = totalDayOfYearsCompute;
|
TotalDayOfYearsCompute = totalDayOfYearsCompute;
|
||||||
TotalDayOfBunosesCompute = totalDayOfBunosesCompute;
|
TotalDayOfBunosesCompute = totalDayOfBunosesCompute;
|
||||||
|
LoanInstallments = loanInstallments;
|
||||||
|
SalaryAids = salaryAids;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string EmployeeFullName { get; private set; }
|
public string EmployeeFullName { get; private set; }
|
||||||
@@ -181,7 +191,15 @@ public class Checkout : EntityBase
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public string TotalDayOfBunosesCompute { get; private set; }
|
public string TotalDayOfBunosesCompute { get; private set; }
|
||||||
|
|
||||||
public Workshop Workshop { get; set; }
|
|
||||||
|
#region valueObjects
|
||||||
|
|
||||||
|
public ICollection<CheckoutLoanInstallment> LoanInstallments { get; set; } = [];
|
||||||
|
public ICollection<CheckoutSalaryAid> SalaryAids { get; set; } = [];
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
public Workshop Workshop { get; set; }
|
||||||
//public WorkingHours WorkingHours { get; set; }
|
//public WorkingHours WorkingHours { get; set; }
|
||||||
|
|
||||||
public void Edit(string employeeFullName, string fathersName, string nationalCode, string dateOfBirth,
|
public void Edit(string employeeFullName, string fathersName, string nationalCode, string dateOfBirth,
|
||||||
@@ -278,4 +296,16 @@ public class Checkout : EntityBase
|
|||||||
this.TotalDeductions = totalDeductions;
|
this.TotalDeductions = totalDeductions;
|
||||||
this.TotalPayment = totalPayment;
|
this.TotalPayment = totalPayment;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void SetSalaryAid(ICollection<CheckoutSalaryAid> salaryAids,double salaryAidAmount)
|
||||||
|
{
|
||||||
|
SalaryAids = salaryAids;
|
||||||
|
SalaryAidDeduction = salaryAidAmount;
|
||||||
|
}
|
||||||
|
public void SetLoanInstallment(ICollection<CheckoutLoanInstallment> lonaInstallments, double installmentsAmount)
|
||||||
|
{
|
||||||
|
LoanInstallments = lonaInstallments;
|
||||||
|
InstallmentDeduction = installmentsAmount;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -22,7 +22,24 @@ public interface ICheckoutRepository : IRepository<long, Checkout>
|
|||||||
string year, string month);
|
string year, string month);
|
||||||
EditCheckout GetDetails(long id);
|
EditCheckout GetDetails(long id);
|
||||||
|
|
||||||
void CreateCkeckout(Checkout command);
|
Task CreateCkeckout(Checkout command);
|
||||||
|
/// <summary>
|
||||||
|
/// لود لیست اولیه جهت ایجاد فیش حقوقی
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="workshopId"></param>
|
||||||
|
/// <param name="employeeId"></param>
|
||||||
|
/// <param name="year"></param>
|
||||||
|
/// <param name="month"></param>
|
||||||
|
/// <param name="contractStart"></param>
|
||||||
|
/// <param name="contractEnd"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <exception cref="NotImplementedException"></exception>
|
||||||
|
Task<CreateCheckoutListViewModel> GetContractResultToCreateCheckout(long workshopId, long employeeId, string year,
|
||||||
|
string month,
|
||||||
|
string contractStart, string contractEnd);
|
||||||
|
//void CreateCkeckout(Checkout command);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Task<List<CheckoutViewModel>> Search(CheckoutSearchModel searchModel);
|
Task<List<CheckoutViewModel>> Search(CheckoutSearchModel searchModel);
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
using _0_Framework.Application;
|
||||||
|
|
||||||
|
namespace Company.Domain.CheckoutAgg.ValueObjects;
|
||||||
|
|
||||||
|
public class CheckoutLoanInstallment
|
||||||
|
{
|
||||||
|
public CheckoutLoanInstallment(string amountForMonth, string month, string year, IsActive isActive, string loanRemaining, string loanAmount, long entityId)
|
||||||
|
{
|
||||||
|
AmountForMonth = amountForMonth;
|
||||||
|
Month = month;
|
||||||
|
Year = year;
|
||||||
|
IsActive = isActive;
|
||||||
|
LoanRemaining = loanRemaining;
|
||||||
|
LoanAmount = loanAmount;
|
||||||
|
EntityId = entityId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string AmountForMonth { get; private set; }
|
||||||
|
public string Month { get; private set; }
|
||||||
|
public string Year { get; private set; }
|
||||||
|
public string LoanRemaining { get; set; }
|
||||||
|
public IsActive IsActive { get; private set; }
|
||||||
|
public string LoanAmount { get; set; }
|
||||||
|
public long EntityId { get; set; }
|
||||||
|
}
|
||||||
24
Company.Domain/CheckoutAgg/ValueObjects/CheckoutSalaryAid.cs
Normal file
24
Company.Domain/CheckoutAgg/ValueObjects/CheckoutSalaryAid.cs
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
using System;
|
||||||
|
using AccountManagement.Domain.AccountAgg;
|
||||||
|
|
||||||
|
namespace Company.Domain.CheckoutAgg.ValueObjects;
|
||||||
|
|
||||||
|
public class CheckoutSalaryAid
|
||||||
|
{
|
||||||
|
public CheckoutSalaryAid(string amount, DateTime salaryAidDateTime, string salaryAidDateTimeFa, DateTime calculationDateTime, string calculationDateTimeFa, long entityId)
|
||||||
|
{
|
||||||
|
Amount = amount;
|
||||||
|
SalaryAidDateTime = salaryAidDateTime;
|
||||||
|
SalaryAidDateTimeFa = salaryAidDateTimeFa;
|
||||||
|
CalculationDateTime = calculationDateTime;
|
||||||
|
CalculationDateTimeFa = calculationDateTimeFa;
|
||||||
|
EntityId = entityId;
|
||||||
|
}
|
||||||
|
public string Amount { get; private set; }
|
||||||
|
public DateTime SalaryAidDateTime { get; private set; }
|
||||||
|
public string SalaryAidDateTimeFa { get; private set; }
|
||||||
|
|
||||||
|
public DateTime CalculationDateTime { get; private set; }
|
||||||
|
public string CalculationDateTimeFa { get; private set; }
|
||||||
|
public long EntityId { get; set; }
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
@@ -14,4 +14,8 @@
|
|||||||
<ProjectReference Include="..\CompanyManagment.App.Contracts\CompanyManagment.App.Contracts.csproj" />
|
<ProjectReference Include="..\CompanyManagment.App.Contracts\CompanyManagment.App.Contracts.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="CheckoutAgg\ValueObjects\" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
using _0_Framework.Domain;
|
|
||||||
|
|
||||||
namespace Company.Domain.ContactUsAgg;
|
|
||||||
|
|
||||||
public class ContactUs:EntityBase
|
|
||||||
{
|
|
||||||
public ContactUs(string firstName, string lastName, string email, string phoneNumber, string title, string message)
|
|
||||||
{
|
|
||||||
FirstName = firstName.Trim();
|
|
||||||
LastName = lastName.Trim();
|
|
||||||
Email = email;
|
|
||||||
PhoneNumber = phoneNumber;
|
|
||||||
Title = title;
|
|
||||||
Message = message;
|
|
||||||
FullName = FirstName + " " + LastName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public string FirstName { get; private set; }
|
|
||||||
public string LastName { get; private set; }
|
|
||||||
public string Email { get; private set; }
|
|
||||||
public string PhoneNumber { get; private set; }
|
|
||||||
public string Title { get; private set; }
|
|
||||||
public string Message { get; private set; }
|
|
||||||
public string FullName { get; private set; }
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
using _0_Framework.Domain;
|
|
||||||
|
|
||||||
namespace Company.Domain.ContactUsAgg;
|
|
||||||
|
|
||||||
public interface IContactUsRepository : IRepository<long, ContactUs>
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -213,6 +213,60 @@ public class CustomizeWorkshopEmployeeSettings : BaseCustomizeEntity
|
|||||||
earlyExit.EarlyExitTimeFines.Select(x => new EarlyExitTimeFine(x.Minute, x.FineMoney))
|
earlyExit.EarlyExitTimeFines.Select(x => new EarlyExitTimeFine(x.Minute, x.FineMoney))
|
||||||
.ToList(), earlyExit.Value);
|
.ToList(), earlyExit.Value);
|
||||||
}
|
}
|
||||||
|
public void UpdateIsShiftChange()
|
||||||
|
{
|
||||||
|
var groupSetting = CustomizeWorkshopGroupSettings;
|
||||||
|
if (groupSetting == null)
|
||||||
|
return;
|
||||||
|
bool isShiftChange;
|
||||||
|
|
||||||
|
|
||||||
|
if (WorkshopShiftStatus == WorkshopShiftStatus.Regular)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (CustomizeWorkshopEmployeeSettingsShifts.All(x => groupSetting.CustomizeWorkshopGroupSettingsShifts.Any(y => x.Equals(y)))
|
||||||
|
&& WorkshopShiftStatus == groupSetting.WorkshopShiftStatus && FridayWork == groupSetting.FridayWork &&
|
||||||
|
HolidayWork == groupSetting.HolidayWork && BreakTime == groupSetting.BreakTime)
|
||||||
|
{
|
||||||
|
isShiftChange = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
isShiftChange = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (WorkshopShiftStatus == WorkshopShiftStatus.Irregular)
|
||||||
|
{
|
||||||
|
if (WorkshopShiftStatus == groupSetting.WorkshopShiftStatus && BreakTime == groupSetting.BreakTime &&
|
||||||
|
IrregularShift == groupSetting.IrregularShift && FridayWork == groupSetting.FridayWork &&
|
||||||
|
HolidayWork == groupSetting.HolidayWork)
|
||||||
|
{
|
||||||
|
isShiftChange = false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
isShiftChange = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (CustomizeRotatingShifts.All(x => groupSetting.CustomizeRotatingShifts.Any(y => x.Equals(y)))
|
||||||
|
&& WorkshopShiftStatus == groupSetting.WorkshopShiftStatus && FridayWork == groupSetting.FridayWork &&
|
||||||
|
HolidayWork == groupSetting.HolidayWork && BreakTime == groupSetting.BreakTime)
|
||||||
|
{
|
||||||
|
isShiftChange = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
isShiftChange = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
IsShiftChanged = isShiftChange;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -219,7 +219,7 @@ public class CustomizeWorkshopGroupSettings : BaseCustomizeEntity
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var permittedToOverWrite = CustomizeWorkshopEmployeeSettingsCollection.Where(x => employeeIds.Contains(x.id));
|
var permittedToOverWrite = CustomizeWorkshopEmployeeSettingsCollection.Where(x => employeeIds.Contains(x.EmployeeId));
|
||||||
|
|
||||||
foreach (var item in permittedToOverWrite)
|
foreach (var item in permittedToOverWrite)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ public interface IInstitutionContractRepository : IRepository<long, InstitutionC
|
|||||||
|
|
||||||
double GetcontractAmount(int countPerson);
|
double GetcontractAmount(int countPerson);
|
||||||
|
|
||||||
string ExpColor(DateTime contractEndGr, double contractAmount,
|
(string result, string isExpier) ExpColor(DateTime contractEndGr, double contractAmount,
|
||||||
string isActiveString);
|
string isActiveString);
|
||||||
|
|
||||||
TotalbalancViewModel TotalBalance(long contractingPartyId);
|
TotalbalancViewModel TotalBalance(long contractingPartyId);
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ using System.Threading.Tasks;
|
|||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using _0_Framework.Domain;
|
using _0_Framework.Domain;
|
||||||
using CompanyManagment.App.Contracts.InsuranceJob;
|
using CompanyManagment.App.Contracts.InsuranceJob;
|
||||||
|
using CompanyManagment.App.Contracts.InsuranceJobItem;
|
||||||
|
|
||||||
namespace Company.Domain.InsurancJobAgg;
|
namespace Company.Domain.InsurancJobAgg;
|
||||||
|
|
||||||
@@ -13,10 +14,16 @@ public interface IInsuranceJobRepositpry:IRepository<long, InsuranceJob>
|
|||||||
{
|
{
|
||||||
//OperationResult Create(CreateInsurancJob command);
|
//OperationResult Create(CreateInsurancJob command);
|
||||||
// OperationResult Edit(EditInsurancJob command);
|
// OperationResult Edit(EditInsurancJob command);
|
||||||
EditInsuranceJob GetDetails(long id);
|
EditInsuranceJob GetDetails(long id, string year, string month);
|
||||||
List<InsuranceJobViewModel> GetInsurancJob();
|
List<InsuranceJobViewModel> GetInsurancJob();
|
||||||
List<InsuranceJobViewModel> Search(InsuranceJobSearchModel searchModel);
|
List<InsuranceJobViewModel> Search(InsuranceJobSearchModel searchModel);
|
||||||
OperationResult CreateInsuranceJob(CreateInsuranceJob command);
|
OperationResult CreateInsuranceJob(CreateInsuranceJob command);
|
||||||
|
List<(long id, string date)> GetOldYersInsuranceItemIds();
|
||||||
|
OperationResult CopyFromLastYear(CopyFromLastYearViewModel command);
|
||||||
|
OperationResult RecoveryOldData1403();
|
||||||
OperationResult Remove(long id);
|
OperationResult Remove(long id);
|
||||||
OperationResult EditInsuranceJob(EditInsuranceJob command);
|
OperationResult EditInsuranceJob(EditInsuranceJob command);
|
||||||
}
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,8 +14,11 @@ public interface IInsuranceJobItemRepositpry : IRepository<long, InsuranceJobIte
|
|||||||
{
|
{
|
||||||
void CreateInsuranceJobItem(InsuranceJobItemViewModel model);
|
void CreateInsuranceJobItem(InsuranceJobItemViewModel model);
|
||||||
DetailsInsuranceJobItem GetDetails(long id);
|
DetailsInsuranceJobItem GetDetails(long id);
|
||||||
List<InsuranceJobItemViewModel> GetInsuranceJobItemByInsuranceJobId(long Id);
|
List<InsuranceJobItemViewModel> GetInsuranceJobItemByInsuranceJobId(long Id, string year, string month);
|
||||||
List<InsuranceJobItemViewModel> Search(InsuranceJobItemSearchModel searchModel);
|
List<InsuranceJobItemViewModel> Search(InsuranceJobItemSearchModel searchModel);
|
||||||
InsuranceJobItemViewModel GetInsuranceJobItemByInsuranceJobIdForFixedSalary(long insuranceJobId, long jobId);
|
InsuranceJobItemViewModel GetInsuranceJobItemByInsuranceJobIdForFixedSalary(long insuranceJobId, long jobId,
|
||||||
|
string year, string month);
|
||||||
|
|
||||||
|
(List<string> workshopList, bool hasAnyWorkshop) GetWorkshopUsedThisInsuranceJob(long insuranceJobId);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using _0_Framework.Domain;
|
using _0_Framework.Domain;
|
||||||
using Company.Domain.InsuranceJobAndJobsAgg;
|
using Company.Domain.InsuranceJobAndJobsAgg;
|
||||||
using Company.Domain.InsurancJobAgg;
|
using Company.Domain.InsurancJobAgg;
|
||||||
@@ -8,13 +9,15 @@ namespace Company.Domain.InsuranceJobItemAgg;
|
|||||||
|
|
||||||
public class InsuranceJobItem : EntityBase
|
public class InsuranceJobItem : EntityBase
|
||||||
{
|
{
|
||||||
public InsuranceJobItem(double percentageLessThan, double salaeyLessThan, double percentageMoreThan, double salaryMoreThan, long insuranceJobId)
|
public InsuranceJobItem(double percentageLessThan, double salaeyLessThan, double percentageMoreThan, double salaryMoreThan, long insuranceJobId, DateTime? startDate, DateTime? endDate)
|
||||||
{
|
{
|
||||||
PercentageLessThan = percentageLessThan;
|
PercentageLessThan = percentageLessThan;
|
||||||
SalaeyLessThan = salaeyLessThan;
|
SalaeyLessThan = salaeyLessThan;
|
||||||
PercentageMoreThan = percentageMoreThan;
|
PercentageMoreThan = percentageMoreThan;
|
||||||
SalaryMoreThan = salaryMoreThan;
|
SalaryMoreThan = salaryMoreThan;
|
||||||
InsuranceJobId = insuranceJobId;
|
InsuranceJobId = insuranceJobId;
|
||||||
|
StartDate = startDate;
|
||||||
|
EndDate = endDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double PercentageLessThan { get; private set; }
|
public double PercentageLessThan { get; private set; }
|
||||||
@@ -22,6 +25,9 @@ public class InsuranceJobItem : EntityBase
|
|||||||
public double PercentageMoreThan { get; private set; }
|
public double PercentageMoreThan { get; private set; }
|
||||||
public double SalaryMoreThan { get; private set; }
|
public double SalaryMoreThan { get; private set; }
|
||||||
|
|
||||||
|
public DateTime? StartDate { get; private set; }
|
||||||
|
public DateTime? EndDate { get; private set; }
|
||||||
|
|
||||||
public long InsuranceJobId { get; private set; }
|
public long InsuranceJobId { get; private set; }
|
||||||
public InsuranceJob InsuranceJob { get; set; }
|
public InsuranceJob InsuranceJob { get; set; }
|
||||||
public List<InsuranceJobAndJobs> InsuranceJobAndJobs { get; set; }
|
public List<InsuranceJobAndJobs> InsuranceJobAndJobs { get; set; }
|
||||||
@@ -31,12 +37,14 @@ public class InsuranceJobItem : EntityBase
|
|||||||
InsuranceJobAndJobs = new List<InsuranceJobAndJobs>();
|
InsuranceJobAndJobs = new List<InsuranceJobAndJobs>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Edit(double percentageLessThan, double salaeyLessThan, double percentageMoreThan, double salaryMoreThan, long insuranceJobId)
|
public void Edit(double percentageLessThan, double salaeyLessThan, double percentageMoreThan, double salaryMoreThan, long insuranceJobId, DateTime? startDate, DateTime? endDate)
|
||||||
{
|
{
|
||||||
PercentageLessThan = percentageLessThan;
|
PercentageLessThan = percentageLessThan;
|
||||||
SalaeyLessThan = salaeyLessThan;
|
SalaeyLessThan = salaeyLessThan;
|
||||||
PercentageMoreThan = percentageMoreThan;
|
PercentageMoreThan = percentageMoreThan;
|
||||||
SalaryMoreThan = salaryMoreThan;
|
SalaryMoreThan = salaryMoreThan;
|
||||||
InsuranceJobId = insuranceJobId;
|
InsuranceJobId = insuranceJobId;
|
||||||
|
StartDate = startDate;
|
||||||
|
EndDate = endDate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -45,4 +45,5 @@ public interface ILeftWorkRepository : IRepository<long, LeftWork>
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
Task<LeftWork> GetLastLeftWork(long employeeId, long workshopId);
|
Task<LeftWork> GetLastLeftWork(long employeeId, long workshopId);
|
||||||
|
List<LeftWorkViewModel> SearchCreateContract(LeftWorkSearchModel searchModel);
|
||||||
}
|
}
|
||||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using _0_Framework.Domain;
|
using _0_Framework.Domain;
|
||||||
using CompanyManagment.App.Contracts.InsuranceList;
|
using CompanyManagment.App.Contracts.InsuranceList;
|
||||||
|
using CompanyManagment.App.Contracts.LeftWork;
|
||||||
using CompanyManagment.App.Contracts.LeftWorkInsurance;
|
using CompanyManagment.App.Contracts.LeftWorkInsurance;
|
||||||
using CompanyManagment.App.Contracts.PersonnleCode;
|
using CompanyManagment.App.Contracts.PersonnleCode;
|
||||||
|
|
||||||
@@ -40,5 +41,16 @@ public interface ILeftWorkInsuranceRepository : IRepository<long, LeftWorkInsura
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
List<EmployeeDetailsForInsuranceListViewModel> GetEmployeeInsuranceLeftWorksAndInformation(long workshopId, DateTime startDate, DateTime endDate);
|
List<EmployeeDetailsForInsuranceListViewModel> GetEmployeeInsuranceLeftWorksAndInformation(long workshopId, DateTime startDate, DateTime endDate);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region Mahan
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// پرسنل هایی که در قرارداد ترک کار دارند ولی در بیمه ترک کاری برایشان نخورده
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="workshopId"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
List<LeftWorkViewModel> GetEmployeesWithContractExitOnly(long workshopId);
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
@@ -6,7 +6,9 @@ using Company.Domain.CustomizeWorkshopEmployeeSettingsAgg.Entities;
|
|||||||
using CompanyManagment.App.Contracts.Contract;
|
using CompanyManagment.App.Contracts.Contract;
|
||||||
using CompanyManagment.App.Contracts.CustomizeCheckout;
|
using CompanyManagment.App.Contracts.CustomizeCheckout;
|
||||||
using CompanyManagment.App.Contracts.Leave;
|
using CompanyManagment.App.Contracts.Leave;
|
||||||
|
using CompanyManagment.App.Contracts.Loan;
|
||||||
using CompanyManagment.App.Contracts.RollCall;
|
using CompanyManagment.App.Contracts.RollCall;
|
||||||
|
using CompanyManagment.App.Contracts.SalaryAid;
|
||||||
using CompanyManagment.App.Contracts.WorkingHoursTemp;
|
using CompanyManagment.App.Contracts.WorkingHoursTemp;
|
||||||
|
|
||||||
namespace Company.Domain.RollCallAgg;
|
namespace Company.Domain.RollCallAgg;
|
||||||
@@ -33,6 +35,12 @@ public interface IRollCallMandatoryRepository : IRepository<long, RollCall>
|
|||||||
/// <param name="contractEnd"></param>
|
/// <param name="contractEnd"></param>
|
||||||
/// <param name="shiftwork"></param>
|
/// <param name="shiftwork"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
List<LoanInstallmentViewModel> LoanInstallmentForCheckout(long employeeId, long workshopId, DateTime contractStart,
|
||||||
|
DateTime contractEnd);
|
||||||
|
|
||||||
|
List<SalaryAidViewModel> SalaryAidsForCheckout(long employeeId, long workshopId, DateTime checkoutStart,
|
||||||
|
DateTime checkoutEnd);
|
||||||
|
|
||||||
Task<ComputingViewModel> RotatingShiftReport(long workshopId, long employeeId, DateTime contractStart,
|
Task<ComputingViewModel> RotatingShiftReport(long workshopId, long employeeId, DateTime contractStart,
|
||||||
DateTime contractEnd, string shiftwork, bool hasRollCall, CreateWorkingHoursTemp command,bool holidayWorking);
|
DateTime contractEnd, string shiftwork, bool hasRollCall, CreateWorkingHoursTemp command,bool holidayWorking);
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using _0_Framework.Domain;
|
using _0_Framework.Domain;
|
||||||
using CompanyManagment.App.Contracts.RollCallEmployee;
|
using CompanyManagment.App.Contracts.RollCallEmployee;
|
||||||
|
|
||||||
@@ -6,6 +7,7 @@ namespace Company.Domain.RollCallEmployeeAgg;
|
|||||||
|
|
||||||
public interface IRollCallEmployeeRepository : IRepository<long, RollCallEmployee>
|
public interface IRollCallEmployeeRepository : IRepository<long, RollCallEmployee>
|
||||||
{
|
{
|
||||||
|
bool HasRollCallRecord(long employeeId, long workshopId, DateTime contractStart, DateTime contractEnd);
|
||||||
List<RollCallEmployeeViewModel> GetByWorkshopId(long workshopId);
|
List<RollCallEmployeeViewModel> GetByWorkshopId(long workshopId);
|
||||||
EditRollCallEmployee GetDetails(long id);
|
EditRollCallEmployee GetDetails(long id);
|
||||||
RollCallEmployeeViewModel GetByEmployeeIdAndWorkshopId(long employeeId, long workshopId);
|
RollCallEmployeeViewModel GetByEmployeeIdAndWorkshopId(long employeeId, long workshopId);
|
||||||
|
|||||||
@@ -14,7 +14,5 @@ public interface IWorkshopTempRepository : IRepository<long, WorkshopTemp>
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<List<WorkshopTempViewModel>> GetWorkshopTemp(long contractingPartyTemp);
|
Task<List<WorkshopTempViewModel>> GetWorkshopTemp(long contractingPartyTemp);
|
||||||
|
|
||||||
System.Threading.Tasks.Task RemoveWorkshopTemps(List<long> workshopTempIds);
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -34,14 +34,12 @@ public class InstitutionContractTemp : EntityBase
|
|||||||
/// بصورت یکجا
|
/// بصورت یکجا
|
||||||
/// -
|
/// -
|
||||||
/// بصئورت ماهیانه
|
/// بصئورت ماهیانه
|
||||||
/// OneTime
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string PaymentModel { get; private set; }
|
public string PaymentModel { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// مدت قرارداد
|
/// مدت قرارداد
|
||||||
/// چند ماهه؟
|
/// چند ماهه؟
|
||||||
/// "12"
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string PeriodModel { get; private set; }
|
public string PeriodModel { get; private set; }
|
||||||
|
|
||||||
|
|||||||
@@ -69,6 +69,8 @@ public interface IWorkshopRepository : IRepository<long, Workshop>
|
|||||||
Task<int> GetWorkshopsForEmployeeStartWorkCount(long accountId);
|
Task<int> GetWorkshopsForEmployeeStartWorkCount(long accountId);
|
||||||
Task<List<WorkshopWithLeftWorkTempEmployeesDto>> GetWorkshopsForLeftWorkTemp(long accountId);
|
Task<List<WorkshopWithLeftWorkTempEmployeesDto>> GetWorkshopsForLeftWorkTemp(long accountId);
|
||||||
Task<int> GetWorkshopsForLeftWorkTempCount(long accountId);
|
Task<int> GetWorkshopsForLeftWorkTempCount(long accountId);
|
||||||
|
Task<List<WorkshopSelectListViewModel>> GetSelectList(string search);
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Threading.Tasks;
|
||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using _0_Framework.Domain;
|
using _0_Framework.Domain;
|
||||||
using CompanyManagment.App.Contracts.Checkout;
|
using CompanyManagment.App.Contracts.Checkout;
|
||||||
@@ -33,6 +34,9 @@ public interface IEmployerRepository : IRepository<long, Employer>
|
|||||||
|
|
||||||
List<EmployerViewModel> GetEmployersHasWorkshop();
|
List<EmployerViewModel> GetEmployersHasWorkshop();
|
||||||
|
|
||||||
|
Task<List<EmployerSelectListViewModel>> GetSelectList(string search);
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region NewByHeydari
|
#region NewByHeydari
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
namespace CompanyManagment.App.Contracts.AdminMonthlyOverview;
|
||||||
|
|
||||||
|
public enum AdminMonthlyOverviewStatus
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// تنظیم مستندات - فیش و قرارداد
|
||||||
|
/// </summary>
|
||||||
|
CreateDocuments = 0,
|
||||||
|
/// <summary> در انتظار مراجعه </summary>
|
||||||
|
VisitPending = 1,
|
||||||
|
/// <summary> در حال مراجعه </summary>
|
||||||
|
VisitInProgress = 2,
|
||||||
|
/// <summary> اتمام مراجعه </summary>
|
||||||
|
VisitCompleted = 3,
|
||||||
|
/// <summary> بایگانی شد </summary>
|
||||||
|
Archived = 4
|
||||||
|
}
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Security.Cryptography;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using _0_Framework.Application;
|
||||||
|
using Microsoft.EntityFrameworkCore.Metadata;
|
||||||
|
|
||||||
|
namespace CompanyManagment.App.Contracts.AdminMonthlyOverview;
|
||||||
|
|
||||||
|
public interface IAdminMonthlyOverviewApplication
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// نمایش لیست ماهانه کارگاه ها - درصورت وجود نداشتن اطلاعات در این ماه، یک رکورد جدید ایجاد میکند
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
Task<List<AdminMonthlyOverviewListViewModel>> GetWorkshopListByStatus(AdminMonthlyOverviewSearchModel searchModel);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// شمارش تعداد هر تب
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="year"></param>
|
||||||
|
/// <param name="month"></param>
|
||||||
|
/// <param name="accountId"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
Task<AdminMonthlyOverViewCounterVm> GetCounter(int year, int month, long accountId);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// رفتن به مرحله بعدی
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="id"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
Task<OperationResult> Next(long id);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// برگشت به مرحله قبل
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="id"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
Task<OperationResult> Back(long id);
|
||||||
|
}
|
||||||
|
|
||||||
|
public class AdminMonthlyOverViewCounterVm
|
||||||
|
{
|
||||||
|
public int CreateDocument { get; set; }
|
||||||
|
public int VisitPending { get; set; }
|
||||||
|
public int VisitInProgress { get; set; }
|
||||||
|
public int VisitCompleted { get; set; }
|
||||||
|
public int Archived { get; set; }
|
||||||
|
public int All { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public class AdminMonthlyOverviewSearchModel
|
||||||
|
{
|
||||||
|
public int Year { get; set; }
|
||||||
|
public int Month { get; set; }
|
||||||
|
public long WorkshopId { get; set; }
|
||||||
|
public long EmployerId { get; set; }
|
||||||
|
public long AdminAccountId { get; set; }
|
||||||
|
public IsActive ActivationStatus { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public class AdminMonthlyOverviewListViewModel
|
||||||
|
{
|
||||||
|
public long Id { get; set; }
|
||||||
|
public long WorkshopId { get; set; }
|
||||||
|
public string WorkshopName { get; set; }
|
||||||
|
public string WorkshopArchiveCode { get; set; }
|
||||||
|
public int WorkshopArchiveCodeInt { get; set; }
|
||||||
|
public string Province { get; set; }
|
||||||
|
public string City { get; set; }
|
||||||
|
public string Address { get; set; }
|
||||||
|
public string AgentPhoneNumber { get; set; }
|
||||||
|
public string AdminFullName { get; set; }
|
||||||
|
public string EmployerName { get; set; }
|
||||||
|
public string EmployerPhoneNumber { get; set; }
|
||||||
|
public int ContractEmployeeCount { get; set; }
|
||||||
|
public int CheckoutEmployeeCount { get; set; }
|
||||||
|
public AdminMonthlyOverviewStatus Status { get; set; }
|
||||||
|
public bool IsBlock { get; set; }
|
||||||
|
}
|
||||||
@@ -1,7 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using CompanyManagment.App.Contracts.Employer;
|
using CompanyManagment.App.Contracts.Employer;
|
||||||
|
using CompanyManagment.App.Contracts.Loan;
|
||||||
using CompanyManagment.App.Contracts.RollCall;
|
using CompanyManagment.App.Contracts.RollCall;
|
||||||
|
using CompanyManagment.App.Contracts.SalaryAid;
|
||||||
using CompanyManagment.App.Contracts.WorkingHoursTemp;
|
using CompanyManagment.App.Contracts.WorkingHoursTemp;
|
||||||
|
|
||||||
namespace CompanyManagment.App.Contracts.Checkout;
|
namespace CompanyManagment.App.Contracts.Checkout;
|
||||||
@@ -120,5 +122,17 @@ public class CheckoutViewModel
|
|||||||
/// تعداد روزهای محاسبه شده برای عیدی و پاداش
|
/// تعداد روزهای محاسبه شده برای عیدی و پاداش
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string TotalDayOfBunosesCompute { get; set; }
|
public string TotalDayOfBunosesCompute { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// مدت مرخصی استعلاجی
|
||||||
|
/// </summary>
|
||||||
|
public string TotalSickLeave { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// مدت مرخصی استحقاقی
|
||||||
|
/// </summary>
|
||||||
|
public string TotalPaidLeave { get; set; }
|
||||||
public List<CheckoutDailyRollCallViewModel> MonthlyRollCall { get; set; }
|
public List<CheckoutDailyRollCallViewModel> MonthlyRollCall { get; set; }
|
||||||
|
public List<LoanInstallmentViewModel> InstallmentViewModels { get; set; }
|
||||||
|
public List<SalaryAidViewModel> SalaryAidViewModels { get; set; }
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace CompanyManagment.App.Contracts.Checkout;
|
||||||
|
|
||||||
|
public class CreateCheckoutListViewModel
|
||||||
|
{
|
||||||
|
public long Id { get; set; }
|
||||||
|
|
||||||
|
public long PersonnelCode { get; set; }
|
||||||
|
|
||||||
|
public long EmployeeId { get; set; }
|
||||||
|
|
||||||
|
public string ContractNo { get; set; }
|
||||||
|
|
||||||
|
public string EmployerName { get; set; }
|
||||||
|
|
||||||
|
public string WorkshopName { get; set; }
|
||||||
|
public string EmployeeName { get; set; }
|
||||||
|
|
||||||
|
public string ContractStart { get; set; }
|
||||||
|
|
||||||
|
public string ContractEnd { get; set; }
|
||||||
|
|
||||||
|
public string LeftWorkDate { get; set; }
|
||||||
|
|
||||||
|
//public string NextMonthStart { get; set; }
|
||||||
|
|
||||||
|
//public bool RedColor { get; set; }
|
||||||
|
|
||||||
|
public bool LaterThanEnd { get; set; }
|
||||||
|
|
||||||
|
public bool Extension { get; set; }
|
||||||
|
|
||||||
|
public bool HasCheckout { get; set; }
|
||||||
|
|
||||||
|
//public bool MoreThanOneMonth { get; set; }
|
||||||
|
|
||||||
|
//public bool Waiting { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public string Description { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public List<CreateCheckoutListViewModel> CreateCheckoutList { get; set; }
|
||||||
|
}
|
||||||
@@ -13,7 +13,20 @@ public interface ICheckoutApplication
|
|||||||
OperationResult Edit(EditCheckout command);
|
OperationResult Edit(EditCheckout command);
|
||||||
EditCheckout GetDetails(long id);
|
EditCheckout GetDetails(long id);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// لود لیست اولیه جهت ایجاد فیش حقوقی
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="workshopId"></param>
|
||||||
|
/// <param name="employeeId"></param>
|
||||||
|
/// <param name="year"></param>
|
||||||
|
/// <param name="month"></param>
|
||||||
|
/// <param name="contractStart"></param>
|
||||||
|
/// <param name="contractEnd"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <exception cref="NotImplementedException"></exception>
|
||||||
|
Task<CreateCheckoutListViewModel> GetContractResultToCreateCheckout(long workshopId, long employeeId, string year,
|
||||||
|
string month,
|
||||||
|
string contractStart, string contractEnd);
|
||||||
Task<List<CheckoutViewModel>> Search(CheckoutSearchModel searchModel);
|
Task<List<CheckoutViewModel>> Search(CheckoutSearchModel searchModel);
|
||||||
List<CheckoutViewModel> SimpleSearch(CheckoutSearchModel searchModel);
|
List<CheckoutViewModel> SimpleSearch(CheckoutSearchModel searchModel);
|
||||||
List<CheckoutViewModel> PrintAll(List<long> id);
|
List<CheckoutViewModel> PrintAll(List<long> id);
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
using _0_Framework.Application;
|
|
||||||
|
|
||||||
namespace CompanyManagment.App.Contracts.ContactUs;
|
|
||||||
|
|
||||||
public interface IContactUsApplication
|
|
||||||
{
|
|
||||||
OperationResult Create(CreateContactUs command);
|
|
||||||
}
|
|
||||||
|
|
||||||
public class CreateContactUs
|
|
||||||
{
|
|
||||||
public string FirstName { get; set; }
|
|
||||||
public string LastName { get; set; }
|
|
||||||
public string Email { get; set; }
|
|
||||||
public string PhoneNumber { get; set; }
|
|
||||||
public string Title { get; set; }
|
|
||||||
public string Message { get; set; }
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using CompanyManagment.App.Contracts.Loan;
|
||||||
|
using CompanyManagment.App.Contracts.SalaryAid;
|
||||||
using CompanyManagment.App.Contracts.WorkingHoursTemp;
|
using CompanyManagment.App.Contracts.WorkingHoursTemp;
|
||||||
|
|
||||||
namespace CompanyManagment.App.Contracts.Contract;
|
namespace CompanyManagment.App.Contracts.Contract;
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ public interface ICustomizeWorkshopSettingsApplication
|
|||||||
//Remove the Employee From the Group Settings
|
//Remove the Employee From the Group Settings
|
||||||
OperationResult RemoveEmployeeFromRollCallWorkshopGroup(long employeeId, long groupId, long workshopId);
|
OperationResult RemoveEmployeeFromRollCallWorkshopGroup(long employeeId, long groupId, long workshopId);
|
||||||
|
|
||||||
OperationResult EditSimpleRollCallGroupSetting(EditCustomizeWorkshopGroupSettings command);
|
OperationResult EditSimpleRollCallGroupSetting(EditCustomizeWorkshopGroupSettings command, List<ReCalculateRollCallValues> reCalculateCommand);
|
||||||
|
|
||||||
#region Vafa
|
#region Vafa
|
||||||
OperationResult EditSimpleRollCallEmployeeSetting(EditCustomizeEmployeeSettings command,
|
OperationResult EditSimpleRollCallEmployeeSetting(EditCustomizeEmployeeSettings command,
|
||||||
@@ -90,7 +90,13 @@ public interface ICustomizeWorkshopSettingsApplication
|
|||||||
List<CustomizeWorkshopEmployeeSettingsViewModel> GetEmployeeSettingsByWorkshopId(long workshopId);
|
List<CustomizeWorkshopEmployeeSettingsViewModel> GetEmployeeSettingsByWorkshopId(long workshopId);
|
||||||
CustomizeWorkshopGroupSettingsViewModel GetEmployeesGroupSettingsByEmployeeId(long employeeId, long workshopId);
|
CustomizeWorkshopGroupSettingsViewModel GetEmployeesGroupSettingsByEmployeeId(long employeeId, long workshopId);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// این متد برای قبل از ویرایش گروهی و محاسبه مجدد گروهی استفاده میشود برای اینکه پرسنل هایی که دارای فیش هستند رو فرانت نمایش بده
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="command"></param>
|
||||||
|
/// <param name="workshopId"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
OperationResult<List<long>> ValidateReCalculateValueForGroupEdit(List<ReCalculateRollCallValues> command, long workshopId);
|
||||||
bool HasAnyEmployeeWithoutGroup(long workshopId);
|
bool HasAnyEmployeeWithoutGroup(long workshopId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
namespace CompanyManagment.App.Contracts.DateSalary;
|
using System;
|
||||||
|
|
||||||
|
namespace CompanyManagment.App.Contracts.DateSalary;
|
||||||
|
|
||||||
public class DateSalaryViewModel
|
public class DateSalaryViewModel
|
||||||
{
|
{
|
||||||
@@ -7,4 +9,6 @@ public class DateSalaryViewModel
|
|||||||
public string Month { get; set; }
|
public string Month { get; set; }
|
||||||
public string StartDateFa { get; set; }
|
public string StartDateFa { get; set; }
|
||||||
public string EndDateFa { get; set; }
|
public string EndDateFa { get; set; }
|
||||||
|
public DateTime StartDateGr { get; set; }
|
||||||
|
public DateTime EndDateGr { get; set; }
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace CompanyManagment.App.Contracts.Employer;
|
||||||
|
|
||||||
|
public class EmployerSelectListViewModel
|
||||||
|
{
|
||||||
|
public long Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Threading.Tasks;
|
||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using CompanyManagment.App.Contracts.Checkout;
|
using CompanyManagment.App.Contracts.Checkout;
|
||||||
|
|
||||||
@@ -35,6 +36,8 @@ public interface IEmployerApplication
|
|||||||
#region Mahan
|
#region Mahan
|
||||||
|
|
||||||
List<EmployerViewModel> GetEmployersHasWorkshop();
|
List<EmployerViewModel> GetEmployersHasWorkshop();
|
||||||
|
Task<List<EmployerSelectListViewModel>> GetSelectList(string search);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
#region NewByHeydari
|
#region NewByHeydari
|
||||||
OperationResult DeleteEmployer(long id);
|
OperationResult DeleteEmployer(long id);
|
||||||
|
|||||||
@@ -69,4 +69,5 @@ public class InstitutionContractViewModel
|
|||||||
public double ValueAddedTax { get; set; }
|
public double ValueAddedTax { get; set; }
|
||||||
public int LeftWorkEmployeeCount { get; set; }
|
public int LeftWorkEmployeeCount { get; set; }
|
||||||
public int InsuranceLeftWorkEmployeeCount { get; set; }
|
public int InsuranceLeftWorkEmployeeCount { get; set; }
|
||||||
|
public string IsExpier { get; set; }
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using CompanyManagment.App.Contracts.InsuranceJobItem;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
|
||||||
|
namespace CompanyManagment.App.Contracts.InsuranceJob;
|
||||||
|
|
||||||
|
public class CopyFromLastYearViewModel
|
||||||
|
{
|
||||||
|
public string StartDate { get; set; }
|
||||||
|
public string EndDate { get; set; }
|
||||||
|
|
||||||
|
public long InsuranceJobItemId { get; set; }
|
||||||
|
|
||||||
|
public SelectList InsuranceJobItemViewModels { get; set; }
|
||||||
|
}
|
||||||
@@ -5,6 +5,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CompanyManagment.App.Contracts.InsuranceJobItem;
|
using CompanyManagment.App.Contracts.InsuranceJobItem;
|
||||||
using CompanyManagment.App.Contracts.Job;
|
using CompanyManagment.App.Contracts.Job;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
|
||||||
namespace CompanyManagment.App.Contracts.InsuranceJob;
|
namespace CompanyManagment.App.Contracts.InsuranceJob;
|
||||||
|
|
||||||
@@ -14,7 +15,20 @@ public class CreateInsuranceJob
|
|||||||
public long YearlySalaryId { get; set; }
|
public long YearlySalaryId { get; set; }
|
||||||
public string EconomicCode { get; set; }
|
public string EconomicCode { get; set; }
|
||||||
public string Year { get; set; }
|
public string Year { get; set; }
|
||||||
|
public string Month { get; set; }
|
||||||
public long JobId { get; set; }
|
public long JobId { get; set; }
|
||||||
|
|
||||||
|
public string StartDateFa { get; set; }
|
||||||
|
public string EndDateFa { get; set; }
|
||||||
public List<JobViewModel> Jobs { get; set; }
|
public List<JobViewModel> Jobs { get; set; }
|
||||||
public List<InsuranceJobItemViewModel> InsuranceJobItems { get; set; }
|
public List<InsuranceJobItemViewModel> InsuranceJobItems { get; set; }
|
||||||
|
|
||||||
|
public List<string> WorkshopList { get; set; }
|
||||||
|
public bool HasAnyWorkshop { get; set; }
|
||||||
|
|
||||||
|
public long InsuranceJobItemId { get; set; }
|
||||||
|
|
||||||
|
public SelectList InsuranceJobItemViewModels { get; set; }
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -10,9 +10,12 @@ namespace CompanyManagment.App.Contracts.InsuranceJob;
|
|||||||
|
|
||||||
public interface IInsuranceJobApplication
|
public interface IInsuranceJobApplication
|
||||||
{
|
{
|
||||||
|
List<(long id, string date)> GetOldYersInsuranceItemIds();
|
||||||
|
OperationResult CopyFromLastYear(CopyFromLastYearViewModel command);
|
||||||
|
OperationResult RecoveryOldData1403();
|
||||||
OperationResult Create(CreateInsuranceJob command);
|
OperationResult Create(CreateInsuranceJob command);
|
||||||
OperationResult Edit(EditInsuranceJob command);
|
OperationResult Edit(EditInsuranceJob command);
|
||||||
EditInsuranceJob GetDetails(long id);
|
EditInsuranceJob GetDetails(long id,string year, string month);
|
||||||
List<InsuranceJobViewModel> GetInsurancJob();
|
List<InsuranceJobViewModel> GetInsurancJob();
|
||||||
|
|
||||||
List<InsuranceJobViewModel> Search(InsuranceJobSearchModel searchModel);
|
List<InsuranceJobViewModel> Search(InsuranceJobSearchModel searchModel);
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using CompanyManagment.App.Contracts.InsuranceJobItem;
|
||||||
|
|
||||||
namespace CompanyManagment.App.Contracts.InsuranceJob;
|
namespace CompanyManagment.App.Contracts.InsuranceJob;
|
||||||
|
|
||||||
@@ -13,4 +14,7 @@ public class InsuranceJobViewModel
|
|||||||
//public long YearlySalaryId { get; set; }
|
//public long YearlySalaryId { get; set; }
|
||||||
public string EconomicCode { get; set; }
|
public string EconomicCode { get; set; }
|
||||||
public string Year { get; set; }
|
public string Year { get; set; }
|
||||||
|
public string Month { get; set; }
|
||||||
|
public List<InsuranceJobItemViewModel> InsuranceJobItemViewModels { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,14 +11,32 @@ namespace CompanyManagment.App.Contracts.InsuranceJobItem;
|
|||||||
public class InsuranceJobItemViewModel
|
public class InsuranceJobItemViewModel
|
||||||
{
|
{
|
||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// آیای این درصد در لیست مبالغ مبلغ پر شده دارد
|
||||||
|
/// </summary>
|
||||||
|
public bool IsPercentageLessThanUse { get; set; }
|
||||||
public double PercentageLessThan { get; set; }
|
public double PercentageLessThan { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// آیای این درصد در لیست مبالغ مبلغ پر شده دارد
|
||||||
|
/// </summary>
|
||||||
|
public bool IsPercentageMoreThanUse { get; set; }
|
||||||
public double PercentageMoreThan { get; set; }
|
public double PercentageMoreThan { get; set; }
|
||||||
|
|
||||||
public double SalaeyLessThan { get; set; }
|
public double SalaeyLessThan { get; set; }
|
||||||
public double SalaryMoreThan { get; set; }
|
public double SalaryMoreThan { get; set; }
|
||||||
public string SalaeyLessThanString { get; set; }
|
public string SalaeyLessThanString { get; set; }
|
||||||
public string SalaryMoreThanString { get; set; }
|
public string SalaryMoreThanString { get; set; }
|
||||||
public long InsuranceJobId { get; set; }
|
public long InsuranceJobId { get; set; }
|
||||||
|
|
||||||
|
public DateTime? StartDate { get; set; }
|
||||||
|
public DateTime? EndDate { get; set; }
|
||||||
|
|
||||||
public List<long> JobIds { get; set; }
|
public List<long> JobIds { get; set; }
|
||||||
public List<JobViewModel> JobList { get; set; }
|
public List<JobViewModel> JobList { get; set; }
|
||||||
}
|
}
|
||||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using CompanyManagment.App.Contracts.LeftWork;
|
||||||
|
|
||||||
namespace CompanyManagment.App.Contracts.InsuranceList;
|
namespace CompanyManagment.App.Contracts.InsuranceList;
|
||||||
|
|
||||||
@@ -14,4 +15,8 @@ public class EditInsuranceList:CreateInsuranceList
|
|||||||
public string Population { get; set; }
|
public string Population { get; set; }
|
||||||
public long? InsuranceJobId { get; set; }
|
public long? InsuranceJobId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// پرسنل هایی که قرارداد ترک کار کرده اند ولی ترک کار بیمه ندارند
|
||||||
|
/// </summary>
|
||||||
|
public List<LeftWorkViewModel> LeftWorkEmployees { get; set; }
|
||||||
}
|
}
|
||||||
@@ -16,6 +16,9 @@ public interface ILeftWorkApplication
|
|||||||
EditLeftWork GetDetails(long id);
|
EditLeftWork GetDetails(long id);
|
||||||
LeftWorkViewModel CheckoutleftWorkCheck(DateTime contractStart, long workshopId, long employeeId);
|
LeftWorkViewModel CheckoutleftWorkCheck(DateTime contractStart, long workshopId, long employeeId);
|
||||||
List<LeftWorkViewModel> search(LeftWorkSearchModel searchModel);
|
List<LeftWorkViewModel> search(LeftWorkSearchModel searchModel);
|
||||||
|
|
||||||
|
|
||||||
|
List<LeftWorkViewModel> SearchCreateContract(LeftWorkSearchModel searchModel);
|
||||||
Task<List<LeftWorkViewModel>> searchAsync(LeftWorkSearchModel searchModel);
|
Task<List<LeftWorkViewModel>> searchAsync(LeftWorkSearchModel searchModel);
|
||||||
string StartWork(long employeeId, long workshopId, string leftWork);
|
string StartWork(long employeeId, long workshopId, string leftWork);
|
||||||
OperationResult RemoveLeftWork(long id);
|
OperationResult RemoveLeftWork(long id);
|
||||||
|
|||||||
@@ -65,4 +65,6 @@ public class RollCallViewModel
|
|||||||
/// مدت زمان استراحت
|
/// مدت زمان استراحت
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TimeSpan BreakTimeSpan { get; set; }
|
public TimeSpan BreakTimeSpan { get; set; }
|
||||||
|
|
||||||
|
public DateTime? ShiftEndWithoutRest { get; set; }
|
||||||
}
|
}
|
||||||
@@ -8,6 +8,7 @@ public class CreateSalaryAidViewModel
|
|||||||
public long WorkshopId { get; set; }
|
public long WorkshopId { get; set; }
|
||||||
public string Amount { get; set; }
|
public string Amount { get; set; }
|
||||||
public string SalaryDateTime { get; set; }
|
public string SalaryDateTime { get; set; }
|
||||||
|
public string CalculationDateTime { get; set; }
|
||||||
public string NationalCode { get; set; }
|
public string NationalCode { get; set; }
|
||||||
public int CalculationMonth { get; set; }
|
public int CalculationMonth { get; set; }
|
||||||
public int CalculationYear { get; set; }
|
public int CalculationYear { get; set; }
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ public class SalaryAidGroupedByDateViewModel
|
|||||||
{
|
{
|
||||||
public string MonthFa { get; set; }
|
public string MonthFa { get; set; }
|
||||||
public string YearFa { get; set; }
|
public string YearFa { get; set; }
|
||||||
|
public int Month { get; set; }
|
||||||
|
public int Year { get; set; }
|
||||||
public List<SalaryAidGroupedByDateViewModelItems> SalaryAidViewModels { get; set; }
|
public List<SalaryAidGroupedByDateViewModelItems> SalaryAidViewModels { get; set; }
|
||||||
public string TotalAmount { get; set; }
|
public string TotalAmount { get; set; }
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ public class SalaryAidViewModel
|
|||||||
public string CalculationDateTimeFa { get; set; }
|
public string CalculationDateTimeFa { get; set; }
|
||||||
public DateTime CalculationDateTimeGe { get; set; }
|
public DateTime CalculationDateTimeGe { get; set; }
|
||||||
|
|
||||||
|
public int Month { get; set; }
|
||||||
|
public int Year { get; set; }
|
||||||
|
|
||||||
public string EmployeeFullName { get; set; }
|
public string EmployeeFullName { get; set; }
|
||||||
public string PersonnelCode { get; set; }
|
public string PersonnelCode { get; set; }
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using CompanyManagment.App.Contracts.InstitutionPlan;
|
using CompanyManagment.App.Contracts.InstitutionPlan;
|
||||||
@@ -39,7 +38,7 @@ public interface ITemporaryClientRegistrationApplication
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="command"></param>
|
/// <param name="command"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<OperationResult> CreateOrUpdateWorkshopTemp(List<WorkshopTempViewModel> command, long contractingPartyTempId);
|
Task<OperationResult> CreateOrUpdateWorkshopTemp(List<WorkshopTempViewModel> command);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// دریافت جمع کل خدمات برای یک کارگاه
|
/// دریافت جمع کل خدمات برای یک کارگاه
|
||||||
@@ -56,14 +55,14 @@ public interface ITemporaryClientRegistrationApplication
|
|||||||
/// <param name="paymentModel"></param>
|
/// <param name="paymentModel"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<ReviewAndPaymentViewModel> GetTotalPaymentAndWorkshopList(long contractingPartyTempId,
|
Task<ReviewAndPaymentViewModel> GetTotalPaymentAndWorkshopList(long contractingPartyTempId,
|
||||||
string periodModel = "12", string paymentModel = "OneTime", string contractStartType = "currentMonth");
|
string periodModel = "12", string paymentModel = "OneTime");
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ایجاد یا ویرایش قرارداد موقت
|
/// ایجاد یا ویرایش قرارداد موقت
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="contractingPartyTempId"></param>
|
/// <param name="contractingPartyTempId"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<OperationResult> CreateOrUpdateInstitutionContractTemp(long contractingPartyTempId, string periodModel, string paymentModel, double totalPayment, double valueAddedTax, DateTime contractStart);
|
Task<OperationResult> CreateOrUpdateInstitutionContractTemp(long contractingPartyTempId, string periodModel, string paymentModel, double totalPayment, double valueAddedTax);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// دریافت کد برای کلاینت
|
/// دریافت کد برای کلاینت
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
||||||
|
|
||||||
public class MonthlyInstallment
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// مبلغ قسط ماهانه
|
|
||||||
/// </summary>
|
|
||||||
public string InstallmentAmountStr { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// تاریخ قسط ماهانه
|
|
||||||
/// </summary>
|
|
||||||
public string InstalmentDate { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// شمارنده قسط
|
|
||||||
/// </summary>
|
|
||||||
public string InstallmentCounter{ get; set; }
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
namespace CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
||||||
|
|
||||||
@@ -24,54 +23,28 @@ public class ReviewAndPaymentViewModel
|
|||||||
/// مبلغ پرداخت بدون مالیات
|
/// مبلغ پرداخت بدون مالیات
|
||||||
/// Double
|
/// Double
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public double OneTimeWithoutTaxPaymentDouble { get; set; }
|
public double WithoutTaxPaymentDouble { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// مبلغ پرداخت بدون مالیات
|
/// مبلغ پرداخت بدون مالیات
|
||||||
/// string
|
/// string
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string OneTimeWithoutTaxPaymentStr { get; set; }
|
public string WithoutTaxPaymentStr { get; set; }
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// مبلغ پرداخت کامل
|
/// مبلغ پرداخت کامل
|
||||||
/// Double
|
/// Double
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public double OneTimeTotalPaymentDouble { get; set; }
|
public double TotalPaymentDouble { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// مبلغ پرداخت کامل
|
/// مبلغ پرداخت کامل
|
||||||
/// string
|
/// string
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string OneTimeTotalPaymentStr { get; set; }
|
public string TotalPaymentStr { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// مبلغ پرداخت بدون مالیات
|
|
||||||
/// Double
|
|
||||||
/// </summary>
|
|
||||||
public double MonthlyWithoutTaxPaymentDouble { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// مبلغ پرداخت بدون مالیات
|
|
||||||
/// string
|
|
||||||
/// </summary>
|
|
||||||
public string MonthlyWithoutTaxPaymentStr { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// مبلغ پرداخت کامل
|
|
||||||
/// Double
|
|
||||||
/// </summary>
|
|
||||||
public double MonthlyTotalPaymentDouble { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// مبلغ پرداخت کامل
|
|
||||||
/// string
|
|
||||||
/// </summary>
|
|
||||||
public string MonthlyTotalPaymentStr { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// مالیات بر ارزش افزوده
|
/// مالیات بر ارزش افزوده
|
||||||
/// Double
|
/// Double
|
||||||
@@ -110,52 +83,4 @@ public class ReviewAndPaymentViewModel
|
|||||||
/// آی دی طرف حساب
|
/// آی دی طرف حساب
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public long ContractingPartTempId { get; set; }
|
public long ContractingPartTempId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// لیست اقساط ماهیانه
|
|
||||||
/// </summary>
|
|
||||||
public List<MonthlyInstallment> MonthlyInstallments { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// تاریخ شروع قرارداد در اول ماه جاری
|
|
||||||
/// -
|
|
||||||
/// شمسی
|
|
||||||
/// </summary>
|
|
||||||
public string ContractStartCurrentMonthFa { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// تاریخ شروع قرارداد در اول ماه جاری
|
|
||||||
/// -
|
|
||||||
/// میلادی
|
|
||||||
/// </summary>
|
|
||||||
public DateTime ContractStartCurrentMonthGr { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// تاریخ شروع قرارداد در اول ماه بعد
|
|
||||||
/// -
|
|
||||||
/// شمسی
|
|
||||||
/// </summary>
|
|
||||||
public string ContractStartNextMonthFa{ get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// تاریخ شروع قرارداد در اول ماه بعد
|
|
||||||
/// -
|
|
||||||
/// میلادی
|
|
||||||
/// </summary>
|
|
||||||
public DateTime ContractStartNextMonthGr { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// تاریخ پایان قرارداد
|
|
||||||
/// -
|
|
||||||
/// میلادی
|
|
||||||
/// </summary>
|
|
||||||
public DateTime ContractEndGr { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// تاریخ پایان قرارداد
|
|
||||||
/// -
|
|
||||||
/// شمسی
|
|
||||||
/// </summary>
|
|
||||||
public string ContractEndFa { get; set; }
|
|
||||||
}
|
}
|
||||||
@@ -85,6 +85,8 @@ public interface IWorkshopApplication
|
|||||||
|
|
||||||
Task<List<WorkshopWithLeftWorkTempEmployeesDto>> GetWorkshopsForLeftWorkTemp(long accountId);
|
Task<List<WorkshopWithLeftWorkTempEmployeesDto>> GetWorkshopsForLeftWorkTemp(long accountId);
|
||||||
Task<int> GetWorkshopsForLeftWorkTempCount(long accountId);
|
Task<int> GetWorkshopsForLeftWorkTempCount(long accountId);
|
||||||
|
Task<List<WorkshopSelectListViewModel>> GetSelectList(string search);
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
namespace CompanyManagment.App.Contracts.Workshop;
|
||||||
|
|
||||||
|
public class WorkshopSelectListViewModel
|
||||||
|
{
|
||||||
|
public long Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string ArchiveCode { get; set; }
|
||||||
|
}
|
||||||
@@ -7,5 +7,6 @@ namespace CompanyManagment.App.Contracts.Workshop
|
|||||||
public string WorkshopName { get; set; }
|
public string WorkshopName { get; set; }
|
||||||
public long SubAccountId { get; set; }
|
public long SubAccountId { get; set; }
|
||||||
public string IsActive { get; set; }
|
public string IsActive { get; set; }
|
||||||
|
public int PersonnelCount { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,86 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using _0_Framework.Application;
|
||||||
|
using Company.Domain.AdminMonthlyOverviewAgg;
|
||||||
|
using CompanyManagment.App.Contracts.AdminMonthlyOverview;
|
||||||
|
|
||||||
|
namespace CompanyManagment.Application;
|
||||||
|
|
||||||
|
public class AdminMonthlyOverviewApplication:IAdminMonthlyOverviewApplication
|
||||||
|
{
|
||||||
|
private readonly IAdminMonthlyOverviewRepository _adminMonthlyOverviewRepository;
|
||||||
|
|
||||||
|
public AdminMonthlyOverviewApplication(IAdminMonthlyOverviewRepository adminMonthlyOverviewRepository)
|
||||||
|
{
|
||||||
|
_adminMonthlyOverviewRepository = adminMonthlyOverviewRepository;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<List<AdminMonthlyOverviewListViewModel>> GetWorkshopListByStatus(AdminMonthlyOverviewSearchModel searchModel)
|
||||||
|
{
|
||||||
|
return await _adminMonthlyOverviewRepository.GetWorkshopStatus(searchModel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<AdminMonthlyOverViewCounterVm> GetCounter(int year, int month, long accountId)
|
||||||
|
{
|
||||||
|
return await _adminMonthlyOverviewRepository.GetCounter(year, month, accountId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<OperationResult> Next(long id)
|
||||||
|
{
|
||||||
|
var operation= new OperationResult();
|
||||||
|
var monthlyOverview = _adminMonthlyOverviewRepository.Get(id);
|
||||||
|
if (monthlyOverview == null)
|
||||||
|
{
|
||||||
|
return operation.Failed("آیتم موردنظر یافت نشد");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (monthlyOverview.Status== AdminMonthlyOverviewStatus.CreateDocuments)
|
||||||
|
{
|
||||||
|
return operation.Failed("شما نمیتوانید تا زمانی که قرارداد و تصفیه را تنظیم نکردید به مرحله بعد بروید");
|
||||||
|
}
|
||||||
|
|
||||||
|
var maxValue = Enum.GetValues(typeof(AdminMonthlyOverviewStatus))
|
||||||
|
.Cast<AdminMonthlyOverviewStatus>()
|
||||||
|
.Max();
|
||||||
|
|
||||||
|
if (monthlyOverview.Status >= maxValue)
|
||||||
|
{
|
||||||
|
return operation.Failed("مرحله بعدی انتخاب شده نامعتبر است");
|
||||||
|
}
|
||||||
|
|
||||||
|
monthlyOverview.Next();
|
||||||
|
await _adminMonthlyOverviewRepository.SaveChangesAsync();
|
||||||
|
return operation.Succcedded();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<OperationResult> Back(long id)
|
||||||
|
{
|
||||||
|
var operation = new OperationResult();
|
||||||
|
var monthlyOverview = _adminMonthlyOverviewRepository.Get(id);
|
||||||
|
if (monthlyOverview == null)
|
||||||
|
{
|
||||||
|
return operation.Failed("آیتم موردنظر یافت نشد");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (monthlyOverview.Status == AdminMonthlyOverviewStatus.CreateDocuments+1)
|
||||||
|
{
|
||||||
|
return operation.Failed("شما امکان برگشت به مرحله قبل را ندارید");
|
||||||
|
}
|
||||||
|
|
||||||
|
var minValue = Enum.GetValues(typeof(AdminMonthlyOverviewStatus))
|
||||||
|
.Cast<AdminMonthlyOverviewStatus>()
|
||||||
|
.Min();
|
||||||
|
|
||||||
|
if (monthlyOverview.Status <= minValue)
|
||||||
|
{
|
||||||
|
return operation.Failed("مرحله قبلی انتخاب شده نامعتبر است");
|
||||||
|
}
|
||||||
|
|
||||||
|
monthlyOverview.Back();
|
||||||
|
await _adminMonthlyOverviewRepository.SaveChangesAsync();
|
||||||
|
|
||||||
|
return operation.Succcedded();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,9 +5,11 @@ using System.Linq;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using Company.Domain.CheckoutAgg;
|
using Company.Domain.CheckoutAgg;
|
||||||
|
using Company.Domain.CheckoutAgg.ValueObjects;
|
||||||
using Company.Domain.LeftWorkAgg;
|
using Company.Domain.LeftWorkAgg;
|
||||||
using Company.Domain.YearlySalaryAgg;
|
using Company.Domain.YearlySalaryAgg;
|
||||||
using Company.Domain.empolyerAgg;
|
using Company.Domain.empolyerAgg;
|
||||||
|
using Company.Domain.RollCallAgg;
|
||||||
using CompanyManagment.App.Contracts.Checkout;
|
using CompanyManagment.App.Contracts.Checkout;
|
||||||
using CompanyManagment.App.Contracts.PersonalContractingParty;
|
using CompanyManagment.App.Contracts.PersonalContractingParty;
|
||||||
using CompanyManagment.App.Contracts.Leave;
|
using CompanyManagment.App.Contracts.Leave;
|
||||||
@@ -24,11 +26,12 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
private readonly IPersonalContractingPartyApp _contractingPartyApp;
|
private readonly IPersonalContractingPartyApp _contractingPartyApp;
|
||||||
private readonly ILeaveApplication _leaveApplication;
|
private readonly ILeaveApplication _leaveApplication;
|
||||||
private readonly IMandatoryHoursApplication _mandatoryHoursApplication;
|
private readonly IMandatoryHoursApplication _mandatoryHoursApplication;
|
||||||
|
private readonly IRollCallMandatoryRepository _rollCallMandatoryRepository;
|
||||||
|
|
||||||
|
|
||||||
public CheckoutApplication(ICheckoutRepository checkoutRepository, IYearlySalaryRepository yearlySalaryRepository,
|
public CheckoutApplication(ICheckoutRepository checkoutRepository, IYearlySalaryRepository yearlySalaryRepository,
|
||||||
ILeftWorkRepository leftWorkRepository,
|
ILeftWorkRepository leftWorkRepository,
|
||||||
IEmployerRepository employerRepository, IPersonalContractingPartyApp contractingPartyApp, ILeaveApplication leaveApplication, IMandatoryHoursApplication mandatoryHoursApplication)
|
IEmployerRepository employerRepository, IPersonalContractingPartyApp contractingPartyApp, ILeaveApplication leaveApplication, IMandatoryHoursApplication mandatoryHoursApplication, IRollCallMandatoryRepository rollCallMandatoryRepository)
|
||||||
{
|
{
|
||||||
_checkoutRepository = checkoutRepository;
|
_checkoutRepository = checkoutRepository;
|
||||||
_yearlySalaryRepository = yearlySalaryRepository;
|
_yearlySalaryRepository = yearlySalaryRepository;
|
||||||
@@ -37,6 +40,7 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
_contractingPartyApp = contractingPartyApp;
|
_contractingPartyApp = contractingPartyApp;
|
||||||
_leaveApplication = leaveApplication;
|
_leaveApplication = leaveApplication;
|
||||||
_mandatoryHoursApplication = mandatoryHoursApplication;
|
_mandatoryHoursApplication = mandatoryHoursApplication;
|
||||||
|
_rollCallMandatoryRepository = rollCallMandatoryRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
[SuppressMessage("ReSharper.DPA", "DPA0007: Large number of DB records", MessageId = "count: 241")]
|
[SuppressMessage("ReSharper.DPA", "DPA0007: Large number of DB records", MessageId = "count: 241")]
|
||||||
@@ -48,73 +52,85 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
string month = string.Empty;
|
string month = string.Empty;
|
||||||
switch (smonth)
|
switch (smonth)
|
||||||
{
|
{
|
||||||
case 1: month = "فروردین";
|
case 1:
|
||||||
|
month = "فروردین";
|
||||||
break;
|
break;
|
||||||
case 2: month = "اردیبهشت";
|
case 2:
|
||||||
|
month = "اردیبهشت";
|
||||||
break;
|
break;
|
||||||
case 3:month = "خرداد";
|
case 3:
|
||||||
|
month = "خرداد";
|
||||||
break;
|
break;
|
||||||
case 4: month = "تیر";
|
case 4:
|
||||||
|
month = "تیر";
|
||||||
break;
|
break;
|
||||||
case 5: month = "مرداد";
|
case 5:
|
||||||
|
month = "مرداد";
|
||||||
break;
|
break;
|
||||||
case 6: month = "شهریور";
|
case 6:
|
||||||
|
month = "شهریور";
|
||||||
break;
|
break;
|
||||||
case 7:month = "مهر";
|
case 7:
|
||||||
|
month = "مهر";
|
||||||
break;
|
break;
|
||||||
case 8: month = "آبان";
|
case 8:
|
||||||
|
month = "آبان";
|
||||||
break;
|
break;
|
||||||
case 9: month = "آذر";
|
case 9:
|
||||||
|
month = "آذر";
|
||||||
break;
|
break;
|
||||||
case 10: month = "دی";
|
case 10:
|
||||||
|
month = "دی";
|
||||||
break;
|
break;
|
||||||
case 11: month = "بهمن";
|
case 11:
|
||||||
|
month = "بهمن";
|
||||||
break;
|
break;
|
||||||
case 12: month = "اسفند";
|
case 12:
|
||||||
|
month = "اسفند";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
var year = syear.ToString();
|
var year = syear.ToString();
|
||||||
|
|
||||||
#region SickLeav
|
#region SickLeav
|
||||||
|
|
||||||
//var serachModel = new LeaveSearchModel()
|
//var serachModel = new LeaveSearchModel()
|
||||||
//{
|
//{
|
||||||
// EmployeeId = command.EmployeeId,
|
// EmployeeId = command.EmployeeId,
|
||||||
// WorkshopId = command.WorkshopId,
|
// WorkshopId = command.WorkshopId,
|
||||||
// LeaveType = "استعلاجی",
|
// LeaveType = "استعلاجی",
|
||||||
// StartLeave = command.ContractStart,
|
// StartLeave = command.ContractStart,
|
||||||
// EndLeave = command.ContractEnd,
|
// EndLeave = command.ContractEnd,
|
||||||
// IsAccepted = true,
|
// IsAccepted = true,
|
||||||
//};
|
//};
|
||||||
//var leavList = _leaveApplication.search(serachModel);
|
//var leavList = _leaveApplication.search(serachModel);
|
||||||
// int sickLeaveCount = 0;
|
// int sickLeaveCount = 0;
|
||||||
//if (leavList.Count > 0)
|
//if (leavList.Count > 0)
|
||||||
//{
|
//{
|
||||||
|
|
||||||
// foreach (var leave in leavList)
|
|
||||||
// {
|
|
||||||
// if (leave.StartLeaveGr < command.ContractStartGr && leave.EndLeaveGr <= command.ContractEndGr)
|
|
||||||
// {
|
|
||||||
// int res = (int)((leave.EndLeaveGr - command.ContractStartGr).TotalDays +1);
|
|
||||||
// sickLeaveCount += res;
|
|
||||||
// }
|
|
||||||
// else if (leave.StartLeaveGr >= command.ContractStartGr && leave.EndLeaveGr > command.ContractEndGr)
|
|
||||||
// {
|
|
||||||
// int res = (int)((command.ContractEndGr - leave.StartLeaveGr).TotalDays + 1);
|
|
||||||
// sickLeaveCount += res;
|
|
||||||
// }
|
|
||||||
// else
|
|
||||||
// {
|
|
||||||
// int res = (int)((leave.EndLeaveGr - leave.StartLeaveGr).TotalDays + 1);
|
|
||||||
// sickLeaveCount += res;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
#endregion
|
// foreach (var leave in leavList)
|
||||||
|
// {
|
||||||
|
// if (leave.StartLeaveGr < command.ContractStartGr && leave.EndLeaveGr <= command.ContractEndGr)
|
||||||
|
// {
|
||||||
|
// int res = (int)((leave.EndLeaveGr - command.ContractStartGr).TotalDays +1);
|
||||||
|
// sickLeaveCount += res;
|
||||||
|
// }
|
||||||
|
// else if (leave.StartLeaveGr >= command.ContractStartGr && leave.EndLeaveGr > command.ContractEndGr)
|
||||||
|
// {
|
||||||
|
// int res = (int)((command.ContractEndGr - leave.StartLeaveGr).TotalDays + 1);
|
||||||
|
// sickLeaveCount += res;
|
||||||
|
// }
|
||||||
|
// else
|
||||||
|
// {
|
||||||
|
// int res = (int)((leave.EndLeaveGr - leave.StartLeaveGr).TotalDays + 1);
|
||||||
|
// sickLeaveCount += res;
|
||||||
|
// }
|
||||||
|
|
||||||
var dayliWage = command.DayliWage.MoneyToDouble();
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
var dayliWage = command.DayliWage.MoneyToDouble();
|
||||||
// کمک هزینه اقلام
|
// کمک هزینه اقلام
|
||||||
var consumableItem = command.ConsumableItems.MoneyToDouble();
|
var consumableItem = command.ConsumableItems.MoneyToDouble();
|
||||||
//حق اولاد
|
//حق اولاد
|
||||||
@@ -124,8 +140,8 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
//حق تاهل
|
//حق تاهل
|
||||||
var marriedAllowance = command.MarriedAllowance.MoneyToDouble();
|
var marriedAllowance = command.MarriedAllowance.MoneyToDouble();
|
||||||
var MontlyYearsBunos =
|
var MontlyYearsBunos =
|
||||||
_yearlySalaryRepository.GetMontlyBunosYears(command.WeeklyTime, command.ContractStartGr, command.ContractEndGr, dayliWage,command.WorkingWeeklyTime,command.officialholiday,command.friday, command.TotalHolidaysAndNotH, command.TotalHolidaysAndNotM, command.Basic, command.FridayStarttoEnd,command.DailFeeComplete,command.HasRollCall, command.HolidayWorking, command.ShiftWork);
|
_yearlySalaryRepository.GetMontlyBunosYears(command.WeeklyTime, command.ContractStartGr, command.ContractEndGr, dayliWage, command.WorkingWeeklyTime, command.officialholiday, command.friday, command.TotalHolidaysAndNotH, command.TotalHolidaysAndNotM, command.Basic, command.FridayStarttoEnd, command.DailFeeComplete, command.HasRollCall, command.HolidayWorking, command.ShiftWork);
|
||||||
//دستمزد ماهانه
|
//دستمزد ماهانه
|
||||||
var monthlyWage = MontlyYearsBunos.MontlyWage;
|
var monthlyWage = MontlyYearsBunos.MontlyWage;
|
||||||
//سنوات
|
//سنوات
|
||||||
var years = command.YearsPay;
|
var years = command.YearsPay;
|
||||||
@@ -143,7 +159,7 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
//حق بیمه سهم کارگر
|
//حق بیمه سهم کارگر
|
||||||
var insuranceDeduction = (monthlyWage + bacicYears + consumableItem + housingAllowance + marriedAllowance) * 7 / 100;
|
var insuranceDeduction = (monthlyWage + bacicYears + consumableItem + housingAllowance + marriedAllowance) * 7 / 100;
|
||||||
|
|
||||||
if (command.OvertimePay > 0 && command.AbsenceDeduction>0)
|
if (command.OvertimePay > 0 && command.AbsenceDeduction > 0)
|
||||||
{
|
{
|
||||||
if (command.AbsenceDeduction >= command.OvertimePay)
|
if (command.AbsenceDeduction >= command.OvertimePay)
|
||||||
{
|
{
|
||||||
@@ -157,12 +173,26 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
var checkoutStart = $"{command.Year}/{command.Month}/01";
|
||||||
|
var checkoutEnd = checkoutStart.FindeEndOfMonth();
|
||||||
|
var salaryAids =
|
||||||
|
_rollCallMandatoryRepository.SalaryAidsForCheckout(command.EmployeeId, command.WorkshopId, checkoutStart.ToGeorgianDateTime(), checkoutEnd.ToGeorgianDateTime())
|
||||||
|
.Select(x => new CheckoutSalaryAid(x.Amount, x.SalaryAidDateTimeGe, x.SalaryAidDateTimeFa, x.CalculationDateTimeGe, x.CalculationDateTimeFa, x.Id)).ToList();
|
||||||
|
|
||||||
|
command.SalaryAidDeduction = salaryAids.Sum(x => x.Amount.MoneyToDouble());
|
||||||
|
|
||||||
|
|
||||||
|
var loanInstallments = _rollCallMandatoryRepository.LoanInstallmentForCheckout(command.EmployeeId,
|
||||||
|
command.WorkshopId, command.ContractStartGr, command.ContractEndGr)
|
||||||
|
.Select(x => new CheckoutLoanInstallment(x.Amount, x.Month, x.Year, x.IsActive, x.RemainingAmount, x.LoanAmount, x.Id)).ToList();
|
||||||
|
|
||||||
|
command.InstallmentDeduction = loanInstallments.Sum(x => x.AmountForMonth.MoneyToDouble());
|
||||||
|
|
||||||
|
|
||||||
var totalClaimsDouble = monthlyWage + bacicYears + consumableItem + housingAllowance + marriedAllowance + command.OvertimePay +
|
var totalClaimsDouble = monthlyWage + bacicYears + consumableItem + housingAllowance + marriedAllowance + command.OvertimePay +
|
||||||
command.NightworkPay + familyAllowance + bunos + years + command.LeavePay + command.FridayPay + command.ShiftPay;
|
command.NightworkPay + familyAllowance + bunos + years + command.LeavePay + command.FridayPay + command.ShiftPay;
|
||||||
var totalClaims = totalClaimsDouble.ToMoney();
|
var totalClaims = totalClaimsDouble.ToMoney();
|
||||||
var totalDeductionDouble = insuranceDeduction + command.AbsenceDeduction;
|
var totalDeductionDouble = insuranceDeduction + command.AbsenceDeduction + command.InstallmentDeduction + command.SalaryAidDeduction;
|
||||||
var totalDeductions = totalDeductionDouble.ToMoney();
|
var totalDeductions = totalDeductionDouble.ToMoney();
|
||||||
var totalPayment = totalClaimsDouble - totalDeductionDouble;
|
var totalPayment = totalClaimsDouble - totalDeductionDouble;
|
||||||
|
|
||||||
@@ -177,14 +207,16 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
{
|
{
|
||||||
command.Signature = "0";
|
command.Signature = "0";
|
||||||
}
|
}
|
||||||
|
|
||||||
var checkout = new Checkout(command.EmployeeFullName, command.FathersName ,command.NationalCode
|
|
||||||
|
|
||||||
|
var checkout = new Checkout(command.EmployeeFullName, command.FathersName, command.NationalCode
|
||||||
, command.DateOfBirth, command.EmployeeId, command.WorkshopName, command.WorkshopId, command.ContractNo, command.ContractStartGr, command.ContractEndGr, month, year,
|
, command.DateOfBirth, command.EmployeeId, command.WorkshopName, command.WorkshopId, command.ContractNo, command.ContractStartGr, command.ContractEndGr, month, year,
|
||||||
command.ContractId, command.WorkingHoursId, monthlyWage, bacicYears, consumableItem, housingAllowance
|
command.ContractId, command.WorkingHoursId, monthlyWage, bacicYears, consumableItem, housingAllowance
|
||||||
, command.OvertimePay, command.NightworkPay, command.FridayPay, 0, command.ShiftPay, familyAllowance, bunos, years, command.LeavePay, insuranceDeduction, 0, 0, 0, command.AbsenceDeduction, sumOfWorkingDays,
|
, command.OvertimePay, command.NightworkPay, command.FridayPay, 0, command.ShiftPay, familyAllowance, bunos, years, command.LeavePay, insuranceDeduction, 0, command.InstallmentDeduction, command.SalaryAidDeduction, command.AbsenceDeduction, sumOfWorkingDays,
|
||||||
command.ArchiveCode, command.PersonnelCode, totalClaims, totalDeductions, totalPayment, command.Signature,marriedAllowance,command.LeaveCheckout,command.CreditLeaves,command.AbsencePeriod,command.AverageHoursPerDay,command.HasRollCall,command.OverTimeWorkValue,command.OverNightWorkValue
|
command.ArchiveCode, command.PersonnelCode, totalClaims, totalDeductions, totalPayment, command.Signature, marriedAllowance, command.LeaveCheckout, command.CreditLeaves, command.AbsencePeriod, command.AverageHoursPerDay, command.HasRollCall, command.OverTimeWorkValue, command.OverNightWorkValue
|
||||||
,command.FridayWorkValue, command.RotatingShiftValue,command.AbsenceValue,command.TotalDayOfLeaveCompute,command.TotalDayOfYearsCompute,command.TotalDayOfBunosesCompute);
|
, command.FridayWorkValue, command.RotatingShiftValue, command.AbsenceValue, command.TotalDayOfLeaveCompute, command.TotalDayOfYearsCompute, command.TotalDayOfBunosesCompute, loanInstallments, salaryAids);
|
||||||
_checkoutRepository.CreateCkeckout(checkout);
|
_checkoutRepository.CreateCkeckout(checkout).GetAwaiter().GetResult();
|
||||||
//_checkoutRepository.SaveChanges();
|
//_checkoutRepository.SaveChanges();
|
||||||
|
|
||||||
//var employeeFullName = new SqlParameter("@EmployeeFullName", SqlDbType.NVarChar, 50);
|
//var employeeFullName = new SqlParameter("@EmployeeFullName", SqlDbType.NVarChar, 50);
|
||||||
@@ -194,7 +226,7 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public OperationResult Edit(EditCheckout command)
|
public OperationResult Edit(EditCheckout command)
|
||||||
@@ -207,10 +239,17 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
return _checkoutRepository.GetDetails(id);
|
return _checkoutRepository.GetDetails(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task<CreateCheckoutListViewModel> GetContractResultToCreateCheckout(long workshopId, long employeeId, string year, string month,
|
||||||
|
string contractStart, string contractEnd)
|
||||||
|
{
|
||||||
|
return await _checkoutRepository.GetContractResultToCreateCheckout(workshopId, employeeId, year, month, contractStart,
|
||||||
|
contractEnd);
|
||||||
|
|
||||||
|
}
|
||||||
public async Task<List<CheckoutViewModel>> Search(CheckoutSearchModel searchModel)
|
public async Task<List<CheckoutViewModel>> Search(CheckoutSearchModel searchModel)
|
||||||
{
|
{
|
||||||
var result = new List<CheckoutViewModel>();
|
var result = new List<CheckoutViewModel>();
|
||||||
var query =await _checkoutRepository.SearchForMainCheckout(searchModel);
|
var query = await _checkoutRepository.SearchForMainCheckout(searchModel);
|
||||||
query = query.Select(x => new CheckoutViewModel()
|
query = query.Select(x => new CheckoutViewModel()
|
||||||
{
|
{
|
||||||
Id = x.Id,
|
Id = x.Id,
|
||||||
@@ -248,7 +287,7 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
// // .Select(x => x.EmployerId).FirstOrDefault();
|
// // .Select(x => x.EmployerId).FirstOrDefault();
|
||||||
// //var employerName = _context.Employers?.FirstOrDefault(x => x.id == employeId).FullName;
|
// //var employerName = _context.Employers?.FirstOrDefault(x => x.id == employeId).FullName;
|
||||||
// // = employerName;
|
// // = employerName;
|
||||||
|
|
||||||
//}
|
//}
|
||||||
|
|
||||||
return query;
|
return query;
|
||||||
@@ -268,31 +307,30 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
return new();
|
return new();
|
||||||
result.ForEach(x =>
|
result.ForEach(x =>
|
||||||
{
|
{
|
||||||
if (x.HasRollCall)
|
|
||||||
{
|
|
||||||
|
|
||||||
int yearFa;
|
|
||||||
int monthFa;
|
int yearFa;
|
||||||
try
|
int monthFa;
|
||||||
{
|
try
|
||||||
yearFa = int.Parse(oneRecord.Year);
|
{
|
||||||
monthFa = oneRecord.Month.ToMonthByStringValue();
|
yearFa = int.Parse(oneRecord.Year);
|
||||||
}
|
monthFa = oneRecord.Month.ToMonthByStringValue();
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
double mandatoryHours = _mandatoryHoursApplication.GetMandatoryHoursByYearAndMonth(yearFa, monthFa);
|
|
||||||
int mandatoryWholeHours = (int)mandatoryHours;
|
|
||||||
int mandatoryMinutes = (int)((mandatoryHours - mandatoryWholeHours) * 60);
|
|
||||||
var totalWorking = new TimeSpan(x.MonthlyRollCall.Sum(y => y.TotalhourseSpan.Ticks));
|
|
||||||
var totalBreakTime = new TimeSpan(x.MonthlyRollCall.Sum(y => y.BreakTimeTimeSpan.Ticks));
|
|
||||||
var totalPresent = totalWorking + totalBreakTime;
|
|
||||||
x.TotalWorkingTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalWorking.TotalHours, totalWorking.Minutes, "-");
|
|
||||||
x.TotalBreakTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalBreakTime.TotalHours, totalBreakTime.Minutes, "-");
|
|
||||||
x.TotalPresentTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalPresent.TotalHours, totalPresent.Minutes, "-");
|
|
||||||
x.TotalMandatoryTimeStr = Tools.ToFarsiHoursAndMinutes(mandatoryWholeHours, mandatoryMinutes, "-");
|
|
||||||
}
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
double mandatoryHours = _mandatoryHoursApplication.GetMandatoryHoursByYearAndMonth(yearFa, monthFa);
|
||||||
|
int mandatoryWholeHours = (int)mandatoryHours;
|
||||||
|
int mandatoryMinutes = (int)((mandatoryHours - mandatoryWholeHours) * 60);
|
||||||
|
var totalWorking = new TimeSpan(x.MonthlyRollCall.Sum(y => y.TotalhourseSpan.Ticks));
|
||||||
|
var totalBreakTime = new TimeSpan(x.MonthlyRollCall.Sum(y => y.BreakTimeTimeSpan.Ticks));
|
||||||
|
var totalPresent = totalWorking + totalBreakTime;
|
||||||
|
x.TotalWorkingTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalWorking.TotalHours, totalWorking.Minutes, "-");
|
||||||
|
x.TotalBreakTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalBreakTime.TotalHours, totalBreakTime.Minutes, "-");
|
||||||
|
x.TotalPresentTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalPresent.TotalHours, totalPresent.Minutes, "-");
|
||||||
|
x.TotalMandatoryTimeStr = Tools.ToFarsiHoursAndMinutes(mandatoryWholeHours, mandatoryMinutes, "-");
|
||||||
|
|
||||||
});
|
});
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -301,31 +339,41 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
{
|
{
|
||||||
var result = _checkoutRepository.PrintOne(id);
|
var result = _checkoutRepository.PrintOne(id);
|
||||||
|
|
||||||
|
int yearFa;
|
||||||
|
int monthFa;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
yearFa = int.Parse(result.Year);
|
||||||
|
monthFa = result.Month.ToMonthByStringValue();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
return new();
|
||||||
|
}
|
||||||
|
double mandatoryHours = _mandatoryHoursApplication.GetMandatoryHoursByYearAndMonth(yearFa, monthFa);
|
||||||
|
int mandatoryWholeHours = (int)mandatoryHours;
|
||||||
|
int mandatoryMinutes = (int)((mandatoryHours - mandatoryWholeHours) * 60);
|
||||||
|
TimeSpan totalWorking;
|
||||||
|
TimeSpan totalBreakTime;
|
||||||
|
TimeSpan totalPresent;
|
||||||
if (result.HasRollCall)
|
if (result.HasRollCall)
|
||||||
{
|
{
|
||||||
int yearFa;
|
totalWorking = new TimeSpan(result.MonthlyRollCall.Sum(x => x.TotalhourseSpan.Ticks));
|
||||||
int monthFa;
|
totalBreakTime = new TimeSpan(result.MonthlyRollCall.Sum(x => x.BreakTimeTimeSpan.Ticks));
|
||||||
try
|
totalPresent = totalWorking + totalBreakTime;
|
||||||
{
|
|
||||||
yearFa = int.Parse(result.Year);
|
|
||||||
monthFa = result.Month.ToMonthByStringValue();
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
return new();
|
|
||||||
}
|
|
||||||
double mandatoryHours = _mandatoryHoursApplication.GetMandatoryHoursByYearAndMonth(yearFa, monthFa);
|
|
||||||
int mandatoryWholeHours = (int)mandatoryHours;
|
|
||||||
int mandatoryMinutes = (int)((mandatoryHours - mandatoryWholeHours) * 60);
|
|
||||||
var totalWorking = new TimeSpan(result.MonthlyRollCall.Sum(x => x.TotalhourseSpan.Ticks));
|
|
||||||
var totalBreakTime = new TimeSpan(result.MonthlyRollCall.Sum(x => x.BreakTimeTimeSpan.Ticks));
|
|
||||||
var totalPresent = totalWorking + totalBreakTime;
|
|
||||||
|
|
||||||
result.TotalWorkingTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalWorking.TotalHours, totalWorking.Minutes, "-");
|
|
||||||
result.TotalBreakTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalBreakTime.TotalHours, totalBreakTime.Minutes, "-");
|
|
||||||
result.TotalPresentTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalPresent.TotalHours, totalPresent.Minutes, "-");
|
|
||||||
result.TotalMandatoryTimeStr = Tools.ToFarsiHoursAndMinutes(mandatoryWholeHours, mandatoryMinutes, "-");
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
totalBreakTime = new TimeSpan(result.MonthlyRollCall.Sum(x => x.BreakTimeTimeSpan.Ticks));
|
||||||
|
totalPresent = new TimeSpan(result.MonthlyRollCall.Sum(x => x.TotalhourseSpan.Ticks));
|
||||||
|
totalWorking = totalPresent - totalBreakTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
result.TotalWorkingTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalWorking.TotalHours, totalWorking.Minutes, "-");
|
||||||
|
result.TotalBreakTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalBreakTime.TotalHours, totalBreakTime.Minutes, "-");
|
||||||
|
result.TotalPresentTimeStr = Tools.ToFarsiHoursAndMinutes((int)totalPresent.TotalHours, totalPresent.Minutes, "-");
|
||||||
|
result.TotalMandatoryTimeStr = Tools.ToFarsiHoursAndMinutes(mandatoryWholeHours, mandatoryMinutes, "-");
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -388,7 +436,7 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
|
|
||||||
|
|
||||||
_checkoutRepository.SaveChanges();
|
_checkoutRepository.SaveChanges();
|
||||||
|
|
||||||
return opration.Succcedded();
|
return opration.Succcedded();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -403,7 +451,7 @@ public class CheckoutApplication : ICheckoutApplication
|
|||||||
var checkout = _checkoutRepository.Get(id);
|
var checkout = _checkoutRepository.Get(id);
|
||||||
var totalClaimsDouble = checkout.TotalClaims.MoneyToDouble();
|
var totalClaimsDouble = checkout.TotalClaims.MoneyToDouble();
|
||||||
var totalDeductionsDouble = checkout.TotalDeductions.MoneyToDouble();
|
var totalDeductionsDouble = checkout.TotalDeductions.MoneyToDouble();
|
||||||
totalClaimsDouble = (double) (totalClaimsDouble - checkout.RewardPay);
|
totalClaimsDouble = (double)(totalClaimsDouble - checkout.RewardPay);
|
||||||
totalDeductionsDouble = totalDeductionsDouble - checkout.SalaryAidDeduction;
|
totalDeductionsDouble = totalDeductionsDouble - checkout.SalaryAidDeduction;
|
||||||
|
|
||||||
var totalClaims = totalClaimsDouble + rewardPay;
|
var totalClaims = totalClaimsDouble + rewardPay;
|
||||||
|
|||||||
@@ -1,70 +0,0 @@
|
|||||||
using System.Text.RegularExpressions;
|
|
||||||
using _0_Framework.Application;
|
|
||||||
using Company.Domain.ContactUsAgg;
|
|
||||||
using CompanyManagment.App.Contracts.ContactUs;
|
|
||||||
|
|
||||||
namespace CompanyManagment.Application;
|
|
||||||
|
|
||||||
public class ContactUsApplication : IContactUsApplication
|
|
||||||
{
|
|
||||||
private readonly IContactUsRepository _contactUsRepository;
|
|
||||||
|
|
||||||
public ContactUsApplication(IContactUsRepository contactUsRepository)
|
|
||||||
{
|
|
||||||
_contactUsRepository = contactUsRepository;
|
|
||||||
}
|
|
||||||
|
|
||||||
public OperationResult Create(CreateContactUs command)
|
|
||||||
{
|
|
||||||
var op = new OperationResult();
|
|
||||||
if (string.IsNullOrWhiteSpace(command.FirstName))
|
|
||||||
{
|
|
||||||
return op.Failed("لطفا نام خود را وارد کنید");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(command.LastName))
|
|
||||||
{
|
|
||||||
return op.Failed("لطفا نام خانوادگی خود را وارد کنید");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(command.Email))
|
|
||||||
{
|
|
||||||
return op.Failed("لطفا ایمیل خود را وارد کنید");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(command.PhoneNumber))
|
|
||||||
{
|
|
||||||
return op.Failed("لطفا شماره تماس خود را وارد کنید");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!Regex.IsMatch(command.PhoneNumber, @"^(\+98|0)?9\d{9}$"))
|
|
||||||
{
|
|
||||||
return op.Failed("شماره تماس وارد شده نامعتبر است");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!Regex.IsMatch(command.Email, @"^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$"))
|
|
||||||
{
|
|
||||||
return op.Failed("ایمیل وارد شده نامعتبر است");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(command.Title))
|
|
||||||
{
|
|
||||||
return op.Failed("لطفا عنوان پیغام خود را وارد کنید");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(command.Message))
|
|
||||||
{
|
|
||||||
return op.Failed("لطفا پیغام خود را وارد کنید");
|
|
||||||
}
|
|
||||||
|
|
||||||
var entity = new ContactUs(command.FirstName, command.LastName, command.Email, command.PhoneNumber,
|
|
||||||
command.Title, command.Message);
|
|
||||||
|
|
||||||
_contactUsRepository.Create(entity);
|
|
||||||
|
|
||||||
_contactUsRepository.SaveChanges();
|
|
||||||
|
|
||||||
return op.Succcedded();
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -21,6 +21,10 @@ using System.Threading.Tasks;
|
|||||||
using System.Transactions;
|
using System.Transactions;
|
||||||
using CompanyManagment.App.Contracts.RollCall;
|
using CompanyManagment.App.Contracts.RollCall;
|
||||||
using Microsoft.EntityFrameworkCore.Query;
|
using Microsoft.EntityFrameworkCore.Query;
|
||||||
|
using Company.Domain.CheckoutAgg;
|
||||||
|
using Company.Domain.CustomizeCheckoutAgg;
|
||||||
|
using Company.Domain.CustomizeCheckoutTempAgg;
|
||||||
|
using CompanyManagment.EFCore.Repository;
|
||||||
|
|
||||||
|
|
||||||
namespace CompanyManagment.Application;
|
namespace CompanyManagment.Application;
|
||||||
@@ -30,7 +34,10 @@ public class CustomizeWorkshopSettingsApplication(ICustomizeWorkshopSettingsRepo
|
|||||||
ICustomizeWorkshopGroupSettingsRepository customizeWorkshopGroupSettingsRepository, IEmployeeRepository employeeRepository,
|
ICustomizeWorkshopGroupSettingsRepository customizeWorkshopGroupSettingsRepository, IEmployeeRepository employeeRepository,
|
||||||
ICustomizeWorkshopEmployeeSettingsRepository customizeWorkshopEmployeeSettingsRepository,
|
ICustomizeWorkshopEmployeeSettingsRepository customizeWorkshopEmployeeSettingsRepository,
|
||||||
IRollCallEmployeeApplication rollCallEmployeeApplication,
|
IRollCallEmployeeApplication rollCallEmployeeApplication,
|
||||||
IRollCallApplication rollCallAppllication)
|
IRollCallApplication rollCallAppllication,
|
||||||
|
ICheckoutRepository checkoutRepository,
|
||||||
|
ICustomizeCheckoutRepository customizeCheckoutRepository,
|
||||||
|
ICustomizeCheckoutTempRepository customizeCheckoutTempRepository)
|
||||||
: ICustomizeWorkshopSettingsApplication
|
: ICustomizeWorkshopSettingsApplication
|
||||||
{
|
{
|
||||||
private readonly ICustomizeWorkshopSettingsRepository _customizeWorkshopSettingsRepository = customizeWorkshopSettingsRepository;
|
private readonly ICustomizeWorkshopSettingsRepository _customizeWorkshopSettingsRepository = customizeWorkshopSettingsRepository;
|
||||||
@@ -42,6 +49,9 @@ public class CustomizeWorkshopSettingsApplication(ICustomizeWorkshopSettingsRepo
|
|||||||
private readonly ICameraAccountApplication _cameraAccountApplication = cameraAccountApplication;
|
private readonly ICameraAccountApplication _cameraAccountApplication = cameraAccountApplication;
|
||||||
private readonly IRollCallEmployeeApplication _rollCallEmployeeApplication = rollCallEmployeeApplication;
|
private readonly IRollCallEmployeeApplication _rollCallEmployeeApplication = rollCallEmployeeApplication;
|
||||||
private readonly IRollCallApplication _rollCallApplication = rollCallAppllication;
|
private readonly IRollCallApplication _rollCallApplication = rollCallAppllication;
|
||||||
|
private readonly ICheckoutRepository _checkoutRepository = checkoutRepository;
|
||||||
|
private readonly ICustomizeCheckoutRepository _customizeCheckoutRepository = customizeCheckoutRepository;
|
||||||
|
private readonly ICustomizeCheckoutTempRepository _customizeCheckoutTempRepository = customizeCheckoutTempRepository;
|
||||||
|
|
||||||
#region RollCallShifts
|
#region RollCallShifts
|
||||||
|
|
||||||
@@ -670,7 +680,8 @@ public class CustomizeWorkshopSettingsApplication(ICustomizeWorkshopSettingsRepo
|
|||||||
transActionScope.Complete();
|
transActionScope.Complete();
|
||||||
return op.Succcedded();
|
return op.Succcedded();
|
||||||
}
|
}
|
||||||
public OperationResult EditSimpleRollCallGroupSetting(EditCustomizeWorkshopGroupSettings command)
|
public OperationResult EditSimpleRollCallGroupSetting(EditCustomizeWorkshopGroupSettings command,
|
||||||
|
List<ReCalculateRollCallValues> reCalculateCommand)
|
||||||
{
|
{
|
||||||
OperationResult op = new();
|
OperationResult op = new();
|
||||||
|
|
||||||
@@ -689,9 +700,11 @@ public class CustomizeWorkshopSettingsApplication(ICustomizeWorkshopSettingsRepo
|
|||||||
|
|
||||||
var workshopSettings = _customizeWorkshopSettingsRepository.Get(entity.CustomizeWorkshopSettingId);
|
var workshopSettings = _customizeWorkshopSettingsRepository.Get(entity.CustomizeWorkshopSettingId);
|
||||||
|
|
||||||
var employeeIds = command.IsShiftChanged ? entity.CustomizeWorkshopEmployeeSettingsCollection
|
//var employeeIds = command.IsShiftChanged ? entity.CustomizeWorkshopEmployeeSettingsCollection
|
||||||
.Select(x => x.id).ToList() : entity.CustomizeWorkshopEmployeeSettingsCollection.Where(x => !x.IsShiftChanged)
|
// .Select(x => x.id).ToList() : entity.CustomizeWorkshopEmployeeSettingsCollection.Where(x => !x.IsShiftChanged)
|
||||||
.Select(x => x.id).ToList();
|
// .Select(x => x.id).ToList();
|
||||||
|
|
||||||
|
|
||||||
var groupSettingsShifts = new List<CustomizeWorkshopGroupSettingsShift>();
|
var groupSettingsShifts = new List<CustomizeWorkshopGroupSettingsShift>();
|
||||||
ICollection<CustomizeRotatingShift> rotatingShift = [];
|
ICollection<CustomizeRotatingShift> rotatingShift = [];
|
||||||
bool isChanged;
|
bool isChanged;
|
||||||
@@ -708,7 +721,7 @@ public class CustomizeWorkshopSettingsApplication(ICustomizeWorkshopSettingsRepo
|
|||||||
return new CustomizeWorkshopGroupSettingsShift(start, end, x.Placement);
|
return new CustomizeWorkshopGroupSettingsShift(start, end, x.Placement);
|
||||||
|
|
||||||
}).ToList();
|
}).ToList();
|
||||||
;
|
|
||||||
if (groupSettingsShifts.All(x => workshopSettings.CustomizeWorkshopSettingsShifts.Any(y => x.Equals(y)))
|
if (groupSettingsShifts.All(x => workshopSettings.CustomizeWorkshopSettingsShifts.Any(y => x.Equals(y)))
|
||||||
&& command.WorkshopShiftStatus == workshopSettings.WorkshopShiftStatus && command.FridayWork == workshopSettings.FridayWork &&
|
&& command.WorkshopShiftStatus == workshopSettings.WorkshopShiftStatus && command.FridayWork == workshopSettings.FridayWork &&
|
||||||
command.HolidayWork == workshopSettings.HolidayWork &&
|
command.HolidayWork == workshopSettings.HolidayWork &&
|
||||||
@@ -782,10 +795,38 @@ public class CustomizeWorkshopSettingsApplication(ICustomizeWorkshopSettingsRepo
|
|||||||
|
|
||||||
var breakTime = new BreakTime(command.BreakTime.HasBreakTimeValue, command.BreakTime.BreakTimeValue);
|
var breakTime = new BreakTime(command.BreakTime.HasBreakTimeValue, command.BreakTime.BreakTimeValue);
|
||||||
|
|
||||||
entity.EditSimpleAndOverwriteOnEmployee(command.Name, employeeIds, groupSettingsShifts, command.WorkshopShiftStatus,
|
var employeeSettings = entity.CustomizeWorkshopEmployeeSettingsCollection;
|
||||||
|
|
||||||
|
var employeeSettingIds = employeeSettings.Select(x => x.EmployeeId).ToList();
|
||||||
|
|
||||||
|
reCalculateCommand = reCalculateCommand.Where(x => employeeSettingIds.Contains(x.EmployeeId)).ToList();
|
||||||
|
|
||||||
|
var selectedEmployeesIds = reCalculateCommand.Select(x => x.EmployeeId).ToList();
|
||||||
|
|
||||||
|
var notSelectedEmployeeSettings = employeeSettings.Where(x => !selectedEmployeesIds.Contains(x.EmployeeId));
|
||||||
|
|
||||||
|
using var transaction = new TransactionScope();
|
||||||
|
|
||||||
|
entity.EditSimpleAndOverwriteOnEmployee(command.Name, selectedEmployeesIds, groupSettingsShifts, command.WorkshopShiftStatus,
|
||||||
command.IrregularShift, breakTime, isChanged, command.FridayWork, command.HolidayWork, rotatingShift);
|
command.IrregularShift, breakTime, isChanged, command.FridayWork, command.HolidayWork, rotatingShift);
|
||||||
|
if (reCalculateCommand.Count > 0)
|
||||||
|
{
|
||||||
|
var result = _rollCallApplication.RecalculateValues(workshopSettings.WorkshopId, reCalculateCommand);
|
||||||
|
|
||||||
|
if (result.IsSuccedded == false)
|
||||||
|
{
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var notSelectedEmployeeSetting in notSelectedEmployeeSettings)
|
||||||
|
{
|
||||||
|
notSelectedEmployeeSetting.UpdateIsShiftChange();
|
||||||
|
}
|
||||||
|
|
||||||
_customizeWorkshopGroupSettingsRepository.SaveChanges();
|
_customizeWorkshopGroupSettingsRepository.SaveChanges();
|
||||||
|
|
||||||
|
transaction.Complete();
|
||||||
return op.Succcedded();
|
return op.Succcedded();
|
||||||
}
|
}
|
||||||
public OperationResult EditSimpleRollCallEmployeeSetting(EditCustomizeEmployeeSettings command,
|
public OperationResult EditSimpleRollCallEmployeeSetting(EditCustomizeEmployeeSettings command,
|
||||||
@@ -1552,7 +1593,40 @@ public class CustomizeWorkshopSettingsApplication(ICustomizeWorkshopSettingsRepo
|
|||||||
{
|
{
|
||||||
return _customizeWorkshopGroupSettingsRepository.HasAnyEmployeeWithoutGroup(workshopId);
|
return _customizeWorkshopGroupSettingsRepository.HasAnyEmployeeWithoutGroup(workshopId);
|
||||||
}
|
}
|
||||||
|
public OperationResult<List<long>> ValidateReCalculateValueForGroupEdit(List<ReCalculateRollCallValues> commands,
|
||||||
|
long workshopId)
|
||||||
|
{
|
||||||
|
var operationResult = new OperationResult<List<long>>();
|
||||||
|
bool isSuccess = true;
|
||||||
|
List<long> employeeIdsHasCheckout = [];
|
||||||
|
foreach (var command in commands)
|
||||||
|
{
|
||||||
|
var fromDateGr = command.FromDate.ToGeorgianDateTime();
|
||||||
|
if (_checkoutRepository.Exists(x => x.WorkshopId == workshopId && x.EmployeeId == command.EmployeeId && fromDateGr <= x.ContractEnd))
|
||||||
|
{
|
||||||
|
isSuccess = false;
|
||||||
|
employeeIdsHasCheckout.Add(command.EmployeeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_customizeCheckoutRepository.Exists(x => x.WorkshopId == workshopId && x.EmployeeId == command.EmployeeId && fromDateGr <= x.ContractEnd))
|
||||||
|
{
|
||||||
|
isSuccess = false;
|
||||||
|
employeeIdsHasCheckout.Add(command.EmployeeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_customizeCheckoutTempRepository.Exists(x => x.WorkshopId == workshopId && x.EmployeeId == command.EmployeeId && fromDateGr <= x.ContractEnd))
|
||||||
|
{
|
||||||
|
isSuccess = false;
|
||||||
|
employeeIdsHasCheckout.Add(command.EmployeeId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
employeeIdsHasCheckout = employeeIdsHasCheckout.Distinct().ToList();
|
||||||
|
return isSuccess ?
|
||||||
|
operationResult.Succcedded(employeeIdsHasCheckout)
|
||||||
|
:
|
||||||
|
operationResult.Failed("پرسنل هایی دارای فیش هستند لطفا نسبت به تعیین تکلیف این ها اقدام نمایید", employeeIdsHasCheckout);
|
||||||
|
}
|
||||||
public bool CheckEmployeeShiftHasChanged(EditCustomizeEmployeeSettings command)
|
public bool CheckEmployeeShiftHasChanged(EditCustomizeEmployeeSettings command)
|
||||||
{
|
{
|
||||||
return _customizeWorkshopEmployeeSettingsRepository.CheckEmployeeShiftHasChanged(command);
|
return _customizeWorkshopEmployeeSettingsRepository.CheckEmployeeShiftHasChanged(command);
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using Company.Domain.empolyerAgg;
|
using Company.Domain.empolyerAgg;
|
||||||
using Company.Domain.WorkshopAgg;
|
using Company.Domain.WorkshopAgg;
|
||||||
@@ -892,6 +893,11 @@ public class EmployerApplication : IEmployerApplication
|
|||||||
{
|
{
|
||||||
return _EmployerRepository.GetEmployersHasWorkshop();
|
return _EmployerRepository.GetEmployersHasWorkshop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task<List<EmployerSelectListViewModel>> GetSelectList(string search)
|
||||||
|
{
|
||||||
|
return await _EmployerRepository.GetSelectList(search);
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region NewByHeydari
|
#region NewByHeydari
|
||||||
|
|||||||
@@ -19,6 +19,21 @@ public class InsuranceJobApplication: IInsuranceJobApplication
|
|||||||
_insuranceJobItemRepositpry = insuranceJobItemRepositpry;
|
_insuranceJobItemRepositpry = insuranceJobItemRepositpry;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<(long id, string date)> GetOldYersInsuranceItemIds()
|
||||||
|
{
|
||||||
|
return _insuranceJobRepositpry.GetOldYersInsuranceItemIds();
|
||||||
|
}
|
||||||
|
|
||||||
|
public OperationResult CopyFromLastYear(CopyFromLastYearViewModel command)
|
||||||
|
{
|
||||||
|
return _insuranceJobRepositpry.CopyFromLastYear(command);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OperationResult RecoveryOldData1403()
|
||||||
|
{
|
||||||
|
return _insuranceJobRepositpry.RecoveryOldData1403();
|
||||||
|
}
|
||||||
|
|
||||||
public OperationResult Create(CreateInsuranceJob command)
|
public OperationResult Create(CreateInsuranceJob command)
|
||||||
{
|
{
|
||||||
var opration = new OperationResult();
|
var opration = new OperationResult();
|
||||||
@@ -32,6 +47,10 @@ public class InsuranceJobApplication: IInsuranceJobApplication
|
|||||||
if (_insuranceJobRepositpry.Exists(x => x.InsuranceJobTitle == command.InsuranceJobTitle))
|
if (_insuranceJobRepositpry.Exists(x => x.InsuranceJobTitle == command.InsuranceJobTitle))
|
||||||
return opration.Failed("عنوان صنف و درجه تکراری است");
|
return opration.Failed("عنوان صنف و درجه تکراری است");
|
||||||
|
|
||||||
|
|
||||||
|
if (command.InsuranceJobItemId == 0)
|
||||||
|
return opration.Failed("بازه را انتخاب کنید");
|
||||||
|
|
||||||
//if (_insuranceJobRepositpry.Exists(x => x.EconomicCode == command.EconomicCode))
|
//if (_insuranceJobRepositpry.Exists(x => x.EconomicCode == command.EconomicCode))
|
||||||
// return opration.Failed("کد اقتصادی تکراری است");
|
// return opration.Failed("کد اقتصادی تکراری است");
|
||||||
|
|
||||||
@@ -116,9 +135,9 @@ public class InsuranceJobApplication: IInsuranceJobApplication
|
|||||||
return opration.Failed("ویرایش با خطا مواجه شد.");
|
return opration.Failed("ویرایش با خطا مواجه شد.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public EditInsuranceJob GetDetails(long id)
|
public EditInsuranceJob GetDetails(long id, string year, string month)
|
||||||
{
|
{
|
||||||
return _insuranceJobRepositpry.GetDetails(id);
|
return _insuranceJobRepositpry.GetDetails(id, year,month);
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<InsuranceJobViewModel> GetInsurancJob()
|
public List<InsuranceJobViewModel> GetInsurancJob()
|
||||||
|
|||||||
@@ -292,12 +292,12 @@ public class InsuranceListApplication: IInsuranceListApplication
|
|||||||
var consumableItems = new YearlysalaryItemViewModel();
|
var consumableItems = new YearlysalaryItemViewModel();
|
||||||
if (yearSalaryObj != null)
|
if (yearSalaryObj != null)
|
||||||
{
|
{
|
||||||
yearlysalaryItem = _yearlySalaryItemApplication.GetItemsByYearlySalaryId(yearSalaryObj.Id)
|
yearlysalaryItem = _yearlySalaryItemApplication
|
||||||
.Where(x => x.ItemName == "مزد روزانه").FirstOrDefault();
|
.GetItemsByYearlySalaryId(yearSalaryObj.Id).FirstOrDefault(x => x.ItemName == "مزد روزانه");
|
||||||
housingAllowance = _yearlySalaryItemApplication.GetItemsByYearlySalaryId(yearSalaryObj.Id)
|
housingAllowance = _yearlySalaryItemApplication
|
||||||
.Where(x => x.ItemName == "کمک هزینه مسکن").FirstOrDefault();
|
.GetItemsByYearlySalaryId(yearSalaryObj.Id).FirstOrDefault(x => x.ItemName == "کمک هزینه مسکن");
|
||||||
consumableItems = _yearlySalaryItemApplication.GetItemsByYearlySalaryId(yearSalaryObj.Id)
|
consumableItems = _yearlySalaryItemApplication
|
||||||
.Where(x => x.ItemName == "کمک هزینه اقلام").FirstOrDefault();
|
.GetItemsByYearlySalaryId(yearSalaryObj.Id).FirstOrDefault(x => x.ItemName == "کمک هزینه اقلام");
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var item in insuranceListDetails.EmployeeDetailsForInsuranceList)
|
foreach (var item in insuranceListDetails.EmployeeDetailsForInsuranceList)
|
||||||
@@ -341,6 +341,10 @@ public class InsuranceListApplication: IInsuranceListApplication
|
|||||||
insuranceListDetails.AllInsuredShare = insuranceListDetails.InsuredShare +
|
insuranceListDetails.AllInsuredShare = insuranceListDetails.InsuredShare +
|
||||||
insuranceListDetails.EmployerShare +
|
insuranceListDetails.EmployerShare +
|
||||||
insuranceListDetails.UnEmploymentInsurance;
|
insuranceListDetails.UnEmploymentInsurance;
|
||||||
|
|
||||||
|
insuranceListDetails.LeftWorkEmployees =
|
||||||
|
_leftWorkInsuranceRepository.GetEmployeesWithContractExitOnly(insuranceListDetails.WorkshopId);
|
||||||
|
|
||||||
return insuranceListDetails;
|
return insuranceListDetails;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1676,6 +1680,7 @@ public class InsuranceListApplication: IInsuranceListApplication
|
|||||||
{
|
{
|
||||||
|
|
||||||
double? result = 0;
|
double? result = 0;
|
||||||
|
string month = $"{startDateGr.ToFarsi()}".Substring(5, 2);
|
||||||
//اگر مشاغل مقطوع بود و شغلش کارفرما بود
|
//اگر مشاغل مقطوع بود و شغلش کارفرما بود
|
||||||
// در جدول لیست بیمه قبلی چک شود
|
// در جدول لیست بیمه قبلی چک شود
|
||||||
try
|
try
|
||||||
@@ -1722,7 +1727,7 @@ public class InsuranceListApplication: IInsuranceListApplication
|
|||||||
|
|
||||||
{
|
{
|
||||||
var inJob = _insuranceJobItemRepository
|
var inJob = _insuranceJobItemRepository
|
||||||
.GetInsuranceJobItemByInsuranceJobId((long)workshop.InsuranceJobId);
|
.GetInsuranceJobItemByInsuranceJobId((long)workshop.InsuranceJobId,year, month);
|
||||||
if (workshop.Population == "MoreThan500")
|
if (workshop.Population == "MoreThan500")
|
||||||
{
|
{
|
||||||
var max = inJob.MaxBy(x => x.PercentageMoreThan);
|
var max = inJob.MaxBy(x => x.PercentageMoreThan);
|
||||||
@@ -1771,9 +1776,9 @@ public class InsuranceListApplication: IInsuranceListApplication
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
var searchModel = new InsuranceJobItemSearchModel();
|
var searchModel = new InsuranceJobItemSearchModel();
|
||||||
searchModel.InsuranceJobId = (long)insuranceJobId;
|
searchModel.InsuranceJobId = (long)insuranceJobId;
|
||||||
var JobItem = _insuranceJobItemRepository.GetInsuranceJobItemByInsuranceJobIdForFixedSalary((long)insuranceJobId, jobId);
|
var JobItem = _insuranceJobItemRepository.GetInsuranceJobItemByInsuranceJobIdForFixedSalary((long)insuranceJobId, jobId, year, month);
|
||||||
|
|
||||||
if (JobItem != null && JobItem.Id != 0)
|
if (JobItem != null && JobItem.Id != 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -211,6 +211,14 @@ public class LeftWorkApplication : ILeftWorkApplication
|
|||||||
return _leftWorkRepository.search(searchModel);
|
return _leftWorkRepository.search(searchModel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<LeftWorkViewModel> SearchCreateContract(LeftWorkSearchModel searchModel)
|
||||||
|
{
|
||||||
|
|
||||||
|
return _leftWorkRepository.SearchCreateContract(searchModel);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public async Task<List<LeftWorkViewModel>> searchAsync(LeftWorkSearchModel searchModel)
|
public async Task<List<LeftWorkViewModel>> searchAsync(LeftWorkSearchModel searchModel)
|
||||||
{
|
{
|
||||||
var res = search(searchModel);
|
var res = search(searchModel);
|
||||||
|
|||||||
@@ -1,21 +1,15 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Globalization;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection.Metadata.Ecma335;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Transactions;
|
using System.Transactions;
|
||||||
using _0_Framework.Application;
|
using _0_Framework.Application;
|
||||||
using Company.Domain.CheckoutAgg;
|
|
||||||
using Company.Domain.CustomizeCheckoutAgg;
|
using Company.Domain.CustomizeCheckoutAgg;
|
||||||
using Company.Domain.CustomizeCheckoutTempAgg;
|
using Company.Domain.CustomizeCheckoutTempAgg;
|
||||||
using Company.Domain.LoanAgg;
|
using Company.Domain.LoanAgg;
|
||||||
using Company.Domain.LoanAgg.Entities;
|
using Company.Domain.LoanAgg.Entities;
|
||||||
using CompanyManagment.App.Contracts.CustomizeCheckout;
|
using CompanyManagment.App.Contracts.CustomizeCheckout;
|
||||||
using CompanyManagment.App.Contracts.Loan;
|
using CompanyManagment.App.Contracts.Loan;
|
||||||
using Hangfire.States;
|
|
||||||
using Microsoft.AspNetCore.Mvc.Infrastructure;
|
|
||||||
using Microsoft.Extensions.Configuration.UserSecrets;
|
|
||||||
|
|
||||||
namespace CompanyManagment.Application;
|
namespace CompanyManagment.Application;
|
||||||
|
|
||||||
@@ -27,14 +21,16 @@ public class LoanApplication : ILoanApplication
|
|||||||
private readonly ICustomizeCheckoutTempRepository _customizeCheckoutTempRepository;
|
private readonly ICustomizeCheckoutTempRepository _customizeCheckoutTempRepository;
|
||||||
private readonly ICustomizeCheckoutApplication _customizeCheckoutApplication;
|
private readonly ICustomizeCheckoutApplication _customizeCheckoutApplication;
|
||||||
private readonly ICustomizeCheckoutTempApplication _customizeCheckoutTempApplication;
|
private readonly ICustomizeCheckoutTempApplication _customizeCheckoutTempApplication;
|
||||||
|
private readonly ICustomizeCheckoutRepository _checkoutRepository;
|
||||||
|
|
||||||
public LoanApplication(ILoanRepository loanRepository, ICustomizeCheckoutRepository customizeCheckoutRepository, ICustomizeCheckoutTempRepository customizeCheckoutTempRepository, IAuthHelper authHelper, ICustomizeCheckoutApplication customizeCheckoutApplication, ICustomizeCheckoutTempApplication customizeCheckoutTempApplication)
|
public LoanApplication(ILoanRepository loanRepository, ICustomizeCheckoutRepository customizeCheckoutRepository, ICustomizeCheckoutTempRepository customizeCheckoutTempRepository, IAuthHelper authHelper, ICustomizeCheckoutApplication customizeCheckoutApplication, ICustomizeCheckoutTempApplication customizeCheckoutTempApplication, ICustomizeCheckoutRepository checkoutRepository)
|
||||||
{
|
{
|
||||||
_loanRepository = loanRepository;
|
_loanRepository = loanRepository;
|
||||||
_customizeCheckoutRepository = customizeCheckoutRepository;
|
_customizeCheckoutRepository = customizeCheckoutRepository;
|
||||||
_authHelper = authHelper;
|
_authHelper = authHelper;
|
||||||
_customizeCheckoutApplication = customizeCheckoutApplication;
|
_customizeCheckoutApplication = customizeCheckoutApplication;
|
||||||
_customizeCheckoutTempApplication = customizeCheckoutTempApplication;
|
_customizeCheckoutTempApplication = customizeCheckoutTempApplication;
|
||||||
|
_checkoutRepository = checkoutRepository;
|
||||||
_customizeCheckoutTempRepository = customizeCheckoutTempRepository;
|
_customizeCheckoutTempRepository = customizeCheckoutTempRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -90,7 +86,7 @@ public class LoanApplication : ILoanApplication
|
|||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
var (userId, userType,_) = _authHelper.GetUserTypeWithId();
|
var (userId, userType, _) = _authHelper.GetUserTypeWithId();
|
||||||
using var transaction = new TransactionScope();
|
using var transaction = new TransactionScope();
|
||||||
foreach (var employeeId in command.EmployeeIds)
|
foreach (var employeeId in command.EmployeeIds)
|
||||||
{
|
{
|
||||||
@@ -307,6 +303,14 @@ public class LoanApplication : ILoanApplication
|
|||||||
return op.Failed("این پرسنل در این تاریخ دارای فیش حقوقی است");
|
return op.Failed("این پرسنل در این تاریخ دارای فیش حقوقی است");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (_checkoutRepository.Exists(x =>
|
||||||
|
entity.EmployeeId == x.EmployeeId && x.WorkshopId == entity.WorkshopId &&
|
||||||
|
(x.ContractStart >= entity.StartInstallmentPayment && x.ContractStart <= lastInstallment)))
|
||||||
|
{
|
||||||
|
return op.Failed("پرسنل در بازه اقساط خود دارای فیش رسمی است");
|
||||||
|
}
|
||||||
|
|
||||||
if (_customizeCheckoutTempRepository.Exists(x =>
|
if (_customizeCheckoutTempRepository.Exists(x =>
|
||||||
entity.EmployeeId == x.EmployeeId && x.WorkshopId == entity.WorkshopId &&
|
entity.EmployeeId == x.EmployeeId && x.WorkshopId == entity.WorkshopId &&
|
||||||
(x.ContractStart >= entity.StartInstallmentPayment && x.ContractStart <= lastInstallment)))
|
(x.ContractStart >= entity.StartInstallmentPayment && x.ContractStart <= lastInstallment)))
|
||||||
@@ -325,6 +329,33 @@ public class LoanApplication : ILoanApplication
|
|||||||
{
|
{
|
||||||
OperationResult op = new OperationResult();
|
OperationResult op = new OperationResult();
|
||||||
var loans = _loanRepository.GetBy(ids);
|
var loans = _loanRepository.GetBy(ids);
|
||||||
|
foreach (var entity in loans)
|
||||||
|
{
|
||||||
|
var lastInstallment = entity.LoanInstallments.MaxBy(x => x.InstallmentDate).InstallmentDate;
|
||||||
|
|
||||||
|
if (_customizeCheckoutRepository.Exists(x =>
|
||||||
|
entity.EmployeeId == x.EmployeeId && x.WorkshopId == entity.WorkshopId &&
|
||||||
|
(x.ContractStart >= entity.StartInstallmentPayment && x.ContractStart <= lastInstallment)))
|
||||||
|
{
|
||||||
|
return op.Failed("این پرسنل در این تاریخ دارای فیش حقوقی است");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (_checkoutRepository.Exists(x =>
|
||||||
|
entity.EmployeeId == x.EmployeeId && x.WorkshopId == entity.WorkshopId &&
|
||||||
|
(x.ContractStart >= entity.StartInstallmentPayment && x.ContractStart <= lastInstallment)))
|
||||||
|
{
|
||||||
|
return op.Failed("پرسنل در بازه اقساط خود دارای فیش رسمی است");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_customizeCheckoutTempRepository.Exists(x =>
|
||||||
|
entity.EmployeeId == x.EmployeeId && x.WorkshopId == entity.WorkshopId &&
|
||||||
|
(x.ContractStart >= entity.StartInstallmentPayment && x.ContractStart <= lastInstallment)))
|
||||||
|
{
|
||||||
|
return op.Failed("پرسنل در بازه اقساط خود دارای فیش غیررسمی است");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
_loanRepository.RemoveRange(loans);
|
_loanRepository.RemoveRange(loans);
|
||||||
_loanRepository.SaveChanges();
|
_loanRepository.SaveChanges();
|
||||||
|
|||||||
@@ -89,60 +89,9 @@ namespace CompanyManagment.Application
|
|||||||
}
|
}
|
||||||
|
|
||||||
public bool HasRollCallRecord(long employeeId, long workshopId, DateTime contractStart, DateTime contractEnd)
|
public bool HasRollCallRecord(long employeeId, long workshopId, DateTime contractStart, DateTime contractEnd)
|
||||||
{
|
{
|
||||||
//موقت
|
return _rollCallEmployeeRepository.HasRollCallRecord(employeeId, workshopId, contractStart, contractEnd);
|
||||||
// دادمهرگستر 11 *
|
}
|
||||||
//585 کاشی گالری سرامیس (بابک ابراهیمی )
|
|
||||||
//آموزشگاه ملل 604 *
|
|
||||||
//کاریابی ملل 605 *
|
|
||||||
//368 پیتزا امیر آماده سازی
|
|
||||||
//367 پیتزا امیر رستوران
|
|
||||||
//286 مرکز توان بخشی رسالت *
|
|
||||||
//610 بیمارستان پارس - رازقی طعام
|
|
||||||
DateTime start1404 = new DateTime(2025, 03, 21);
|
|
||||||
bool skipRollCallByWorkshopId = false;
|
|
||||||
if (contractStart < start1404)
|
|
||||||
{
|
|
||||||
skipRollCallByWorkshopId = workshopId is 11 or 585 or 604 or 605 or 368 or 367 or 286;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
skipRollCallByWorkshopId = workshopId is 368 or 367 or 585 or 610;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//#if DEBUG
|
|
||||||
// skipRollCallByWorkshopId = workshopId is 11 or 585 or 604 or 605 or 368 or 367;
|
|
||||||
//#endif
|
|
||||||
if (skipRollCallByWorkshopId)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
|
|
||||||
// 42550 مصطفی مقدس نژاد فومنی
|
|
||||||
bool skipRollCallByEmployeeId = employeeId is 42550;
|
|
||||||
if (skipRollCallByEmployeeId)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
//9211 محسا تازه
|
|
||||||
if (employeeId == 9211 && contractStart >= start1404)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
var service = _rollCallServiceRepository.GetAllServiceByWorkshopId(workshopId);
|
|
||||||
|
|
||||||
if (!service.Any(x => x.StartService.Date <= contractStart.Date && x.EndService.Date >= contractEnd.Date))
|
|
||||||
return false;
|
|
||||||
var rollCallEmployee =
|
|
||||||
_rollCallEmployeeRepository.GetByEmployeeIdAndWorkshopId(employeeId, workshopId);
|
|
||||||
|
|
||||||
if (rollCallEmployee == null)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
return _employeeRollCallStatusRepository.Exists(x => x.RollCallEmployeeId == rollCallEmployee.Id &&
|
|
||||||
x.StartDate.Date <= contractStart.Date &&
|
|
||||||
x.EndDate.Date >= contractEnd.Date);
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<RollCallEmployeeStatusViewModel> GetActiveByWorkshopIdInDate(long workshopId, DateTime startDateGr, DateTime endDateGr)
|
public List<RollCallEmployeeStatusViewModel> GetActiveByWorkshopIdInDate(long workshopId, DateTime startDateGr, DateTime endDateGr)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -27,16 +27,18 @@ public class SalaryAidApplication : ISalaryAidApplication
|
|||||||
private readonly IAuthHelper _authHelper;
|
private readonly IAuthHelper _authHelper;
|
||||||
private readonly ICustomizeCheckoutApplication _customizeCheckoutApplication;
|
private readonly ICustomizeCheckoutApplication _customizeCheckoutApplication;
|
||||||
private readonly ICustomizeCheckoutTempApplication _customizeCheckoutTempApplication;
|
private readonly ICustomizeCheckoutTempApplication _customizeCheckoutTempApplication;
|
||||||
|
private readonly ICheckoutRepository _checkoutRepository;
|
||||||
|
|
||||||
|
|
||||||
public SalaryAidApplication(ISalaryAidRepository salaryAidRepository, ICustomizeCheckoutRepository customizeCheckoutRepository,
|
public SalaryAidApplication(ISalaryAidRepository salaryAidRepository, ICustomizeCheckoutRepository customizeCheckoutRepository,
|
||||||
IEmployeeRepository employeeRepository, ICustomizeCheckoutTempRepository customizeCheckoutTempRepository, IAuthHelper authHelper, ICustomizeCheckoutApplication customizeCheckoutApplication, ICustomizeCheckoutTempApplication customizeCheckoutTempApplication)
|
IEmployeeRepository employeeRepository, ICustomizeCheckoutTempRepository customizeCheckoutTempRepository, IAuthHelper authHelper, ICustomizeCheckoutApplication customizeCheckoutApplication, ICustomizeCheckoutTempApplication customizeCheckoutTempApplication, ICheckoutRepository checkoutRepository)
|
||||||
{
|
{
|
||||||
_salaryAidRepository = salaryAidRepository;
|
_salaryAidRepository = salaryAidRepository;
|
||||||
_customizeCheckoutRepository = customizeCheckoutRepository;
|
_customizeCheckoutRepository = customizeCheckoutRepository;
|
||||||
_authHelper = authHelper;
|
_authHelper = authHelper;
|
||||||
_customizeCheckoutApplication = customizeCheckoutApplication;
|
_customizeCheckoutApplication = customizeCheckoutApplication;
|
||||||
_customizeCheckoutTempApplication = customizeCheckoutTempApplication;
|
_customizeCheckoutTempApplication = customizeCheckoutTempApplication;
|
||||||
|
_checkoutRepository = checkoutRepository;
|
||||||
_employeeRepository = employeeRepository;
|
_employeeRepository = employeeRepository;
|
||||||
_customizeCheckoutTempRepository = customizeCheckoutTempRepository;
|
_customizeCheckoutTempRepository = customizeCheckoutTempRepository;
|
||||||
}
|
}
|
||||||
@@ -95,18 +97,18 @@ public class SalaryAidApplication : ISalaryAidApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
var existsCheckouts = _customizeCheckoutRepository.ValidateExistsCheckouts(calculationDateGr,
|
var existsCheckouts = _customizeCheckoutRepository.ValidateExistsCheckouts(calculationDateGr,
|
||||||
calculationDateGr, command.WorkshopId, command.EmployeeIds);
|
calculationDateGr, command.WorkshopId, command.EmployeeIds);
|
||||||
|
|
||||||
//if (existsCheckouts.Checkout)
|
if (existsCheckouts.Checkout)
|
||||||
// return op.Failed("شما نمیتوانید برای پرسنلی در تاریخی که برای فیش حقوقی رسمی صادر شده است مساعده ای دهید");
|
return op.Failed("شما نمیتوانید برای پرسنلی در تاریخی که برای فیش حقوقی رسمی صادر شده است مساعده ای دهید");
|
||||||
|
|
||||||
|
|
||||||
var (userId, userType,_) = _authHelper.GetUserTypeWithId();
|
var (userId, userType, _) = _authHelper.GetUserTypeWithId();
|
||||||
using var transaction = new TransactionScope();
|
using var transaction = new TransactionScope();
|
||||||
foreach (var employeeId in command.EmployeeIds)
|
foreach (var employeeId in command.EmployeeIds)
|
||||||
{
|
{
|
||||||
|
|
||||||
var entity = new SalaryAid(employeeId, command.WorkshopId, command.Amount.MoneyToDouble(), startDate,userId,userType,command.CalculationMonth,command.CalculationYear);
|
var entity = new SalaryAid(employeeId, command.WorkshopId, command.Amount.MoneyToDouble(), startDate, userId, userType, command.CalculationMonth, command.CalculationYear);
|
||||||
_salaryAidRepository.Create(entity);
|
_salaryAidRepository.Create(entity);
|
||||||
_salaryAidRepository.SaveChanges();
|
_salaryAidRepository.SaveChanges();
|
||||||
if (existsCheckouts.CustomizeCheckout)
|
if (existsCheckouts.CustomizeCheckout)
|
||||||
@@ -186,7 +188,7 @@ public class SalaryAidApplication : ISalaryAidApplication
|
|||||||
var prevCheckouts = _customizeCheckoutRepository.ValidateExistsCheckouts(calculationDateGr,
|
var prevCheckouts = _customizeCheckoutRepository.ValidateExistsCheckouts(calculationDateGr,
|
||||||
oneMonthAgoGr, entity.WorkshopId, [entity.EmployeeId]);
|
oneMonthAgoGr, entity.WorkshopId, [entity.EmployeeId]);
|
||||||
|
|
||||||
if (prevCheckouts.CustomizeCheckout || prevCheckouts.CustomizeCheckoutTemp)
|
if (prevCheckouts.CustomizeCheckout || prevCheckouts.CustomizeCheckoutTemp)
|
||||||
{
|
{
|
||||||
return op.Failed("شما نمیتوانید در تاریخ قبل از یک ماه گذشته که فیش صادر شده باشد مساعده ای دهید");
|
return op.Failed("شما نمیتوانید در تاریخ قبل از یک ماه گذشته که فیش صادر شده باشد مساعده ای دهید");
|
||||||
}
|
}
|
||||||
@@ -194,16 +196,16 @@ public class SalaryAidApplication : ISalaryAidApplication
|
|||||||
|
|
||||||
|
|
||||||
var existsCheckouts = _customizeCheckoutRepository.ValidateExistsCheckouts(calculationDateGr,
|
var existsCheckouts = _customizeCheckoutRepository.ValidateExistsCheckouts(calculationDateGr,
|
||||||
calculationDateGr, entity.WorkshopId, [entity.EmployeeId]);
|
calculationDateGr, entity.WorkshopId, [entity.EmployeeId]);
|
||||||
|
|
||||||
//if (existsCheckouts.Checkout)
|
if (existsCheckouts.Checkout)
|
||||||
// return op.Failed("شما نمیتوانید برای پرسنلی در تاریخی که برای فیش حقوقی رسمی صادر شده است مساعده ای دهید");
|
return op.Failed("شما نمیتوانید برای پرسنلی در تاریخی که برای فیش حقوقی رسمی صادر شده است مساعده ای دهید");
|
||||||
|
|
||||||
|
|
||||||
using var transaction = new TransactionScope();
|
using var transaction = new TransactionScope();
|
||||||
var (userId, userType,_) = _authHelper.GetUserTypeWithId();
|
var (userId, userType, _) = _authHelper.GetUserTypeWithId();
|
||||||
|
|
||||||
entity.Edit(Tools.MoneyToDouble(command.Amount),startDate,userId,userType,command.CalculationMonth,command.CalculationYear);
|
entity.Edit(Tools.MoneyToDouble(command.Amount), startDate, userId, userType, command.CalculationMonth, command.CalculationYear);
|
||||||
_salaryAidRepository.SaveChanges();
|
_salaryAidRepository.SaveChanges();
|
||||||
|
|
||||||
if (existsCheckouts.CustomizeCheckout)
|
if (existsCheckouts.CustomizeCheckout)
|
||||||
@@ -270,6 +272,12 @@ public class SalaryAidApplication : ISalaryAidApplication
|
|||||||
return op.Failed("این پرسنل در این تاریخ دارای فیش حقوقی موقت است");
|
return op.Failed("این پرسنل در این تاریخ دارای فیش حقوقی موقت است");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_checkoutRepository.Exists(x => x.WorkshopId == entity.WorkshopId && entity.EmployeeId == x.EmployeeId &&
|
||||||
|
x.ContractStart <= entity.CalculationDate && x.ContractEnd >= entity.CalculationDate))
|
||||||
|
{
|
||||||
|
return op.Failed("این پرسنل در این تاریخ دارای فیش حقوقی رسمی است");
|
||||||
|
}
|
||||||
|
|
||||||
_salaryAidRepository.Remove(entity);
|
_salaryAidRepository.Remove(entity);
|
||||||
_salaryAidRepository.SaveChanges();
|
_salaryAidRepository.SaveChanges();
|
||||||
return op.Succcedded();
|
return op.Succcedded();
|
||||||
@@ -325,14 +333,18 @@ public class SalaryAidApplication : ISalaryAidApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
var existsCheckouts = _customizeCheckoutRepository.ValidateExistsCheckouts(calculationDateGr,
|
var existsCheckouts = _customizeCheckoutRepository.ValidateExistsCheckouts(calculationDateGr,
|
||||||
calculationDateGr, command.WorkshopId, command.EmployeeIds);
|
calculationDateGr, command.WorkshopId, command.EmployeeIds);
|
||||||
|
|
||||||
|
|
||||||
|
if (existsCheckouts.Checkout)
|
||||||
|
return op.Failed("شما نمیتوانید برای پرسنلی در تاریخی که برای فیش حقوقی رسمی صادر شده است مساعده ای دهید");
|
||||||
|
|
||||||
var month = Convert.ToInt32(command.CalculationMonth);
|
var month = Convert.ToInt32(command.CalculationMonth);
|
||||||
var year = Convert.ToInt32(command.CalculationYear);
|
var year = Convert.ToInt32(command.CalculationYear);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var (userId, userType,_) = _authHelper.GetUserTypeWithId();
|
var (userId, userType, _) = _authHelper.GetUserTypeWithId();
|
||||||
|
|
||||||
foreach (var employeeId in command.EmployeeIds)
|
foreach (var employeeId in command.EmployeeIds)
|
||||||
{
|
{
|
||||||
@@ -343,8 +355,8 @@ public class SalaryAidApplication : ISalaryAidApplication
|
|||||||
id = employee.id;
|
id = employee.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
var entity = new SalaryAid(id, command.WorkshopId, command.Amount.MoneyToDouble(), startDate, userId, userType, command.CalculationMonth, command.CalculationYear);
|
var entity = new SalaryAid(id, command.WorkshopId, command.Amount.MoneyToDouble(), startDate, userId, userType, command.CalculationMonth, command.CalculationYear);
|
||||||
_salaryAidRepository.Create(entity);
|
_salaryAidRepository.Create(entity);
|
||||||
_salaryAidRepository.SaveChanges();
|
_salaryAidRepository.SaveChanges();
|
||||||
|
|
||||||
if (existsCheckouts.CustomizeCheckout)
|
if (existsCheckouts.CustomizeCheckout)
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
return op.Failed("شماره همراه نا معتبر است");
|
return op.Failed("شماره همراه نا معتبر است");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
@@ -141,8 +141,6 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
result.FName = createTemp.FName;
|
result.FName = createTemp.FName;
|
||||||
result.LName = createTemp.LName;
|
result.LName = createTemp.LName;
|
||||||
result.DateOfBirthFa = dateOfBirth;
|
result.DateOfBirthFa = dateOfBirth;
|
||||||
result.FatherName = createTemp.FatherName;
|
|
||||||
result.IdNumberSerial = createTemp.IdNumberSerial;
|
|
||||||
result.IdNumber = idNumber;
|
result.IdNumber = idNumber;
|
||||||
|
|
||||||
return op.Succcedded(result);
|
return op.Succcedded(result);
|
||||||
@@ -190,7 +188,7 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="command"></param>
|
/// <param name="command"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task<OperationResult> CreateOrUpdateWorkshopTemp(List<WorkshopTempViewModel> command, long contractingPartyTempId)
|
public async Task<OperationResult> CreateOrUpdateWorkshopTemp(List<WorkshopTempViewModel> command)
|
||||||
{
|
{
|
||||||
var op = new OperationResult();
|
var op = new OperationResult();
|
||||||
var updateWorkshopList = command.Where(x => x.Id > 0).ToList();
|
var updateWorkshopList = command.Where(x => x.Id > 0).ToList();
|
||||||
@@ -198,17 +196,10 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
|
|
||||||
if (updateWorkshopList.Count == 0 && createNewWorkshopList.Count == 0)
|
if (updateWorkshopList.Count == 0 && createNewWorkshopList.Count == 0)
|
||||||
return op.Failed("هیچ مجموعه ای ایجاد نشده است");
|
return op.Failed("هیچ مجموعه ای ایجاد نشده است");
|
||||||
var oldWorkshops = await _workshopTempRepository.GetWorkshopTemp(contractingPartyTempId);
|
|
||||||
|
|
||||||
#region Update
|
#region Update
|
||||||
if (updateWorkshopList.Count > 0)
|
if (updateWorkshopList.Count > 0)
|
||||||
{
|
{
|
||||||
var updateListIds = updateWorkshopList.Select(x => x.Id).ToList();
|
|
||||||
var oldWorkshopsIds = oldWorkshops.Select(x => x.Id).ToList();
|
|
||||||
var exceptWorkshops = oldWorkshopsIds.Except(updateListIds).ToList();
|
|
||||||
if (exceptWorkshops.Any())
|
|
||||||
await _workshopTempRepository.RemoveWorkshopTemps(exceptWorkshops);
|
|
||||||
|
|
||||||
|
|
||||||
foreach (var workshop in updateWorkshopList)
|
foreach (var workshop in updateWorkshopList)
|
||||||
{
|
{
|
||||||
@@ -221,7 +212,6 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
workshop.RollCall == false && workshop.Insurance == false)
|
workshop.RollCall == false && workshop.Insurance == false)
|
||||||
op.Failed($"برای مجموعه {workshop.WorkshopName} هیچ سرویسی انتخاب نشده است");
|
op.Failed($"برای مجموعه {workshop.WorkshopName} هیچ سرویسی انتخاب نشده است");
|
||||||
var existWorkshops = _workshopTempRepository.Get(workshop.Id);
|
var existWorkshops = _workshopTempRepository.Get(workshop.Id);
|
||||||
|
|
||||||
if (existWorkshops != null)
|
if (existWorkshops != null)
|
||||||
{
|
{
|
||||||
if (workshop.ContractAndCheckout)
|
if (workshop.ContractAndCheckout)
|
||||||
@@ -266,8 +256,6 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
if (workshop.CustomizeCheckout)
|
if (workshop.CustomizeCheckout)
|
||||||
await _workshopServicesTempRepository.CreateAsync(
|
await _workshopServicesTempRepository.CreateAsync(
|
||||||
new WorkshopServicesTemp("CustomizeCheckout", workshop.CountPerson, workshop.Id));
|
new WorkshopServicesTemp("CustomizeCheckout", workshop.CountPerson, workshop.Id));
|
||||||
|
|
||||||
await _workshopServicesTempRepository.SaveChangesAsync();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -336,8 +324,6 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
if (workshop.CustomizeCheckout)
|
if (workshop.CustomizeCheckout)
|
||||||
await _workshopServicesTempRepository.CreateAsync(
|
await _workshopServicesTempRepository.CreateAsync(
|
||||||
new WorkshopServicesTemp("CustomizeCheckout", workshop.CountPerson, createNewWorkshopTemp.id));
|
new WorkshopServicesTemp("CustomizeCheckout", workshop.CountPerson, createNewWorkshopTemp.id));
|
||||||
|
|
||||||
await _workshopServicesTempRepository.SaveChangesAsync();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -366,9 +352,8 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="contractingPartyTempId"></param>
|
/// <param name="contractingPartyTempId"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task<ReviewAndPaymentViewModel> GetTotalPaymentAndWorkshopList(long contractingPartyTempId, string periodModel = "12", string paymentModel = "OneTime", string contractStartType = "currentMonth")
|
public async Task<ReviewAndPaymentViewModel> GetTotalPaymentAndWorkshopList(long contractingPartyTempId, string periodModel = "12", string paymentModel = "OneTime")
|
||||||
{
|
{
|
||||||
|
|
||||||
//دریافت کارگاه ها
|
//دریافت کارگاه ها
|
||||||
var workshops = await _workshopTempRepository.GetWorkshopTemp(contractingPartyTempId);
|
var workshops = await _workshopTempRepository.GetWorkshopTemp(contractingPartyTempId);
|
||||||
|
|
||||||
@@ -395,10 +380,9 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
_ => 12,
|
_ => 12,
|
||||||
};
|
};
|
||||||
//رند کردن مبالغ کارگاه ها
|
//رند کردن مبالغ کارگاه ها
|
||||||
var roundAmount = (((Convert.ToInt64(totalPayment1MonthDouble))) / 1000000) * 1000000;
|
var roundAmount = (int)(totalPayment1MonthDouble / 1000000) * 1000000;
|
||||||
double roundAmount2 = roundAmount;
|
|
||||||
//بدست آوردن جمع کل مبالغ کارگاه بر اساس مدت قراداد
|
//بدست آوردن جمع کل مبالغ کارگاه بر اساس مدت قراداد
|
||||||
result.SumOfWorkshopsPaymentDouble = months * roundAmount2;
|
result.SumOfWorkshopsPaymentDouble = roundAmount * months;
|
||||||
result.SumOfWorkshopsPaymentPaymentStr = result.SumOfWorkshopsPaymentDouble.ToMoney();
|
result.SumOfWorkshopsPaymentPaymentStr = result.SumOfWorkshopsPaymentDouble.ToMoney();
|
||||||
|
|
||||||
|
|
||||||
@@ -410,112 +394,31 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
//مالیات
|
//مالیات
|
||||||
result.ValueAddedTaxDouble = tenPercent;
|
result.ValueAddedTaxDouble = tenPercent;
|
||||||
result.ValueAddedTaxSt = tenPercent.ToMoney();
|
result.ValueAddedTaxSt = tenPercent.ToMoney();
|
||||||
//پرداخت یکجا
|
if (paymentModel == "OneTime")//تخفیف 10 درصدی درصورت پرداخت یکجا
|
||||||
#region OneTimePaymentResult
|
|
||||||
|
|
||||||
double discountOneTimePeyment = result.SumOfWorkshopsPaymentDouble - tenPercent;
|
|
||||||
|
|
||||||
|
|
||||||
//مبلغ بدون مالیات و با تخفیف
|
|
||||||
result.OneTimeWithoutTaxPaymentDouble = discountOneTimePeyment;
|
|
||||||
result.OneTimeWithoutTaxPaymentStr = discountOneTimePeyment.ToMoney();
|
|
||||||
|
|
||||||
//مبلغ با مالیات
|
|
||||||
result.OneTimeTotalPaymentDouble = discountOneTimePeyment + tenPercent;
|
|
||||||
result.OneTimeTotalPaymentStr = result.OneTimeTotalPaymentDouble.ToMoney();
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
//پرداخت ماهیانه
|
|
||||||
#region MonthlyPaymentResult
|
|
||||||
|
|
||||||
//مبلغ بدون مالیات
|
|
||||||
result.MonthlyWithoutTaxPaymentDouble = result.SumOfWorkshopsPaymentDouble;
|
|
||||||
result.MonthlyWithoutTaxPaymentStr = result.SumOfWorkshopsPaymentDouble.ToMoney();
|
|
||||||
|
|
||||||
// مبلغ با مالیات
|
|
||||||
result.MonthlyTotalPaymentDouble = result.SumOfWorkshopsPaymentDouble + tenPercent;
|
|
||||||
result.MonthlyTotalPaymentStr = result.MonthlyTotalPaymentDouble.ToMoney();
|
|
||||||
var installmentList = new List<MonthlyInstallment>();
|
|
||||||
|
|
||||||
var startDate = (DateTime.Now).ToFarsi();
|
|
||||||
result.ContractStartCurrentMonthFa = $"{startDate.Substring(0, 8)}01";
|
|
||||||
result.ContractStartCurrentMonthGr = result.ContractStartCurrentMonthFa.ToGeorgianDateTime();
|
|
||||||
startDate = result.ContractStartCurrentMonthFa;
|
|
||||||
|
|
||||||
result.ContractStartNextMonthGr = ((startDate.FindeEndOfMonth()).ToGeorgianDateTime()).AddDays(1);
|
|
||||||
result.ContractStartNextMonthFa = result.ContractStartNextMonthGr.ToFarsi();
|
|
||||||
|
|
||||||
if (contractStartType == "nextMonth")
|
|
||||||
startDate = result.ContractStartNextMonthFa;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var findeEnd = Tools.FindEndOfContract(startDate, periodModel);
|
|
||||||
var contractEndDate = findeEnd.endDateGr;
|
|
||||||
result.ContractEndGr = contractEndDate;
|
|
||||||
result.ContractEndFa = contractEndDate.ToFarsi();
|
|
||||||
|
|
||||||
if (periodModel == "1")
|
|
||||||
{
|
{
|
||||||
|
|
||||||
installmentList.Add(new MonthlyInstallment()
|
double discountOneTimePeyment = result.SumOfWorkshopsPaymentDouble - tenPercent;
|
||||||
{
|
|
||||||
InstallmentAmountStr = result.MonthlyTotalPaymentStr,
|
|
||||||
InstallmentCounter = "سررسید پرداخت اول",
|
|
||||||
InstalmentDate = (DateTime.Now).ToFarsi()
|
|
||||||
|
|
||||||
});
|
//مبلغ بدون مالیات و با تخفیف
|
||||||
result.MonthlyInstallments = installmentList;
|
result.WithoutTaxPaymentDouble = discountOneTimePeyment;
|
||||||
|
result.WithoutTaxPaymentStr = discountOneTimePeyment.ToMoney();
|
||||||
|
|
||||||
|
//مبلغ با مالیات
|
||||||
|
result.TotalPaymentDouble = discountOneTimePeyment + tenPercent;
|
||||||
|
result.TotalPaymentStr = result.TotalPaymentDouble.ToMoney();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int instalmentCount = Convert.ToInt32(periodModel);
|
//مبلغ بدون مالیات
|
||||||
var instalmentAmount = result.MonthlyTotalPaymentDouble / instalmentCount;
|
result.WithoutTaxPaymentDouble = result.SumOfWorkshopsPaymentDouble;
|
||||||
var findEndOfMonth = startDate.FindeEndOfMonth();
|
result.WithoutTaxPaymentStr = result.SumOfWorkshopsPaymentDouble.ToMoney();
|
||||||
for (int i = 1; i <= instalmentCount; i++)
|
|
||||||
{
|
|
||||||
if (i == 1)
|
|
||||||
{
|
|
||||||
startDate = (DateTime.Now).ToFarsi();
|
|
||||||
|
|
||||||
}
|
|
||||||
else if (i > 1)
|
|
||||||
{
|
|
||||||
var currentMonthStart = ((findEndOfMonth.ToGeorgianDateTime()).AddDays(1)).ToFarsi();
|
|
||||||
startDate = currentMonthStart.FindeEndOfMonth();
|
|
||||||
findEndOfMonth = startDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
installmentList.Add(new MonthlyInstallment()
|
|
||||||
{
|
|
||||||
InstallmentAmountStr = instalmentAmount.ToMoney(),
|
|
||||||
InstallmentCounter = i switch
|
|
||||||
{
|
|
||||||
1 => "سررسید پرداخت اول",
|
|
||||||
2 => "سررسید پرداخت دوم",
|
|
||||||
3 => "سررسید پرداخت سوم",
|
|
||||||
4 => "سررسید پرداخت چهارم",
|
|
||||||
5 => "سررسید پرداخت پنجم",
|
|
||||||
6 => "سررسید پرداخت ششم",
|
|
||||||
7 => "سررسید پرداخت هفتم",
|
|
||||||
8 => "سررسید پرداخت هشتم",
|
|
||||||
9 => "سررسید پرداخت نهم",
|
|
||||||
10 => "سررسید پرداخت دهم",
|
|
||||||
11 => "سررسید پرداخت یازدهم",
|
|
||||||
12 => "سررسید پرداخت دوازدهم",
|
|
||||||
_ => "سررسید پرداخت دوازدهم",
|
|
||||||
},
|
|
||||||
InstalmentDate = startDate
|
|
||||||
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// مبلغ با مالیات
|
||||||
|
result.TotalPaymentDouble = result.SumOfWorkshopsPaymentDouble + tenPercent;
|
||||||
|
result.TotalPaymentStr = result.TotalPaymentDouble.ToMoney();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
result.MonthlyInstallments = installmentList;
|
|
||||||
result.ContractingPartTempId = contractingPartyTempId;
|
result.ContractingPartTempId = contractingPartyTempId;
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
@@ -527,21 +430,19 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="contractingPartyTempId"></param>
|
/// <param name="contractingPartyTempId"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task<OperationResult> CreateOrUpdateInstitutionContractTemp(long contractingPartyTempId, string periodModel, string paymentModel, double totalPayment, double valueAddedTax, DateTime contractStart)
|
public async Task<OperationResult> CreateOrUpdateInstitutionContractTemp(long contractingPartyTempId, string periodModel, string paymentModel, double totalPayment, double valueAddedTax)
|
||||||
{
|
{
|
||||||
|
|
||||||
var op = new OperationResult();
|
var op = new OperationResult();
|
||||||
var institutionContractTemp = await
|
var institutionContractTemp = await
|
||||||
_institutionContractTempRepository.GetInstitutionContractTemp(0, contractingPartyTempId);
|
_institutionContractTempRepository.GetInstitutionContractTemp(0, contractingPartyTempId);
|
||||||
var contractStartDate = contractStart;
|
|
||||||
string contractStartFa = contractStart.ToFarsi();
|
|
||||||
var findeEnd = Tools.FindEndOfContract(contractStartFa, periodModel);
|
|
||||||
var contractEndDate = findeEnd.endDateGr;
|
|
||||||
if (institutionContractTemp == null)
|
if (institutionContractTemp == null)
|
||||||
{
|
{
|
||||||
var periodModelInt = Convert.ToInt32(periodModel);
|
var periodModelInt = Convert.ToInt32(periodModel);
|
||||||
|
var contractstart = DateTime.Now;
|
||||||
var create = new InstitutionContractTemp(contractingPartyTempId, paymentModel, periodModel, totalPayment, contractStartDate, contractEndDate, "official", valueAddedTax, "", "BeforeSendVerifyCode", 0, null, null);
|
var contractEnd = DateTime.Now.AddMonths(periodModelInt);
|
||||||
|
var create = new InstitutionContractTemp(contractingPartyTempId,paymentModel,periodModel,totalPayment,contractstart,contractEnd,"official", valueAddedTax,"", "BeforeSendVerifyCode", 0,null,null);
|
||||||
_institutionContractTempRepository.Create(create);
|
_institutionContractTempRepository.Create(create);
|
||||||
_institutionContractTempRepository.SaveChanges();
|
_institutionContractTempRepository.SaveChanges();
|
||||||
return op.Succcedded();
|
return op.Succcedded();
|
||||||
@@ -550,20 +451,20 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
{
|
{
|
||||||
if (institutionContractTemp.VerifyCodeEndTime != null)
|
if (institutionContractTemp.VerifyCodeEndTime != null)
|
||||||
{
|
{
|
||||||
var spaning = (DateTime.Now - institutionContractTemp.VerifyCodeEndTime.Value);
|
var spaning = (institutionContractTemp.VerifyCodeEndTime.Value - DateTime.Now);
|
||||||
if (institutionContractTemp.RegistrationStatus == "VerifyCodeSent" && spaning > new TimeSpan(0, 0, 0) && spaning < new TimeSpan(0, 1, 0))
|
if (institutionContractTemp.RegistrationStatus == "VerifyCodeSent" && spaning > new TimeSpan(0, 0, 0) && spaning < new TimeSpan(0, 1, 0))
|
||||||
return op.Failed("شما به تازگی پیامک دریافت نموده اید دو دقیقه صبر کنید و دوباره تلاش کنید");
|
return op.Failed("شما به تازگی پیامک دریافت نموده اید دو دقیقه صبر کنید و دوباره تلاش کنید");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (institutionContractTemp.RegistrationStatus == "Completed")
|
if (institutionContractTemp.RegistrationStatus == "Completed")
|
||||||
return op.Failed("شما قبلا ثبت نام خود را تکمیل نموده اید");
|
return op.Failed("شما قبلا ثبت نام خود را تکمیل نموده اید");
|
||||||
|
|
||||||
|
|
||||||
var periodModelInt = Convert.ToInt32(periodModel);
|
var periodModelInt = Convert.ToInt32(periodModel);
|
||||||
var contractstart = DateTime.Now;
|
var contractstart = DateTime.Now;
|
||||||
var contractEnd = DateTime.Now.AddMonths(periodModelInt);
|
var contractEnd = DateTime.Now.AddMonths(periodModelInt);
|
||||||
var update = _institutionContractTempRepository.Get(institutionContractTemp.Id);
|
var update = _institutionContractTempRepository.Get(institutionContractTemp.Id);
|
||||||
update.Edit(contractingPartyTempId, paymentModel, periodModel, totalPayment, contractStartDate, contractEndDate, "official", valueAddedTax, "", "BeforeSendVerifyCode", 0, null, null);
|
update.Edit(contractingPartyTempId, paymentModel, periodModel, totalPayment, contractstart, contractEnd, "official", valueAddedTax, "", "BeforeSendVerifyCode", 0, null, null);
|
||||||
_institutionContractTempRepository.SaveChanges();
|
_institutionContractTempRepository.SaveChanges();
|
||||||
return op.Succcedded();
|
return op.Succcedded();
|
||||||
}
|
}
|
||||||
@@ -582,14 +483,14 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
{
|
{
|
||||||
|
|
||||||
var op = new OperationResult();
|
var op = new OperationResult();
|
||||||
var institutionContractTemp = await
|
var institutionContractTemp = await
|
||||||
_institutionContractTempRepository.GetInstitutionContractTemp(0, contractingPartyTempId);
|
_institutionContractTempRepository.GetInstitutionContractTemp(0, contractingPartyTempId);
|
||||||
if (institutionContractTemp == null)
|
if (institutionContractTemp == null)
|
||||||
return op.Failed("خطا");
|
return op.Failed("خظا");
|
||||||
|
|
||||||
var update = _institutionContractTempRepository.Get(institutionContractTemp.Id);
|
var update = _institutionContractTempRepository.Get(institutionContractTemp.Id);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (institutionContractTemp.RegistrationStatus == "BeforeSendVerifyCode")
|
if (institutionContractTemp.RegistrationStatus == "BeforeSendVerifyCode")
|
||||||
@@ -615,29 +516,26 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
return op.Succcedded(1, "کد برای شما پیامک شد");
|
return op.Succcedded(1, "کد برای شما پیامک شد");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (institutionContractTemp.RegistrationStatus == "VerifyCodeSent")
|
if (institutionContractTemp.RegistrationStatus == "VerifyCodeSent")
|
||||||
|
|
||||||
{
|
{
|
||||||
|
var spaning = (institutionContractTemp.VerifyCodeEndTime.Value - DateTime.Now);
|
||||||
if (DateTime.Now < institutionContractTemp.VerifyCodeEndTime.Value)
|
if ((spaning > new TimeSpan(0, 0, 0) && spaning < new TimeSpan(0, 1, 0)))
|
||||||
return op.Failed("کد دریافت شده را وارد کنید");
|
|
||||||
var spaning = (DateTime.Now - institutionContractTemp.VerifyCodeEndTime.Value);
|
|
||||||
if ((spaning > new TimeSpan(0, 0, 0) && spaning < new TimeSpan(0, 1, 0)))
|
|
||||||
return op.Failed("شما به تازگی پیامک دریافت نموده اید دو دقیقه صبر کنید و دوباره تلاش کنید");
|
return op.Failed("شما به تازگی پیامک دریافت نموده اید دو دقیقه صبر کنید و دوباره تلاش کنید");
|
||||||
|
|
||||||
if ((spaning > new TimeSpan(0, 1, 0)))
|
if ((spaning > new TimeSpan(0, 0, 0) && spaning > new TimeSpan(0, 1, 0)))
|
||||||
{
|
{
|
||||||
//ساخت کد شش رقمی
|
//ساخت کد شش رقمی
|
||||||
Random generator = new Random();
|
Random generator = new Random();
|
||||||
String code = generator.Next(1, 1000000).ToString("D6");
|
String code = generator.Next(1, 1000000).ToString("D6");
|
||||||
//ارسال اس ام اس
|
//ارسال اس ام اس
|
||||||
var getContractingPaty = _contractingPartyTempRepository.GetByContractingPartyTempId(contractingPartyTempId);
|
var getContractingPaty = _contractingPartyTempRepository.GetByContractingPartyTempId(contractingPartyTempId);
|
||||||
var sendResult = await _smsService.SendVerifyCodeToClient(getContractingPaty.Phone, code);
|
var sendResult =await _smsService.SendVerifyCodeToClient(getContractingPaty.Phone, code);
|
||||||
|
|
||||||
if (!sendResult.IsSuccedded)
|
if(!sendResult.IsSuccedded)
|
||||||
return op.Failed($"{sendResult.Message}");
|
return op.Failed($"{sendResult.Message}");
|
||||||
|
|
||||||
|
|
||||||
@@ -646,16 +544,16 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
//ذخیره تاریخ ارسال و مهلت پایان
|
//ذخیره تاریخ ارسال و مهلت پایان
|
||||||
//ذخیره آیدی پیامک
|
//ذخیره آیدی پیامک
|
||||||
//تغییر وضعیت به ارسال شده
|
//تغییر وضعیت به ارسال شده
|
||||||
|
|
||||||
if (update != null)
|
if (update != null)
|
||||||
{
|
{
|
||||||
update.Update(code, "VerifyCodeSent", sendResult.MessageId, DateTime.Now, DateTime.Now.AddMinutes(2));
|
update.Update(code, "VerifyCodeSent",sendResult.MessageId, DateTime.Now, DateTime.Now.AddMinutes(2));
|
||||||
_institutionContractTempRepository.SaveChanges();
|
_institutionContractTempRepository.SaveChanges();
|
||||||
return op.Succcedded(1, "کد برای شما پیامک شد");
|
return op.Succcedded(1, "کد برای شما پیامک شد");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -682,25 +580,25 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
|
|||||||
_institutionContractTempRepository.GetInstitutionContractTemp(0, contractingPartyTempId);
|
_institutionContractTempRepository.GetInstitutionContractTemp(0, contractingPartyTempId);
|
||||||
if (institutionContractTemp == null)
|
if (institutionContractTemp == null)
|
||||||
return op.Failed("خظا");
|
return op.Failed("خظا");
|
||||||
if (institutionContractTemp.RegistrationStatus != "VerifyCodeSent")
|
if(institutionContractTemp.RegistrationStatus != "VerifyCodeSent")
|
||||||
return op.Failed("خطا");
|
return op.Failed("خطا");
|
||||||
|
|
||||||
if (institutionContractTemp.VerifyCodeEndTime < DateTime.Now)
|
if(institutionContractTemp.VerifyCodeEndTime < DateTime.Now)
|
||||||
return op.Failed("کد شما منقضی شده است");
|
return op.Failed("کد شما منقضی شده است");
|
||||||
|
|
||||||
if (institutionContractTemp.SendVerifyCodeTime < DateTime.Now && institutionContractTemp.VerifyCodeEndTime >= DateTime.Now)
|
if(institutionContractTemp.SendVerifyCodeTime < DateTime.Now && institutionContractTemp.VerifyCodeEndTime >= DateTime.Now)
|
||||||
{
|
{
|
||||||
if (institutionContractTemp.VerifyCode == verifyCode)
|
if (institutionContractTemp.VerifyCode == verifyCode)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
return op.Succcedded();
|
return op.Succcedded();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return op.Failed("کد وارد شده صحیح نیست");
|
return op.Failed("کد وارد شده صحیح نیست");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -864,6 +864,11 @@ public class WorkshopAppliction : IWorkshopApplication
|
|||||||
return _workshopRepository.GetWorkshopsForLeftWorkTempCount(accountId);
|
return _workshopRepository.GetWorkshopsForLeftWorkTempCount(accountId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task<List<WorkshopSelectListViewModel>> GetSelectList(string search)
|
||||||
|
{
|
||||||
|
return await _workshopRepository.GetSelectList(search);
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using Company.Domain.AndroidApkVersionAgg;
|
using Company.Domain.AdminMonthlyOverviewAgg;
|
||||||
|
using Company.Domain.AndroidApkVersionAgg;
|
||||||
using Company.Domain.BankAgg;
|
using Company.Domain.BankAgg;
|
||||||
using Company.Domain.BillAgg;
|
using Company.Domain.BillAgg;
|
||||||
using Company.Domain.Board;
|
using Company.Domain.Board;
|
||||||
@@ -8,7 +9,6 @@ using Company.Domain.CheckoutAgg;
|
|||||||
using Company.Domain.ClassifiedSalaryAgg;
|
using Company.Domain.ClassifiedSalaryAgg;
|
||||||
using Company.Domain.ClientEmployeeWorkshopAgg;
|
using Company.Domain.ClientEmployeeWorkshopAgg;
|
||||||
using Company.Domain.Contact2Agg;
|
using Company.Domain.Contact2Agg;
|
||||||
using Company.Domain.ContactUsAgg;
|
|
||||||
using Company.Domain.ContarctingPartyAgg;
|
using Company.Domain.ContarctingPartyAgg;
|
||||||
using Company.Domain.ContractAgg;
|
using Company.Domain.ContractAgg;
|
||||||
using Company.Domain.ContractingPartyAccountAgg;
|
using Company.Domain.ContractingPartyAccountAgg;
|
||||||
@@ -175,10 +175,9 @@ public class CompanyContext : DbContext
|
|||||||
|
|
||||||
public DbSet<EmployeeClientTemp> EmployeeClientTemps { get; set; }
|
public DbSet<EmployeeClientTemp> EmployeeClientTemps { get; set; }
|
||||||
public DbSet<LeftWorkTemp> LeftWorkTemps { get; set; }
|
public DbSet<LeftWorkTemp> LeftWorkTemps { get; set; }
|
||||||
public DbSet<ContactUs> ContactUs { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
public DbSet<EmployeeAuthorizeTemp> EmployeeAuthorizeTemps { get; set; }
|
public DbSet<EmployeeAuthorizeTemp> EmployeeAuthorizeTemps { get; set; }
|
||||||
|
public DbSet<AdminMonthlyOverview> AdminMonthlyOverviews { get; set; }
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Pooya
|
#region Pooya
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
using Company.Domain.AdminMonthlyOverviewAgg;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||||
|
|
||||||
|
namespace CompanyManagment.EFCore.Mapping;
|
||||||
|
|
||||||
|
public class AdminMonthlyOverviewMapping:IEntityTypeConfiguration<AdminMonthlyOverview>
|
||||||
|
{
|
||||||
|
public void Configure(EntityTypeBuilder<AdminMonthlyOverview> builder)
|
||||||
|
{
|
||||||
|
builder.HasKey(x => x.id);
|
||||||
|
builder.Property(x => x.Status).HasConversion<string>().HasMaxLength(155);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
using Company.Domain.CheckoutAgg;
|
using System;
|
||||||
|
using _0_Framework.Application;
|
||||||
|
using Company.Domain.CheckoutAgg;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||||
|
|
||||||
@@ -52,5 +54,24 @@ class CheckoutMapping : IEntityTypeConfiguration<Checkout>
|
|||||||
.WithMany(x => x.Checkouts)
|
.WithMany(x => x.Checkouts)
|
||||||
.HasForeignKey(x => x.WorkshopId);
|
.HasForeignKey(x => x.WorkshopId);
|
||||||
|
|
||||||
|
builder.OwnsMany(x => x.LoanInstallments, installments =>
|
||||||
|
{
|
||||||
|
installments.Property(x => x.AmountForMonth).HasMaxLength(25);
|
||||||
|
installments.Property(x => x.IsActive).HasConversion(
|
||||||
|
v => v.ToString(),
|
||||||
|
v => (IsActive)Enum.Parse(typeof(IsActive), v)).HasMaxLength(5);
|
||||||
|
installments.Property(x => x.Year).HasMaxLength(4);
|
||||||
|
installments.Property(x => x.Month).HasMaxLength(2);
|
||||||
|
installments.Property(x => x.LoanRemaining).HasMaxLength(25);
|
||||||
|
installments.Property(x => x.LoanAmount).HasMaxLength(30);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
builder.OwnsMany(x => x.SalaryAids, salaryAid =>
|
||||||
|
{
|
||||||
|
salaryAid.Property(x => x.SalaryAidDateTimeFa).HasMaxLength(15);
|
||||||
|
salaryAid.Property(x => x.Amount).HasMaxLength(25);
|
||||||
|
salaryAid.Property(x => x.CalculationDateTimeFa).HasMaxLength(15);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
using Company.Domain.ContactUsAgg;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
||||||
|
|
||||||
namespace CompanyManagment.EFCore.Mapping;
|
|
||||||
|
|
||||||
public class ContactUsMapping:IEntityTypeConfiguration<ContactUs>
|
|
||||||
{
|
|
||||||
public void Configure(EntityTypeBuilder<ContactUs> builder)
|
|
||||||
{
|
|
||||||
builder.HasKey(x => x.id);
|
|
||||||
builder.Property(x => x.FullName).HasMaxLength(200);
|
|
||||||
builder.Property(x => x.Title).HasMaxLength(200);
|
|
||||||
builder.Property(x => x.Email).HasMaxLength(200);
|
|
||||||
builder.Property(x => x.FirstName).HasMaxLength(100);
|
|
||||||
builder.Property(x => x.LastName).HasMaxLength(100);
|
|
||||||
builder.Property(x => x.Message).HasMaxLength(500);
|
|
||||||
builder.Property(x => x.PhoneNumber).HasMaxLength(20);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -11,6 +11,9 @@ public class InsuranceJobeItemMapping : IEntityTypeConfiguration<InsuranceJobIte
|
|||||||
builder.ToTable("InsuranceJobItems");
|
builder.ToTable("InsuranceJobItems");
|
||||||
builder.HasKey(x => x.id);
|
builder.HasKey(x => x.id);
|
||||||
|
|
||||||
|
builder.Property(x => x.StartDate).IsRequired(false);
|
||||||
|
builder.Property(x => x.EndDate).IsRequired(false);
|
||||||
|
|
||||||
builder.HasOne(x => x.InsuranceJob)
|
builder.HasOne(x => x.InsuranceJob)
|
||||||
.WithMany(x => x.InsuranceJobItemList)
|
.WithMany(x => x.InsuranceJobItemList)
|
||||||
.HasForeignKey(x => x.InsuranceJobId);
|
.HasForeignKey(x => x.InsuranceJobId);
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ public class PersonalContractingpartyMapping : IEntityTypeConfiguration<Personal
|
|||||||
builder.Property(x => x.IdNumberSerial).HasMaxLength(15);
|
builder.Property(x => x.IdNumberSerial).HasMaxLength(15);
|
||||||
builder.Property(x => x.FatherName).HasMaxLength(20);
|
builder.Property(x => x.FatherName).HasMaxLength(20);
|
||||||
builder.Property(x => x.DateOfBirth).IsRequired(false);
|
builder.Property(x => x.DateOfBirth).IsRequired(false);
|
||||||
builder.Property(x => x.Gender).HasConversion(
|
builder.Property(x => x.Gender).HasConversion(
|
||||||
v => v.ToString(),
|
v => v.ToString(),
|
||||||
v => string.IsNullOrWhiteSpace(v) ? Gender.None : (Gender)Enum.Parse(typeof(Gender), v)).HasMaxLength(6);
|
v => string.IsNullOrWhiteSpace(v) ? Gender.None : (Gender)Enum.Parse(typeof(Gender), v)).HasMaxLength(6);
|
||||||
|
|
||||||
|
|||||||
9409
CompanyManagment.EFCore/Migrations/20250423104557_add calculationDate to salaryAid.Designer.cs
generated
Normal file
9409
CompanyManagment.EFCore/Migrations/20250423104557_add calculationDate to salaryAid.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user