Compare commits
121 Commits
CreateRewa
...
Fix/Custom
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98a8bef754 | ||
|
|
8cb39f4a55 | ||
|
|
47c53ce116 | ||
|
|
fe7a70e9db | ||
|
|
f7db92c4a7 | ||
|
|
d257711d16 | ||
|
|
7ab83c73aa | ||
|
|
6aefe7e88c | ||
|
|
a3533234f1 | ||
|
|
5dae65cad1 | ||
|
|
c5c79a9629 | ||
|
|
aad033731a | ||
|
|
949c9dd34e | ||
|
|
d0406b2bbe | ||
|
|
cb8741faf9 | ||
|
|
649bf5338a | ||
|
|
3896b3cec1 | ||
|
|
4064d5fdf8 | ||
|
|
fc200e53f1 | ||
|
|
f2f8571b44 | ||
|
|
52e1d0a78b | ||
|
|
b5affa43c1 | ||
|
|
6b7c3730ad | ||
|
|
b627311d73 | ||
|
|
9cc62d76c2 | ||
|
|
6422218409 | ||
|
|
9eb9c0d49a | ||
|
|
cc740439ec | ||
|
|
ff15307160 | ||
|
|
f2a2afc7a4 | ||
|
|
fe2a70bf60 | ||
|
|
d52141f729 | ||
|
|
1915dc0565 | ||
|
|
4cc0e72136 | ||
|
|
535e3943eb | ||
|
|
e8efb0a579 | ||
|
|
8800af7647 | ||
|
|
8ec9f5daef | ||
|
|
e625ed9a6e | ||
|
|
39ffd52107 | ||
|
|
6dbf6c2008 | ||
|
|
00a85e54ee | ||
|
|
f5195ecaa2 | ||
|
|
aaa3618522 | ||
|
|
9376c2cca6 | ||
|
|
36480df2f5 | ||
|
|
60db153dfe | ||
|
|
4ffdf14de2 | ||
|
|
fa587c61eb | ||
|
|
7e35f8009a | ||
|
|
13080fd64c | ||
|
|
39eb401575 | ||
|
|
bcd6447509 | ||
|
|
ac46886922 | ||
|
|
252c601eb4 | ||
|
|
4f673f22d5 | ||
|
|
d4a80f5b87 | ||
|
|
0c73ac44e8 | ||
|
|
059624ff9f | ||
|
|
a792936d66 | ||
|
|
a99e1cef32 | ||
|
|
408a78fb27 | ||
|
|
6f7eb05047 | ||
|
|
03ee772974 | ||
|
|
a0cab667c4 | ||
|
|
53ece03000 | ||
|
|
3354e0343c | ||
|
|
811d8c023c | ||
|
|
c561a138d6 | ||
|
|
d03f19a51e | ||
|
|
d4f56b2d82 | ||
|
|
de54e609c8 | ||
|
|
a4bdd55161 | ||
|
|
a43e32fa04 | ||
|
|
4801fcfd89 | ||
|
|
4eb7e8eaf5 | ||
|
|
caa887cd04 | ||
|
|
baededb717 | ||
|
|
a14595a961 | ||
|
|
7911109c64 | ||
|
|
67b2d3ab55 | ||
|
|
090a47fc70 | ||
|
|
d39dc5047f | ||
|
|
ecfae75010 | ||
|
|
ad8896a12c | ||
|
|
d46e8b5de5 | ||
|
|
51a4e5c1fe | ||
|
|
b6a581c456 | ||
|
|
3e914b7b1d | ||
|
|
40f021197b | ||
| 0303f04ae3 | |||
| 3e56d31ff2 | |||
| d5d0634807 | |||
|
|
a950c3130d | ||
|
|
85f493bcbb | ||
|
|
b8a82f783c | ||
|
|
e2d06d8f7e | ||
|
|
44a0a2df86 | ||
|
|
ee5e608581 | ||
|
|
6583706db6 | ||
| 1449e83a0f | |||
| bf5f416470 | |||
| 6526aefbbf | |||
|
|
1fec40982c | ||
|
|
868abae2e8 | ||
|
|
c627ba6d3d | ||
|
|
dadf541dd1 | ||
| 4b0c700b3e | |||
| 677adbeddb | |||
|
|
caaace7bcc | ||
|
|
c6142b684e | ||
|
|
ef5f80ba91 | ||
|
|
cac3d47c32 | ||
|
|
e2e0171564 | ||
| 7566268534 | |||
| e9805130ad | |||
| d139a36fba | |||
|
|
a9655d6df5 | ||
|
|
b8f8485266 | ||
|
|
22c1847cbe | ||
|
|
807afbae18 |
@@ -14,7 +14,9 @@
|
||||
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2" />
|
||||
<PackageReference Include="PersianTools.Core" Version="2.0.4" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
|
||||
|
||||
<PackageReference Include="MD.PersianDateTime.Standard" Version="2.5.0" />
|
||||
|
||||
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -9,6 +9,13 @@ public interface ISmsService
|
||||
void Send(string number, string message);
|
||||
bool VerifySend(string number, string message);
|
||||
bool LoginSend(string number, string message);
|
||||
/// <summary>
|
||||
/// ارسال کد به کلاینت برای تکمیل فرایند ثبت نام
|
||||
/// </summary>
|
||||
/// <param name="number"></param>
|
||||
/// <param name="code"></param>
|
||||
/// <returns></returns>
|
||||
Task<SentSmsViewModel> SendVerifyCodeToClient(string number, string code);
|
||||
bool SendAccountsInfo(string number,string fullName, string userName);
|
||||
Task<ApiResultViewModel> GetByMessageId(int messId);
|
||||
Task<List<ApiResultViewModel>> GetApiResult(string startDate, string endDate);
|
||||
|
||||
32
0_Framework/Application/Sms/SentSmsViewModel.cs
Normal file
32
0_Framework/Application/Sms/SentSmsViewModel.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
namespace _0_Framework.Application;
|
||||
|
||||
public class SentSmsViewModel
|
||||
{
|
||||
public SentSmsViewModel()
|
||||
{
|
||||
IsSuccedded = false;
|
||||
}
|
||||
|
||||
public bool IsSuccedded { get; set; }
|
||||
public string Message { get; set; }
|
||||
public byte StatusCode { get; set; }
|
||||
public int MessageId { get; set; }
|
||||
|
||||
public SentSmsViewModel Succedded(byte statusCode, string message, int messageId)
|
||||
{
|
||||
IsSuccedded = true;
|
||||
Message = message;
|
||||
StatusCode = statusCode;
|
||||
MessageId = messageId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public SentSmsViewModel Failed(byte statusCode, string message, int messageId)
|
||||
{
|
||||
IsSuccedded = false;
|
||||
Message = message;
|
||||
StatusCode = statusCode;
|
||||
MessageId = messageId;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
@@ -9,6 +9,7 @@ using IPE.SmsIrClient;
|
||||
using IPE.SmsIrClient.Models.Requests;
|
||||
using IPE.SmsIrClient.Models.Results;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using static System.Runtime.InteropServices.JavaScript.JSType;
|
||||
|
||||
|
||||
namespace _0_Framework.Application.Sms;
|
||||
@@ -110,6 +111,31 @@ public class SmsService : ISmsService
|
||||
}
|
||||
}
|
||||
|
||||
public async Task<SentSmsViewModel> SendVerifyCodeToClient(string number, string code)
|
||||
{
|
||||
SmsIr smsIr = new SmsIr("Og5M562igmzJRhQPnq0GdtieYdLgtfikjzxOmeQBPxJjZtyge5Klc046Lfw1mxSa");
|
||||
var result = new SentSmsViewModel();
|
||||
//var bulkSendResult = smsIr.BulkSendAsync(95007079000006, "your text message", new string[] { "9120000000" });
|
||||
|
||||
var sendResult = await smsIr.VerifySendAsync(number, 768382, new VerifySendParameter[] { new VerifySendParameter("VerificationCode", code) });
|
||||
Thread.Sleep(2000);
|
||||
|
||||
if (sendResult.Message == "موفق")
|
||||
{
|
||||
var status = sendResult.Status;
|
||||
var message = sendResult.Message;
|
||||
var messaeId = sendResult.Data.MessageId;
|
||||
return result.Succedded(status, message, messaeId);
|
||||
}
|
||||
else
|
||||
{
|
||||
var status = sendResult.Status;
|
||||
var message = sendResult.Message;
|
||||
var messaeId = sendResult.Data.MessageId;
|
||||
return result.Failed(status, message, messaeId);
|
||||
}
|
||||
}
|
||||
|
||||
public bool SendAccountsInfo(string number, string fullName, string userName)
|
||||
{
|
||||
|
||||
|
||||
@@ -20,8 +20,9 @@ public static class StaticWorkshopAccounts
|
||||
/// 3 - میلاد مصباح
|
||||
/// 380 - افروز نظری
|
||||
/// 381 - مهدی قربانی
|
||||
/// 392 - عمار حسن دوست
|
||||
/// </summary>
|
||||
public static List<long> StaticAccountIds = [2, 3, 380, 381];
|
||||
public static List<long> StaticAccountIds = [2, 3, 380, 381, 392];
|
||||
|
||||
/// <summary>
|
||||
/// این تاریخ در جدول اکانت لفت ورک به این معنیست
|
||||
|
||||
@@ -52,81 +52,81 @@ public static class Tools
|
||||
/// <param name="endDate"></param>
|
||||
/// <param name="employeeId"></param>
|
||||
/// <returns></returns>
|
||||
public static (int countWorkingDays,DateTime startWork,DateTime endWork,bool hasStartWorkInMonth,bool hasLeftWorkInMonth) GetEmployeeInsuranceWorkingDays(DateTime startWork,DateTime? leftWork,DateTime startDate,
|
||||
DateTime endDate,long employeeId)
|
||||
public static (int countWorkingDays, DateTime startWork, DateTime endWork, bool hasStartWorkInMonth, bool hasLeftWorkInMonth) GetEmployeeInsuranceWorkingDays(DateTime startWork, DateTime? leftWork, DateTime startDate,
|
||||
DateTime endDate, long employeeId)
|
||||
{
|
||||
DateTime start = startDate;
|
||||
DateTime start = startDate;
|
||||
DateTime end = endDate;
|
||||
bool startWorkInMonth = false;
|
||||
bool endWorkInMonth = false;
|
||||
|
||||
|
||||
//اگر شروع بکار پرسنل در ماه مشخص شده لیست بیمه بود
|
||||
if (startWork >= startDate)
|
||||
{
|
||||
start = startWork;
|
||||
startWorkInMonth = true;
|
||||
start = startWork;
|
||||
startWorkInMonth = true;
|
||||
}
|
||||
|
||||
if(leftWork == null)
|
||||
if (leftWork == null)
|
||||
leftWork = DateTime.MinValue;
|
||||
//اگر ترک کار پرسنل در ماه مشخص شده لیست بیمه بود
|
||||
if (leftWork != DateTime.MinValue && leftWork.Value < endDate)
|
||||
{
|
||||
end = leftWork.Value;
|
||||
end = leftWork.Value;
|
||||
endWorkInMonth = true;
|
||||
}
|
||||
|
||||
int countDays = (int)(end - start).TotalDays +1;
|
||||
int countDays = (int)(end - start).TotalDays + 1;
|
||||
|
||||
|
||||
//روزهای کارکرد پرسنل با آی دی های زیر دستی تعریف شد
|
||||
switch (employeeId)
|
||||
{
|
||||
|
||||
//case 3812://ثابت- کسری حاجی پور
|
||||
// countWorkingDays = 15;
|
||||
// break;
|
||||
case 40463://ثابت
|
||||
countDays = 10;
|
||||
break;
|
||||
case 40469://ثابت
|
||||
countDays = 7;
|
||||
break;
|
||||
//case 9950://ثابت
|
||||
// countDays = 15;
|
||||
//break;
|
||||
case 9640://ثابت
|
||||
countDays = 15;
|
||||
break;
|
||||
case 40998://ثابت
|
||||
countDays = 15;
|
||||
break;
|
||||
case 6219://ثابت
|
||||
countDays = 15;
|
||||
break;
|
||||
//case 7897://ثابت
|
||||
// countWorkingDays = 15;
|
||||
//case 3812://ثابت- کسری حاجی پور
|
||||
// countWorkingDays = 15;
|
||||
// break;
|
||||
case 40463://ثابت
|
||||
countDays = 10;
|
||||
break;
|
||||
case 40469://ثابت
|
||||
countDays = 7;
|
||||
break;
|
||||
//case 9950://ثابت
|
||||
// countDays = 15;
|
||||
//break;
|
||||
case 9640://ثابت
|
||||
countDays = 15;
|
||||
break;
|
||||
case 40998://ثابت
|
||||
countDays = 15;
|
||||
break;
|
||||
case 6219://ثابت
|
||||
countDays = 15;
|
||||
break;
|
||||
//case 7897://ثابت
|
||||
// countWorkingDays = 15;
|
||||
}
|
||||
|
||||
|
||||
return (countDays,start,end,startWorkInMonth,endWorkInMonth);
|
||||
return (countDays, start, end, startWorkInMonth, endWorkInMonth);
|
||||
}
|
||||
/// <summary>
|
||||
/// محاسبه سن
|
||||
/// </summary>
|
||||
/// <param name="startDate"></param>
|
||||
/// <param name="endDate"></param>
|
||||
/// <returns></returns>
|
||||
public static (int yearCount, int monthCount, int dayCount) GetAge(DateTime startDate, DateTime endDate)
|
||||
/// <summary>
|
||||
/// محاسبه سن
|
||||
/// </summary>
|
||||
/// <param name="startDate"></param>
|
||||
/// <param name="endDate"></param>
|
||||
/// <returns></returns>
|
||||
public static (int yearCount, int monthCount, int dayCount) GetAge(DateTime startDate, DateTime endDate)
|
||||
{
|
||||
|
||||
|
||||
var startFa = startDate.ToFarsi();
|
||||
int startYear = Convert.ToInt32(startFa.Substring(0, 4));
|
||||
int startMonth = Convert.ToInt32(startFa.Substring(5, 2));
|
||||
int startDay = Convert.ToInt32(startFa.Substring(8, 2));
|
||||
var start = new PersianDateTime(startYear, startMonth, startDay);
|
||||
|
||||
|
||||
|
||||
var endFa = endDate.ToFarsi();
|
||||
int endYear = Convert.ToInt32(endFa.Substring(0, 4));
|
||||
int endMonth = Convert.ToInt32(endFa.Substring(5, 2));
|
||||
@@ -141,7 +141,7 @@ public static class Tools
|
||||
if (firstYearCounter > end)
|
||||
{
|
||||
start = start.AddYears(-1);
|
||||
|
||||
|
||||
var endMonthCounter = new PersianDateTime(end.Year, end.Month, start.Day);
|
||||
|
||||
for (var monthCounter = start; monthCounter <= end; monthCounter = monthCounter.AddMonths(1))
|
||||
@@ -193,7 +193,7 @@ public static class Tools
|
||||
if (yearCouner.Year == end.Year)
|
||||
{
|
||||
|
||||
var endMonthCounter = new PersianDateTime(end.Year, end.Month, (yearCouner.Day > end.Day ? end.Day : yearCouner.Day));
|
||||
var endMonthCounter = new PersianDateTime(end.Year, end.Month, (yearCouner.Day > end.Day ? end.Day : yearCouner.Day));
|
||||
|
||||
if (yearCouner.Day <= end.Day)
|
||||
{
|
||||
@@ -244,7 +244,7 @@ public static class Tools
|
||||
|
||||
Console.ResetColor();
|
||||
Console.WriteLine($"old: [{years} year] ، [{months} month] ، [{days} day]");
|
||||
return (years,months,days);
|
||||
return (years, months, days);
|
||||
}
|
||||
|
||||
public static string ToFarsi(this DateTime? date)
|
||||
@@ -397,9 +397,9 @@ public static class Tools
|
||||
|
||||
public static DateTime ToGeorgianDateTime(this string persianDate)
|
||||
{
|
||||
persianDate = persianDate.ToEnglishNumber();
|
||||
try
|
||||
{
|
||||
persianDate = persianDate.ToEnglishNumber();
|
||||
var year = Convert.ToInt32(persianDate.Substring(0, 4));
|
||||
var month = Convert.ToInt32(persianDate.Substring(5, 2));
|
||||
var day = Convert.ToInt32(persianDate.Substring(8, 2));
|
||||
@@ -1267,16 +1267,16 @@ public static class Tools
|
||||
var part5 = parts[5].Substring(0, 2);
|
||||
|
||||
|
||||
try
|
||||
try
|
||||
{
|
||||
PersianCalendar pc = new PersianCalendar();
|
||||
dateTime = pc.ToDateTime(int.Parse(parts[1]), int.Parse(parts[2]), int.Parse(parts[3]), int.Parse(parts[4]), int.Parse(part5), 0, 0, 0);
|
||||
|
||||
dateTime = pc.ToDateTime(int.Parse(parts[1]), int.Parse(parts[2]), int.Parse(parts[3]), int.Parse(parts[4]), int.Parse(part5), 0, 0, 0);
|
||||
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1384,8 +1384,8 @@ public static class Tools
|
||||
}
|
||||
public static DateTime FindFirstDayOfMonthGr(this DateTime date)
|
||||
{
|
||||
var pc = new PersianCalendar();
|
||||
return ($"{pc.GetYear(date)}/{pc.GetMonth(date):00}/01").ToGeorgianDateTime();
|
||||
var pc = new PersianCalendar();
|
||||
return ($"{pc.GetYear(date)}/{pc.GetMonth(date):00}/01").ToGeorgianDateTime();
|
||||
}
|
||||
#region Mahan
|
||||
|
||||
@@ -1588,19 +1588,19 @@ public static class Tools
|
||||
|
||||
public static TimeOnly CalculateOffset(ICollection<CustomizeSifts> shiftDetailsRegularShifts)
|
||||
{
|
||||
if (!shiftDetailsRegularShifts.Any())
|
||||
{
|
||||
return TimeOnly.MinValue;
|
||||
}
|
||||
var date = new DateOnly();
|
||||
var firstStartShift = new DateTime(date, shiftDetailsRegularShifts.MinBy(x => x.Placement).StartTime);
|
||||
var lastEndShift = new DateTime(date, shiftDetailsRegularShifts.MaxBy(x => x.Placement).EndTime);
|
||||
if (lastEndShift > firstStartShift)
|
||||
firstStartShift = firstStartShift.AddDays(1);
|
||||
var offSet = (firstStartShift - lastEndShift).Divide(2);
|
||||
return TimeOnly.FromDateTime(lastEndShift.Add(offSet));
|
||||
if (!shiftDetailsRegularShifts.Any())
|
||||
{
|
||||
return TimeOnly.MinValue;
|
||||
}
|
||||
var date = new DateOnly();
|
||||
var firstStartShift = new DateTime(date, shiftDetailsRegularShifts.MinBy(x => x.Placement).StartTime);
|
||||
var lastEndShift = new DateTime(date, shiftDetailsRegularShifts.MaxBy(x => x.Placement).EndTime);
|
||||
if (lastEndShift > firstStartShift)
|
||||
firstStartShift = firstStartShift.AddDays(1);
|
||||
var offSet = (firstStartShift - lastEndShift).Divide(2);
|
||||
return TimeOnly.FromDateTime(lastEndShift.Add(offSet));
|
||||
}
|
||||
public static DateTime GetNextDayOfWeek(this DateTime date, DayOfWeek dayOfWeek)
|
||||
public static DateTime GetNextDayOfWeek(this DateTime date, DayOfWeek dayOfWeek)
|
||||
{
|
||||
int numberOfNextDayOfWeek = ((int)dayOfWeek - (int)date.DayOfWeek + 7) % 7;
|
||||
return date.AddDays(numberOfNextDayOfWeek == 0 ? 7 : numberOfNextDayOfWeek);
|
||||
@@ -1680,6 +1680,10 @@ public static class Tools
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region Pooya
|
||||
@@ -1772,75 +1776,75 @@ public static class Tools
|
||||
public static string ToFarsiHoursAndMinutes(int hours, int minutes, string emptyValue = "")
|
||||
{
|
||||
|
||||
string message = emptyValue;
|
||||
if (hours > 0 && minutes > 0)
|
||||
{
|
||||
string message = emptyValue;
|
||||
if (hours > 0 && minutes > 0)
|
||||
{
|
||||
|
||||
message = hours + " " + "ساعت و" + " " + minutes + " " + "دقیقه";
|
||||
}
|
||||
else if (hours > 0 && minutes == 0)
|
||||
{
|
||||
message = hours + " " + "ساعت و" + " " + minutes + " " + "دقیقه";
|
||||
}
|
||||
else if (hours > 0 && minutes == 0)
|
||||
{
|
||||
|
||||
message = hours + " " + "ساعت ";
|
||||
}
|
||||
else if (hours == 0 && minutes > 0)
|
||||
{
|
||||
message = hours + " " + "ساعت ";
|
||||
}
|
||||
else if (hours == 0 && minutes > 0)
|
||||
{
|
||||
|
||||
message = minutes + " " + "دقیقه";
|
||||
}
|
||||
message = minutes + " " + "دقیقه";
|
||||
}
|
||||
|
||||
return message;
|
||||
return message;
|
||||
}
|
||||
public static string ToFarsiHoursAndMinutes(this TimeSpan timeSpan, string emptyValue = "")
|
||||
public static string ToFarsiHoursAndMinutes(this TimeSpan timeSpan, string emptyValue = "")
|
||||
{
|
||||
var hours = (int)timeSpan.TotalHours;
|
||||
var minutes = timeSpan.Minutes;
|
||||
string message = emptyValue;
|
||||
if (hours > 0 && minutes > 0)
|
||||
{
|
||||
var hours = (int)timeSpan.TotalHours;
|
||||
var minutes = timeSpan.Minutes;
|
||||
string message = emptyValue;
|
||||
if (hours > 0 && minutes > 0)
|
||||
{
|
||||
|
||||
message = hours + " " + "ساعت و" + " " + minutes + " " + "دقیقه";
|
||||
}
|
||||
else if (hours > 0 && minutes == 0)
|
||||
{
|
||||
message = hours + " " + "ساعت و" + " " + minutes + " " + "دقیقه";
|
||||
}
|
||||
else if (hours > 0 && minutes == 0)
|
||||
{
|
||||
|
||||
message = hours + " " + "ساعت ";
|
||||
}
|
||||
else if (hours == 0 && minutes > 0)
|
||||
{
|
||||
message = hours + " " + "ساعت ";
|
||||
}
|
||||
else if (hours == 0 && minutes > 0)
|
||||
{
|
||||
|
||||
message = minutes + " " + "دقیقه";
|
||||
}
|
||||
message = minutes + " " + "دقیقه";
|
||||
}
|
||||
|
||||
return message;
|
||||
return message;
|
||||
}
|
||||
public static string ToFarsiDaysAndHoursAndMinutes(this TimeSpan timeSpan, string emptyValue = "")
|
||||
{
|
||||
var hours = (int)timeSpan.TotalHours;
|
||||
var minutes = timeSpan.Minutes;
|
||||
var days = hours / 24;
|
||||
hours = hours % 24;
|
||||
string message = "";
|
||||
public static string ToFarsiDaysAndHoursAndMinutes(this TimeSpan timeSpan, string emptyValue = "")
|
||||
{
|
||||
var hours = (int)timeSpan.TotalHours;
|
||||
var minutes = timeSpan.Minutes;
|
||||
var days = hours / 24;
|
||||
hours = hours % 24;
|
||||
string message = "";
|
||||
|
||||
if (days > 0)
|
||||
message += days + " " + "روز";
|
||||
if (hours > 0)
|
||||
if (message == "")
|
||||
message += hours + " " + "ساعت";
|
||||
else
|
||||
message += " و " + hours + " " + "ساعت";
|
||||
if (minutes > 0)
|
||||
if (message == "")
|
||||
message += minutes + " " + "دقیقه";
|
||||
else
|
||||
message += " و " + minutes + " " + "دقیقه";
|
||||
if (days > 0)
|
||||
message += days + " " + "روز";
|
||||
if (hours > 0)
|
||||
if (message == "")
|
||||
message += hours + " " + "ساعت";
|
||||
else
|
||||
message += " و " + hours + " " + "ساعت";
|
||||
if (minutes > 0)
|
||||
if (message == "")
|
||||
message += minutes + " " + "دقیقه";
|
||||
else
|
||||
message += " و " + minutes + " " + "دقیقه";
|
||||
|
||||
if (message == "")
|
||||
message = emptyValue;
|
||||
return message;
|
||||
}
|
||||
if (message == "")
|
||||
message = emptyValue;
|
||||
return message;
|
||||
}
|
||||
|
||||
public static bool ArePropertiesEqual<T>(this T obj1, T obj2)
|
||||
public static bool ArePropertiesEqual<T>(this T obj1, T obj2)
|
||||
{
|
||||
// If either object is null, they can't be equal
|
||||
if (obj1 == null || obj2 == null)
|
||||
@@ -1873,5 +1877,44 @@ public static class Tools
|
||||
return true;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Davoodi
|
||||
|
||||
public static List<string> GetDaysBetweenDateGeorgian(DateTime startDate, DateTime? endDate)
|
||||
{
|
||||
var days = new List<string>();
|
||||
|
||||
if (endDate == null)
|
||||
endDate = DateTime.Now;
|
||||
|
||||
var persianStartDate = new MD.PersianDateTime.Standard.PersianDateTime(startDate);
|
||||
var persianEndDate = new MD.PersianDateTime.Standard.PersianDateTime(endDate);
|
||||
|
||||
|
||||
while (persianEndDate - persianStartDate >= TimeSpan.FromDays(0))
|
||||
{
|
||||
days.Add(persianStartDate.ToShortDateString());
|
||||
persianStartDate = persianStartDate.AddDays(1);
|
||||
}
|
||||
|
||||
return days;
|
||||
}
|
||||
|
||||
public static int GetWorkingDaysDifference(DateTime? fromDate, DateTime? toDate)
|
||||
{
|
||||
//var workingDays = PersianDateExtensions.GetWorkingDays(new PersianDateTime(fromDate.ToFarsi()), new PersianDateTime(toDate.ToFarsi()), true);
|
||||
var workingDays = PersianDateExtensions.GetWorkingDays((DateTime)fromDate, (DateTime)toDate, true);
|
||||
|
||||
|
||||
if (fromDate > toDate)
|
||||
workingDays *= -1;
|
||||
|
||||
|
||||
return workingDays;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endregion
|
||||
}
|
||||
@@ -8,7 +8,8 @@ namespace _0_Framework.Application
|
||||
Client,
|
||||
SubAccount,
|
||||
Camera,
|
||||
Admin
|
||||
Admin,
|
||||
System
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -55,4 +55,11 @@ public interface IAccountApplication
|
||||
#endregion
|
||||
|
||||
OperationResult DirectCameraLogin(long cameraAccountId);
|
||||
|
||||
/// <summary>
|
||||
/// چک میکند که آیا اکانتی با این نام کاربری وجود دارد یا نه
|
||||
/// </summary>
|
||||
/// <param name="userName"></param>
|
||||
/// <returns></returns>
|
||||
public bool CheckExistClientAccount(string userName);
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using IPE.SmsIrClient.Models.Results;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
|
||||
namespace AccountManagement.Application.Contracts.Task;
|
||||
@@ -19,9 +20,9 @@ public class CreateTask
|
||||
#region Task Schedule
|
||||
|
||||
public string ScheduleCount { get; set; }
|
||||
public string ScheduleType{ get; set; }
|
||||
public TaskScheduleType ScheduleType { get; set; }
|
||||
public bool HasSchedule { get; set; }
|
||||
public string ScheduleUnitType { get; set; }
|
||||
public TaskScheduleUnitType ScheduleUnitType { get; set; }
|
||||
public string ScheduleUnitNumber { get; set; }
|
||||
public long TaskScheduleId { get; set; }
|
||||
|
||||
@@ -30,4 +31,18 @@ public class CreateTask
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
public enum TaskScheduleType
|
||||
{
|
||||
Limited,
|
||||
Unlimited
|
||||
}
|
||||
|
||||
public enum TaskScheduleUnitType
|
||||
{
|
||||
Day,
|
||||
Week,
|
||||
Month,
|
||||
Year
|
||||
}
|
||||
@@ -20,4 +20,5 @@ public class EditTask:CreateTask
|
||||
public long? TicketId { get; set; }
|
||||
public List<AccountViewModel> AssignsLists { get; set; }
|
||||
public bool HasTicket { get; set; }
|
||||
public long TaskScheduleId { get; set; }
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Application;
|
||||
using AccountManagement.Application.Contracts.Assign;
|
||||
using AccountManagement.Application.Contracts.TaskMessage;
|
||||
@@ -24,6 +25,13 @@ public interface ITaskApplication
|
||||
List<TaskViewModel> GetSentTasks(TaskSearchModel searchModel);
|
||||
List<TaskViewModel> GetTasksHaveTicket(TaskSearchModel searchModel);
|
||||
|
||||
/// <summary>
|
||||
/// لیست تسک های دوره ای ایجاد شده توسط کاربر
|
||||
/// </summary>
|
||||
/// <param name="searchModel"></param>
|
||||
/// <returns></returns>
|
||||
List<TaskViewModel> GetTaskScheduleList(TaskSearchModel searchModel);
|
||||
|
||||
// گرفتن مهلت برای یک وظیفه
|
||||
OperationResult CreateRequestTime(CreateTaskTimeRequest command);
|
||||
List<TaskViewModel> GetRequestTaskHasTicket(TaskSearchModel searchModel);
|
||||
@@ -46,10 +54,10 @@ public interface ITaskApplication
|
||||
OperationResult CreateTaskByPosition(CreateTask command, List<long> positionIds);
|
||||
List<TaskViewModel> GetRequestedTasks(TaskSearchModel searchModel);
|
||||
List<TaskViewModel> AllRequestedTasks(TaskSearchModel searchModel);
|
||||
int GetRequestedTasksCount();
|
||||
Task<int> GetRequestedTasksCount();
|
||||
|
||||
int TasksHaveTicketCounts(long userId);
|
||||
int TasksHaveTicketRequestsCount(long userId);
|
||||
Task<int> TasksHaveTicketCounts(long userId);
|
||||
Task<int> TasksHaveTicketRequestsCount(long userId);
|
||||
|
||||
List<TaskMessageViewModel> GetTaskMessages(long assignId);
|
||||
|
||||
@@ -63,16 +71,14 @@ public interface ITaskApplication
|
||||
|
||||
List<AssignViewModel> GetAssignsByTaskId(long taskId);
|
||||
|
||||
int RequestedAndOverdueTasksCount(long userId);
|
||||
Task<int> RequestedAndOverdueTasksCount(long userId);
|
||||
|
||||
/// <summary>
|
||||
///تعداد تسک های شخصی و دریافتی برای امروز و یا عقب افتاده
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
int OverdueTasksCount(long userId);
|
||||
/// <summary>
|
||||
/// تعداد تسک های شخصی و دریافتی برای امروز و یا عقب افتاده
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
Task<int> OverdueTasksCount(long userId);
|
||||
|
||||
|
||||
//متد انتقال داده از تسک به ارجاعی ها
|
||||
//OperationResult MoveDataFRomTaskToAssign();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,5 +50,7 @@ public class TaskViewModel
|
||||
public bool CanCheckRequests { get; set; }
|
||||
public AssignViewModel AssignedReceiverViewModel { get; set; }
|
||||
|
||||
|
||||
public TaskScheduleType ScheduleType { get; set; }
|
||||
public TaskScheduleUnitType ScheduleUnitType { get; set; }
|
||||
public long TaskScheduleId { get; set; }
|
||||
}
|
||||
@@ -1,4 +1,6 @@
|
||||
using _0_Framework.Application;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Application;
|
||||
using AccountManagement.Application.Contracts.Task;
|
||||
|
||||
namespace AccountManagement.Application.Contracts.TaskSchedule;
|
||||
@@ -6,7 +8,8 @@ namespace AccountManagement.Application.Contracts.TaskSchedule;
|
||||
public interface ITaskScheduleApplication
|
||||
{
|
||||
OperationResult Create(CreateTask command);
|
||||
OperationResult CreateLimitedTasks(CreateTask command);
|
||||
OperationResult CreateUnlimitedTasks(CreateTask command);
|
||||
|
||||
Task<TaskScheduleDetailsViewModel> GetDetails(long id);
|
||||
|
||||
OperationResult Remove(long taskScheduleId);
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
using AccountManagement.Application.Contracts.Media;
|
||||
using AccountManagement.Application.Contracts.Task;
|
||||
|
||||
namespace AccountManagement.Application.Contracts.TaskSchedule;
|
||||
|
||||
public class TaskScheduleDetailsViewModel
|
||||
{
|
||||
public string SenderName { get; set; }
|
||||
public List<string> AssignedName { get; set; }
|
||||
public TaskScheduleType TaskScheduleType { get; set; }
|
||||
public TaskScheduleUnitType TaskScheduleUnitType { get; set; }
|
||||
public string UnitNumber { get; set; }
|
||||
public string CreationDateFa { get; set; }
|
||||
public string ContractingPartyName { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Description { get; set; }
|
||||
public List<MediaViewModel> Medias { get; set; }
|
||||
|
||||
}
|
||||
@@ -549,7 +549,8 @@ public class AccountApplication : IAccountApplication
|
||||
return operation.Succcedded(2);
|
||||
}
|
||||
|
||||
public AccountLeftWorkViewModel WorkshopList(long accountId)
|
||||
|
||||
public AccountLeftWorkViewModel WorkshopList(long accountId)
|
||||
{
|
||||
string fullname = this._accountRepository.GetById(accountId).Fullname;
|
||||
List<WorkshopAccountlistViewModel> source =_accountLeftworkRepository.WorkshopList(accountId);
|
||||
@@ -785,4 +786,10 @@ public class AccountApplication : IAccountApplication
|
||||
//}
|
||||
#endregion
|
||||
|
||||
|
||||
public bool CheckExistClientAccount(string userName)
|
||||
{
|
||||
return _accountRepository.CheckExistClientAccount(userName);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -16,6 +16,7 @@ using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
namespace AccountManagement.Application;
|
||||
@@ -508,6 +509,11 @@ public class TaskApplication : ITaskApplication
|
||||
return _taskRepository.GetTasksHaveTicket(searchModel);
|
||||
}
|
||||
|
||||
public List<TaskViewModel> GetTaskScheduleList(TaskSearchModel searchModel)
|
||||
{
|
||||
return _taskRepository.GetTaskScheduleList(searchModel);
|
||||
}
|
||||
|
||||
//ساخت درخواست مهلت
|
||||
public OperationResult CreateRequestTime(CreateTaskTimeRequest command)
|
||||
{
|
||||
@@ -589,6 +595,9 @@ public class TaskApplication : ITaskApplication
|
||||
{
|
||||
return operation.Failed("تاریخی برای درخواست وظیفه ثبت نشده است");
|
||||
}
|
||||
|
||||
|
||||
|
||||
assign.AcceptTimeRequest();
|
||||
message = string.IsNullOrWhiteSpace(message) ? "درخواست شما مورد تایید قرار گرفت" : message;
|
||||
var messageEntity = new TaskMessage(message, "تایید درخواست مهلت", assign.id);
|
||||
@@ -865,14 +874,14 @@ public class TaskApplication : ITaskApplication
|
||||
return _taskRepository.AllRequestedTasks(searchModel);
|
||||
}
|
||||
|
||||
public int TasksHaveTicketCounts(long userId)
|
||||
public async Task<int> TasksHaveTicketCounts(long userId)
|
||||
{
|
||||
return _taskRepository.TasksHaveTicketCounts(userId);
|
||||
return await _taskRepository.TasksHaveTicketCounts(userId);
|
||||
}
|
||||
|
||||
public int TasksHaveTicketRequestsCount(long userId)
|
||||
public async Task<int> TasksHaveTicketRequestsCount(long userId)
|
||||
{
|
||||
return _taskRepository.TasksHaveTicketRequestsCount(userId);
|
||||
return await _taskRepository.TasksHaveTicketRequestsCount(userId);
|
||||
}
|
||||
|
||||
|
||||
@@ -881,9 +890,9 @@ public class TaskApplication : ITaskApplication
|
||||
return _taskMessageRepository.GetTaskMessages(assignId);
|
||||
}
|
||||
|
||||
public int GetRequestedTasksCount()
|
||||
public async Task<int> GetRequestedTasksCount()
|
||||
{
|
||||
return _taskRepository.GetRequestedTasksCount();
|
||||
return await _taskRepository.GetRequestedTasksCount();
|
||||
}
|
||||
|
||||
public OperationResult ChangeRequestTimeAndAccept(string time, long taskId, long assignedId, string message)
|
||||
@@ -1007,15 +1016,15 @@ public class TaskApplication : ITaskApplication
|
||||
return _assignRepository.GetAssignsByTaskId(taskId);
|
||||
}
|
||||
|
||||
public int RequestedAndOverdueTasksCount(long userId)
|
||||
public async Task<int> RequestedAndOverdueTasksCount(long userId)
|
||||
{
|
||||
return _taskRepository.RequestedAndOverdueTasksCount(userId);
|
||||
return await _taskRepository.RequestedAndOverdueTasksCount(userId);
|
||||
|
||||
}
|
||||
|
||||
public int OverdueTasksCount(long userId)
|
||||
public async Task<int> OverdueTasksCount(long userId)
|
||||
{
|
||||
return _taskRepository.OverdueTasksCount(userId);
|
||||
return await _taskRepository.OverdueTasksCount(userId);
|
||||
}
|
||||
|
||||
//public OperationResult MoveDataFRomTaskToAssign()
|
||||
|
||||
@@ -4,222 +4,355 @@ using AccountManagement.Application.Contracts.TaskSchedule;
|
||||
using AccountManagement.Domain.TaskScheduleAgg;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Transactions;
|
||||
using AccountManagement.Domain.TaskAgg;
|
||||
using Company.Domain.HolidayItemAgg;
|
||||
|
||||
namespace AccountManagement.Application;
|
||||
|
||||
public class TaskScheduleApplication : ITaskScheduleApplication
|
||||
{
|
||||
private readonly ITaskApplication _taskApplication;
|
||||
private readonly ITaskScheduleRepository _taskScheduleRepository;
|
||||
private readonly IHolidayItemRepository _holidayItemRepository;
|
||||
private readonly ITaskApplication _taskApplication;
|
||||
private readonly ITaskScheduleRepository _taskScheduleRepository;
|
||||
private readonly IHolidayItemRepository _holidayItemRepository;
|
||||
private readonly ITaskRepository _taskRepository;
|
||||
public TaskScheduleApplication(ITaskApplication taskApplication, ITaskScheduleRepository taskScheduleRepository, IHolidayItemRepository holidayItemRepository, ITaskRepository taskRepository)
|
||||
{
|
||||
_taskApplication = taskApplication;
|
||||
_taskScheduleRepository = taskScheduleRepository;
|
||||
_holidayItemRepository = holidayItemRepository;
|
||||
_taskRepository = taskRepository;
|
||||
}
|
||||
|
||||
public TaskScheduleApplication(ITaskApplication taskApplication, ITaskScheduleRepository taskScheduleRepository, IHolidayItemRepository holidayItemRepository)
|
||||
{
|
||||
_taskApplication = taskApplication;
|
||||
_taskScheduleRepository = taskScheduleRepository;
|
||||
_holidayItemRepository = holidayItemRepository;
|
||||
}
|
||||
|
||||
public OperationResult Create(CreateTask command)
|
||||
{
|
||||
OperationResult operation = new OperationResult();
|
||||
public OperationResult Create(CreateTask command)
|
||||
{
|
||||
OperationResult operation = new OperationResult();
|
||||
|
||||
|
||||
if (command.HasSchedule)
|
||||
{
|
||||
switch (command.ScheduleType)
|
||||
{
|
||||
case "limited":
|
||||
if (Convert.ToInt32(command.ScheduleCount) > 60)
|
||||
{
|
||||
return operation.Failed("تعداد وارد شده بیشتر از حد مجاز است");
|
||||
}
|
||||
return CreateLimitedTasks(command);
|
||||
break;
|
||||
if (command.HasSchedule)
|
||||
{
|
||||
switch (command.ScheduleType)
|
||||
{
|
||||
case TaskScheduleType.Limited:
|
||||
if (Convert.ToInt32(command.ScheduleCount) > 60)
|
||||
{
|
||||
return operation.Failed("تعداد وارد شده بیشتر از حد مجاز است");
|
||||
}
|
||||
return CreateLimitedTasks(command);
|
||||
break;
|
||||
|
||||
case "unlimited":
|
||||
return CreateUnlimitedTasks(command);
|
||||
break;
|
||||
case TaskScheduleType.Unlimited:
|
||||
return CreateUnlimitedTasks(command);
|
||||
break;
|
||||
|
||||
default:
|
||||
return operation.Failed("خطای سیستمی!");
|
||||
default:
|
||||
return operation.Failed("نوع وظیفه محول شده مشخص نمیباشد");
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return operation.Failed("این تسک بصورت زمان بندی شده نمیباشد");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return operation.Failed("این تسک بصورت دوره ای نمیباشد");
|
||||
}
|
||||
}
|
||||
|
||||
public OperationResult CreateLimitedTasks(CreateTask command)
|
||||
{
|
||||
OperationResult operation = new OperationResult();
|
||||
if (Convert.ToInt32(command.ScheduleCount) < 1 || string.IsNullOrWhiteSpace(command.ScheduleCount))
|
||||
{
|
||||
return operation.Failed("تعداد وارد شده باید بیشتر از 2 باشد");
|
||||
}
|
||||
public async Task<TaskScheduleDetailsViewModel> GetDetails(long id)
|
||||
{
|
||||
return await _taskScheduleRepository.GetDetails(id);
|
||||
}
|
||||
|
||||
switch (command.ScheduleUnitType)
|
||||
{
|
||||
case "year":
|
||||
if (Convert.ToInt32(command.ScheduleCount) != 1)
|
||||
{
|
||||
return operation.Failed("دوره نمیتواند بیشتر از 1 سال باشد");
|
||||
}
|
||||
break;
|
||||
case "month":
|
||||
if (Convert.ToInt32(command.ScheduleCount) > 12)
|
||||
{
|
||||
return operation.Failed("بازه وارد شده نا معتبر است");
|
||||
}
|
||||
break;
|
||||
case "week":
|
||||
if (command.ScheduleUnitNumber != "first" && command.ScheduleUnitNumber != "last")
|
||||
{
|
||||
return operation.Failed("بازه وارد شده نا معتبر است");
|
||||
}
|
||||
break;
|
||||
case "day":
|
||||
if (Convert.ToInt32(command.ScheduleUnitNumber) > 29)
|
||||
{
|
||||
return operation.Failed("بازه وارد شده نا معتبر است");
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return operation.Failed("نوع بازه مشخص نمیباشد");
|
||||
break;
|
||||
public OperationResult Remove(long taskScheduleId)
|
||||
{
|
||||
var op = new OperationResult();
|
||||
var taskSchedule = _taskScheduleRepository.Get(taskScheduleId);
|
||||
if (taskSchedule == null)
|
||||
return op.Failed("وظیفه مورد نظر یافت نشد");
|
||||
var tasks = _taskRepository.GetTasksByTaskScheduleId(taskScheduleId);
|
||||
var assigns = tasks.SelectMany(x => x.Assigns);
|
||||
if (assigns.Any(x => x.IsCanceledRequest || x.IsDone || x.IsCancel || x.TimeRequest || x.AcceptedTimeRequest > 0))
|
||||
{
|
||||
taskSchedule.DeActive();
|
||||
|
||||
}
|
||||
try
|
||||
{
|
||||
DateTime previousDateRaw = command.EndTaskDate.ToEndDayOfGeorgianDateTime();
|
||||
DateTime previousDateEdited = command.EndTaskDate.ToEndDayOfGeorgianDateTime();
|
||||
var removableTask = tasks.Where(x=>x.Assigns.All(a=>a.IsDone==false && a.IsCancel == false)).ToList();
|
||||
_taskRepository.RemoveRange(removableTask);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
_taskScheduleRepository.Remove(taskSchedule);
|
||||
_taskRepository.RemoveRange(tasks);
|
||||
}
|
||||
_taskRepository.SaveChanges();
|
||||
return op.Succcedded();
|
||||
}
|
||||
|
||||
int count = Convert.ToInt32(command.ScheduleCount);
|
||||
bool isInt = int.TryParse(command.ScheduleUnitNumber, out int unitNumber);
|
||||
string kindOfWeekUnit = isInt ? "" : command.ScheduleUnitNumber;
|
||||
var taskSchedule = new TaskSchedule(command.ScheduleCount, command.ScheduleType, command.ScheduleUnitType,
|
||||
command.ScheduleUnitNumber, previousDateEdited);
|
||||
_taskScheduleRepository.Create(taskSchedule);
|
||||
_taskScheduleRepository.SaveChanges();
|
||||
command.TaskScheduleId = taskSchedule.id;
|
||||
private OperationResult CreateLimitedTasks(CreateTask command)
|
||||
{
|
||||
OperationResult operation = new OperationResult();
|
||||
if (Convert.ToInt32(command.ScheduleCount) < 1 || string.IsNullOrWhiteSpace(command.ScheduleCount))
|
||||
{
|
||||
return operation.Failed("تعداد وارد شده باید بیشتر از 2 باشد");
|
||||
}
|
||||
if (string.IsNullOrWhiteSpace(command.ScheduleUnitNumber))
|
||||
{
|
||||
return operation.Failed("لطفا تعداد بازه خود را مشخص کنید");
|
||||
}
|
||||
|
||||
switch (command.ScheduleUnitType)
|
||||
{
|
||||
case "year":
|
||||
for (int i = 1; i <= count; i++)
|
||||
{
|
||||
command.EndTaskDate = previousDateEdited.ToFarsi();
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
switch (command.ScheduleUnitType)
|
||||
{
|
||||
case TaskScheduleUnitType.Year:
|
||||
if (Convert.ToInt32(command.ScheduleCount) != 1)
|
||||
{
|
||||
return operation.Failed("دوره نمیتواند بیشتر از 1 سال باشد");
|
||||
}
|
||||
break;
|
||||
case TaskScheduleUnitType.Month:
|
||||
|
||||
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
{
|
||||
previousDateEdited = previousDateRaw.AddDays(1);
|
||||
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
if (Convert.ToInt32(command.ScheduleUnitNumber) is > 12 or < 1)
|
||||
{
|
||||
return operation.Failed("بازه وارد شده نا معتبر است");
|
||||
}
|
||||
|
||||
}
|
||||
previousDateRaw = previousDateRaw.AddYears(unitNumber);
|
||||
previousDateEdited = previousDateRaw;
|
||||
if (Convert.ToInt32(command.ScheduleCount) is > 60 or < 1)
|
||||
{
|
||||
return operation.Failed("تعداد دفعات وارد شده نامعتبر است");
|
||||
}
|
||||
break;
|
||||
case TaskScheduleUnitType.Week:
|
||||
if (command.ScheduleUnitNumber != "first" && command.ScheduleUnitNumber != "last")
|
||||
{
|
||||
return operation.Failed("بازه وارد شده نا معتبر است");
|
||||
}
|
||||
break;
|
||||
case TaskScheduleUnitType.Day:
|
||||
if (Convert.ToInt32(command.ScheduleUnitNumber) is > 29 or < 1)
|
||||
{
|
||||
return operation.Failed("بازه وارد شده نا معتبر است");
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return operation.Failed("نوع بازه مشخص نمیباشد");
|
||||
break;
|
||||
|
||||
}
|
||||
break;
|
||||
}
|
||||
try
|
||||
{
|
||||
//using var transaction = new TransactionScope();
|
||||
DateTime previousDateRaw = command.EndTaskDate.ToEndDayOfGeorgianDateTime();
|
||||
DateTime previousDateEdited = command.EndTaskDate.ToEndDayOfGeorgianDateTime();
|
||||
var day = Convert.ToInt32(command.EndTaskDate.Substring(8, 2));
|
||||
var month = Convert.ToInt32(command.EndTaskDate.Substring(5, 2));
|
||||
var year = Convert.ToInt32(command.EndTaskDate.Substring(0, 4));
|
||||
|
||||
case "month":
|
||||
for (int i = 1; i <= count; i++)
|
||||
{
|
||||
command.EndTaskDate = previousDateEdited.ToFarsi();
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
{
|
||||
previousDateEdited = previousDateRaw.AddDays(1);
|
||||
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
int count = Convert.ToInt32(command.ScheduleCount);
|
||||
bool isInt = int.TryParse(command.ScheduleUnitNumber, out int unitNumber);
|
||||
string kindOfWeekUnit = isInt ? "" : command.ScheduleUnitNumber;
|
||||
var taskSchedule = new TaskSchedule(command.ScheduleCount, command.ScheduleType, command.ScheduleUnitType,
|
||||
command.ScheduleUnitNumber, previousDateEdited);
|
||||
_taskScheduleRepository.Create(taskSchedule);
|
||||
_taskScheduleRepository.SaveChanges();
|
||||
command.TaskScheduleId = taskSchedule.id;
|
||||
|
||||
}
|
||||
previousDateRaw = previousDateRaw.AddMonths(unitNumber);
|
||||
previousDateEdited = previousDateRaw;
|
||||
switch (command.ScheduleUnitType)
|
||||
{
|
||||
case TaskScheduleUnitType.Year:
|
||||
for (int i = 1; i <= count; i++)
|
||||
{
|
||||
command.EndTaskDate = previousDateEdited.ToFarsi();
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
|
||||
}
|
||||
break;
|
||||
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
{
|
||||
previousDateEdited = previousDateRaw.AddDays(1);
|
||||
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
}
|
||||
previousDateRaw = previousDateRaw.AddYears(unitNumber);
|
||||
previousDateEdited = previousDateRaw;
|
||||
}
|
||||
break;
|
||||
|
||||
case "week":
|
||||
for (int i = 1; i <= count; i++)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(kindOfWeekUnit))
|
||||
{
|
||||
throw new InvalidDataException();
|
||||
}
|
||||
case TaskScheduleUnitType.Month:
|
||||
bool endOfMonth = day == 31;
|
||||
|
||||
command.EndTaskDate = kindOfWeekUnit switch
|
||||
{
|
||||
"first" => previousDateRaw.GetNextDayOfWeek(DayOfWeek.Saturday).ToFarsi(),
|
||||
"last" => previousDateRaw.GetNextDayOfWeek(DayOfWeek.Thursday).ToFarsi(),
|
||||
_ => throw new InvalidDataException()
|
||||
};
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
{
|
||||
previousDateEdited = previousDateRaw.AddDays(1);
|
||||
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
if (endOfMonth)
|
||||
{
|
||||
for (int i = 1; i <= count; i++)
|
||||
{
|
||||
command.EndTaskDate = previousDateEdited.ToFarsi();
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
if (month >= 12)
|
||||
{
|
||||
var extra = month - 12;
|
||||
year++;
|
||||
month = extra + unitNumber;
|
||||
}
|
||||
else
|
||||
{
|
||||
month = unitNumber + month;
|
||||
}
|
||||
previousDateRaw = $"{year:0000}/{month:00}/01".FindeEndOfMonth().ToGeorgianDateTime();
|
||||
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
{
|
||||
previousDateEdited = previousDateRaw.AddDays(1);
|
||||
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
|
||||
}
|
||||
previousDateRaw = command.EndTaskDate.ToGeorgianDateTime();
|
||||
previousDateEdited = previousDateRaw;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
case "day":
|
||||
previousDateEdited = previousDateRaw;
|
||||
|
||||
for (int i = 1; i <= count; i++)
|
||||
{
|
||||
command.EndTaskDate = previousDateEdited.ToFarsi();
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
previousDateRaw = previousDateRaw.AddDays(unitNumber);
|
||||
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
{
|
||||
previousDateEdited = previousDateRaw.AddDays(1);
|
||||
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int i = 1; i < count; i++)
|
||||
{
|
||||
command.EndTaskDate = previousDateEdited.ToFarsi();
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
var endDay = 0;
|
||||
|
||||
}
|
||||
if (month >= 12)
|
||||
{
|
||||
var extra = month - 12;
|
||||
year++;
|
||||
month = extra + unitNumber;
|
||||
|
||||
previousDateEdited = previousDateRaw;
|
||||
}
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
month = unitNumber + month;
|
||||
}
|
||||
|
||||
}
|
||||
_taskScheduleRepository.SaveChanges();
|
||||
operation = operation.Succcedded();
|
||||
return operation;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
return operation.Failed(e.ToString());
|
||||
}
|
||||
}
|
||||
if (day == 30)
|
||||
{
|
||||
if (month == 12)
|
||||
{
|
||||
var lastYearDay = Convert.ToInt32($"{year:0000}/{month:00}/1".FindeEndOfMonth()
|
||||
.Substring(8, 2));
|
||||
endDay = lastYearDay == 30 ? lastYearDay : 29;
|
||||
}
|
||||
|
||||
public OperationResult CreateUnlimitedTasks(CreateTask command)
|
||||
{
|
||||
var operation = _taskApplication.CreateTask(command);
|
||||
if (!operation.IsSuccedded)
|
||||
return operation;
|
||||
var lastDate = command.EndTaskDate.ToGeorgianDateTime();
|
||||
var taskSchedule = new TaskSchedule(command.ScheduleCount, command.ScheduleType, command.ScheduleUnitType,
|
||||
command.ScheduleUnitNumber, lastDate);
|
||||
_taskScheduleRepository.Create(taskSchedule);
|
||||
_taskScheduleRepository.SaveChanges();
|
||||
return operation.Succcedded();
|
||||
}
|
||||
|
||||
}
|
||||
previousDateEdited = endDay == 0
|
||||
? $"{year:0000}/{month:00}/{day:00}".ToGeorgianDateTime()
|
||||
: $"{year:0000}/{month:00}/{endDay:00}".ToGeorgianDateTime();
|
||||
}
|
||||
|
||||
|
||||
//for (int i = 1; i <= count; i++)
|
||||
//{
|
||||
// command.EndTaskDate = previousDateEdited.ToFarsi();
|
||||
// operation = _taskApplication.CreateTask(command);
|
||||
// taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
// previousDateRaw = $"{year:0000}/{month:00}/01".FindeEndOfMonth().ToGeorgianDateTime();
|
||||
// bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
// while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
// {
|
||||
// previousDateEdited = previousDateRaw.AddDays(1);
|
||||
// isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
|
||||
// }
|
||||
// previousDateEdited = previousDateRaw;
|
||||
|
||||
//}
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case TaskScheduleUnitType.Week:
|
||||
for (int i = 1; i <= count; i++)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(kindOfWeekUnit))
|
||||
{
|
||||
throw new InvalidDataException();
|
||||
}
|
||||
|
||||
command.EndTaskDate = kindOfWeekUnit switch
|
||||
{
|
||||
"first" => previousDateRaw.GetNextDayOfWeek(DayOfWeek.Saturday).ToFarsi(),
|
||||
"last" => previousDateRaw.GetNextDayOfWeek(DayOfWeek.Thursday).ToFarsi(),
|
||||
_ => throw new InvalidDataException()
|
||||
};
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
{
|
||||
previousDateEdited = previousDateRaw.AddDays(1);
|
||||
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
|
||||
}
|
||||
previousDateRaw = command.EndTaskDate.ToGeorgianDateTime();
|
||||
previousDateEdited = previousDateRaw;
|
||||
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
case TaskScheduleUnitType.Day:
|
||||
|
||||
for (int i = 1; i <= count; i++)
|
||||
{
|
||||
command.EndTaskDate = previousDateEdited.ToFarsi();
|
||||
operation = _taskApplication.CreateTask(command);
|
||||
taskSchedule.SetLastEndTaskDate(previousDateEdited);
|
||||
previousDateRaw = previousDateRaw.AddDays(unitNumber);
|
||||
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
|
||||
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
|
||||
{
|
||||
previousDateEdited = previousDateRaw.AddDays(1);
|
||||
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
|
||||
|
||||
}
|
||||
|
||||
previousDateEdited = previousDateRaw;
|
||||
}
|
||||
break;
|
||||
|
||||
}
|
||||
_taskScheduleRepository.SaveChanges();
|
||||
//transaction.Complete();
|
||||
operation = operation.Succcedded();
|
||||
return operation;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
return operation.Failed(e.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
private OperationResult CreateUnlimitedTasks(CreateTask command)
|
||||
{
|
||||
using var transaction = new TransactionScope();
|
||||
|
||||
var lastDate = command.EndTaskDate.ToGeorgianDateTime();
|
||||
|
||||
var taskSchedule = new TaskSchedule(command.ScheduleCount, command.ScheduleType, command.ScheduleUnitType,
|
||||
command.ScheduleUnitNumber, lastDate);
|
||||
|
||||
_taskScheduleRepository.Create(taskSchedule);
|
||||
_taskScheduleRepository.SaveChanges();
|
||||
|
||||
command.TaskScheduleId = taskSchedule.id;
|
||||
|
||||
var operation = _taskApplication.CreateTask(command);
|
||||
if (!operation.IsSuccedded)
|
||||
return operation;
|
||||
|
||||
|
||||
_taskScheduleRepository.SaveChanges();
|
||||
transaction.Complete();
|
||||
return operation.Succcedded();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,7 +1,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework.Application;
|
||||
using AccountManagement.Application.Contracts.TaskSubject;
|
||||
using AccountManagement.Domain.TaskSubjectAgg;
|
||||
using static Microsoft.EntityFrameworkCore.DbLoggerCategory.Database;
|
||||
|
||||
namespace AccountManagement.Application;
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ using AccountManagement.Application.Contracts.Role;
|
||||
using AccountManagement.Application.Contracts.SubAccount;
|
||||
using AccountManagement.Application.Contracts.SubAccountPermissionSubtitle;
|
||||
using AccountManagement.Application.Contracts.Task;
|
||||
using AccountManagement.Application.Contracts.TaskSchedule;
|
||||
using AccountManagement.Application.Contracts.TaskSubject;
|
||||
using AccountManagement.Application.Contracts.Ticket;
|
||||
using AccountManagement.Application.Contracts.TicketAccessAccount;
|
||||
@@ -25,6 +26,7 @@ using AccountManagement.Domain.SubAccountPermissionSubtitle4Agg;
|
||||
using AccountManagement.Domain.SubAccountRoleAgg;
|
||||
using AccountManagement.Domain.TaskAgg;
|
||||
using AccountManagement.Domain.TaskMessageAgg;
|
||||
using AccountManagement.Domain.TaskScheduleAgg;
|
||||
using AccountManagement.Domain.TaskSubjectAgg;
|
||||
using AccountManagement.Domain.TicketAccessAccountAgg;
|
||||
using AccountManagement.Domain.TicketAgg;
|
||||
@@ -62,6 +64,8 @@ namespace AccountManagement.Configuration
|
||||
services.AddScoped<ITaskRepository, TaskRepository>();
|
||||
services.AddTransient<ITaskApplication, TaskApplication>();
|
||||
|
||||
services.AddTransient<ITaskScheduleApplication, TaskScheduleApplication>();
|
||||
services.AddTransient<ITaskScheduleRepository, TaskScheduleRepository>();
|
||||
|
||||
services.AddTransient<ITaskSubjectRepository, TaskSubjectRepository>();
|
||||
services.AddTransient<ITaskSubjectApplication, TaskSubjectApplication>();
|
||||
|
||||
@@ -33,6 +33,13 @@ namespace AccountManagement.Domain.AccountAgg
|
||||
|
||||
List<AccountViewModel> GetAccountsToEditWorkshop(long workshopId);
|
||||
|
||||
/// <summary>
|
||||
/// چک میکند که اکانتی با این ام کاربری وجود دارد یا نه
|
||||
/// </summary>
|
||||
/// <param name="userName"></param>
|
||||
/// <returns></returns>
|
||||
public bool CheckExistClientAccount(string userName);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace AccountManagement.Domain.AssignAgg;
|
||||
|
||||
public class Assign : EntityBase
|
||||
{
|
||||
public Assign(long taskId, long assignerId, long assignedId, int assignerPositionValue, string assignedName, int assignedPositionValue, DateTime endTaskDate, bool firstTimeCreation = false)
|
||||
public Assign(long taskId, long assignerId, long assignedId, int assignerPositionValue, string assignedName, int assignedPositionValue, DateTime endTaskDate, bool firstTimeCreation=false)
|
||||
{
|
||||
TaskId = taskId;
|
||||
AssignerId = assignerId;
|
||||
@@ -18,7 +18,7 @@ public class Assign : EntityBase
|
||||
AssignedPositionValue = assignedPositionValue;
|
||||
EndTaskDate = endTaskDate;
|
||||
FirstTimeCreation = firstTimeCreation;
|
||||
}
|
||||
}
|
||||
|
||||
//آیدی شخص ارسال کننده
|
||||
public long TaskId { get; private set; }
|
||||
@@ -52,7 +52,9 @@ public class Assign : EntityBase
|
||||
|
||||
public string? DoneDescription { get; private set; }
|
||||
public bool IsCanceledRequest { get; private set; }
|
||||
|
||||
public bool FirstTimeCreation { get; private set; }
|
||||
|
||||
public Tasks Task { get; set; }
|
||||
public List<TaskMessage> TaskMessageList { get; set; }
|
||||
|
||||
@@ -71,9 +73,9 @@ public class Assign : EntityBase
|
||||
{
|
||||
TimeRequest = false;
|
||||
AcceptedTimeRequest++;
|
||||
EndTaskDate = RequestDate.Value;
|
||||
EndTaskDate = RequestDate < DateTime.Today ? DateTime.Today : RequestDate.Value;
|
||||
|
||||
}
|
||||
}
|
||||
public void RejectTimeRequest()
|
||||
{
|
||||
TimeRequest = false;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Application;
|
||||
using _0_Framework.Domain;
|
||||
using AccountManagement.Application.Contracts.Task;
|
||||
@@ -88,11 +89,22 @@ public interface ITaskRepository:IRepository<long,Tasks>
|
||||
/// <returns></returns>
|
||||
List<TaskViewModel> GetTasksHaveTicket(TaskSearchModel searchModel);
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// لیست تسک های دوره ای ایجاد شده توسط کاربر
|
||||
/// </summary>
|
||||
/// <param name="searchModel"></param>
|
||||
/// <returns></returns>
|
||||
List<TaskViewModel> GetTaskScheduleList(TaskSearchModel searchModel);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// تعداد تسک های درخواستی. بدون تیکت
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
int GetRequestedTasksCount();
|
||||
Task<int> GetRequestedTasksCount();
|
||||
|
||||
/// <summary>
|
||||
/// گرفتن جزئیات درخواست وظیفه
|
||||
@@ -114,39 +126,38 @@ public interface ITaskRepository:IRepository<long,Tasks>
|
||||
/// <returns></returns>
|
||||
bool HasOverdueTasks(long userId);
|
||||
|
||||
/// <summary>
|
||||
///مجوع تعداد تسک های عقب افتاده و درخواستی
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
int RequestedAndOverdueTasksCount(long userId);
|
||||
/// <summary>
|
||||
/// مجوع تعداد تسک های عقب افتاده و درخواستی
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
Task<int> RequestedAndOverdueTasksCount(long userId);
|
||||
|
||||
/// <summary>
|
||||
/// تعداد تسک های دارای تیکت
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
int TasksHaveTicketCounts(long userId);
|
||||
Task<int> TasksHaveTicketCounts(long userId);
|
||||
|
||||
/// <summary>
|
||||
/// تعداد درخواست های تسک های دارا تیکت
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
int TasksHaveTicketRequestsCount(long userId);
|
||||
Task<int> TasksHaveTicketRequestsCount(long userId);
|
||||
|
||||
/// <summary>
|
||||
///تعداد تسک های شخصی و دریافتی برای امروز و یا عقب افتاده
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
int OverdueTasksCount(long userId);
|
||||
/// <summary>
|
||||
/// تعداد تسک های شخصی و دریافتی برای امروز و یا عقب افتاده
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
Task<int> OverdueTasksCount(long userId);
|
||||
|
||||
|
||||
// گرفتن پیام های مربوط به هر تسک
|
||||
|
||||
List<Tasks> GetTasksByTaskScheduleId(long taskScheduleId);
|
||||
|
||||
|
||||
//OperationResult MoveDataFRomTaskToAssign();
|
||||
|
||||
void RemoveRange(IEnumerable<Tasks> tasks);
|
||||
}
|
||||
@@ -1,8 +1,11 @@
|
||||
using _0_Framework.Domain;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Domain;
|
||||
using AccountManagement.Application.Contracts.TaskSchedule;
|
||||
|
||||
namespace AccountManagement.Domain.TaskScheduleAgg;
|
||||
|
||||
public interface ITaskScheduleRepository:IRepository<long,TaskSchedule>
|
||||
public interface ITaskScheduleRepository : IRepository<long, TaskSchedule>
|
||||
{
|
||||
|
||||
Task<TaskScheduleDetailsViewModel> GetDetails(long id);
|
||||
void Remove(TaskSchedule entity);
|
||||
}
|
||||
@@ -1,29 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework.Application;
|
||||
using _0_Framework.Domain;
|
||||
using AccountManagement.Application.Contracts.Task;
|
||||
using AccountManagement.Domain.TaskAgg;
|
||||
|
||||
namespace AccountManagement.Domain.TaskScheduleAgg;
|
||||
|
||||
public class TaskSchedule:EntityBase
|
||||
{
|
||||
public TaskSchedule(string count, string type, string unitType, string unitNumber, DateTime lastEndTaskDate)
|
||||
public TaskSchedule(string count, TaskScheduleType type, TaskScheduleUnitType unitType, string unitNumber, DateTime lastEndTaskDate)
|
||||
{
|
||||
Count = count;
|
||||
Type = type;
|
||||
UnitType = unitType;
|
||||
UnitNumber = unitNumber;
|
||||
LastEndTaskDate = lastEndTaskDate;
|
||||
IsActive = IsActive.False;
|
||||
}
|
||||
public string Count { get; private set; }
|
||||
public string Type { get; private set; }
|
||||
public string UnitType { get; private set; }
|
||||
public TaskScheduleType Type { get; private set; }
|
||||
public TaskScheduleUnitType UnitType { get; private set; }
|
||||
public string UnitNumber { get; private set; }
|
||||
public DateTime LastEndTaskDate { get; private set; }
|
||||
public IsActive IsActive { get; private set; }
|
||||
public List<Tasks> TasksList { get; set; }
|
||||
|
||||
public void SetLastEndTaskDate(DateTime lastEndTaskDate)
|
||||
{
|
||||
LastEndTaskDate = lastEndTaskDate;
|
||||
}
|
||||
|
||||
public void DeActive()
|
||||
{
|
||||
IsActive = IsActive.False;
|
||||
}
|
||||
}
|
||||
@@ -27,6 +27,7 @@ using AccountManagement.Domain.SubAccountPermissionSubtitle3Agg;
|
||||
using AccountManagement.Domain.SubAccountPermissionSubtitle4Agg;
|
||||
using AccountManagement.Domain.SubAccountRoleAgg;
|
||||
using AccountMangement.Infrastructure.EFCore.Seed;
|
||||
using AccountManagement.Domain.TaskScheduleAgg;
|
||||
|
||||
namespace AccountMangement.Infrastructure.EFCore
|
||||
{
|
||||
@@ -57,6 +58,9 @@ namespace AccountMangement.Infrastructure.EFCore
|
||||
|
||||
public DbSet<TicketAccessAccount> TicketAccessAccounts { get; set; }
|
||||
|
||||
public DbSet<TaskSchedule> TaskSchedules { get; set; }
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region Pooya
|
||||
|
||||
@@ -12,9 +12,10 @@ public class TaskScheduleMapping : IEntityTypeConfiguration<TaskSchedule>
|
||||
builder.HasKey(x => x.id);
|
||||
|
||||
builder.Property(x => x.Count).HasMaxLength(10);
|
||||
builder.Property(x => x.Type).HasMaxLength(12);
|
||||
builder.Property(x => x.Type).HasConversion<string>().HasMaxLength(12);
|
||||
builder.Property(x => x.UnitNumber).HasMaxLength(10);
|
||||
builder.Property(x => x.UnitType).HasMaxLength(10);
|
||||
builder.Property(x => x.UnitType).HasConversion<string>().HasMaxLength(10);
|
||||
builder.Property(x => x.IsActive).HasConversion<string>().HasMaxLength(5);
|
||||
|
||||
builder.HasMany(x => x.TasksList).WithOne(x => x.TaskSchedule)
|
||||
.HasForeignKey(x => x.TaskScheduleId);
|
||||
|
||||
1274
AccountMangement.Infrastructure.EFCore/Migrations/20250407150638_add TaskSchedule.Designer.cs
generated
Normal file
1274
AccountMangement.Infrastructure.EFCore/Migrations/20250407150638_add TaskSchedule.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,74 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace AccountMangement.Infrastructure.EFCore.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class addTaskSchedule : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AlterColumn<string>(
|
||||
name: "UnitType",
|
||||
table: "TaskSchedules",
|
||||
type: "nvarchar(10)",
|
||||
maxLength: 10,
|
||||
nullable: false,
|
||||
defaultValue: "",
|
||||
oldClrType: typeof(string),
|
||||
oldType: "nvarchar(10)",
|
||||
oldMaxLength: 10,
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<string>(
|
||||
name: "Type",
|
||||
table: "TaskSchedules",
|
||||
type: "nvarchar(12)",
|
||||
maxLength: 12,
|
||||
nullable: false,
|
||||
defaultValue: "",
|
||||
oldClrType: typeof(string),
|
||||
oldType: "nvarchar(12)",
|
||||
oldMaxLength: 12,
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "IsCanceled",
|
||||
table: "TaskSchedules",
|
||||
type: "nvarchar(5)",
|
||||
maxLength: 5,
|
||||
nullable: false,
|
||||
defaultValue: "");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "IsCanceled",
|
||||
table: "TaskSchedules");
|
||||
|
||||
migrationBuilder.AlterColumn<string>(
|
||||
name: "UnitType",
|
||||
table: "TaskSchedules",
|
||||
type: "nvarchar(10)",
|
||||
maxLength: 10,
|
||||
nullable: true,
|
||||
oldClrType: typeof(string),
|
||||
oldType: "nvarchar(10)",
|
||||
oldMaxLength: 10);
|
||||
|
||||
migrationBuilder.AlterColumn<string>(
|
||||
name: "Type",
|
||||
table: "TaskSchedules",
|
||||
type: "nvarchar(12)",
|
||||
maxLength: 12,
|
||||
nullable: true,
|
||||
oldClrType: typeof(string),
|
||||
oldType: "nvarchar(12)",
|
||||
oldMaxLength: 12);
|
||||
}
|
||||
}
|
||||
}
|
||||
1274
AccountMangement.Infrastructure.EFCore/Migrations/20250416121822_taskSchedule rename isActive.Designer.cs
generated
Normal file
1274
AccountMangement.Infrastructure.EFCore/Migrations/20250416121822_taskSchedule rename isActive.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,28 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace AccountMangement.Infrastructure.EFCore.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class taskSchedulerenameisActive : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.RenameColumn(
|
||||
name: "IsCanceled",
|
||||
table: "TaskSchedules",
|
||||
newName: "IsActive");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.RenameColumn(
|
||||
name: "IsActive",
|
||||
table: "TaskSchedules",
|
||||
newName: "IsCanceled");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -759,10 +759,16 @@ namespace AccountMangement.Infrastructure.EFCore.Migrations
|
||||
b.Property<DateTime>("CreationDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<string>("IsActive")
|
||||
.IsRequired()
|
||||
.HasMaxLength(5)
|
||||
.HasColumnType("nvarchar(5)");
|
||||
|
||||
b.Property<DateTime>("LastEndTaskDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<string>("Type")
|
||||
.IsRequired()
|
||||
.HasMaxLength(12)
|
||||
.HasColumnType("nvarchar(12)");
|
||||
|
||||
@@ -771,6 +777,7 @@ namespace AccountMangement.Infrastructure.EFCore.Migrations
|
||||
.HasColumnType("nvarchar(10)");
|
||||
|
||||
b.Property<string>("UnitType")
|
||||
.IsRequired()
|
||||
.HasMaxLength(10)
|
||||
.HasColumnType("nvarchar(10)");
|
||||
|
||||
|
||||
@@ -332,4 +332,9 @@ public class AccountRepository : RepositoryBase<long, Account>, IAccountReposito
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
public bool CheckExistClientAccount(string userName)
|
||||
{
|
||||
return _context.Accounts.Any(x => x.Username == userName);
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,7 @@ using _0_Framework.InfraStructure;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Application;
|
||||
using AccountManagement.Application.Contracts.Account;
|
||||
using AccountManagement.Application.Contracts.Assign;
|
||||
@@ -46,7 +47,6 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
|
||||
public EditTask GetDetails(long TaskId)
|
||||
{
|
||||
var task = Get(TaskId);
|
||||
|
||||
var userId = _authHelper.CurrentAccountId();
|
||||
|
||||
@@ -94,7 +94,8 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
Fullname = a.Fullname,
|
||||
Id = a.id,
|
||||
|
||||
}).FirstOrDefault()
|
||||
}).FirstOrDefault(),
|
||||
TaskScheduleId = x.TaskScheduleId ?? 0
|
||||
|
||||
}).FirstOrDefault();
|
||||
|
||||
@@ -112,6 +113,17 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
res.IsCancel = res.AssignViewModels.First(x => x.AssignedId == userId).IsCancel;
|
||||
}
|
||||
|
||||
if (res.TaskScheduleId>0)
|
||||
{
|
||||
var taskSchedule = _accountContext.TaskSchedules.FirstOrDefault(x => x.id == res.TaskScheduleId);
|
||||
|
||||
res.ScheduleUnitType = taskSchedule.UnitType;
|
||||
res.ScheduleType = taskSchedule.Type;
|
||||
res.ScheduleCount = taskSchedule.Count;
|
||||
res.ScheduleUnitNumber = taskSchedule.UnitNumber;
|
||||
}
|
||||
|
||||
|
||||
//_accountContext.Tasks.Where(x => x.id == TaskId).Select(x => new EditTask()
|
||||
//{
|
||||
// EndTaskDate = x.EndTaskDate.ToFarsi(),
|
||||
@@ -968,7 +980,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
.ThenInclude(x => x.Media)
|
||||
.Where(x =>
|
||||
x.Task.IsActiveString == "true" && (x.AssignerId == accountId && x.AssignedId != accountId) && (!x.IsCanceledRequest && !x.TimeRequest && !x.IsDoneRequest) && x.Task.TicketId == null &&
|
||||
x.Task.SenderId == accountId)
|
||||
x.Task.SenderId == accountId && x.Task.TaskScheduleId == null)
|
||||
.Select(x =>
|
||||
new TaskViewModel()
|
||||
{
|
||||
@@ -1839,7 +1851,307 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
return final;
|
||||
}
|
||||
|
||||
public List<TaskViewModel> GetTaskScheduleList(TaskSearchModel searchModel)
|
||||
{
|
||||
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
|
||||
var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value);
|
||||
var emptyAcc = new AccountViewModel()
|
||||
{
|
||||
Fullname = "-",
|
||||
PositionValue = 0
|
||||
};
|
||||
|
||||
var raw = _accountContext.Assigns.Include(x => x.Task).ThenInclude(x => x.TaskMedias)
|
||||
.ThenInclude(x => x.Media)
|
||||
.Include(x => x.Task).ThenInclude(x => x.TaskSchedule)
|
||||
.Where(x =>
|
||||
x.Task.IsActiveString == "true" && x.Task.SenderId == accountId
|
||||
&& x.Task.TaskScheduleId != null && x.Task.TaskScheduleId > 0 && (!x.IsCanceledRequest && !x.TimeRequest && !x.IsDoneRequest));
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
|
||||
{
|
||||
raw = raw.Where(x =>
|
||||
(x.Task.Description != null && x.Task.Description.Contains(searchModel.GeneralSearch))
|
||||
|| x.Task.ContractingPartyName.Contains(searchModel.GeneralSearch)
|
||||
|| x.Task.Title.Contains(searchModel.GeneralSearch));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
var query = raw.GroupBy(x => x.Task.TaskScheduleId).Select(x =>
|
||||
new TaskViewModel()
|
||||
{
|
||||
AssignedId = x.First().AssignedId,
|
||||
AssignerId = x.First().AssignerId,
|
||||
CreateDate = x.First().Task.CreationDate.ToFarsi(),
|
||||
EndTaskDateFA = x.First().EndTaskDate.ToFarsi(),
|
||||
IsDone = x.First().IsDone,
|
||||
EndTaskDateGE = x.First().EndTaskDate,
|
||||
Name = x.First().Task.Title,
|
||||
RequestCancel = x.First().IsCanceledRequest,
|
||||
RequestTime = x.First().TimeRequest,
|
||||
Id = x.First().Task.id,
|
||||
CreateTaskDateGE = x.First().Task.CreationDate,
|
||||
IsCancel = x.First().IsCancel,
|
||||
AcceptedTimeRequest = x.First().AcceptedTimeRequest,
|
||||
IsCancelRequest = x.First().IsCanceledRequest,
|
||||
ContractingPartyName = x.First().Task.ContractingPartyName,
|
||||
MediaCount = _accountContext.TaskMedias.Count(m => m.TaskId == x.First().Task.id),
|
||||
Description = x.First().Task.Description,
|
||||
IsDoneRequest = x.First().IsDoneRequest,
|
||||
ScheduleType = x.First().Task.TaskSchedule.Type,
|
||||
ScheduleUnitType = x.First().Task.TaskSchedule.UnitType,
|
||||
TaskScheduleId = (long)x.First().Task.TaskScheduleId
|
||||
|
||||
}
|
||||
);
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
|
||||
{
|
||||
query = query.Where(x =>
|
||||
(x.Description != null && x.Description.Contains(searchModel.GeneralSearch))
|
||||
|| x.ContractingPartyName.Contains(searchModel.GeneralSearch)
|
||||
|| x.Name.Contains(searchModel.GeneralSearch));
|
||||
}
|
||||
|
||||
var res = query.Select(x => new TaskViewModel()
|
||||
{
|
||||
Sender = _accountContext.Accounts.Include(a => a.Position).Select(a => new AccountViewModel()
|
||||
{
|
||||
PositionValue = a.Position.PositionValue,
|
||||
Id = a.id,
|
||||
Fullname = a.Fullname,
|
||||
}).FirstOrDefault(a => a.Id == x.AssignerId),
|
||||
|
||||
SelfName = _accountContext.Accounts.FirstOrDefault(a => a.id == accountId).Fullname,
|
||||
|
||||
Assigned = _accountContext.Assigns.Where(a => a.TaskId == x.Id)
|
||||
.Where(a => a.AssignedPositionValue >= positionValue).Select(a => a.AssignedId)
|
||||
.ToList(),
|
||||
CreateDate = x.CreateDate,
|
||||
EndTaskDateFA = x.EndTaskDateFA,
|
||||
IsDone = x.IsDone,
|
||||
EndTaskDateGE = x.EndTaskDateGE,
|
||||
Name = x.Name,
|
||||
RequestCancel = x.RequestCancel,
|
||||
RequestTime = x.RequestTime,
|
||||
Id = x.Id,
|
||||
CreateTaskDateGE = x.CreateTaskDateGE,
|
||||
IsCancel = x.IsCancel,
|
||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||
IsCancelRequest = x.IsCancelRequest,
|
||||
ContractingPartyName = x.ContractingPartyName,
|
||||
MediaCount = x.MediaCount,
|
||||
Description = x.Description,
|
||||
IsDoneRequest = x.IsDoneRequest,
|
||||
ScheduleType = x.ScheduleType,
|
||||
ScheduleUnitType = x.ScheduleUnitType,
|
||||
TaskScheduleId = x.TaskScheduleId
|
||||
});
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.StartDate) && !string.IsNullOrWhiteSpace(searchModel.EndDate))
|
||||
{
|
||||
var start = searchModel.StartDate.ToGeorgianDateTime();
|
||||
var end = searchModel.EndDate.ToGeorgianDateTime();
|
||||
res = res.Where(x =>
|
||||
((start > x.CreateTaskDateGE && x.CreateTaskDateGE < end) &&
|
||||
|
||||
(end > x.EndTaskDateGE && x.EndTaskDateGE > start))
|
||||
|| ((start < x.CreateTaskDateGE && x.CreateTaskDateGE < end) &&
|
||||
|
||||
(end < x.EndTaskDateGE && x.EndTaskDateGE > start))
|
||||
|| ((start < x.CreateTaskDateGE && x.CreateTaskDateGE < end) &&
|
||||
|
||||
(end > x.EndTaskDateGE && x.EndTaskDateGE > start))
|
||||
|| ((start > x.CreateTaskDateGE && x.CreateTaskDateGE < end) &&
|
||||
|
||||
(end < x.EndTaskDateGE && x.EndTaskDateGE > end)));
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.IsDoneRequest))
|
||||
{
|
||||
bool isDoneReq = bool.Parse(searchModel.IsDoneRequest);
|
||||
res = res.Where(x => x.IsDoneRequest == isDoneReq);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.IsDone))
|
||||
{
|
||||
bool isDone = bool.Parse(searchModel.IsDone);
|
||||
res = res.Where(x => x.IsDone == isDone);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.IsCanceled))
|
||||
{
|
||||
bool isCancel = bool.Parse(searchModel.IsCanceled);
|
||||
res = res.Where(x => x.IsCancel == isCancel);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.IsTimeRequest))
|
||||
{
|
||||
bool isTimeRequest = bool.Parse(searchModel.IsTimeRequest);
|
||||
res = res.Where(x => x.RequestTime == isTimeRequest);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.TimeRequestAccepted))
|
||||
{
|
||||
res = res.Where(x => x.AcceptedTimeRequest > 0);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(searchModel.IsCancelRequest))
|
||||
{
|
||||
bool isCancelReq = bool.Parse(searchModel.IsCancelRequest);
|
||||
res = res.Where(x => x.IsCancelRequest == isCancelReq);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
var result = res.AsEnumerable();
|
||||
|
||||
|
||||
if (searchModel.AccountId > 0)
|
||||
{
|
||||
result = result.Where(x =>
|
||||
x.Sender.Id == searchModel.AccountId || x.Assigned.Contains(searchModel.AccountId));
|
||||
}
|
||||
|
||||
|
||||
var orderResult = result.OrderByDescending(x => x.IsCancel ? 0 : 1).ThenBy(x => x.IsDone ? 1 : 0)
|
||||
.ThenBy(x => x.EndTaskDateGE);
|
||||
|
||||
|
||||
var final = orderResult.Skip(searchModel.PageIndex).Take(30).ToList();
|
||||
|
||||
final = final.Select(x => new TaskViewModel()
|
||||
{
|
||||
AssignViewModels = _accountContext.Accounts.Include(x => x.Position)
|
||||
.Where(a => x.Assigned.Contains(a.id) && accountId != a.id)
|
||||
.Select(a => new AssignViewModel()
|
||||
{
|
||||
AssignedName = a.Fullname,
|
||||
AssignedPositionValue = a.Position.PositionValue
|
||||
}).ToList(),
|
||||
Sender = x.Sender,
|
||||
SelfAssigner = x.Sender.Id == accountId ? true : false,
|
||||
Assigned = x.Assigned,
|
||||
SelfAssigned = x.Assigned.Any(a => a == accountId) ? true : false,
|
||||
CreateDate = x.CreateDate,
|
||||
EndTaskDateFA = x.EndTaskDateFA,
|
||||
IsDone = x.IsDone,
|
||||
EndTaskDateGE = x.EndTaskDateGE,
|
||||
Name = x.Name,
|
||||
RequestCancel = x.RequestCancel,
|
||||
RequestTime = x.RequestTime,
|
||||
Id = x.Id,
|
||||
CreateTaskDateGE = x.CreateTaskDateGE,
|
||||
IsCancel = x.IsCancel,
|
||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||
IsCancelRequest = x.IsCancelRequest,
|
||||
ContractingPartyName = x.ContractingPartyName,
|
||||
MediaCount = x.MediaCount,
|
||||
SelfName = x.SelfName,
|
||||
Description = x.Description,
|
||||
IsDoneRequest = x.IsDoneRequest,
|
||||
ScheduleType = x.ScheduleType,
|
||||
ScheduleUnitType = x.ScheduleUnitType,
|
||||
TaskScheduleId = x.TaskScheduleId
|
||||
|
||||
|
||||
}).ToList();
|
||||
|
||||
|
||||
final = final.Select(x => new TaskViewModel()
|
||||
{
|
||||
|
||||
AssignList = x.AssignViewModels.GroupBy(a => a.AssignedPositionValue).Select(a => new AssignList()
|
||||
{
|
||||
AssignViewModels = a.ToList(),
|
||||
PosValue = a.Key
|
||||
}).ToList(),
|
||||
Sender = x.Sender,
|
||||
Assigned = x.Assigned,
|
||||
CreateDate = x.CreateDate,
|
||||
EndTaskDateFA = x.EndTaskDateFA,
|
||||
IsDone = x.IsDone,
|
||||
EndTaskDateGE = x.EndTaskDateGE,
|
||||
Name = x.Name,
|
||||
RequestCancel = x.RequestCancel,
|
||||
RequestTime = x.RequestTime,
|
||||
Id = x.Id,
|
||||
CreateTaskDateGE = x.CreateTaskDateGE,
|
||||
IsCancel = x.IsCancel,
|
||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||
IsCancelRequest = x.IsCancelRequest,
|
||||
ContractingPartyName = x.ContractingPartyName,
|
||||
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
|
||||
MediaCount = x.MediaCount,
|
||||
HasAttachment = x.MediaCount > 0,
|
||||
SelfName = x.SelfName,
|
||||
SelfAssigned = x.SelfAssigned,
|
||||
SelfAssigner = x.SelfAssigner,
|
||||
Description = x.Description,
|
||||
IsDoneRequest = x.IsDoneRequest,
|
||||
AssignViewModels = x.AssignViewModels,
|
||||
ScheduleType = x.ScheduleType,
|
||||
ScheduleUnitType = x.ScheduleUnitType,
|
||||
TaskScheduleId = x.TaskScheduleId
|
||||
|
||||
}).ToList();
|
||||
|
||||
final = final.Select(x => new TaskViewModel()
|
||||
{
|
||||
|
||||
AssignList = !(x.SelfAssigned || x.SelfAssigner)
|
||||
? AddAssign(x.AssignList, x.Sender)
|
||||
: x.AssignList,
|
||||
Sender = !(x.SelfAssigned || x.SelfAssigner)
|
||||
? new AccountViewModel()
|
||||
{
|
||||
PositionValue = 0,
|
||||
Fullname = "-"
|
||||
}
|
||||
: x.Sender,
|
||||
Assigned = x.Assigned,
|
||||
CreateDate = x.CreateDate,
|
||||
EndTaskDateFA = x.EndTaskDateFA,
|
||||
IsDone = x.IsDone,
|
||||
EndTaskDateGE = x.EndTaskDateGE,
|
||||
Name = x.Name,
|
||||
RequestCancel = x.RequestCancel,
|
||||
RequestTime = x.RequestTime,
|
||||
Id = x.Id,
|
||||
CreateTaskDateGE = x.CreateTaskDateGE,
|
||||
IsCancel = x.IsCancel,
|
||||
AcceptedTimeRequest = x.AcceptedTimeRequest,
|
||||
IsCancelRequest = x.IsCancelRequest,
|
||||
ContractingPartyName = x.ContractingPartyName,
|
||||
Color = x.Color,
|
||||
MediaCount = x.MediaCount,
|
||||
HasAttachment = x.HasAttachment,
|
||||
SelfName = !(x.SelfAssigned || x.SelfAssigner) ? "-" : x.SelfName,
|
||||
EndTaskTime = $"{x.EndTaskDateGE.Hour}:{x.EndTaskDateGE.Minute}:{x.EndTaskDateGE.Second}" != "23:59:59"
|
||||
? $"{x.EndTaskDateGE.Hour}:{x.EndTaskDateGE.Minute}"
|
||||
: "",
|
||||
Description = x.Description,
|
||||
IsDoneRequest = x.IsDoneRequest,
|
||||
CanAssign = _positionRepository.GetLastPositionValue() != positionValue,
|
||||
CanDelete = x.Sender.Id == accountId,
|
||||
CanEdit = x.Sender.Id == accountId && !(_accountContext.Assigns.Any(a => a.TaskId == x.Id && (a.AcceptedTimeRequest > 0 || a.IsCanceledRequest
|
||||
|| a.IsDoneRequest || a.TimeRequest || a.IsCancel || a.IsDone))),
|
||||
Assigner = x.Sender.Id == accountId ? emptyAcc.Fullname : x.Sender.Fullname,
|
||||
AssignedReceiverViewModel = x.AssignViewModels.Any()
|
||||
? x.AssignViewModels.MinBy(a => a.AssignedPositionValue)
|
||||
: new()
|
||||
{
|
||||
AssignedName = "-",
|
||||
AssignedPositionValue = 0
|
||||
},
|
||||
ScheduleType = x.ScheduleType,
|
||||
ScheduleUnitType = x.ScheduleUnitType,
|
||||
TaskScheduleId = x.TaskScheduleId
|
||||
|
||||
}).ToList();
|
||||
return final;
|
||||
}
|
||||
|
||||
public string SetTasksColors(DateTime date, bool isCancel)
|
||||
{
|
||||
@@ -1888,23 +2200,23 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
|
||||
}
|
||||
|
||||
public int GetRequestedTasksCount()
|
||||
public async Task<int> GetRequestedTasksCount()
|
||||
{
|
||||
var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value);
|
||||
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
|
||||
if (positionValue == 1)
|
||||
{
|
||||
return _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
return await _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel &&
|
||||
(x.IsCanceledRequest || x.TimeRequest || x.IsDoneRequest) && (accountId == x.Task.SenderId) && x.Task.TicketId == null).GroupBy(x => x.TaskId)
|
||||
.Select(x => x.First()).Count();
|
||||
.Select(x => x.First()).CountAsync();
|
||||
}
|
||||
else
|
||||
{
|
||||
return _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
return await _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel &&
|
||||
(x.IsCanceledRequest || x.TimeRequest || x.IsDoneRequest) && (accountId == x.Task.SenderId) && x.Task.TicketId == null).GroupBy(x => x.TaskId)
|
||||
.Select(x => x.First()).Count();
|
||||
.Select(x => x.First()).CountAsync();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2001,7 +2313,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
|
||||
}
|
||||
|
||||
public int RequestedAndOverdueTasksCount(long userId)
|
||||
public async Task<int> RequestedAndOverdueTasksCount(long userId)
|
||||
{
|
||||
var account = _accountRepository.GetIncludePositions(userId);
|
||||
if (account.Position == null)
|
||||
@@ -2009,7 +2321,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
|
||||
DateTime now = DateTime.Now;
|
||||
|
||||
var overdueTasksCount = OverdueTasksCount(userId);
|
||||
var overdueTasksCount = await OverdueTasksCount(userId);
|
||||
|
||||
|
||||
//overdueTasksCount = _accountContext.Tasks.Include(x =>
|
||||
@@ -2018,10 +2330,10 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
// !x.Assigns.Any(a => a.TimeRequest)
|
||||
// && x.Assigns.Any(a => a.AssignedId == userId) &&
|
||||
// (x.Assigns.First(a => a.AssignedId == userId).EndTaskDate.Date <= DateTime.Now.Date));
|
||||
var overdueRequestsCount = GetRequestedTasksCount();
|
||||
var overdueRequestsCount = await GetRequestedTasksCount();
|
||||
|
||||
var ticketRequested = TasksHaveTicketRequestsCount(userId);
|
||||
var overdueTicket = TasksHaveTicketCounts(userId);
|
||||
var ticketRequested = await TasksHaveTicketRequestsCount(userId);
|
||||
var overdueTicket = await TasksHaveTicketCounts(userId);
|
||||
|
||||
return overdueTasksCount + overdueRequestsCount + ticketRequested + overdueTicket;
|
||||
}
|
||||
@@ -2036,7 +2348,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
return overdueRequestsCount;
|
||||
}
|
||||
|
||||
public int OverdueTasksCount(long userId)
|
||||
public async Task<int> OverdueTasksCount(long userId)
|
||||
{
|
||||
var account = _accountRepository.GetIncludePositions(userId);
|
||||
|
||||
@@ -2048,12 +2360,12 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
int overdueTasksCount;
|
||||
if (positionValue == 1)
|
||||
{
|
||||
overdueTasksCount = _accountContext.Assigns.Include(x => x.Task).Where(x => x.AssignedId == userId &&
|
||||
overdueTasksCount = await _accountContext.Assigns.Include(x => x.Task).Where(x => x.AssignedId == userId &&
|
||||
x.AssignerId == userId && x.Task.Assigns.Count == 1 &&
|
||||
!x.IsCancel && !x.IsCanceledRequest &&
|
||||
!x.IsDone && !x.TimeRequest && !x.IsDoneRequest && x.EndTaskDate.Date <= DateTime.Now.Date &&
|
||||
x.Task.IsActiveString == "true" && x.Task.TicketId == null)
|
||||
.GroupBy(x => x.TaskId).Select(x => x.First()).Count();
|
||||
.GroupBy(x => x.TaskId).Select(x => x.First()).CountAsync();
|
||||
|
||||
//overdueTasksCount = _accountContext.Tasks.Include(x =>
|
||||
// x.Assigns).Count(x => !x.Assigns.Any(a => a.IsCancel) && !x.Assigns.Any(a => a.IsCanceledRequest) &&
|
||||
@@ -2065,43 +2377,49 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
|
||||
}
|
||||
else
|
||||
{
|
||||
overdueTasksCount = _accountContext.Assigns.Include(x => x.Task).Where(x => x.AssignedId == userId &&
|
||||
overdueTasksCount = await _accountContext.Assigns.Include(x => x.Task).Where(x => x.AssignedId == userId &&
|
||||
!x.IsCancel && !x.IsCanceledRequest &&
|
||||
!x.IsDone && !x.TimeRequest && !x.IsDoneRequest && x.EndTaskDate.Date <= DateTime.Now.Date &&
|
||||
x.Task.IsActiveString == "true" && x.Task.TicketId == null)
|
||||
.GroupBy(x => x.TaskId).Select(x => x.First()).Count();
|
||||
.GroupBy(x => x.TaskId).Select(x => x.First()).CountAsync();
|
||||
;
|
||||
}
|
||||
|
||||
return overdueTasksCount;
|
||||
}
|
||||
|
||||
public int TasksHaveTicketCounts(long userId)
|
||||
public List<Tasks> GetTasksByTaskScheduleId(long taskScheduleId)
|
||||
{
|
||||
return _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
return _accountContext.Tasks.Include(x=>x.Assigns).Where(x => x.TaskScheduleId != null && x.TaskScheduleId == taskScheduleId).ToList();
|
||||
}
|
||||
|
||||
|
||||
public async Task<int> TasksHaveTicketCounts(long userId)
|
||||
{
|
||||
return await _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel &&
|
||||
!x.IsCanceledRequest && !x.IsDoneRequest &&
|
||||
!x.TimeRequest && (x.AssignerId == userId || x.AssignedId == userId) &&
|
||||
(x.Task.TicketId != null && x.Task.TicketId > 0)).GroupBy(x => x.TaskId).Count();
|
||||
(x.Task.TicketId != null && x.Task.TicketId > 0)).GroupBy(x => x.TaskId).CountAsync();
|
||||
}
|
||||
|
||||
public int TasksHaveTicketRequestsCount(long userId)
|
||||
public async Task<int> TasksHaveTicketRequestsCount(long userId)
|
||||
{
|
||||
var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value);
|
||||
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
|
||||
if (positionValue == 1)
|
||||
{
|
||||
return _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
return await _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel &&
|
||||
(x.IsCanceledRequest || x.TimeRequest || x.IsDoneRequest) && (accountId == x.Task.SenderId) && x.Task.TicketId != null && x.Task.TicketId > 0).GroupBy(x => x.TaskId)
|
||||
.Select(x => x.First()).Count();
|
||||
.Select(x => x.First()).CountAsync();
|
||||
}
|
||||
else
|
||||
{
|
||||
return _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
return await _accountContext.Assigns.Include(x => x.Task).Where(x =>
|
||||
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel &&
|
||||
(x.IsCanceledRequest || x.TimeRequest || x.IsDoneRequest) && (accountId == x.Task.SenderId) && x.Task.TicketId != null && x.Task.TicketId > 0).GroupBy(x => x.TaskId)
|
||||
.Select(x => x.First()).Count();
|
||||
.Select(x => x.First()).CountAsync();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,66 @@
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Application;
|
||||
using _0_Framework.InfraStructure;
|
||||
using AccountManagement.Application.Contracts.Media;
|
||||
using AccountManagement.Application.Contracts.TaskSchedule;
|
||||
using AccountManagement.Domain.TaskScheduleAgg;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace AccountMangement.Infrastructure.EFCore.Repository;
|
||||
|
||||
public class TaskScheduleRepository: RepositoryBase<long, TaskSchedule>, ITaskScheduleRepository
|
||||
{
|
||||
private readonly AccountContext _accountContext;
|
||||
|
||||
public TaskScheduleRepository(AccountContext accountContext):base(accountContext)
|
||||
{
|
||||
_accountContext = accountContext;
|
||||
}
|
||||
|
||||
public async Task<TaskScheduleDetailsViewModel> GetDetails(long id)
|
||||
{
|
||||
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);
|
||||
if (taskSchedule == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
var firstTaskDetails = taskSchedule.TasksList.First();
|
||||
|
||||
var firstTimeAssigns = firstTaskDetails.Assigns.Where(x=>x.FirstTimeCreation).ToList();
|
||||
|
||||
var assignedIds = firstTimeAssigns.Select(x => x.AssignedId).ToList();
|
||||
|
||||
var senderId = firstTaskDetails.SenderId;
|
||||
|
||||
|
||||
var assignedAccounts = await _accountContext.Accounts.Where(x => assignedIds.Contains(x.id)).ToListAsync();
|
||||
|
||||
var sender =
|
||||
await _accountContext.Accounts.FirstOrDefaultAsync(x => senderId == x.id);
|
||||
|
||||
var viewModel = new TaskScheduleDetailsViewModel()
|
||||
{
|
||||
Title = firstTaskDetails.Title,
|
||||
Description = firstTaskDetails.Description,
|
||||
ContractingPartyName = firstTaskDetails.ContractingPartyName,
|
||||
AssignedName = assignedAccounts.Select(x=>x.Fullname).ToList(),
|
||||
CreationDateFa = firstTaskDetails.CreationDate.ToFarsi(),
|
||||
SenderName = sender.Fullname,
|
||||
TaskScheduleType = taskSchedule.Type,
|
||||
TaskScheduleUnitType = taskSchedule.UnitType,
|
||||
UnitNumber = taskSchedule.UnitNumber,
|
||||
Medias = firstTaskDetails.TaskMedias.Select(x=> new MediaViewModel()
|
||||
{
|
||||
Category = x.Media.Category,
|
||||
Id = x.MediaId,
|
||||
Type = x.Media.Type,
|
||||
Path = x.Media.Path,
|
||||
}).ToList(),
|
||||
};
|
||||
return viewModel;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,11 +1,12 @@
|
||||
using _0_Framework.Application;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework.Application;
|
||||
using _0_Framework.Domain;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
||||
using Company.Domain.CustomizeCheckoutAgg.ValueObjects;
|
||||
using Company.Domain.EmployeeAgg;
|
||||
using Company.Domain.WorkshopAgg;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.AspNetCore.Authentication.Cookies;
|
||||
|
||||
|
||||
namespace Company.Domain.CustomizeCheckoutAgg;
|
||||
@@ -15,22 +16,23 @@ namespace Company.Domain.CustomizeCheckoutAgg;
|
||||
public class CustomizeCheckout : EntityBase
|
||||
{
|
||||
private CustomizeCheckout()
|
||||
{
|
||||
}
|
||||
{ }
|
||||
public CustomizeCheckout(DateTime contractStart, DateTime contractEnd, long employeeId, string employeeFName,
|
||||
string employeeLName, DateTime employeeDateOfBirth,
|
||||
string employeeNationalCode, string workshopFullName, long workshopId, long? contractId,
|
||||
double monthlySalary, double fridayPay, double overTimePay, double baseYearsPay, double bonusesPay,
|
||||
double nightWorkPay,
|
||||
double marriedAllowance, double shiftPay, double familyAllowance, double leavePay, double insuranceDeduction,
|
||||
double fineAbsenceDeduction,
|
||||
double lateToWorkDeduction, double earlyExitDeduction, double rewardPay, double salaryAidDeduction,
|
||||
double installmentDeduction,
|
||||
double fineDeduction, double taxDeduction, string sumOfWorkingDays, string totalClaims, string totalDeductions,
|
||||
double totalPayment, string contractNo, ICollection<CustomizeCheckoutFine> checkoutFines,
|
||||
ICollection<CustomizeCheckoutLoanInstallments> customizeCheckoutLoanInstallments,
|
||||
ICollection<CustomizeCheckoutSalaryAid> customizeCheckoutSalaryAids,
|
||||
ICollection<CustomizeCheckoutReward> customizeCheckoutRewards, TimeSpan lateToWorkValue)
|
||||
string employeeLName, DateTime employeeDateOfBirth,
|
||||
string employeeNationalCode, string workshopFullName, long workshopId, long? contractId,
|
||||
double monthlySalary, double fridayPay, double overTimePay, double baseYearsPay, double bonusesPay,
|
||||
double nightWorkPay,
|
||||
double marriedAllowance, double shiftPay, double familyAllowance, double leavePay, double insuranceDeduction,
|
||||
double fineAbsenceDeduction,
|
||||
double lateToWorkDeduction, double earlyExitDeduction, double rewardPay, double salaryAidDeduction,
|
||||
double installmentDeduction,
|
||||
double fineDeduction, double taxDeduction, string sumOfWorkingDays, string totalClaims, string totalDeductions,
|
||||
double totalPayment, string contractNo, ICollection<CustomizeCheckoutFine> checkoutFines,
|
||||
ICollection<CustomizeCheckoutLoanInstallments> customizeCheckoutLoanInstallments,
|
||||
ICollection<CustomizeCheckoutSalaryAid> customizeCheckoutSalaryAids,
|
||||
ICollection<CustomizeCheckoutReward> customizeCheckoutRewards, TimeSpan lateToWorkValue, double settingSalary,
|
||||
double dailyWage, WorkshopShiftStatus shiftStatus, IrregularShift irregularShift,
|
||||
ICollection<CustomizeRotatingShift> customizeRotatingShifts, ICollection<CustomizeCheckoutRegularShift> employeeSettingsShifts)
|
||||
{
|
||||
YearInt = Convert.ToInt32(contractStart.ToFarsi().Substring(0, 4));
|
||||
MonthInt = Convert.ToInt32(contractStart.ToFarsi().Substring(5, 2));
|
||||
@@ -74,6 +76,12 @@ public class CustomizeCheckout : EntityBase
|
||||
WorkshopFullName = workshopFullName;
|
||||
|
||||
LateToWorkValue = lateToWorkValue;
|
||||
SettingSalary = settingSalary;
|
||||
DailyWage = dailyWage;
|
||||
ShiftStatus = shiftStatus;
|
||||
IrregularShift = irregularShift;
|
||||
CustomizeRotatingShifts = customizeRotatingShifts;
|
||||
RegularShifts = employeeSettingsShifts;
|
||||
}
|
||||
|
||||
|
||||
@@ -249,6 +257,18 @@ public class CustomizeCheckout : EntityBase
|
||||
/// </summary>
|
||||
public double TotalPayment { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// مزد روزانه
|
||||
/// </summary>
|
||||
public double DailyWage { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// حقوق تعیین شده
|
||||
/// </summary>
|
||||
public double SettingSalary { get; private set; }
|
||||
|
||||
public WorkshopShiftStatus ShiftStatus { get; set; }
|
||||
|
||||
|
||||
#region Values
|
||||
|
||||
@@ -266,6 +286,12 @@ public class CustomizeCheckout : EntityBase
|
||||
public ICollection<CustomizeCheckoutSalaryAid> CustomizeCheckoutSalaryAids { get; set; }
|
||||
public ICollection<CustomizeCheckoutReward> CustomizeCheckoutRewards { get; set; }
|
||||
|
||||
public IrregularShift IrregularShift { get; set; }
|
||||
public ICollection<CustomizeRotatingShift> CustomizeRotatingShifts { get; set; }
|
||||
public ICollection<CustomizeCheckoutRegularShift> RegularShifts { get; set; }
|
||||
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region Relations
|
||||
|
||||
@@ -3,6 +3,7 @@ using _0_Framework.Domain;
|
||||
using CompanyManagment.App.Contracts.CustomizeCheckout;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework.Application;
|
||||
|
||||
namespace Company.Domain.CustomizeCheckoutAgg
|
||||
{
|
||||
|
||||
@@ -19,6 +19,7 @@ public class CustomizeCheckoutLoanInstallments
|
||||
public string Month { get; private set; }
|
||||
public string Year { get; private set; }
|
||||
public string LoanRemaining { get; set; }
|
||||
public string LoanAmount { get; set; }
|
||||
public IsActive IsActive { get; private set; }
|
||||
public string LoanAmount { get; set; }
|
||||
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.Base;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
||||
|
||||
namespace Company.Domain.CustomizeCheckoutAgg.ValueObjects;
|
||||
|
||||
public class CustomizeCheckoutRegularShift:CustomizeSifts
|
||||
{
|
||||
public CustomizeCheckoutRegularShift(TimeOnly startTime, TimeOnly endTime, ShiftPlacement placement) : base(startTime, endTime, placement)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -6,6 +6,8 @@ using Company.Domain.WorkshopAgg;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Company.Domain.CustomizeCheckoutTempAgg.ValueObjects;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
||||
|
||||
|
||||
namespace Company.Domain.CustomizeCheckoutTempAgg;
|
||||
@@ -18,15 +20,23 @@ public class CustomizeCheckoutTemp : EntityBase
|
||||
{
|
||||
LateToWorkValue = lateToWorkValue;
|
||||
}
|
||||
public CustomizeCheckoutTemp(DateTime contractStart, DateTime contractEnd, long employeeId, string employeeFName, string employeeLName, DateTime employeeDateOfBirth,
|
||||
public CustomizeCheckoutTemp(DateTime contractStart, DateTime contractEnd, long employeeId, string employeeFName,
|
||||
string employeeLName, DateTime employeeDateOfBirth,
|
||||
string employeeNationalCode, string workshopFullName, long workshopId, long? contractId,
|
||||
double monthlySalary, double fridayPay, double overTimePay, double baseYearsPay, double bonusesPay, double nightWorkPay,
|
||||
double marriedAllowance, double shiftPay, double familyAllowance, double leavePay, double insuranceDeduction, double fineAbsenceDeduction,
|
||||
double lateToWorkDeduction, double earlyExitDeduction, double rewardPay, double salaryAidDeduction, double installmentDeduction,
|
||||
double fineDeduction, double taxDeduction, string sumOfWorkingDays, string totalClaims, string totalDeductions, double totalPayment, string contractNo,
|
||||
ICollection<CustomizeCheckoutTempFine> checkoutFines, ICollection<CustomizeCheckoutTempLoanInstallments> customizeCheckoutLoanInstallments,
|
||||
ICollection<CustomizeCheckoutTempSalaryAid> customizeCheckoutSalaryAids, ICollection<CustomizeCheckoutTempReward> customizeCheckoutRewards,
|
||||
TimeSpan lateToWorkValue)
|
||||
double monthlySalary, double fridayPay, double overTimePay, double baseYearsPay, double bonusesPay,
|
||||
double nightWorkPay,
|
||||
double marriedAllowance, double shiftPay, double familyAllowance, double leavePay, double insuranceDeduction,
|
||||
double fineAbsenceDeduction,
|
||||
double lateToWorkDeduction, double earlyExitDeduction, double rewardPay, double salaryAidDeduction,
|
||||
double installmentDeduction,
|
||||
double fineDeduction, double taxDeduction, string sumOfWorkingDays, string totalClaims, string totalDeductions,
|
||||
double totalPayment, string contractNo,
|
||||
ICollection<CustomizeCheckoutTempFine> checkoutFines,
|
||||
ICollection<CustomizeCheckoutTempLoanInstallments> customizeCheckoutLoanInstallments,
|
||||
ICollection<CustomizeCheckoutTempSalaryAid> customizeCheckoutSalaryAids,
|
||||
ICollection<CustomizeCheckoutTempReward> customizeCheckoutRewards,
|
||||
TimeSpan lateToWorkValue, double settingSalary, double dailyWage, WorkshopShiftStatus shiftStatus, IrregularShift irregularShift,
|
||||
ICollection<CustomizeRotatingShift> customizeRotatingShifts, ICollection<CustomizeCheckoutRegularShift> employeeSettingsShifts)
|
||||
{
|
||||
YearInt = Convert.ToInt32(contractStart.ToFarsi().Substring(0, 4));
|
||||
MonthInt = Convert.ToInt32(contractStart.ToFarsi().Substring(5, 2));
|
||||
@@ -70,7 +80,13 @@ public class CustomizeCheckoutTemp : EntityBase
|
||||
WorkshopFullName = workshopFullName;
|
||||
|
||||
LateToWorkValue = lateToWorkValue;
|
||||
}
|
||||
SettingSalary = settingSalary;
|
||||
DailyWage = dailyWage;
|
||||
ShiftStatus = shiftStatus;
|
||||
IrregularShift = irregularShift;
|
||||
CustomizeRotatingShifts = customizeRotatingShifts;
|
||||
RegularShifts = employeeSettingsShifts;
|
||||
}
|
||||
|
||||
#region Getters
|
||||
/// <summary>
|
||||
@@ -103,6 +119,10 @@ public class CustomizeCheckoutTemp : EntityBase
|
||||
public ICollection<CustomizeCheckoutTempSalaryAid> CustomizeCheckoutSalaryAids { get; set; }
|
||||
public ICollection<CustomizeCheckoutTempReward> CustomizeCheckoutRewards { get; set; }
|
||||
|
||||
public IrregularShift IrregularShift { get; set; }
|
||||
public ICollection<CustomizeRotatingShift> CustomizeRotatingShifts { get; set; }
|
||||
public ICollection<CustomizeCheckoutRegularShift> RegularShifts { get; set; }
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -254,10 +274,22 @@ public class CustomizeCheckoutTemp : EntityBase
|
||||
/// </summary>
|
||||
public double TotalPayment { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// مزد روزانه
|
||||
/// </summary>
|
||||
public double DailyWage { get; private set; }
|
||||
|
||||
#region Values
|
||||
/// <summary>
|
||||
/// حقوق تعیین شده
|
||||
/// </summary>
|
||||
public double SettingSalary { get; private set; }
|
||||
public WorkshopShiftStatus ShiftStatus { get; set; }
|
||||
|
||||
public TimeSpan LateToWorkValue { get; private set; }
|
||||
|
||||
|
||||
#region Values
|
||||
|
||||
public TimeSpan LateToWorkValue { get; private set; }
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -54,6 +54,7 @@ public interface IEmployeeRepository : IRepository<long, Employee>
|
||||
|
||||
Employee GetIgnoreQueryFilter(long id);
|
||||
|
||||
Task<List<EmployeeSelectListViewModel>> WorkedEmployeesInWorkshopSelectList(long workshopId);
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -5,6 +5,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Domain;
|
||||
using CompanyManagment.App.Contracts.EmployeeComputeOptions;
|
||||
using CompanyManagment.App.Contracts.Workshop;
|
||||
|
||||
namespace Company.Domain.EmployeeComputeOptionsAgg
|
||||
{
|
||||
@@ -14,5 +15,7 @@ namespace Company.Domain.EmployeeComputeOptionsAgg
|
||||
EmployeeComputeOptionsViewModel GetEmployeeOptions(long workshopId, long employeeId);
|
||||
|
||||
List<EmployeeComputeOptionsViewModel> GetAllByWorkshopId(long workshopId);
|
||||
|
||||
List<WorkshopViewModel> TestBonusesBugWorkshops();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework_b.Domain;
|
||||
using CompanyManagment.App.Contracts.Employee;
|
||||
using CompanyManagment.App.Contracts.Employer;
|
||||
@@ -16,4 +17,17 @@ public interface IFileRepository : IRepository<long, File1>
|
||||
string GetEmployerFullNameById(long id);
|
||||
List<EmployeeViewModel> GetAllEmploees();
|
||||
List<EmployerViewModel> GetAllEmployers();
|
||||
|
||||
#region Mahan
|
||||
|
||||
|
||||
Task<List<FileExcelViewModel>> GetExcelDetails();
|
||||
Task<List<FileListViewModel>> GetList(GetFileSearchModel searchModel);
|
||||
#endregion
|
||||
|
||||
Task<List<string>> GetAllArchiveNo();
|
||||
Task<List<string>> GetAllClassFiles();
|
||||
Task<List<EmployeeSelectListViewModel>> GetClientAndLitigation();
|
||||
Task<EditEmployee> GetClientDetails(long fileId);
|
||||
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework_b.Domain;
|
||||
using CompanyManagment.App.Contracts.FileAlert;
|
||||
|
||||
@@ -10,4 +11,5 @@ public interface IFileAlertRepository : IRepository<long, FileAlert>
|
||||
FileAlertViewModel GetDetails(long id);
|
||||
void Remove(long id);
|
||||
List<EditFileAlert> Search(FileAlertSearchModel searchModel);
|
||||
Task<List<FileAlertViewModel>> GetFileAlerts(FileAlertSearchModel searchModel);
|
||||
}
|
||||
@@ -6,7 +6,11 @@ namespace Company.Domain.FineAgg;
|
||||
|
||||
public class Fine:EntityBase
|
||||
{
|
||||
public Fine(long employeeId, long workshopId, string title, double amount,DateTime fineDate)
|
||||
private Fine()
|
||||
{
|
||||
|
||||
}
|
||||
public Fine(long employeeId, long workshopId, string title, double amount,DateTime fineDate, long createdByAccountId, UserType createdByUserType)
|
||||
{
|
||||
EmployeeId = employeeId;
|
||||
WorkshopId = workshopId;
|
||||
@@ -15,6 +19,9 @@ public class Fine:EntityBase
|
||||
IsActive = IsActive.True;
|
||||
FineDate = fineDate;
|
||||
|
||||
CreatedByUserType = createdByUserType;
|
||||
CreatedByAccountId = createdByAccountId;
|
||||
|
||||
}
|
||||
|
||||
public long EmployeeId { get; private set; }
|
||||
@@ -24,7 +31,23 @@ public class Fine:EntityBase
|
||||
public IsActive IsActive { get; private set; }
|
||||
public DateTime FineDate { get; private set; }
|
||||
|
||||
public void DeActive()
|
||||
|
||||
/// <summary>
|
||||
/// شخصی که جریمه را ساخته است
|
||||
/// </summary>
|
||||
public long CreatedByAccountId { get; private set; }
|
||||
public UserType CreatedByUserType { get; private set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// شخصی که جریمه را ویرایش کرده است
|
||||
/// </summary>
|
||||
public long LastModifiedByAccountId { get; private set; }
|
||||
public UserType LastModifiedByUserType { get; private set; }
|
||||
|
||||
|
||||
|
||||
public void DeActive()
|
||||
{
|
||||
IsActive = IsActive.False;
|
||||
}
|
||||
@@ -34,14 +57,15 @@ public class Fine:EntityBase
|
||||
IsActive = IsActive.True;
|
||||
}
|
||||
|
||||
public void Edit(long employeeId, long workshopId, string title, double amount,DateTime fineDate)
|
||||
public void Edit(long employeeId, long workshopId, string title, double amount,DateTime fineDate, long modifiedByAccountId, UserType modifiedByUserType)
|
||||
{
|
||||
EmployeeId = employeeId;
|
||||
WorkshopId = workshopId;
|
||||
Title = title;
|
||||
Amount = amount;
|
||||
FineDate = fineDate;
|
||||
|
||||
LastModifiedByAccountId = modifiedByAccountId;
|
||||
LastModifiedByUserType = modifiedByUserType;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -12,4 +12,14 @@ public interface IFineRepository : IRepository<long, Fine>
|
||||
void Remove(Fine entity);
|
||||
void RemoveRange(IEnumerable<Fine> entityEnumerable);
|
||||
|
||||
|
||||
#region Pooya
|
||||
|
||||
/// <summary>
|
||||
/// گروهبندی بر اساس ماه هنگام جستجو با انتخاب کارمند
|
||||
/// </summary>
|
||||
FinesGroupedViewModel GetSearchListAsGrouped(FineSearchViewModel searchModel);
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
using _0_Framework.Domain;
|
||||
using CompanyManagment.App.Contracts.InstitutionPlan;
|
||||
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Company.Domain.InstitutionPlanAgg;
|
||||
|
||||
public interface IPlanPercentageRepository : IRepository<long, PlanPercentage>
|
||||
{
|
||||
EditInstitutionPlanPercentage GetById(long id);
|
||||
|
||||
EditInstitutionPlanPercentage GetByFirst();
|
||||
|
||||
/// <summary>
|
||||
/// دریافت لیست 30 تایی مبالغ سرویس ها به ازای هر نفر
|
||||
/// </summary>
|
||||
/// <param name="pageIndex"></param>
|
||||
/// <param name="countPeron"></param>
|
||||
/// <returns></returns>
|
||||
List<InstitutionPlanViewModel> GetInstitutionPlanList(int pageIndex, int countPeron);
|
||||
|
||||
/// <summary>
|
||||
/// دریافت مبالغ سرویس ها برای هر کارگاه
|
||||
/// بر اساس تعداد پرسنل کارگاه
|
||||
/// </summary>
|
||||
/// <param name="command"></param>
|
||||
/// <returns></returns>
|
||||
InstitutionPlanViewModel GetInstitutionPlanForWorkshop(WorkshopTempViewModel command);
|
||||
}
|
||||
65
Company.Domain/InstitutionPlanAgg/PlanPercentage.cs
Normal file
65
Company.Domain/InstitutionPlanAgg/PlanPercentage.cs
Normal file
@@ -0,0 +1,65 @@
|
||||
using _0_Framework.Domain;
|
||||
|
||||
namespace Company.Domain.InstitutionPlanAgg;
|
||||
|
||||
public class PlanPercentage : EntityBaseWithoutCreationDate
|
||||
{
|
||||
public PlanPercentage(int contractAndCheckoutPercent, int insurancePercent, int rollCallPercent, int customizeCheckoutPercent, int contractAndCheckoutInPersonPercent, int insuranceInPersonPercent)
|
||||
{
|
||||
ContractAndCheckoutPercent = contractAndCheckoutPercent;
|
||||
InsurancePercent = insurancePercent;
|
||||
RollCallPercent = rollCallPercent;
|
||||
CustomizeCheckoutPercent = customizeCheckoutPercent;
|
||||
ContractAndCheckoutInPersonPercent = contractAndCheckoutInPersonPercent;
|
||||
InsuranceInPersonPercent = insuranceInPersonPercent;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// قرارداد و تصفیه
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int ContractAndCheckoutPercent { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// بیمه
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int InsurancePercent { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// حضورغباب
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int RollCallPercent { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// فیش غیر رسمی
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int CustomizeCheckoutPercent { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// خدمات حضوری قرداد و تصفیه
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int ContractAndCheckoutInPersonPercent { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// خدمات حضوری بیمه
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int InsuranceInPersonPercent { get; private set; }
|
||||
|
||||
|
||||
public void Edit(int contractAndCheckoutPercent, int insurancePercent, int rollCallPercent, int customizeCheckoutPercent, int contractAndCheckoutInPersonPercent, int insuranceInPersonPercent)
|
||||
{
|
||||
ContractAndCheckoutPercent = contractAndCheckoutPercent;
|
||||
InsurancePercent = insurancePercent;
|
||||
RollCallPercent = rollCallPercent;
|
||||
CustomizeCheckoutPercent = customizeCheckoutPercent;
|
||||
ContractAndCheckoutInPersonPercent = contractAndCheckoutInPersonPercent;
|
||||
InsuranceInPersonPercent = insuranceInPersonPercent;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -8,7 +8,7 @@ public class Leave: EntityBase
|
||||
{
|
||||
public Leave(DateTime startLeave, DateTime endLeave,
|
||||
string leaveHourses, long workshopId, long employeeId,
|
||||
string paidLeaveType, string leaveType, string employeeFullName, string workshopName, bool isAccepted, string decription, int year, int month)
|
||||
string paidLeaveType, string leaveType, string employeeFullName, string workshopName, bool isAccepted, string decription, int year, int month, TimeSpan shiftDuration, bool hasShiftDuration)
|
||||
{
|
||||
StartLeave = startLeave;
|
||||
EndLeave = endLeave;
|
||||
@@ -23,6 +23,8 @@ public class Leave: EntityBase
|
||||
Decription = decription;
|
||||
Year = year;
|
||||
Month = month;
|
||||
ShiftDuration = shiftDuration;
|
||||
HasShiftDuration = hasShiftDuration;
|
||||
}
|
||||
|
||||
public DateTime StartLeave { get; private set; }
|
||||
@@ -38,9 +40,13 @@ public class Leave: EntityBase
|
||||
public string Decription { get; private set; }
|
||||
public int Year { get; private set; }
|
||||
public int Month { get; private set; }
|
||||
|
||||
public TimeSpan ShiftDuration { get; private set; }
|
||||
public bool HasShiftDuration { get; private set; }
|
||||
|
||||
public void Edit(DateTime startLeave, DateTime endLeave,
|
||||
string leaveHourses, long workshopId, long employeeId,
|
||||
string paidLeaveType, string leaveType, string employeeFullName, string workshopName, bool isAccepted, string decription, int year, int month)
|
||||
string paidLeaveType, string leaveType, string employeeFullName, string workshopName, bool isAccepted, string decription, int year, int month,bool hasShiftDuration,TimeSpan shiftDuration)
|
||||
{
|
||||
StartLeave = startLeave;
|
||||
EndLeave = endLeave;
|
||||
@@ -55,5 +61,7 @@ public class Leave: EntityBase
|
||||
Decription = decription;
|
||||
Year = year;
|
||||
Month = month;
|
||||
ShiftDuration = shiftDuration;
|
||||
HasShiftDuration = hasShiftDuration;
|
||||
}
|
||||
}
|
||||
@@ -9,12 +9,14 @@ namespace Company.Domain.LoanAgg.Entities;
|
||||
|
||||
public class Loan : EntityBase
|
||||
{
|
||||
private Loan()
|
||||
private Loan(long createdByAccountId, UserType createdByUserType)
|
||||
{
|
||||
CreatedByAccountId = createdByAccountId;
|
||||
CreatedByUserType = createdByUserType;
|
||||
}
|
||||
|
||||
public Loan(long employeeId, long workshopId, DateTime startDateTime,
|
||||
string count, double amount, double amountPerMonth,ICollection<LoanInstallment> loanInstallments, bool getRounded, DateTime loanGrantDate)
|
||||
string count, double amount, double amountPerMonth,ICollection<LoanInstallment> loanInstallments, bool getRounded, DateTime loanGrantDate, long createdByAccountId, UserType createdByUserType)
|
||||
{
|
||||
EmployeeId = employeeId;
|
||||
WorkshopId = workshopId;
|
||||
@@ -25,6 +27,8 @@ public class Loan : EntityBase
|
||||
LoanInstallments = loanInstallments;
|
||||
GetRounded = getRounded;
|
||||
LoanGrantDate = loanGrantDate;
|
||||
CreatedByAccountId = createdByAccountId;
|
||||
CreatedByUserType = createdByUserType;
|
||||
//for (int i = 0; i < Convert.ToInt32(count); i++)
|
||||
//{
|
||||
// LoanInstallment newInstallment = new(amountPerMonth, month.ToString("00"), year.ToString("0000"));
|
||||
@@ -64,7 +68,11 @@ public class Loan : EntityBase
|
||||
public bool GetRounded { get; private set; }
|
||||
public ICollection<LoanInstallment> LoanInstallments { get; private set; }
|
||||
|
||||
public void DeActiveInstallment(string year, string month)
|
||||
|
||||
public long CreatedByAccountId { get; private set; }
|
||||
public UserType CreatedByUserType { get; private set; }
|
||||
|
||||
public void DeActiveInstallment(string year, string month)
|
||||
{
|
||||
|
||||
var installment = LoanInstallments.FirstOrDefault(x => x.Month == month && x.Year == year);
|
||||
|
||||
@@ -2,14 +2,17 @@
|
||||
using Company.Domain.LoanAgg.Entities;
|
||||
using CompanyManagment.App.Contracts.Loan;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Company.Domain.LoanAgg;
|
||||
|
||||
public interface ILoanRepository:IRepository<long,Loan>
|
||||
{
|
||||
List<LoanViewModel> GetSearchList(LoanSearchViewModel searchViewModel);
|
||||
LoanViewModel GetDetails(long id);
|
||||
Task<LoanDetailsViewModel> GetDetails(long id);
|
||||
void Remove(Loan entity);
|
||||
List<Loan> GetBy(IEnumerable<long> ids);
|
||||
void RemoveRange(IEnumerable<Loan> loans);
|
||||
|
||||
LoanGroupedViewModel GetSearchListAsGrouped(LoanSearchViewModel searchModel);
|
||||
}
|
||||
@@ -18,6 +18,6 @@ public interface IRewardRepository : IRepository<long, Reward>
|
||||
/// <summary>
|
||||
/// گروهبندی بر اساس ماه هنگام جستجو با انتخاب کارمند
|
||||
/// </summary>
|
||||
List<MonthlyGroupedEmployeeRewardsViewModel> GetSearchListByEmployee(RewardSearchModel searchModel);
|
||||
RewardsGroupedViewModel GetSearchListAsGrouped(RewardSearchModel searchModel);
|
||||
#endregion
|
||||
}
|
||||
@@ -8,18 +8,19 @@ namespace Company.Domain.RewardAgg;
|
||||
|
||||
public class Reward:EntityBase
|
||||
{
|
||||
private Reward(string title)
|
||||
private Reward()
|
||||
{
|
||||
Title = title;
|
||||
|
||||
}
|
||||
|
||||
public Reward(long employeeId, long workshopId, double amount, string description, long rewardedByAccountId, DateTime grantDate, string title , RewardType type = RewardType.None)
|
||||
public Reward(long employeeId, long workshopId, double amount, string description, long rewardedByAccountId,UserType userType, DateTime grantDate, string title , RewardType type = RewardType.None)
|
||||
{
|
||||
EmployeeId = employeeId;
|
||||
WorkshopId = workshopId;
|
||||
Amount = amount;
|
||||
Description = description;
|
||||
RewardedByAccountId = rewardedByAccountId;
|
||||
CreatedByAccountId = rewardedByAccountId;
|
||||
CreatedByUserType = userType;
|
||||
GrantDate = grantDate;
|
||||
Title = title;
|
||||
IsActive = IsActive.True;
|
||||
@@ -45,24 +46,35 @@ public class Reward:EntityBase
|
||||
public string Description { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// شخصی که پاداش را داده است
|
||||
/// شخصی که پاداش را ساخته است
|
||||
/// </summary>
|
||||
public long RewardedByAccountId { get; private set; }
|
||||
public long CreatedByAccountId { get; private set; }
|
||||
public UserType CreatedByUserType { get;private set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ اعطای پاداش
|
||||
/// شخصی که پاداش را ویرایش کرده است
|
||||
/// </summary>
|
||||
public DateTime GrantDate { get; set; }
|
||||
public long LastModifiedByAccountId { get; private set; }
|
||||
public UserType LastModifiedByUserType { get; private set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ اعطای پاداش
|
||||
/// </summary>
|
||||
public DateTime GrantDate { get; set; }
|
||||
|
||||
public RewardType RewardType { get; set; }
|
||||
|
||||
public IsActive IsActive { get; private set; }
|
||||
|
||||
public void Edit(double amount, string description, long rewardedByAccountId, DateTime grantDate,string title)
|
||||
|
||||
public void Edit(double amount, string description, long modifiedByAccountId, UserType userType, DateTime grantDate,string title)
|
||||
{
|
||||
Amount = amount;
|
||||
Description = description;
|
||||
RewardedByAccountId = rewardedByAccountId;
|
||||
LastModifiedByAccountId = modifiedByAccountId;
|
||||
LastModifiedByUserType = userType;
|
||||
GrantDate = grantDate;
|
||||
Title = title;
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ public interface IRollCallDomainService
|
||||
long workshopId);
|
||||
|
||||
TimeOnly GetEmployeeOffSetForRegularSettings(long employeeId, long workshopId);
|
||||
DateTime GetEmployeeShiftDateByRollCallStartDate(long workshopId, long employeeId, DateTime rollCallStartDate);
|
||||
DateTime GetEmployeeShiftDateByRollCallStartDate(long workshopId, long employeeId, DateTime rollCallStartDate,DateTime rollCallEndDate);
|
||||
|
||||
void CalculateTimeDifferences(RollCall rollCall);
|
||||
|
||||
@@ -173,16 +173,16 @@ public class RollCallDomainService : IRollCallDomainService
|
||||
}
|
||||
|
||||
public DateTime GetEmployeeShiftDateByRollCallStartDate(long workshopId, long employeeId,
|
||||
DateTime rollCallStartDate)
|
||||
DateTime rollCallStartDate,DateTime rollCallEndDate)
|
||||
{
|
||||
var shiftDetails = GetEmployeeShiftDetails(employeeId, workshopId);
|
||||
|
||||
|
||||
var offset = GetEmployeeOffSetForRegularSettings(employeeId, workshopId);
|
||||
|
||||
return shiftDetails.shiftType switch
|
||||
{
|
||||
WorkshopShiftStatus.Regular => CalculateRegularShiftDate(rollCallStartDate, offset),
|
||||
WorkshopShiftStatus.Rotating => rollCallStartDate.Date,
|
||||
WorkshopShiftStatus.Rotating => FindRotatingShift(rollCallEndDate,rollCallEndDate,shiftDetails.rotatingShifts).start.Date,
|
||||
WorkshopShiftStatus.Irregular => rollCallStartDate.Date,
|
||||
_ => throw new ArgumentOutOfRangeException()
|
||||
};
|
||||
|
||||
@@ -27,8 +27,6 @@ namespace Company.Domain.RollCallAgg
|
||||
Month = month;
|
||||
RollCallModifyType = rollCallModifyType;
|
||||
|
||||
SetShiftDate(service);
|
||||
|
||||
var shiftDetails = service.GetEmployeeShiftDetails(employeeId, workshopId);
|
||||
|
||||
if (shiftDetails is { shiftType: WorkshopShiftStatus.Irregular, irregularShift: null } or
|
||||
@@ -229,6 +227,8 @@ namespace Company.Domain.RollCallAgg
|
||||
{
|
||||
EndDate = endDate;
|
||||
|
||||
SetShiftDate(service);
|
||||
|
||||
ShiftDurationTimeSpan = CalculateShiftDuration(StartDate!.Value, EndDate.Value, service);
|
||||
|
||||
NightWorkTimeSpan = CalculateNightWorkDuration(StartDate.Value, endDate);
|
||||
@@ -278,7 +278,7 @@ namespace Company.Domain.RollCallAgg
|
||||
|
||||
private void SetShiftDate(IRollCallDomainService service)
|
||||
{
|
||||
ShiftDate = service.GetEmployeeShiftDateByRollCallStartDate(WorkshopId, EmployeeId, StartDate!.Value);
|
||||
ShiftDate = service.GetEmployeeShiftDateByRollCallStartDate(WorkshopId, EmployeeId, StartDate!.Value,EndDate.Value);
|
||||
}
|
||||
|
||||
private TimeSpan CalculateShiftDuration(DateTime startRollCall, DateTime endRollCall, IRollCallDomainService service)
|
||||
|
||||
@@ -15,14 +15,16 @@ namespace Company.Domain.RollCallEmployeeStatusAgg
|
||||
///
|
||||
/// <returns></returns>
|
||||
void AdjustRollCallStatusEndDates(List<AdjustRollCallEmployeesWithEmployeeLeftWork> command);
|
||||
/// <summary>
|
||||
/// دریافت وضعیت حضور غیاب پرسنل در تاریخ مشخص
|
||||
/// </summary>
|
||||
/// <param name="rollCallEmployeeId"></param>
|
||||
/// <param name="date"></param>
|
||||
/// <returns></returns>
|
||||
|
||||
/// <summary>
|
||||
/// دریافت وضعیت حضور غیاب پرسنل در تاریخ مشخص
|
||||
/// </summary>
|
||||
/// <param name="rollCallEmployeeId"></param>
|
||||
/// <param name="date"></param>
|
||||
/// <returns></returns>
|
||||
RollCallEmployeeStatus GetByRollCallEmployeeIdAndDate(long rollCallEmployeeId, DateTime date);
|
||||
List<RollCallEmployeeStatusViewModel> GetActiveByWorkshopIdInDate(long workshopId, DateTime startDateGr, DateTime endDateGr);
|
||||
List<RollCallEmployeeStatusViewModel> GetByWorkshopIdInDates(long workshopId, DateTime start, DateTime end);
|
||||
bool IsActiveInPeriod(long employeeId, long workshopId, DateTime startDate, DateTime endDate);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework.Domain;
|
||||
using CompanyManagment.App.Contracts.Reward;
|
||||
using CompanyManagment.App.Contracts.SalaryAid;
|
||||
|
||||
namespace Company.Domain.SalaryAidAgg;
|
||||
@@ -11,4 +12,13 @@ public interface ISalaryAidRepository:IRepository<long,SalaryAid>
|
||||
void Remove(SalaryAid entity);
|
||||
List<SalaryAid> GetBy(IEnumerable<long> ids);
|
||||
void RemoveRange(IEnumerable<SalaryAid> salaryAids);
|
||||
|
||||
#region Pooya
|
||||
|
||||
/// <summary>
|
||||
/// گروهبندی بر اساس ماه هنگام جستجو با انتخاب کارمند
|
||||
/// </summary>
|
||||
|
||||
SalaryAidsGroupedViewModel GetSearchListAsGrouped(SalaryAidSearchViewModel searchModel);
|
||||
#endregion
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using _0_Framework.Application;
|
||||
using _0_Framework.Domain;
|
||||
using Hangfire.Annotations;
|
||||
|
||||
@@ -6,15 +7,18 @@ namespace Company.Domain.SalaryAidAgg;
|
||||
|
||||
public class SalaryAid:EntityBase
|
||||
{
|
||||
private SalaryAid(){}
|
||||
|
||||
|
||||
public SalaryAid(long employeeId, long workshopId, double amount, DateTime salaryAidDateTime)
|
||||
private SalaryAid()
|
||||
{
|
||||
|
||||
}
|
||||
public SalaryAid(long employeeId, long workshopId, double amount, DateTime salaryAidDateTime, long createdByAccountId, UserType createdByUserType)
|
||||
{
|
||||
EmployeeId = employeeId;
|
||||
WorkshopId = workshopId;
|
||||
Amount = amount;
|
||||
SalaryAidDateTime = salaryAidDateTime;
|
||||
CreatedByUserType = createdByUserType;
|
||||
CreatedByAccountId = createdByAccountId;
|
||||
}
|
||||
|
||||
public long EmployeeId { get; private set; }
|
||||
@@ -22,9 +26,21 @@ public class SalaryAid:EntityBase
|
||||
public double Amount { get; private set; }
|
||||
public DateTime SalaryAidDateTime { get; private set; }
|
||||
|
||||
public void Edit(double amount, DateTime salaryAidTime)
|
||||
|
||||
public long CreatedByAccountId { get; private set; }
|
||||
public UserType CreatedByUserType { get; private set; }
|
||||
|
||||
|
||||
|
||||
public long LastModifiedByAccountId { get; private set; }
|
||||
public UserType LastModifiedByUserType { get; private set; }
|
||||
|
||||
|
||||
public void Edit(double amount, DateTime salaryAidTime, long modifiedByAccountId, UserType modifiedByUserType)
|
||||
{
|
||||
Amount = amount;
|
||||
SalaryAidDateTime = salaryAidTime;
|
||||
LastModifiedByAccountId = modifiedByAccountId;
|
||||
LastModifiedByUserType = modifiedByUserType;
|
||||
}
|
||||
}
|
||||
@@ -91,6 +91,10 @@ public class ContractingPartyTemp : EntityBase
|
||||
/// </summary>
|
||||
public string Address { get; private set; }
|
||||
|
||||
|
||||
|
||||
public void UpdateAddress(string state, string city, string address)
|
||||
{
|
||||
this.State = state;
|
||||
this.City = city;
|
||||
this.Address = address;
|
||||
}
|
||||
}
|
||||
@@ -20,4 +20,11 @@ public interface IContractingPartyTempRepository :IRepository<long, ContractingP
|
||||
/// <param name="nationalCode"></param>
|
||||
/// <returns></returns>
|
||||
ContractingPartyTempViewModel GetByNationalCode(string nationalCode);
|
||||
|
||||
/// <summary>
|
||||
/// دریافت اطلاعات طرف حساب موقت با کد ملی
|
||||
/// </summary>
|
||||
/// <param name="nationalCode"></param>
|
||||
/// <returns></returns>
|
||||
ContractingPartyTempViewModel GetByContractingPartyTempId(long contractingPartyTempId);
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework_b.Domain;
|
||||
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
||||
|
||||
namespace Company.Domain.TemporaryClientRegistrationAgg;
|
||||
|
||||
public interface IInstitutionContractTempRepository : IRepository<long, InstitutionContractTemp>
|
||||
{
|
||||
/// <summary>
|
||||
/// دریافت قرارداد موقت
|
||||
/// با توجه به آیدی طرف حساب
|
||||
/// یا آیدی قرارداد
|
||||
/// </summary>
|
||||
/// <param name="id"></param>
|
||||
/// <param name="contractingPartyId"></param>
|
||||
/// <returns></returns>
|
||||
Task<InstitutionContractTempViewModel> GetInstitutionContractTemp(long id,long contractingPartyTempId);
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework.Domain;
|
||||
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
||||
|
||||
namespace Company.Domain.TemporaryClientRegistrationAgg;
|
||||
|
||||
public interface IWorkshopServicesTempRepository : IRepository<long, WorkshopServicesTemp>
|
||||
{
|
||||
/// <summary>
|
||||
/// حذف کامل سرویس های کارگاه
|
||||
/// </summary>
|
||||
/// <param name="workshopTempId"></param>
|
||||
public void RemoveServices(long workshopTempId);
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Domain;
|
||||
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
||||
|
||||
namespace Company.Domain.TemporaryClientRegistrationAgg;
|
||||
|
||||
public interface IWorkshopTempRepository : IRepository<long, WorkshopTemp>
|
||||
{
|
||||
/// <summary>
|
||||
/// دریافت کارگاه های ذخیره شده
|
||||
/// </summary>
|
||||
/// <param name="contractingPartyTemp"></param>
|
||||
/// <returns></returns>
|
||||
Task<List<WorkshopTempViewModel>> GetWorkshopTemp(long contractingPartyTemp);
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Application.UID;
|
||||
using _0_Framework.Domain;
|
||||
|
||||
namespace Company.Domain.TemporaryClientRegistrationAgg;
|
||||
|
||||
public class InstitutionContractTemp : EntityBase
|
||||
{
|
||||
public InstitutionContractTemp(long contractingPartyTempId, string paymentModel, string periodModel, double totalPayment, DateTime contractStartGr, DateTime contractEndGr, string officialCompany, double valueAddedTax, string verifyCode, string registrationStatus, int messageId, DateTime? sendVerifyCodeTime, DateTime? verifyCodeEndTime)
|
||||
{
|
||||
ContractingPartyTempId = contractingPartyTempId;
|
||||
PaymentModel = paymentModel;
|
||||
PeriodModel = periodModel;
|
||||
TotalPayment = totalPayment;
|
||||
ContractStartGr = contractStartGr;
|
||||
ContractEndGr = contractEndGr;
|
||||
OfficialCompany = officialCompany;
|
||||
ValueAddedTax = valueAddedTax;
|
||||
VerifyCode = verifyCode;
|
||||
RegistrationStatus = registrationStatus;
|
||||
MessageId = messageId;
|
||||
SendVerifyCodeTime = sendVerifyCodeTime;
|
||||
VerifyCodeEndTime = verifyCodeEndTime;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// آیدی طرف حساب
|
||||
/// </summary>
|
||||
public long ContractingPartyTempId { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// مدل پرداخت
|
||||
/// بصورت یکجا
|
||||
/// -
|
||||
/// بصئورت ماهیانه
|
||||
/// </summary>
|
||||
public string PaymentModel { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// مدت قرارداد
|
||||
/// چند ماهه؟
|
||||
/// </summary>
|
||||
public string PeriodModel { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ کل قرارداد
|
||||
/// </summary>
|
||||
public double TotalPayment { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ شرع قراداد
|
||||
/// میلادی
|
||||
/// </summary>
|
||||
public DateTime ContractStartGr { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ پایان قراداد شمسی
|
||||
/// </summary>
|
||||
public DateTime ContractEndGr { get; private set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// پرداخت بصورت رسمی با غیر رسمی
|
||||
/// </summary>
|
||||
public string OfficialCompany { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ مالیات بر ارزش افزوده
|
||||
/// </summary>
|
||||
public double ValueAddedTax { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// کد شش رقمی ثبت قرارداد
|
||||
/// </summary>
|
||||
public string VerifyCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// وضعیت ثبت نام
|
||||
/// -
|
||||
/// BeforeSendVerifyCode قبل از ارسال کد
|
||||
/// -
|
||||
/// VerifyCodeSent کد ارسال شده
|
||||
/// -
|
||||
/// Completed ثبت نام تکمیل شده
|
||||
/// </summary>
|
||||
public string RegistrationStatus { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// آی دی پیامک ارسال شده
|
||||
/// </summary>
|
||||
public int MessageId { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// ثبت زمان ارسال کد
|
||||
/// </summary>
|
||||
public DateTime? SendVerifyCodeTime { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// زمان پایان مهلت ارسال کد
|
||||
/// </summary>
|
||||
public DateTime? VerifyCodeEndTime{ get; private set; }
|
||||
|
||||
|
||||
public void Edit(long contractingPartyTempId, string paymentModel, string periodModel, double totalPayment, DateTime contractStartGr, DateTime contractEndGr, string officialCompany, double valueAddedTax, string verifyCode, string registrationStatus, int messageId, DateTime? sendVerifyCodeTime, DateTime? verifyCodeEndTime)
|
||||
{
|
||||
ContractingPartyTempId = contractingPartyTempId;
|
||||
PaymentModel = paymentModel;
|
||||
PeriodModel = periodModel;
|
||||
TotalPayment = totalPayment;
|
||||
ContractStartGr = contractStartGr;
|
||||
ContractEndGr = contractEndGr;
|
||||
OfficialCompany = officialCompany;
|
||||
ValueAddedTax = valueAddedTax;
|
||||
VerifyCode = verifyCode;
|
||||
RegistrationStatus = registrationStatus;
|
||||
MessageId = messageId;
|
||||
SendVerifyCodeTime = sendVerifyCodeTime;
|
||||
VerifyCodeEndTime = verifyCodeEndTime;
|
||||
}
|
||||
|
||||
public void Update(string verifyCode, string registrationStatus, int messageId, DateTime? sendVerifyCodeTime, DateTime? verifyCodeEndTime)
|
||||
{
|
||||
VerifyCode = verifyCode;
|
||||
RegistrationStatus = registrationStatus;
|
||||
MessageId = messageId;
|
||||
SendVerifyCodeTime = sendVerifyCodeTime;
|
||||
VerifyCodeEndTime = verifyCodeEndTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
using _0_Framework.Domain;
|
||||
|
||||
namespace Company.Domain.TemporaryClientRegistrationAgg;
|
||||
|
||||
public class WorkshopServicesTemp : EntityBase
|
||||
{
|
||||
public WorkshopServicesTemp(string serviceName, int countPerson, long workshopTempId)
|
||||
{
|
||||
ServiceName = serviceName;
|
||||
CountPerson = countPerson;
|
||||
WorkshopTempId = workshopTempId;
|
||||
}
|
||||
/// <summary>
|
||||
/// نام سرویس
|
||||
/// </summary>
|
||||
public string ServiceName { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// تعداد پرسنل
|
||||
/// </summary>
|
||||
public int CountPerson { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// آی دی کارگاه موقت
|
||||
/// </summary>
|
||||
public long WorkshopTempId { get; private set; }
|
||||
|
||||
public WorkshopTemp WorkshopTemp { get; private set; }
|
||||
|
||||
public void UpdateService(int countPerson)
|
||||
{
|
||||
this.CountPerson = countPerson;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework.Domain;
|
||||
|
||||
namespace Company.Domain.TemporaryClientRegistrationAgg;
|
||||
|
||||
public class WorkshopTemp : EntityBase
|
||||
{
|
||||
public WorkshopTemp(string workshopName, int countPerson, long contractingPartyTempId, double workshopServicesAmount)
|
||||
{
|
||||
WorkshopName = workshopName;
|
||||
CountPerson = countPerson;
|
||||
ContractingPartyTempId = contractingPartyTempId;
|
||||
WorkshopServicesAmount = workshopServicesAmount;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// نام کارگاه
|
||||
/// </summary>
|
||||
public string WorkshopName { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// تعداد پرسنل
|
||||
/// </summary>
|
||||
public int CountPerson { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// ای دی طرف حساب
|
||||
/// </summary>
|
||||
public long ContractingPartyTempId { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// جمع کل مبالغ سرویس ها برای کارگاه
|
||||
/// </summary>
|
||||
public double WorkshopServicesAmount { get; private set; }
|
||||
|
||||
public List<WorkshopServicesTemp> WorkshopServicesTemps { get; private set; }
|
||||
|
||||
|
||||
|
||||
public void Edit(string workshopName, int countPerson, double workshopServicesAmount)
|
||||
{
|
||||
this.WorkshopName = workshopName;
|
||||
this.CountPerson = countPerson;
|
||||
this.WorkshopServicesAmount = workshopServicesAmount;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -11,6 +11,10 @@ namespace Company.Domain.YearlySalaryAgg;
|
||||
|
||||
public interface IYearlySalaryRepository : IRepository<long, YearlySalary>
|
||||
{
|
||||
/// <summary>
|
||||
/// تست محاسبه مزد پایه
|
||||
/// </summary>
|
||||
void TestDayliFeeCompute();
|
||||
List<string> GetYears();
|
||||
List<YearlySalaryViewModel> GetYearlySalary();
|
||||
MontlywageBunosYearsViewModel GetMontlyBunosYears(TimeSpan weeklyTime, DateTime contractStart,DateTime contractEnd, double daylyWage, string weeklyWorkingTime, int officialholiday, int friday, string totalHoursH, string totalHorsM, string basic, int fridayStartToEnd, double dayliFeeComplete, bool hasRollCall, bool holidaysWorking);
|
||||
|
||||
@@ -0,0 +1,125 @@
|
||||
using System.Drawing;
|
||||
using OfficeOpenXml.Style;
|
||||
using OfficeOpenXml;
|
||||
using CompanyManagement.Infrastructure.Excel.Checkout;
|
||||
using CompanyManagment.App.Contracts.File1;
|
||||
using Microsoft.AspNetCore.Server.HttpSys;
|
||||
using _0_Framework.Application;
|
||||
|
||||
namespace CompanyManagement.Infrastructure.Excel.CaseManagement;
|
||||
|
||||
public class CaseManagementExcelGenerator
|
||||
{
|
||||
public static Dictionary<string, string> Header { get; set; } = new()
|
||||
{
|
||||
{"ArchiveNumber","شماره بایگانی"},
|
||||
{"FileClass","کلاسه پرونده"},
|
||||
{"Client","موکل"},
|
||||
{"LitigationParty","طرف دعوی"},
|
||||
{"DiagnosisPetitionTotalPenalty","مبلغ دادنامه تشخیص"},
|
||||
{"DisputeResolutionTotalPenalty","مبلغ دادنامه حل اختلاف"},
|
||||
{"MclsUsername","نام کاربری"},
|
||||
{"MclsPassword","رمز عبور"},
|
||||
|
||||
};
|
||||
public static byte[] GenerateCheckoutTempExcelInfo(List<FileExcelViewModel> data)
|
||||
{
|
||||
OfficeOpenXml.ExcelPackage.LicenseContext = LicenseContext.NonCommercial;
|
||||
using var package = new ExcelPackage();
|
||||
var worksheet = package.Workbook.Worksheets.Add("Sheet1");
|
||||
|
||||
var indexCell = worksheet.Cells[1, 1];
|
||||
indexCell.Value = "ردیف";
|
||||
ApplyHeaderStyle(indexCell);
|
||||
|
||||
for (int i = 0; i < Header.Count; i++)
|
||||
{
|
||||
worksheet.Cells[1, i + 2].Value = Header.ElementAt(i).Value;
|
||||
ApplyHeaderStyle(worksheet.Cells[1, i + 2]);
|
||||
}
|
||||
var dataRow = 2;
|
||||
foreach (var item in data)
|
||||
{
|
||||
var column = 2;
|
||||
foreach (var header in Header)
|
||||
{
|
||||
var property = item.GetType().GetProperty(header.Key);
|
||||
var value = property.GetValue(item, null)?.ToString();
|
||||
|
||||
var cell = worksheet.Cells[dataRow, column];
|
||||
|
||||
// Check if the property requires MoneyToDouble()
|
||||
|
||||
if (RequiresMoneyToDouble(property.Name))
|
||||
{
|
||||
cell.Value = MoneyToDouble(value);
|
||||
cell.Style.Numberformat.Format = "#,##0";
|
||||
}
|
||||
else
|
||||
{
|
||||
cell.Value = value;
|
||||
}
|
||||
ApplyGeneralDataStyle(worksheet.Cells[dataRow, column]);
|
||||
switch (item.Status)
|
||||
{
|
||||
case 1:
|
||||
cell.Style.Fill.BackgroundColor.SetColor(System.Drawing.Color.Gray);
|
||||
break;
|
||||
case 2:
|
||||
cell.Style.Fill.BackgroundColor.SetColor(Color.White);
|
||||
break;
|
||||
case 3:
|
||||
cell.Style.Fill.BackgroundColor.SetColor(Color.Orange);
|
||||
break;
|
||||
}
|
||||
column++;
|
||||
}
|
||||
|
||||
|
||||
|
||||
var rowCounter = worksheet.Cells[dataRow, 1];
|
||||
rowCounter.Value = dataRow - 1;
|
||||
|
||||
dataRow++;
|
||||
}
|
||||
|
||||
worksheet.Cells[worksheet.Dimension.Address].AutoFitColumns();
|
||||
worksheet.View.RightToLeft = true;
|
||||
return package.GetAsByteArray();
|
||||
}
|
||||
|
||||
private static bool RequiresMoneyToDouble(string propertyName)
|
||||
{
|
||||
var propertiesRequiringConversion = new HashSet<string>
|
||||
{
|
||||
"DiagnosisPetitionTotalPenalty", "DisputeResolutionTotalPenalty"
|
||||
};
|
||||
return propertiesRequiringConversion.Contains(propertyName);
|
||||
}
|
||||
private static double MoneyToDouble(string value)
|
||||
{
|
||||
Console.WriteLine(value);
|
||||
var min = value.Length > 1 ? value.Substring(0, 2) : "";
|
||||
var test = min == "\u200e\u2212" ? value.MoneyToDouble() * -1 : value.MoneyToDouble();
|
||||
|
||||
Console.WriteLine(test);
|
||||
return test;
|
||||
}
|
||||
|
||||
|
||||
private static void ApplyHeaderStyle(ExcelRange cell)
|
||||
{
|
||||
cell.Style.Font.Bold = true;
|
||||
cell.Style.Fill.PatternType = ExcelFillStyle.Solid;
|
||||
cell.Style.Fill.BackgroundColor.SetColor(System.Drawing.Color.LightGray);
|
||||
cell.Style.HorizontalAlignment = ExcelHorizontalAlignment.Center;
|
||||
cell.Style.Border.BorderAround(ExcelBorderStyle.Thin);
|
||||
}
|
||||
private static void ApplyGeneralDataStyle(ExcelRange cell)
|
||||
{
|
||||
cell.Style.Border.BorderAround(ExcelBorderStyle.Thin);
|
||||
cell.Style.HorizontalAlignment = ExcelHorizontalAlignment.Center;
|
||||
cell.Style.VerticalAlignment = ExcelVerticalAlignment.Center;
|
||||
cell.Style.Fill.PatternType = ExcelFillStyle.Solid;
|
||||
}
|
||||
}
|
||||
@@ -13,5 +13,8 @@
|
||||
<ProjectReference Include="..\AccountMangement.Infrastructure.EFCore\AccountMangement.Infrastructure.EFCore.csproj" />
|
||||
<ProjectReference Include="..\CompanyManagment.EFCore\CompanyManagment.EFCore.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="CaseManagement\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.Board;
|
||||
|
||||
|
||||
@@ -10,4 +10,6 @@ public class MainViewModel
|
||||
{
|
||||
public List<CheckoutViewModel> MainList { get; set; }
|
||||
public string WorkshopSearch { get; set; }
|
||||
|
||||
public bool IsSysManager { get; set; }
|
||||
}
|
||||
@@ -1,7 +1,12 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Security.AccessControl;
|
||||
using _0_Framework.Application;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.Base;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
||||
using CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
||||
using CompanyManagment.App.Contracts.File1;
|
||||
using CompanyManagment.App.Contracts.Fine;
|
||||
using CompanyManagment.App.Contracts.Loan;
|
||||
@@ -12,10 +17,13 @@ namespace CompanyManagment.App.Contracts.CustomizeCheckout;
|
||||
|
||||
public class CustomizeCheckoutMandatoryViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// حقوق ماهانه
|
||||
/// </summary>
|
||||
public double MonthlySalary { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// حقوق ماهانه
|
||||
/// </summary>
|
||||
public double MonthlySalary { get; set; }
|
||||
|
||||
|
||||
#region Payments
|
||||
@@ -105,6 +113,8 @@ public class CustomizeCheckoutMandatoryViewModel
|
||||
public double EarlyExitDeduction { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// مساعده
|
||||
@@ -130,6 +140,7 @@ public class CustomizeCheckoutMandatoryViewModel
|
||||
#region Values
|
||||
public TimeSpan LateToWorkValue { get; set; }
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// تعداد روزهای کارکرد
|
||||
/// </summary>
|
||||
@@ -141,14 +152,14 @@ public class CustomizeCheckoutMandatoryViewModel
|
||||
/// مجموع مطالبات
|
||||
/// </summary>
|
||||
public double TotalClaimsDouble => MonthlySalary + FridayPay + OverTimePay + BaseYearsPay + BonusesPay + NightWorkPay +
|
||||
MarriedAllowance + ShiftPay + FamilyAllowance + LeavePay + RewardPay;
|
||||
MarriedAllowance + ShiftPay + FamilyAllowance + LeavePay + RewardPay;
|
||||
|
||||
/// <summary>
|
||||
/// مجموع کسورات
|
||||
/// </summary>
|
||||
public double TotalDeductionsDouble => FineAbsenceDeduction + InsuranceDeduction + LateToWorkDeduction +
|
||||
EarlyExitDeduction + SalaryAidDeduction + InstallmentDeduction +
|
||||
FineDeduction + TaxDeduction;
|
||||
EarlyExitDeduction + SalaryAidDeduction + InstallmentDeduction +
|
||||
FineDeduction + TaxDeduction;
|
||||
|
||||
/// <summary>
|
||||
/// مجموع مطالبات
|
||||
@@ -163,7 +174,7 @@ public class CustomizeCheckoutMandatoryViewModel
|
||||
/// <summary>
|
||||
/// مجموع پرداختی
|
||||
/// </summary>
|
||||
public double TotalPayment => TotalClaimsDouble - TotalDeductionsDouble;
|
||||
public double TotalPayment => Math.Truncate(TotalClaimsDouble - TotalDeductionsDouble);
|
||||
|
||||
#region Employee Information
|
||||
|
||||
@@ -186,5 +197,16 @@ public class CustomizeCheckoutMandatoryViewModel
|
||||
public List<RewardViewModel> RewardViewModels { get; set; }
|
||||
public List<LoanInstallmentViewModel> InstallmentViewModels{ get; set; }
|
||||
public List<SalaryAidViewModel> SalaryAidViewModels { get; set; }
|
||||
|
||||
public double SettingSalary { get; set; }
|
||||
public double DailyWage { get; set; }
|
||||
|
||||
public WorkshopShiftStatus ShiftStatus { get; set; }
|
||||
|
||||
public IrregularShift IrregularShift { get; set; }
|
||||
public ICollection<CustomizeRotatingShift> CustomizeRotatingShifts { get; set; } = [];
|
||||
|
||||
public ICollection<CustomizeSifts> EmployeeSettingsShifts { get; set; } = [];
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -2,6 +2,11 @@
|
||||
using CompanyManagment.App.Contracts.RollCall;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime;
|
||||
using System.Security.AccessControl;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.Base;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
||||
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
||||
using CompanyManagment.App.Contracts.Fine;
|
||||
using CompanyManagment.App.Contracts.Loan;
|
||||
using CompanyManagment.App.Contracts.Reward;
|
||||
@@ -66,7 +71,7 @@ namespace CompanyManagment.App.Contracts.CustomizeCheckout
|
||||
public string LeavePay { get; set; }
|
||||
public string RewardPay { get; set; }
|
||||
|
||||
|
||||
public bool IsBirthday { get; set; } = true;
|
||||
public string FineDeduction { get; set; }
|
||||
public string InsuranceDeduction { get; set; }
|
||||
public string TaxDeducation { get; set; }
|
||||
@@ -86,24 +91,32 @@ namespace CompanyManagment.App.Contracts.CustomizeCheckout
|
||||
public List<LoanInstallmentViewModel> InstallmentViewModels { get; set; }
|
||||
public List<SalaryAidViewModel> SalaryAidViewModels { get; set; }
|
||||
public bool TotalPaymentHide { get; set; }
|
||||
public PersonnelCheckoutDailyRollCallViewModel MonthlyRollCall { get; set; }
|
||||
public double TotalPaymentD { get; set; }
|
||||
|
||||
public PersonnelCheckoutDailyRollCallViewModel MonthlyRollCall { get; set; }
|
||||
|
||||
|
||||
|
||||
public string TotalLateToWorkDeduction { get; set; }
|
||||
public string TotalLateToWorkDeduction { get; set; }
|
||||
|
||||
public string LateToWorkValue { get; set; }
|
||||
|
||||
//public bool HasLeft { get; set; }
|
||||
//public string IsBlockCantracingParty { get; set; }
|
||||
//public string IsActiveString { get; set; }
|
||||
//public long WorkingHoursId { get; set; }
|
||||
//public string ArchiveCode { get; set; }
|
||||
//public string ConsumableItems { get; set; }
|
||||
//public string HousingAllowance { get; set; }
|
||||
//public string YearsPay { get; set; }
|
||||
public string SettingSalary { get; set; }
|
||||
public string DailyWage { get; set; }
|
||||
public WorkshopShiftStatus ShiftStatus { get; set; }
|
||||
|
||||
}
|
||||
public string EmployeePicture { get; set; }
|
||||
|
||||
|
||||
public IrregularShift IrregularShift { get; set; }
|
||||
public List<CustomizeRotatingShift> CustomizeRotatingShifts { get; set; }
|
||||
public List<CustomizeSifts> RegularShift { get; set; }
|
||||
|
||||
//public bool HasLeft { get; set; }
|
||||
//public string IsBlockCantracingParty { get; set; }
|
||||
//public string IsActiveString { get; set; }
|
||||
//public long WorkingHoursId { get; set; }
|
||||
//public string ArchiveCode { get; set; }
|
||||
//public string ConsumableItems { get; set; }
|
||||
//public string HousingAllowance { get; set; }
|
||||
//public string YearsPay { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,8 @@ namespace CompanyManagment.App.Contracts.CustomizeCheckout
|
||||
{
|
||||
public interface ICustomizeCheckoutApplication
|
||||
{
|
||||
public List<CustomizeCheckoutViewModel> Search(SearchCustomizeCheckout searchModel);
|
||||
List<CustomizeCheckoutViewModel> Search(SearchCustomizeCheckout searchModel);
|
||||
|
||||
OperationResult<List<EligibleEmployeesForCustomizeCheckoutViewModel>>
|
||||
GetWorkshopEmployeesEligibleForCheckoutInDates(long workshopId, int yearFa, int monthFa);
|
||||
|
||||
|
||||
@@ -4,9 +4,7 @@ public class SearchCustomizeCheckout
|
||||
{
|
||||
|
||||
public long WorkshopId { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
public int Month { get; set; }
|
||||
public int Year { get; set; }
|
||||
|
||||
@@ -14,6 +12,7 @@ public class SearchCustomizeCheckout
|
||||
public string SearchEndFa { get; set; }
|
||||
|
||||
public long EmployeeId { get; set; }
|
||||
|
||||
public long BankId { get; set; }
|
||||
|
||||
public CustomizeCheckoutOrderByEnum OrderBy { get; set; } = CustomizeCheckoutOrderByEnum.ContractStartDesc;
|
||||
|
||||
@@ -10,4 +10,6 @@ public class EmployeeSelectListViewModel
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public string EmployeeFullName { get; set; }
|
||||
public bool Black { get; set; }
|
||||
|
||||
}
|
||||
@@ -72,6 +72,9 @@ public interface IEmployeeApplication
|
||||
Task<GetEditEmployeeInEmployeeDocumentViewModel> GetEmployeeEditInEmployeeDocumentWorkFlow(long employeeId,
|
||||
long workshopId);
|
||||
Task<OperationResult> EditEmployeeInEmployeeDocumentWorkFlow(EditEmployeeInEmployeeDocument command);
|
||||
|
||||
Task<List<EmployeeSelectListViewModel>> WorkedEmployeesInWorkshopSelectList(long workshopId);
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.EmployeeClientTemp;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.Evidence;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.EvidenceDetail;
|
||||
|
||||
|
||||
49
CompanyManagment.App.Contracts/File1/FileExcelViewModel.cs
Normal file
49
CompanyManagment.App.Contracts/File1/FileExcelViewModel.cs
Normal file
@@ -0,0 +1,49 @@
|
||||
namespace CompanyManagment.App.Contracts.File1;
|
||||
|
||||
public class FileExcelViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// شماره بایگانی
|
||||
/// </summary>
|
||||
public long ArchiveNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// کلاسه پرونده
|
||||
/// </summary>
|
||||
public string FileClass { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// موکل
|
||||
/// </summary>
|
||||
public string Client { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// طرف دعوی
|
||||
/// </summary>
|
||||
public string LitigationParty { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ دادنامه تشخیص
|
||||
/// </summary>
|
||||
public string DiagnosisPetitionTotalPenalty { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ دادنامه حل اختلاف
|
||||
/// </summary>
|
||||
public string DisputeResolutionTotalPenalty { get; set; } = string.Empty;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// نام کاربری اداره کار
|
||||
/// </summary>
|
||||
public string MclsUsername { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
/// رمز عبور اداره کار
|
||||
/// </summary>
|
||||
public string MclsPassword { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// وضعیت پرونده. یک به معنی غیرفعال. دو به معنی فعال. سه به معنی خروج موقت
|
||||
/// </summary>
|
||||
public int Status { get; set; }
|
||||
}
|
||||
@@ -33,13 +33,22 @@ public class FileSearchModel
|
||||
public List<ArchiveNo_FileClass_UserIdList> ArchiveNo_FileClass_UserIdList { get; set; }
|
||||
|
||||
//public List<User> Users { get; set; }
|
||||
/// <summary>
|
||||
/// هیئت تشخیص
|
||||
/// </summary>
|
||||
public BoardSearchModel diagnosisBoard { get; set; }
|
||||
/// <summary>
|
||||
/// هیئت حل اختلاف
|
||||
/// </summary>
|
||||
public BoardSearchModel disputeResolutionBoard { get; set; }
|
||||
public ProceedingSessionSearchModel diagnosisProceedingSession { get; set; }
|
||||
public ProceedingSessionSearchModel disputeResolutionProceedingSession { get; set; }
|
||||
|
||||
public bool IsSearch { get; set; }
|
||||
|
||||
public int PageIndex { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Application;
|
||||
using CompanyManagment.App.Contracts.Employee;
|
||||
using CompanyManagment.App.Contracts.Employer;
|
||||
|
||||
@@ -23,4 +24,170 @@ public interface IFileApplication
|
||||
List<EmployeeViewModel> GetAllEmploees(bool filter = true);
|
||||
List<EmployerViewModel> GetAllEmployers(bool filter = true);
|
||||
//bool CheckValue(string viewModel, string searchModel);
|
||||
|
||||
#region Mahan
|
||||
/// <summary>
|
||||
/// اطلاعات برای نمایش اکسل
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<FileExcelViewModel>> GetExcelDetails();
|
||||
|
||||
|
||||
Task<List<FileListViewModel>> GetList(GetFileSearchModel searchModel);
|
||||
|
||||
Task<List<string>> GetAllArchiveNo();
|
||||
Task<List<string>> GetAllClassFiles();
|
||||
Task<List<EmployeeSelectListViewModel>> GetClientAndLitigation();
|
||||
Task<EditEmployee> GetClientDetails(long fileId);
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class GetFileSearchModel
|
||||
{
|
||||
/// <summary>
|
||||
/// شماره بایگانی
|
||||
/// </summary>
|
||||
public long ArchiveNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// کلاسه پرونده
|
||||
/// </summary>
|
||||
public string FileClass { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// اصیل دعوی (شامل جمع خواهان ها و خوانده ها)ء
|
||||
/// </summary>
|
||||
public long ClientOrLitigationPartyId { get; set; }
|
||||
/// <summary>
|
||||
/// شعبه هیئت تشخیص
|
||||
/// </summary>
|
||||
public string DiagnosisBoardBranch { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// شعبه هیئت حل اختلاف
|
||||
/// </summary>
|
||||
public string DisputeResolutionBranch { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// رییس هیئت تشخیص
|
||||
/// </summary>
|
||||
public string DiagnosisBoardChairMan { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// رییس هیئت حل اختلاف
|
||||
/// </summary>
|
||||
public string DisputeResolutionBoardChairMan { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ رسیدگی هیئت تشخیص - از
|
||||
/// </summary>
|
||||
public string DiagnosisBoardFromDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ رسیدگی هیئت تشخیص - تا
|
||||
/// </summary>
|
||||
public string DiagnosisBoardToDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ رسیدگی هیئت حل اختلاف - از
|
||||
/// </summary>
|
||||
public string DisputeResolutionBoardFromDate{ get; set; }
|
||||
/// <summary>
|
||||
/// تاریخ رسیدگی هیئت حل اختلاف - تا
|
||||
/// </summary>
|
||||
public string DisputeResolutionBoardToDate{ get; set; }
|
||||
|
||||
public int Status { get; set; }
|
||||
|
||||
|
||||
public int PageIndex { get; set; }
|
||||
}
|
||||
|
||||
public class FileListViewModel
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// شماره بایگانی
|
||||
/// </summary>
|
||||
public long ArchiveNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// کلاسه پرونده
|
||||
/// </summary>
|
||||
public string FileClass { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// موکل
|
||||
/// </summary>
|
||||
public string Client { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// طرف دعوی
|
||||
/// </summary>
|
||||
public string LitigationParty { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// هیئت تشخیص
|
||||
/// </summary>
|
||||
public FileListBoardViewModel DiagnosisBoard { get; set; }
|
||||
/// <summary>
|
||||
/// هیئت حل اختلاف
|
||||
/// </summary>
|
||||
public FileListBoardViewModel DisputeResolutionBoard { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// وضعیت پرونده. یک به معنی غیرفعال. دو به معنی فعال. سه به معنی خروج موقت
|
||||
/// </summary>
|
||||
public int Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// درج وکالتنامه . یک یعنی ندارد . دو یعنی دارد
|
||||
/// </summary>
|
||||
public int HasMandate { get; set; }
|
||||
}
|
||||
|
||||
public class FileListBoardViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// تاریخ دادخواست
|
||||
/// </summary>
|
||||
public string PetitionDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// اولین تاریخ رسیدگی
|
||||
/// </summary>
|
||||
public string FirstResolutionPetitionDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// آخرین تاریخ رسیدگی
|
||||
/// </summary>
|
||||
public string LastResolutionPetitionDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// آخرین نوبت تاریخ رسیدگی
|
||||
/// </summary>
|
||||
public string LastResolutionPetitionTurn { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// تاریخ دادنامه
|
||||
/// </summary>
|
||||
public string PetitionIssuanceDate { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ جریمه
|
||||
/// </summary>
|
||||
public string TotalPenalty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// شعبه
|
||||
/// </summary>
|
||||
public string Branch { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// رئیس هیئت مدیره
|
||||
/// </summary>
|
||||
public string BoardChairman { get; set; }
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using System.Threading.Tasks;
|
||||
using _0_Framework.Application;
|
||||
using CompanyManagment.App.Contracts.File1;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.FileAlert;
|
||||
@@ -13,4 +14,5 @@ public interface IFileAlertApplication
|
||||
List<EditFileAlert> Search(FileAlertSearchModel searchModel);
|
||||
List<FileAlertViewModel> GetFilesAlerts(List<FileViewModel> files);
|
||||
int getMaximumAdditionalDeadlineTimes(int additionalDeadline);
|
||||
Task<List<FileAlertViewModel>> GetFileAlerts(FileAlertSearchModel searchModel);
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
using CompanyManagment.App.Contracts.File1;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.FileState;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.FileTiming;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.FileTitle;
|
||||
|
||||
|
||||
@@ -13,4 +13,5 @@ public class FineSearchViewModel
|
||||
public int PageIndex { get; set; }
|
||||
public string StartDate { get; set; }
|
||||
public string EndDate { get; set; }
|
||||
public bool ShowAsGrouped { get; set; }
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using _0_Framework.Application;
|
||||
using CompanyManagment.App.Contracts.Loan;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.Fine;
|
||||
|
||||
@@ -15,4 +16,7 @@ public class FineViewModel
|
||||
public string FineDate { get; set; }
|
||||
public IsActive IsActive { get; set; }
|
||||
public string CreationDate { get; set; }
|
||||
public string YearFa { get; set; }
|
||||
public string MonthFa { get; set; }
|
||||
public double AmountDouble { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.Fine;
|
||||
|
||||
public class FinesGroupedByDateViewModel
|
||||
{
|
||||
public string MonthFa { get; set; }
|
||||
public string YearFa { get; set; }
|
||||
public List<FinesGroupedByDateViewModelItems> Fines { get; set; }
|
||||
public string TotalAmount { get; set; }
|
||||
}
|
||||
public class FinesGroupedByDateViewModelItems
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public string EmployeeName { get; set; }
|
||||
public string PersonnelCode { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Amount { get; set; }
|
||||
public string FineDateTimeFa { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.Fine;
|
||||
|
||||
public class FinesGroupedByEmployeeViewModel
|
||||
{
|
||||
public string EmployeeName { get; set; }
|
||||
public List<FinesGroupedByEmployeeViewModelItems> Fines { get; set; }
|
||||
public string TotalAmount { get; set; }
|
||||
public long EmployeeId { get; set; }
|
||||
}
|
||||
|
||||
public class FinesGroupedByEmployeeViewModelItems
|
||||
{
|
||||
public string FineDateTimeFa { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Amount { get; set; }
|
||||
public long Id { get; set; }
|
||||
public string PersonnelCode { get; set; }
|
||||
}
|
||||
15
CompanyManagment.App.Contracts/Fine/FinesGroupedViewModel.cs
Normal file
15
CompanyManagment.App.Contracts/Fine/FinesGroupedViewModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
using CompanyManagment.App.Contracts.EmployeeInsurancListData;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.Fine;
|
||||
|
||||
public class FinesGroupedViewModel
|
||||
{
|
||||
|
||||
public List<FinesGroupedByDateViewModel> GroupedByDate { get; set; }
|
||||
public List<FinesGroupedByEmployeeViewModel> GroupedByEmployee { get; set; }
|
||||
public List<FineViewModel> FineListViewModels { get; set; }
|
||||
|
||||
}
|
||||
|
||||
@@ -11,4 +11,12 @@ public interface IFineApplication
|
||||
EditFineViewModel GetDetails(long id);
|
||||
OperationResult Remove(long id);
|
||||
OperationResult RemoveRange(List<long> ids);
|
||||
#region Pooya
|
||||
|
||||
/// <summary>
|
||||
/// گروهبندی بر اساس ماه هنگام جستجو با انتخاب کارمند
|
||||
/// </summary>
|
||||
FinesGroupedViewModel GetSearchListAsGrouped(FineSearchViewModel searchModel);
|
||||
|
||||
#endregion
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
using CompanyManagment.App.Contracts.Fine;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.FineSubject;
|
||||
|
||||
@@ -0,0 +1,85 @@
|
||||
using _0_Framework.Domain;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.InstitutionPlan;
|
||||
|
||||
public class CreateInstitutionPlanPercentage : EntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// قرارداد و تصفیه
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int ContractAndCheckoutPercent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// بیمه
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int InsurancePercent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// حضورغباب
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int RollCallPercent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// فیش غیر رسمی
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int CustomizeCheckoutPercent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// خدمات حضوری قرداد و تصفیه
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int ContractAndCheckoutInPersonPercent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// خدمات حضوری بیمه
|
||||
/// درصد از مزد روزانه
|
||||
/// </summary>
|
||||
public int InsuranceInPersonPercent { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// قرارداد و تصفیه
|
||||
/// درصد از مزد روزانه
|
||||
/// string
|
||||
/// </summary>
|
||||
public string ContractAndCheckoutPercentStr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// بیمه
|
||||
/// درصد از مزد روزانه
|
||||
/// string
|
||||
/// </summary>
|
||||
public string InsurancePercentStr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// حضورغباب
|
||||
/// درصد از مزد روزانه
|
||||
/// string
|
||||
/// </summary>
|
||||
public string RollCallPercentStr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// فیش غیر رسمی
|
||||
/// درصد از مزد روزانه
|
||||
/// string
|
||||
/// </summary>
|
||||
public string CustomizeCheckoutPercentStr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// خدمات حضوری قرداد و تصفیه
|
||||
/// درصد از مزد روزانه
|
||||
/// string
|
||||
/// </summary>
|
||||
public string ContractAndCheckoutInPersonPercentStr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// خدمات حضوری بیمه
|
||||
/// درصد از مزد روزانه
|
||||
/// string
|
||||
/// </summary>
|
||||
public string InsuranceInPersonPercentStr { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace CompanyManagment.App.Contracts.InstitutionPlan;
|
||||
|
||||
public class EditInstitutionPlanPercentage : CreateInstitutionPlanPercentage
|
||||
{
|
||||
public long Id { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework.Application;
|
||||
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.InstitutionPlan;
|
||||
|
||||
public interface IInstitutionPlanApplication
|
||||
{
|
||||
/// <summary>
|
||||
/// ایجاد یا ویرایش درصد پلن ها
|
||||
/// </summary>
|
||||
/// <param name="command"></param>
|
||||
/// <returns></returns>
|
||||
OperationResult CreateInstitutionPlanPercentage(CreateInstitutionPlanPercentage command);
|
||||
|
||||
/// <summary>
|
||||
/// دریافت لیست 30 تایی مبالغ سرویس ها به ازای هر نفر
|
||||
/// </summary>
|
||||
/// <param name="pageIndex"></param>
|
||||
/// <param name="countPeron"></param>
|
||||
/// <returns></returns>
|
||||
List<InstitutionPlanViewModel> GetInstitutionPlanList(int pageIndex, int countPeron);
|
||||
|
||||
/// <summary>
|
||||
/// دریافت درصد ها برای لود در مودال ایجاد
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
EditInstitutionPlanPercentage GetByFirst();
|
||||
|
||||
/// <summary>
|
||||
/// دریافت مبالغ سرویس ها برای هر کارگاه
|
||||
/// بر اساس تعداد پرسنل کارگاه
|
||||
/// </summary>
|
||||
/// <param name="command"></param>
|
||||
/// <returns></returns>
|
||||
InstitutionPlanViewModel GetInstitutionPlanForWorkshop(WorkshopTempViewModel command);
|
||||
}
|
||||
@@ -0,0 +1,126 @@
|
||||
namespace CompanyManagment.App.Contracts.InstitutionPlan;
|
||||
|
||||
public class InstitutionPlanViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// تعداد پرسنل
|
||||
/// </summary>
|
||||
public int CountPerson { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ قرارداد و تصفیه
|
||||
/// </summary>
|
||||
public string ContractAndCheckout{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ بیمه
|
||||
/// </summary>
|
||||
public string Insurance { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ حضورغباب
|
||||
/// </summary>
|
||||
public string RollCall { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ فیش غیر رسمی
|
||||
/// </summary>
|
||||
public string CustomizeCheckout { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ خدمات حضوری قرداد و تصفیه
|
||||
/// </summary>
|
||||
public string ContractAndCheckoutInPerson { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ خدمات حضوری بیمه
|
||||
/// </summary>
|
||||
public string InsuranceInPerson { get; set; }
|
||||
|
||||
|
||||
#region Double
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ قرارداد و تصفیه
|
||||
/// Double
|
||||
/// </summary>
|
||||
public double ContractAndCheckoutDouble { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ بیمه
|
||||
/// Double
|
||||
/// </summary>
|
||||
public double InsuranceDouble { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ حضورغباب
|
||||
/// Double
|
||||
/// </summary>
|
||||
public double RollCallDouble { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ فیش غیر رسمی
|
||||
/// Double
|
||||
/// </summary>
|
||||
public double CustomizeCheckoutDouble { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ خدمات حضوری قرداد و تصفیه
|
||||
/// Double
|
||||
/// </summary>
|
||||
public double ContractAndCheckoutInPersonDouble { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ خدمات حضوری بیمه
|
||||
/// Double
|
||||
/// </summary>
|
||||
public double InsuranceInPersonDouble { get; set; }
|
||||
#endregion
|
||||
|
||||
|
||||
#region Total
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ کل خدمات حضوری
|
||||
/// </summary>
|
||||
public string InPersonSumAmountStr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ کل خدمات آنلاین
|
||||
/// </summary>
|
||||
public string OnlineOnlySumAmountStr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ کل خدمات حضوری و آنلاین
|
||||
/// </summary>
|
||||
public string OnlineAndInPersonSumAmountStr { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ کل خدمات حضوری و آنلاین
|
||||
/// double
|
||||
/// </summary>
|
||||
public double OnlineAndInPersonSumAmountDouble { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ کل خدمات حضوری
|
||||
/// double
|
||||
/// </summary>
|
||||
public double InPersonSumAmountDouble { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ کل خدمات آنلاین
|
||||
/// double
|
||||
/// </summary>
|
||||
public double OnlineOnlySumAmountDouble { get; set; }
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -4,6 +4,8 @@ using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
||||
using CompanyManagment.App.Contracts.WorkingHoursTemp;
|
||||
|
||||
namespace CompanyManagment.App.Contracts.Leave;
|
||||
|
||||
@@ -32,4 +34,7 @@ public class CreateLeave
|
||||
public int Year { get; set; }
|
||||
public int Month { get; set; }
|
||||
public List<LeaveViewModel> LeaveSearch { get; set; }
|
||||
public List<CustomizeRotatingShiftsViewModel> RotatingShifts { get; set; }
|
||||
public bool HasRollCall { get; set; }
|
||||
public CustomizeRotatingShiftsViewModel SelectedShift { get; set; }
|
||||
}
|
||||
@@ -33,7 +33,8 @@ public interface ILeaveApplication
|
||||
#region Pooya
|
||||
OperationResult ValidateNewLeaveWithExistingRollCalls(long workshopId, long employeeId, string paidLeaveType, DateTime start, DateTime end);
|
||||
|
||||
TimeSpan GetEmployeeLeaveTimeSpanInDates(long workshopId, long employeeId, string startFa, string endFa);
|
||||
TimeSpan GetEmployeeLeaveTimeSpanInDates(long workshopId, long employeeId, string startFa, string endFa,
|
||||
string type);
|
||||
|
||||
#endregion
|
||||
}
|
||||
@@ -24,4 +24,7 @@ public class LeaveViewModel
|
||||
public DateTime CreationDate { get; set; }
|
||||
|
||||
public int DayCounter { get; set; }
|
||||
|
||||
public TimeSpan ShiftDuration { get; set; }
|
||||
public bool HasShiftDuration { get; set; }
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user