Compare commits

..

1 Commits

Author SHA1 Message Date
6eba59fa7b set leftWork 2025-04-05 21:44:05 +03:30
1419 changed files with 103071 additions and 654734 deletions

View File

@@ -1,48 +0,0 @@
name: Deploy Development ASP.NET Core App to IIS
on:
push:
branches:
- Main
env:
DOTNET_ENVIRONMENT: Development
jobs:
build-and-deploy:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x' # یا نسخه پروژه‌ت
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release
- name: Publish
run: dotnet publish --configuration Release --output ./publish /p:EnvironmentName=Development --no-build
- name: Deploy to IIS via Web Deploy
shell: powershell
run: |
$publishFolder = Resolve-Path ./publish
& "C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe" `
-verb:sync `
-source:contentPath="$publishFolder" `
-dest:contentPath="dadmehrg",computerName="https://171.22.24.15:8172/msdeploy.axd?site=dadmehrg",userName=".\deployuser",password="R2rNpdnetP3j>q5b18",authType="Basic" `
-allowUntrusted `
-enableRule:AppOffline
env:
SERVER_HOST: your-server-ip-or-domain
DEPLOY_USER: ${{ secrets.DEPLOY_USER }}
DEPLOY_PASSWORD: ${{ secrets.DEPLOY_PASSWORD }}

2
.gitignore vendored
View File

@@ -361,4 +361,4 @@ MigrationBackup/
# # Fody - auto-generated XML schema # # Fody - auto-generated XML schema
# FodyWeavers.xsd # FodyWeavers.xsd
.idea

View File

@@ -14,10 +14,6 @@
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2" /> <PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2" />
<PackageReference Include="PersianTools.Core" Version="2.0.4" /> <PackageReference Include="PersianTools.Core" Version="2.0.4" />
<PackageReference Include="System.Drawing.Common" Version="9.0.0" /> <PackageReference Include="System.Drawing.Common" Version="9.0.0" />
<PackageReference Include="MD.PersianDateTime.Standard" Version="2.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="7.2.0" />
</ItemGroup> </ItemGroup>

View File

@@ -1,6 +0,0 @@
namespace _0_Framework.Application;
public class AppSettingConfiguration
{
public string Domain { get; set; }
}

View File

@@ -12,72 +12,69 @@ namespace _0_Framework.Application;
public class AuthHelper : IAuthHelper public class AuthHelper : IAuthHelper
{ {
private readonly IHttpContextAccessor _contextAccessor; private readonly IHttpContextAccessor _contextAccessor;
public AuthHelper(IHttpContextAccessor contextAccessor) public AuthHelper(IHttpContextAccessor contextAccessor)
{ {
_contextAccessor = contextAccessor; _contextAccessor = contextAccessor;
} }
public AuthViewModel CurrentAccountInfo() public AuthViewModel CurrentAccountInfo()
{ {
var result = new AuthViewModel(); var result = new AuthViewModel();
if (!IsAuthenticated()) if (!IsAuthenticated())
return result; return result;
var claims = _contextAccessor.HttpContext.User.Claims.ToList(); var claims = _contextAccessor.HttpContext.User.Claims.ToList();
result.Id = long.Parse(claims.FirstOrDefault(x => x.Type == "AccountId").Value); result.Id = long.Parse(claims.FirstOrDefault(x => x.Type == "AccountId").Value);
result.Username = claims.FirstOrDefault(x => x.Type == "Username")?.Value; result.Username = claims.FirstOrDefault(x => x.Type == "Username")?.Value;
result.ProfilePhoto = claims.FirstOrDefault(x => x.Type == "ProfilePhoto")?.Value; result.ProfilePhoto = claims.FirstOrDefault(x => x.Type == "ProfilePhoto")?.Value;
result.RoleId = long.Parse(claims.FirstOrDefault(x => x.Type == ClaimTypes.Role)?.Value); result.RoleId = long.Parse(claims.FirstOrDefault(x => x.Type == ClaimTypes.Role)?.Value);
result.Fullname = claims.FirstOrDefault(x => x.Type == ClaimTypes.Name)?.Value; result.Fullname = claims.FirstOrDefault(x => x.Type == ClaimTypes.Name)?.Value;
result.Role = claims.FirstOrDefault(x => x.Type == "RoleName")?.Value; result.Role = claims.FirstOrDefault(x => x.Type == "RoleName")?.Value;
result.ClientAriaPermission = claims.FirstOrDefault(x => x.Type == "ClientAriaPermission").Value; result.ClientAriaPermission =claims.FirstOrDefault(x => x.Type == "ClientAriaPermission").Value;
result.AdminAreaPermission = claims.FirstOrDefault(x => x.Type == "AdminAreaPermission").Value; result.AdminAreaPermission = claims.FirstOrDefault(x => x.Type == "AdminAreaPermission").Value;
result.PositionValue = !string.IsNullOrWhiteSpace(claims.FirstOrDefault(x => x.Type == "PositionValue")?.Value) ? int.Parse(claims.FirstOrDefault(x => x.Type == "PositionValue")?.Value) : 0; result.PositionValue = !string.IsNullOrWhiteSpace(claims.FirstOrDefault(x => x.Type == "PositionValue")?.Value) ? int.Parse(claims.FirstOrDefault(x => x.Type == "PositionValue")?.Value) : 0;
result.WorkshopList = Tools.DeserializeFromBsonList<WorkshopClaim>(claims.FirstOrDefault(x => x is { Type: "workshopList" })?.Value); result.WorkshopList = Tools.DeserializeFromBsonList<WorkshopClaim>(claims.FirstOrDefault(x => x is { Type: "workshopList" })?.Value);
result.WorkshopSlug = claims.FirstOrDefault(x => x is { Type: "WorkshopSlug" }).Value; result.WorkshopSlug = claims.FirstOrDefault(x => x is { Type: "WorkshopSlug" }).Value;
result.Mobile = claims.FirstOrDefault(x => x is { Type: "Mobile" }).Value; result.Mobile = claims.FirstOrDefault(x => x is { Type: "Mobile" }).Value;
result.SubAccountId = long.Parse(claims.FirstOrDefault(x => x.Type == "SubAccountId").Value); result.SubAccountId = long.Parse(claims.FirstOrDefault(x => x.Type == "SubAccountId").Value);
result.WorkshopName = claims.FirstOrDefault(x => x is { Type: "WorkshopName" })?.Value; result.WorkshopName = claims.FirstOrDefault(x => x is { Type: "WorkshopName" })?.Value;
result.Permissions = Tools.DeserializeFromBsonList<int>(claims.FirstOrDefault(x => x is { Type: "permissions" })?.Value); return result;
result.RoleName = claims.FirstOrDefault(x => x is { Type: "RoleName" })?.Value; }
result.WorkshopId = long.Parse(claims.FirstOrDefault(x => x.Type == "WorkshopId")?.Value??"0");
return result;
}
public List<int> GetPermissions() public List<int> GetPermissions()
{ {
if (!IsAuthenticated()) if (!IsAuthenticated())
return new List<int>(); return new List<int>();
var permissions = _contextAccessor.HttpContext.User.Claims.FirstOrDefault(x => x.Type == "permissions") var permissions = _contextAccessor.HttpContext.User.Claims.FirstOrDefault(x => x.Type == "permissions")
?.Value; ?.Value;
return Tools.DeserializeFromBsonList<int>(permissions); //Mahan return Tools.DeserializeFromBsonList<int>(permissions); //Mahan
} }
public long CurrentAccountId() public long CurrentAccountId()
{ {
return IsAuthenticated() return IsAuthenticated()
? long.Parse(_contextAccessor.HttpContext.User.Claims.First(x => x.Type == "AccountId")?.Value) ? long.Parse(_contextAccessor.HttpContext.User.Claims.First(x => x.Type == "AccountId")?.Value)
: 0; : 0;
} }
public long CurrentSubAccountId() public long CurrentSubAccountId()
{ {
return IsAuthenticated() return IsAuthenticated()
? long.Parse(_contextAccessor.HttpContext.User.Claims.First(x => x.Type == "SubAccountId")?.Value) ? long.Parse(_contextAccessor.HttpContext.User.Claims.First(x => x.Type == "SubAccountId")?.Value)
: 0; : 0;
} }
public string CurrentAccountMobile() public string CurrentAccountMobile()
{ {
return IsAuthenticated() return IsAuthenticated()
? _contextAccessor.HttpContext.User.Claims.First(x => x.Type == "Mobile")?.Value ? _contextAccessor.HttpContext.User.Claims.First(x => x.Type == "Mobile")?.Value
: ""; : "";
} }
#region Vafa #region Vafa
public void UpdateWorkshopSlugClaim(string newWorkshopSlug, string newWorkshopName,long newWorkshopId) public void UpdateWorkshopSlugClaim(string newWorkshopSlug, string newWorkshopName)
{ {
var user = _contextAccessor.HttpContext.User; var user = _contextAccessor.HttpContext.User;
@@ -86,7 +83,6 @@ public class AuthHelper : IAuthHelper
var claimsIdentity = (ClaimsIdentity)user.Identity; var claimsIdentity = (ClaimsIdentity)user.Identity;
var existingClaimSlug = claimsIdentity.FindFirst("WorkshopSlug"); var existingClaimSlug = claimsIdentity.FindFirst("WorkshopSlug");
var existingClaimName = claimsIdentity.FindFirst("WorkshopName"); var existingClaimName = claimsIdentity.FindFirst("WorkshopName");
var existingWorkshopId = claimsIdentity.FindFirst("WorkshopId");
if (existingClaimSlug != null) if (existingClaimSlug != null)
{ {
@@ -98,14 +94,9 @@ public class AuthHelper : IAuthHelper
claimsIdentity.RemoveClaim(existingClaimName); claimsIdentity.RemoveClaim(existingClaimName);
} }
if (existingWorkshopId != null)
{
claimsIdentity.RemoveClaim(existingWorkshopId);
}
claimsIdentity.AddClaim(new Claim("WorkshopSlug", newWorkshopSlug)); claimsIdentity.AddClaim(new Claim("WorkshopSlug", newWorkshopSlug));
claimsIdentity.AddClaim(new Claim("WorkshopName", newWorkshopName)); claimsIdentity.AddClaim(new Claim("WorkshopName", newWorkshopName));
claimsIdentity.AddClaim(new Claim("WorkshopId",newWorkshopId.ToString()));
var authProperties = new AuthenticationProperties var authProperties = new AuthenticationProperties
@@ -120,175 +111,157 @@ public class AuthHelper : IAuthHelper
} }
public string GetWorkshopSlug() public string GetWorkshopSlug()
{ {
return CurrentAccountInfo().ClientAriaPermission == "true" return CurrentAccountInfo().ClientAriaPermission == "true"
? _contextAccessor.HttpContext.User.Claims.First(x => x.Type == "WorkshopSlug")?.Value ? _contextAccessor.HttpContext.User.Claims.First(x => x.Type == "WorkshopSlug")?.Value
: ""; : "";
} }
public string GetWorkshopName() public string GetWorkshopName()
{ {
var workshopName = _contextAccessor.HttpContext.User.Claims.FirstOrDefault(x => x.Type == "ClientAriaPermission")?.Value == "true"; var workshopName = _contextAccessor.HttpContext.User.Claims.FirstOrDefault(x => x.Type == "ClientAriaPermission")?.Value == "true";
if (workshopName) if (workshopName)
{ {
return _contextAccessor.HttpContext.User.Claims.First(x => x.Type == "WorkshopName")?.Value; return _contextAccessor.HttpContext.User.Claims.First(x => x.Type == "WorkshopName")?.Value;
} }
return "";
}
return "";
}
#endregion #endregion
public long GetWorkshopId()
{
return long.Parse(_contextAccessor.HttpContext?.User.Claims.FirstOrDefault(x => x.Type == "WorkshopId")?.Value ?? "0");
}
public string CurrentAccountRole() public string CurrentAccountRole()
{ {
if (IsAuthenticated()) if (IsAuthenticated())
return _contextAccessor.HttpContext.User.Claims.FirstOrDefault(x => x.Type == ClaimTypes.Role)?.Value; return _contextAccessor.HttpContext.User.Claims.FirstOrDefault(x => x.Type == ClaimTypes.Role)?.Value;
return null; return null;
} }
public bool IsAuthenticated() public bool IsAuthenticated()
{ {
return _contextAccessor.HttpContext.User.Identity.IsAuthenticated; return _contextAccessor.HttpContext.User.Identity.IsAuthenticated;
//var claims = _contextAccessor.HttpContext.User.Claims.ToList(); //var claims = _contextAccessor.HttpContext.User.Claims.ToList();
//if (claims.Count > 0) //if (claims.Count > 0)
// return true; // return true;
//return false; //return false;
//return claims.Count > 0; //return claims.Count > 0;
} }
public void Signin(AuthViewModel account) public void Signin(AuthViewModel account)
{ {
#region MahanChanges #region MahanChanges
if (account.Id == 322) var permissions = account.Permissions is { Count: > 0 } ? Tools.SerializeToBson(account.Permissions) : "";
account.Permissions.AddRange([3060301, 30603, 30604, 30605]); var workshopBson = account.WorkshopList is { Count: > 0 } ? Tools.SerializeToBson(account.WorkshopList) : "";
var slug = account.WorkshopSlug ?? "";
var permissions = account.Permissions is { Count: > 0 } ? Tools.SerializeToBson(account.Permissions) : ""; #endregion
var claims = new List<Claim>
{
var workshopBson = account.WorkshopList is { Count: > 0 } ? Tools.SerializeToBson(account.WorkshopList) : ""; new Claim("AccountId", account.Id.ToString()),
var slug = account.WorkshopSlug ?? ""; new Claim(ClaimTypes.Name, account.Fullname),
new Claim(ClaimTypes.Role, account.RoleId.ToString()),
#endregion new Claim("Username", account.Username), // Or Use ClaimTypes.NameIdentifier
var claims = new List<Claim>
{
new Claim("AccountId", account.Id.ToString()),
new Claim(ClaimTypes.Name, account.Fullname),
new Claim(ClaimTypes.Role, account.RoleId.ToString()),
new Claim("Username", account.Username), // Or Use ClaimTypes.NameIdentifier
new Claim("permissions", permissions), new Claim("permissions", permissions),
new Claim("Mobile", account.Mobile), new Claim("Mobile", account.Mobile),
new Claim("ProfilePhoto", account.ProfilePhoto ), new Claim("ProfilePhoto", account.ProfilePhoto ),
new Claim("RoleName", account.RoleName), new Claim("RoleName", account.RoleName),
new Claim("SubAccountId", account.SubAccountId.ToString()), new Claim("SubAccountId", account.SubAccountId.ToString()),
new Claim("AdminAreaPermission", account.AdminAreaPermission.ToString()), new Claim("AdminAreaPermission", account.AdminAreaPermission.ToString()),
new Claim("ClientAriaPermission", account.ClientAriaPermission.ToString()), new Claim("ClientAriaPermission", account.ClientAriaPermission.ToString()),
new Claim("IsCamera", "false"), new Claim("IsCamera", "false"),
new Claim("PositionValue",account.PositionValue.ToString()), new Claim("PositionValue",account.PositionValue.ToString()),
//mahanChanges //mahanChanges
new("workshopList",workshopBson), new("workshopList",workshopBson),
new("WorkshopSlug",slug), new("WorkshopSlug",slug),
new("WorkshopId", account.WorkshopId.ToString()), new("WorkshopName",account.WorkshopName??"")
new("WorkshopName",account.WorkshopName??"")
}; };
var claimsIdentity = new ClaimsIdentity(claims, CookieAuthenticationDefaults.AuthenticationScheme); var claimsIdentity = new ClaimsIdentity(claims, CookieAuthenticationDefaults.AuthenticationScheme);
var authProperties = new AuthenticationProperties var authProperties = new AuthenticationProperties
{ {
ExpiresUtc = DateTimeOffset.UtcNow.AddDays(1) ExpiresUtc = DateTimeOffset.UtcNow.AddDays(1)
}; };
_contextAccessor.HttpContext.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme, _contextAccessor.HttpContext.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme,
new ClaimsPrincipal(claimsIdentity), new ClaimsPrincipal(claimsIdentity),
authProperties); authProperties);
} }
#region Camera #region Camera
public void CameraSignIn(CameraAuthViewModel account) public void CameraSignIn(CameraAuthViewModel account)
{ {
var claims = new List<Claim> var claims = new List<Claim>
{ {
new Claim("AccountId", account.Id.ToString()), new Claim("AccountId", account.Id.ToString()),
new Claim("Username", account.Username), // Or Use ClaimTypes.NameIdentifier new Claim("Username", account.Username), // Or Use ClaimTypes.NameIdentifier
new Claim("WorkshopId", account.WorkshopId.ToString()), new Claim("WorkshopId", account.WorkshopId.ToString()),
new Claim("WorkshopName", account.WorkshopName), new Claim("WorkshopName", account.WorkshopName),
new Claim("Mobile", account.Mobile), new Claim("Mobile", account.Mobile),
new Claim("AccountId", account.AccountId.ToString()), new Claim("AccountId", account.AccountId.ToString()),
new Claim("IsActiveString", account.IsActiveString), new Claim("IsActiveString", account.IsActiveString),
new Claim("IsCamera", "true"), new Claim("IsCamera", "true"),
}; };
var claimsIdentity = new ClaimsIdentity(claims, CookieAuthenticationDefaults.AuthenticationScheme); var claimsIdentity = new ClaimsIdentity(claims, CookieAuthenticationDefaults.AuthenticationScheme);
var authProperties = new AuthenticationProperties var authProperties = new AuthenticationProperties
{ {
//ExpiresUtc = DateTimeOffset.UtcNow.AddDays(30) //ExpiresUtc = DateTimeOffset.UtcNow.AddDays(30)
ExpiresUtc = new DateTimeOffset(year: 2100, month: 1, day: 1, hour: 0, minute: 0, second: 0, offset: TimeSpan.Zero) ExpiresUtc = new DateTimeOffset(year: 2100, month: 1, day: 1, hour: 0, minute: 0, second: 0, offset: TimeSpan.Zero)
}; };
_contextAccessor.HttpContext.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme, _contextAccessor.HttpContext.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme,
new ClaimsPrincipal(claimsIdentity), new ClaimsPrincipal(claimsIdentity),
authProperties); authProperties);
} }
public CameraAuthViewModel CameraAccountInfo() public CameraAuthViewModel CameraAccountInfo()
{ {
var result = new CameraAuthViewModel(); var result = new CameraAuthViewModel();
if (!IsAuthenticated()) if (!IsAuthenticated())
return result; return result;
var claims = _contextAccessor.HttpContext.User.Claims.ToList(); var claims = _contextAccessor.HttpContext.User.Claims.ToList();
result.Id = long.Parse(claims.FirstOrDefault(x => x.Type == "AccountId").Value); result.Id = long.Parse(claims.FirstOrDefault(x => x.Type == "AccountId").Value);
result.Username = claims.FirstOrDefault(x => x.Type == "Username")?.Value; result.Username = claims.FirstOrDefault(x => x.Type == "Username")?.Value;
result.WorkshopId = long.Parse(claims.FirstOrDefault(x => x.Type == "WorkshopId")?.Value); result.WorkshopId = long.Parse(claims.FirstOrDefault(x => x.Type == "WorkshopId")?.Value);
result.WorkshopName = claims.FirstOrDefault(x => x.Type == "WorkshopName").Value; result.WorkshopName = claims.FirstOrDefault(x => x.Type == "WorkshopName").Value;
result.Mobile = claims.FirstOrDefault(x => x.Type == "Mobile").Value; result.Mobile = claims.FirstOrDefault(x => x.Type == "Mobile").Value;
result.AccountId = long.Parse(claims.FirstOrDefault(x => x.Type == "AccountId")?.Value); result.AccountId = long.Parse(claims.FirstOrDefault(x => x.Type == "AccountId")?.Value);
result.IsActiveString = claims.FirstOrDefault(x => x.Type == "IsActiveString").Value; result.IsActiveString = claims.FirstOrDefault(x => x.Type == "IsActiveString").Value;
return result; return result;
} }
#endregion #endregion
public void SignOut() public void SignOut()
{ {
_contextAccessor.HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme); _contextAccessor.HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
} }
#region Pooya #region Pooya
public (long Id, UserType userType, long roleId) GetUserTypeWithId() public (long Id, UserType userType) GetUserTypeWithId()
{ {
if (!IsAuthenticated()) if (!IsAuthenticated())
return (0, UserType.Anonymous, 0); return (0, UserType.Anonymous);
var claims = _contextAccessor.HttpContext.User.Claims.ToList(); var claims = _contextAccessor.HttpContext.User.Claims.ToList();
var subAccountId = long.Parse(claims.FirstOrDefault(x => x.Type == "SubAccountId")?.Value ?? "0"); var subAccountId = long.Parse(claims.FirstOrDefault(x => x.Type == "SubAccountId")?.Value ?? "0");
if (subAccountId > 0) if (subAccountId > 0)
return (subAccountId, UserType.SubAccount, 0); return (subAccountId, UserType.SubAccount);
var id = long.Parse(_contextAccessor.HttpContext.User.Claims.First(x => x.Type == "AccountId")?.Value); var id = long.Parse(_contextAccessor.HttpContext.User.Claims.First(x => x.Type == "AccountId")?.Value);
if (claims.FirstOrDefault(x => x.Type == "AdminAreaPermission")?.Value == "true") if (claims.FirstOrDefault(x => x.Type == "AdminAreaPermission")?.Value == "true")
{ return (id, UserType.Admin);
var roleId = long.Parse(claims.FirstOrDefault(x => x.Type == ClaimTypes.Role)?.Value ?? "0");
return (id, UserType.Admin, roleId);
}
return (id, UserType.Client, 0); return (id, UserType.Client);
} }
#endregion #endregion
} }

View File

@@ -20,7 +20,6 @@ public class AuthViewModel
public int? PositionValue { get; set; } public int? PositionValue { get; set; }
public string WorkshopSlug { get; set; } public string WorkshopSlug { get; set; }
public long WorkshopId { get; set; }
public string WorkshopName { get; set; } public string WorkshopName { get; set; }
public List<WorkshopClaim> WorkshopList { get; set; } public List<WorkshopClaim> WorkshopList { get; set; }

View File

@@ -1,8 +0,0 @@
namespace _0_Framework.Application.Enums;
public enum ActivationStatus
{
None = 0,
Active = 1,
DeActive = 2
}

View File

@@ -1,8 +0,0 @@
namespace _0_Framework.Application.Enums;
public enum LegalType
{
None = 0,
Real = 1,
Legal = 2
}

View File

@@ -17,12 +17,11 @@ public interface IAuthHelper
#region Vafa #region Vafa
void UpdateWorkshopSlugClaim(string workshopSlug, string workshopName, long workshopId); void UpdateWorkshopSlugClaim(string workshopSlug, string workshopName);
#endregion #endregion
long CurrentSubAccountId(); long CurrentSubAccountId();
string GetWorkshopSlug(); string GetWorkshopSlug();
string GetWorkshopName(); string GetWorkshopName();
long GetWorkshopId(); (long Id, UserType userType) GetUserTypeWithId();
(long Id, UserType userType, long roleId) GetUserTypeWithId();
} }

View File

@@ -4,5 +4,5 @@ public enum IsActive
{ {
False, False,
True, True,
None
} }

View File

@@ -51,11 +51,4 @@ public class OperationResult<T>
Message = message; Message = message;
return this; return this;
} }
public OperationResult<T> Failed(string message, T data)
{
IsSuccedded = false;
Message = message;
Data = data;
return this;
}
} }

View File

@@ -1,15 +0,0 @@
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace _0_Framework.Application;
public class PagedResult<T> where T : class
{
public int TotalCount { get; set; }
public List<T> List { get; set; }
}
public class PagedResult<T,TMeta>:PagedResult<T> where T : class
{
public TMeta? Meta { get; set; }
}

View File

@@ -1,7 +0,0 @@
namespace _0_Framework.Application;
public class PaginationRequest
{
public int PageIndex { get; set; } = 1;
public int PageSize { get; set; } = 30;
}

View File

@@ -1,100 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Json;
using System.Security.Policy;
using System.Security.Principal;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Options;
namespace _0_Framework.Application.PaymentGateway;
public class AqayePardakhtPaymentGateway:IPaymentGateway
{
private static string _pin = "86EAF2C4D052F7D8759F";
private const string AccountNumber = "AP.1042276242";
private const string EncryptedKey = "130D2@D2923";
private readonly HttpClient _httpClient;
public AqayePardakhtPaymentGateway(IHttpClientFactory httpClientFactory,IOptions<AppSettingConfiguration> appSetting)
{
_httpClient = httpClientFactory.CreateClient();
if (appSetting.Value.Domain == ".dadmehrg.ir")
{
_pin = "7349F84E81AB584862D9";
}
}
public async Task<PaymentGatewayResponse> Create(CreatePaymentGatewayRequest command,CancellationToken cancellationToken =default)
{
var response = await _httpClient.PostAsJsonAsync("https://panel.aqayepardakht.ir/api/v2/create", new
{
pin = _pin,
amount = command.Amount,
callback = command.CallBackUrl,
card_number = command.CardNumber,
invoice_id = command.InvoiceId,
mobile = command.Mobile,
email = command.Email??"",
description = command.Description,
}, cancellationToken: cancellationToken);
var resStr = await response.Content.ReadAsStringAsync(cancellationToken);
var result = await response.Content.ReadFromJsonAsync<PaymentGatewayResponse>(cancellationToken: cancellationToken);
return result;
}
public string GetStartPayUrl(string transactionId) =>
$"https://panel.aqayepardakht.ir/startpay/{transactionId}";
public async Task<PaymentGatewayResponse> Verify(VerifyPaymentGateWayRequest command, CancellationToken cancellationToken = default)
{
var response = await _httpClient.PostAsJsonAsync("https://panel.aqayepardakht.ir/api/v2/verify", new
{
pin = _pin,
amount = command.Amount,
transid = command.TransactionId,
}, cancellationToken: cancellationToken);
var result = await response.Content.ReadFromJsonAsync<PaymentGatewayResponse>(cancellationToken: cancellationToken);
return result;
}
public async Task<PaymentGatewayResponse> CreateSandBox(CreatePaymentGatewayRequest command, CancellationToken cancellationToken = default)
{
var response = await _httpClient.PostAsJsonAsync("https://panel.aqayepardakht.ir/api/v2/create", new
{
pin = "sandbox",
amount = command.Amount,
callback = command.CallBackUrl,
card_number = command.Amount,
invoice_id = command.InvoiceId,
mobile = command.Mobile,
email = command.Email,
description = command.Email,
}, cancellationToken: cancellationToken);
var result = await response.Content.ReadFromJsonAsync<PaymentGatewayResponse>(cancellationToken: cancellationToken);
return result;
}
public string GetStartPaySandBoxUrl(string transactionId) =>
$"https://panel.aqayepardakht.ir/startpay/sandbox/{transactionId}";
public async Task<WalletAmountResponse> GetWalletAmount(CancellationToken cancellationToken)
{
var response =await _httpClient.PostAsJsonAsync("https://panel.aqayepardakht.ir/api/v2/getmoney", new
{
account=AccountNumber,
code = EncryptedKey
}, cancellationToken: cancellationToken);
var jsonString = await response.Content.ReadAsStringAsync(cancellationToken);
var result = await response.Content.ReadFromJsonAsync<WalletAmountResponse>(cancellationToken);
return result;
}
}

View File

@@ -1,62 +0,0 @@
using Microsoft.AspNetCore.Server.HttpSys;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading;
using System.Threading.Tasks;
namespace _0_Framework.Application.PaymentGateway;
public interface IPaymentGateway
{
Task<PaymentGatewayResponse> Create(CreatePaymentGatewayRequest command, CancellationToken cancellationToken =default);
string GetStartPayUrl(string transactionId);
Task<PaymentGatewayResponse> Verify(VerifyPaymentGateWayRequest command, CancellationToken cancellationToken=default);
Task<PaymentGatewayResponse> CreateSandBox(CreatePaymentGatewayRequest command, CancellationToken cancellationToken=default);
string GetStartPaySandBoxUrl(string transactionId);
Task<WalletAmountResponse> GetWalletAmount(CancellationToken cancellationToken);
}
public class PaymentGatewayResponse
{
[JsonPropertyName("status")]
public string Status { get; set; }
[JsonPropertyName("code")]
public int? ErrorCode { get; set; }
[JsonPropertyName("transid")]
public string TransactionId { get; set; }
public bool IsSuccess => Status == "success";
}
public class WalletAmountResponse
{
[JsonPropertyName("status")]
public string Status { get; set; }
[JsonPropertyName("money")]
public double Amount { get; set; }
[JsonPropertyName("code")]
public int Code { get; set; }
}
public class CreatePaymentGatewayRequest
{
public double Amount { get; set; }
public string CallBackUrl { get; set; }
public string InvoiceId { get; set; }
public string CardNumber { get; set; }
public string Mobile { get; set; }
public string Email { get; set; }
public string Description { get; set; }
}
public class VerifyPaymentGateWayRequest
{
public string TransactionId { get; set; }
public double Amount { get; set; }
}

View File

@@ -1,7 +0,0 @@
namespace _0_Framework.Application;
public class SelectListViewModel
{
public long Id { get; set; }
public string Text { get; set; }
}

View File

@@ -9,24 +9,10 @@ public interface ISmsService
void Send(string number, string message); void Send(string number, string message);
bool VerifySend(string number, string message); bool VerifySend(string number, string message);
bool LoginSend(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); bool SendAccountsInfo(string number,string fullName, string userName);
Task<ApiResultViewModel> GetByMessageId(int messId); Task<ApiResultViewModel> GetByMessageId(int messId);
Task<List<ApiResultViewModel>> GetApiResult(string startDate, string endDate); Task<List<ApiResultViewModel>> GetApiResult(string startDate, string endDate);
string DeliveryStatus(byte? dv); string DeliveryStatus(byte? dv);
string DeliveryColorStatus(byte? dv); string DeliveryColorStatus(byte? dv);
string UnixTimeStampToDateTime(int? unixTimeStamp); string UnixTimeStampToDateTime(int? unixTimeStamp);
#region Mahan
Task<double> GetCreditAmount();
#endregion
} }

View File

@@ -1,32 +0,0 @@
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;
}
}

View File

@@ -9,7 +9,6 @@ using IPE.SmsIrClient;
using IPE.SmsIrClient.Models.Requests; using IPE.SmsIrClient.Models.Requests;
using IPE.SmsIrClient.Models.Results; using IPE.SmsIrClient.Models.Results;
using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Configuration;
using static System.Runtime.InteropServices.JavaScript.JSType;
namespace _0_Framework.Application.Sms; namespace _0_Framework.Application.Sms;
@@ -17,14 +16,10 @@ namespace _0_Framework.Application.Sms;
public class SmsService : ISmsService public class SmsService : ISmsService
{ {
private readonly IConfiguration _configuration; private readonly IConfiguration _configuration;
public SmsIr SmsIr { get; set; }
public SmsService(IConfiguration configuration) public SmsService(IConfiguration configuration)
{ {
_configuration = configuration; _configuration = configuration;
SmsIr = new SmsIr("Og5M562igmzJRhQPnq0GdtieYdLgtfikjzxOmeQBPxJjZtyge5Klc046Lfw1mxSa");
} }
public void Send(string number, string message) public void Send(string number, string message)
@@ -115,31 +110,6 @@ 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) public bool SendAccountsInfo(string number, string fullName, string userName)
{ {
@@ -315,23 +285,4 @@ public class SmsService : ISmsService
//var tokenService = new Token(); //var tokenService = new Token();
//return tokenService.GetToken("x-api-key", "Og5M562igmzJRhQPnq0GdtieYdLgtfikjzxOmeQBPxJjZtyge5Klc046Lfw1mxSa"); //return tokenService.GetToken("x-api-key", "Og5M562igmzJRhQPnq0GdtieYdLgtfikjzxOmeQBPxJjZtyge5Klc046Lfw1mxSa");
} }
#region Mahan
public async Task<double> GetCreditAmount()
{
try
{
var credit = await SmsIr.GetCreditAsync();
return (double)credit.Data;
}
catch
{
return -1;
}
}
#endregion
} }

View File

@@ -14,25 +14,14 @@ public static class StaticWorkshopAccounts
/// </summary> /// </summary>
public static List<long> SelectedAccountsRoleIds = [3, 5, 7, 8]; public static List<long> SelectedAccountsRoleIds = [3, 5, 7, 8];
/// <summary>
/// لیستی آی دی نقش هایی که دردسترسی به تب افزودن پرسنل و مدارک کلاینت دارند
/// 3 : قرارداد ارشد
/// 5 : قرارداد ساده
/// 19 : برنامه نویسان
/// 1 : مدیر سیستم
/// </summary>
public static List<long> EmployeeDocumentWorkFlowRoleIds = [1,3, 5, 19];
/// <summary> /// <summary>
/// لیست اکانتهایی که به همه کارگاه ها باید دسترسی داشته باشند /// لیست اکانتهایی که به همه کارگاه ها باید دسترسی داشته باشند
/// 2 - صادق فرخی /// 2 - صادق فرخی
/// 3 - میلاد مصباح /// 3 - میلاد مصباح
/// 380 - افروز نظری /// 380 - افروز نظری
/// 381 - مهدی قربانی /// 381 - مهدی قربانی
/// 392 - عمار حسن دوست
/// 20 - سمیرا الهی نیا
/// </summary> /// </summary>
public static List<long> StaticAccountIds = [2, 3, 380, 381, 392, 20]; public static List<long> StaticAccountIds = [2, 3, 380, 381];
/// <summary> /// <summary>
/// این تاریخ در جدول اکانت لفت ورک به این معنیست /// این تاریخ در جدول اکانت لفت ورک به این معنیست

View File

@@ -385,27 +385,11 @@
/// </summary> /// </summary>
public const int SetWorkshopWorkingHoursPermissionCode = 10606; public const int SetWorkshopWorkingHoursPermissionCode = 10606;
#region حساب کاربری دوربین
/// <summary> /// <summary>
/// تنظیمات حساب کاربری دوربین /// تنظیمات حساب کاربری دوربین
/// </summary> /// </summary>
public const int CameraAccountSettingsPermissionCode = 10607; public const int CameraAccountSettingsPermissionCode = 10607;
/// <summary>
/// فعال/غیرفعال اکانت دوربین
/// </summary>
public const int CameraAccountActivationBtnPermissionCode = 1060701;
/// <summary>
/// ویرایش اکانت دوربین
/// </summary>
public const int CameraAccountEditPermissionCode = 1060702;
#endregion
#endregion #endregion
#region کارپوشه #region کارپوشه
@@ -760,22 +744,6 @@
Code = CameraAccountSettingsPermissionCode, Code = CameraAccountSettingsPermissionCode,
ParentId = RollCallOperationsPermissionCode ParentId = RollCallOperationsPermissionCode
}; };
public static SubAccountPermissionDto CameraAccountActivationBtn { get; } = new()
{
Id = CameraAccountActivationBtnPermissionCode,
Name = "فعال/غیرفعال حساب کاربری دوربین",
Code = CameraAccountActivationBtnPermissionCode,
ParentId = CameraAccountSettingsPermissionCode
};
public static SubAccountPermissionDto CameraAccountEdit { get; } = new()
{
Id = CameraAccountEditPermissionCode,
Name = "ویراش حساب کاربری دوربین",
Code = CameraAccountEditPermissionCode,
ParentId = CameraAccountSettingsPermissionCode
};
#endregion #endregion
#region کارپوشه,ParentId = WorkFlowOperationsPermissionCode #region کارپوشه,ParentId = WorkFlowOperationsPermissionCode

View File

@@ -41,23 +41,6 @@ public static class Tools
return Regex.IsMatch(mobileNo, "^((09))(\\d{9})$"); return Regex.IsMatch(mobileNo, "^((09))(\\d{9})$");
} }
/// <summary>
/// تاریخ شروع و تعداد ماه را میگیرد و تاریخ پایان قراردا را بر میگرداند
/// </summary>
/// <param name="startDate"></param>
/// <param name="monthPlus"></param>
/// <returns></returns>
public static (DateTime endDateGr, string endDateFa) FindEndOfContract(string startDate, string monthPlus)
{
int startYear = Convert.ToInt32(startDate.Substring(0, 4));
int startMonth = Convert.ToInt32(startDate.Substring(5, 2));
int startDay = Convert.ToInt32(startDate.Substring(8, 2));
var start = new PersianDateTime(startYear, startMonth, startDay);
var end = (start.AddMonths(Convert.ToInt32(monthPlus))).AddDays(-1);
return ($"{end}".ToGeorgianDateTime(), $"{end}");
}
/// <summary> /// <summary>
/// دریافت روزهای کارکرد پرسنل در لیست بیمه ماه مشخص شده /// دریافت روزهای کارکرد پرسنل در لیست بیمه ماه مشخص شده
@@ -69,10 +52,10 @@ public static class Tools
/// <param name="endDate"></param> /// <param name="endDate"></param>
/// <param name="employeeId"></param> /// <param name="employeeId"></param>
/// <returns></returns> /// <returns></returns>
public static (int countWorkingDays, DateTime startWork, DateTime endWork, bool hasStartWorkInMonth, bool hasLeftWorkInMonth) GetEmployeeInsuranceWorkingDays(DateTime startWork, DateTime? leftWork, DateTime startDate, public static (int countWorkingDays,DateTime startWork,DateTime endWork,bool hasStartWorkInMonth,bool hasLeftWorkInMonth) GetEmployeeInsuranceWorkingDays(DateTime startWork,DateTime? leftWork,DateTime startDate,
DateTime endDate, long employeeId) DateTime endDate,long employeeId)
{ {
DateTime start = startDate; DateTime start = startDate;
DateTime end = endDate; DateTime end = endDate;
bool startWorkInMonth = false; bool startWorkInMonth = false;
bool endWorkInMonth = false; bool endWorkInMonth = false;
@@ -80,61 +63,61 @@ public static class Tools
//اگر شروع بکار پرسنل در ماه مشخص شده لیست بیمه بود //اگر شروع بکار پرسنل در ماه مشخص شده لیست بیمه بود
if (startWork >= startDate) if (startWork >= startDate)
{ {
start = startWork; start = startWork;
startWorkInMonth = true; startWorkInMonth = true;
} }
if (leftWork == null) if(leftWork == null)
leftWork = DateTime.MinValue; leftWork = DateTime.MinValue;
//اگر ترک کار پرسنل در ماه مشخص شده لیست بیمه بود //اگر ترک کار پرسنل در ماه مشخص شده لیست بیمه بود
if (leftWork != DateTime.MinValue && leftWork.Value < endDate) if (leftWork != DateTime.MinValue && leftWork.Value < endDate)
{ {
end = leftWork.Value; end = leftWork.Value;
endWorkInMonth = true; endWorkInMonth = true;
} }
int countDays = (int)(end - start).TotalDays + 1; int countDays = (int)(end - start).TotalDays +1;
//روزهای کارکرد پرسنل با آی دی های زیر دستی تعریف شد //روزهای کارکرد پرسنل با آی دی های زیر دستی تعریف شد
switch (employeeId) switch (employeeId)
{ {
//case 3812://ثابت- کسری حاجی پور //case 3812://ثابت- کسری حاجی پور
// countWorkingDays = 15; // countWorkingDays = 15;
// break; // break;
case 40463://ثابت case 40463://ثابت
countDays = 10; countDays = 10;
break; break;
case 40469://ثابت case 40469://ثابت
countDays = 7; countDays = 7;
break; break;
//case 9950://ثابت //case 9950://ثابت
// countDays = 15; // countDays = 15;
//break; //break;
case 9640://ثابت case 9640://ثابت
countDays = 15; countDays = 15;
break; break;
case 40998://ثابت case 40998://ثابت
countDays = 15; countDays = 15;
break; break;
case 6219://ثابت case 6219://ثابت
countDays = 15; countDays = 15;
break; break;
//case 7897://ثابت //case 7897://ثابت
// countWorkingDays = 15; // countWorkingDays = 15;
} }
return (countDays, start, end, startWorkInMonth, endWorkInMonth); return (countDays,start,end,startWorkInMonth,endWorkInMonth);
} }
/// <summary> /// <summary>
/// محاسبه سن /// محاسبه سن
/// </summary> /// </summary>
/// <param name="startDate"></param> /// <param name="startDate"></param>
/// <param name="endDate"></param> /// <param name="endDate"></param>
/// <returns></returns> /// <returns></returns>
public static (int yearCount, int monthCount, int dayCount) GetAge(DateTime startDate, DateTime endDate) public static (int yearCount, int monthCount, int dayCount) GetAge(DateTime startDate, DateTime endDate)
{ {
var startFa = startDate.ToFarsi(); var startFa = startDate.ToFarsi();
@@ -210,7 +193,7 @@ public static class Tools
if (yearCouner.Year == end.Year) 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) if (yearCouner.Day <= end.Day)
{ {
@@ -261,7 +244,7 @@ public static class Tools
Console.ResetColor(); Console.ResetColor();
Console.WriteLine($"old: [{years} year] ، [{months} month] ، [{days} day]"); Console.WriteLine($"old: [{years} year] ، [{months} month] ، [{days} day]");
return (years, months, days); return (years,months,days);
} }
public static string ToFarsi(this DateTime? date) public static string ToFarsi(this DateTime? date)
@@ -414,9 +397,9 @@ public static class Tools
public static DateTime ToGeorgianDateTime(this string persianDate) public static DateTime ToGeorgianDateTime(this string persianDate)
{ {
persianDate = persianDate.ToEnglishNumber();
try try
{ {
persianDate = persianDate.ToEnglishNumber();
var year = Convert.ToInt32(persianDate.Substring(0, 4)); var year = Convert.ToInt32(persianDate.Substring(0, 4));
var month = Convert.ToInt32(persianDate.Substring(5, 2)); var month = Convert.ToInt32(persianDate.Substring(5, 2));
var day = Convert.ToInt32(persianDate.Substring(8, 2)); var day = Convert.ToInt32(persianDate.Substring(8, 2));
@@ -475,30 +458,25 @@ public static class Tools
public static double MoneyToDouble(this string myMoney) public static double MoneyToDouble(this string myMoney)
{ {
string bb = string.Empty; string bb = string.Empty;
bool isNegative = false;
for (int x = 0; x < myMoney.Length; x++) for (int x = 0; x < myMoney.Length; x++)
{ {
if (char.IsDigit(myMoney[x])) if (char.IsDigit(myMoney[x]))
{
bb += myMoney[x]; bb += myMoney[x];
}
else if (myMoney[x] == '-' && bb.Length == 0)
{
// اگر علامت منفی قبل از اولین عدد آمد، در نظر بگیر
isNegative = true;
}
} }
if (bb.Length > 0) if (bb.Length > 0)
{ {
double res = double.Parse(bb); double res = double.Parse(bb);
return isNegative ? -res : res; return res;
} }
else else
{ {
return 0; return 0;
} }
} }
public static string ToFileName(this DateTime date) public static string ToFileName(this DateTime date)
{ {
@@ -620,90 +598,90 @@ public static class Tools
/// <returns></returns> /// <returns></returns>
public static int YearTotalDays(this string date) public static int YearTotalDays(this string date)
{ {
int y2 = 366; int y2 = 365;
var year = Convert.ToInt32(date.Substring(0, 4)); var year = Convert.ToInt32(date.Substring(0, 4));
switch (year) switch (year)
{ {
case 1346: case 1346:
y2 = 367; y2 = 366;
break; break;
case 1350: case 1350:
y2 = 367; y2 = 366;
break; break;
case 1354: case 1354:
y2 = 367; y2 = 366;
break; break;
case 1358: case 1358:
y2 = 367; y2 = 366;
break; break;
case 1362: case 1362:
y2 = 367; y2 = 366;
break; break;
case 1366: case 1366:
y2 = 367; y2 = 366;
break; break;
case 1370: case 1370:
y2 = 367; y2 = 366;
break; break;
case 1375: case 1375:
y2 = 367; y2 = 366;
break; break;
case 1379: case 1379:
y2 = 367; y2 = 366;
break; break;
case 1383: case 1383:
y2 = 367; y2 = 366;
break; break;
case 1387: case 1387:
y2 = 367; y2 = 366;
break; break;
case 1391: case 1391:
y2 = 367; y2 = 366;
break; break;
case 1395: case 1395:
y2 = 367; y2 = 366;
break; break;
case 1399: case 1399:
y2 = 367; y2 = 366;
break; break;
case 1403: case 1403:
y2 = 367; y2 = 366;
break; break;
case 1408: case 1408:
y2 = 367; y2 = 366;
break; break;
case 1412: case 1412:
y2 = 367; y2 = 366;
break; break;
case 1416: case 1416:
y2 = 367; y2 = 366;
break; break;
case 1420: case 1420:
y2 = 367; y2 = 366;
break; break;
case 1424: case 1424:
y2 = 367; y2 = 366;
break; break;
case 1428: case 1428:
y2 = 367; y2 = 366;
break; break;
case 1432: case 1432:
y2 = 367; y2 = 366;
break; break;
case 1436: case 1436:
y2 = 367; y2 = 366;
break; break;
case 1441: case 1441:
y2 = 367; y2 = 366;
break; break;
case 1445: case 1445:
y2 = 367; y2 = 366;
break; break;
default: default:
y2 = 366; y2 = 365;
break; break;
} }
@@ -897,15 +875,7 @@ public static class Tools
} }
} }
try numbers = Convert.ToInt32(num);
{
numbers = Convert.ToInt32(num);
}
catch (Exception e)
{
return 0;
}
return numbers; return numbers;
} }
public static string ToFarsiMonthByNumber(this string value) public static string ToFarsiMonthByNumber(this string value)
@@ -914,39 +884,30 @@ public static class Tools
string result = ""; string result = "";
switch (value) switch (value)
{ {
case "1":
case "01": case "01":
result = "فروردین"; result = "فروردین";
break; break;
case "2":
case "02": case "02":
result = "اردیبهشت"; result = "اردیبهشت";
break; break;
case "3":
case "03": case "03":
result = "خرداد"; result = "خرداد";
break; break;
case "4":
case "04": case "04":
result = "تیر"; result = "تیر";
break; break;
case "5":
case "05": case "05":
result = "مرداد"; result = "مرداد";
break; break;
case "6":
case "06": case "06":
result = "شهریور"; result = "شهریور";
break; break;
case "7":
case "07": case "07":
result = "مهر"; result = "مهر";
break; break;
case "8":
case "08": case "08":
result = "آبان"; result = "آبان";
break; break;
case "9":
case "09": case "09":
result = "آذر"; result = "آذر";
break; break;
@@ -1306,10 +1267,10 @@ public static class Tools
var part5 = parts[5].Substring(0, 2); var part5 = parts[5].Substring(0, 2);
try try
{ {
PersianCalendar pc = new PersianCalendar(); 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) catch (Exception e)
@@ -1421,77 +1382,10 @@ public static class Tools
return false; return false;
return true; return true;
} }
/// <summary>
/// چک میکند که در دو شیفت استاتیک تداخل زمانی وجود دارد یا خیر
/// چک میکند که آیا ساعات وارد شده ولید هستند یا خیر
/// </summary>
/// <param name="start1"></param>
/// <param name="end1"></param>
/// <param name="start2"></param>
/// <param name="end2"></param>
/// <returns></returns>
public static bool InterferenceTime(string start1, string end1, string start2, string end2)
{
if (!CheckValidHm(start1))
return true;
if (!CheckValidHm(end1))
return true;
if (!CheckValidHm(start2))
return true;
if (!CheckValidHm(end2))
return true;
//اگه دو شیفت نبود
if (string.IsNullOrWhiteSpace(start1) || string.IsNullOrWhiteSpace(start2))
return false;
try
{
var start1Gr = Convert.ToDateTime(start1);
var end1Gr = Convert.ToDateTime(end1);
if (end1Gr < start1Gr)
end1Gr = end1Gr.AddDays(1);
var start2Gr = Convert.ToDateTime(start2);
var end2Gr = Convert.ToDateTime(end2);
start2Gr = new DateTime(end1Gr.Year, end1Gr.Month, end1Gr.Day, start2Gr.Hour, start2Gr.Minute,
start2Gr.Second);
end2Gr = new DateTime(end1Gr.Year, end1Gr.Month, end1Gr.Day, end2Gr.Hour, end2Gr.Minute,
end2Gr.Second);
if (end2Gr < start2Gr)
end2Gr = end2Gr.AddDays(1);
var diff = (end1Gr - start1Gr).Add((end2Gr - start2Gr));
if (diff > new TimeSpan(24,0,0))
return true;
if (start2Gr <= end1Gr)
return true;
return false;
}
catch (Exception)
{
return true;
}
}
public static DateTime FindFirstDayOfMonthGr(this DateTime date) public static DateTime FindFirstDayOfMonthGr(this DateTime date)
{ {
var pc = new PersianCalendar(); var pc = new PersianCalendar();
return ($"{pc.GetYear(date)}/{pc.GetMonth(date):00}/01").ToGeorgianDateTime(); return ($"{pc.GetYear(date)}/{pc.GetMonth(date):00}/01").ToGeorgianDateTime();
} }
#region Mahan #region Mahan
@@ -1509,8 +1403,6 @@ public static class Tools
if (@char == char.Parse("ي")) if (@char == char.Parse("ي"))
res += "ی"; res += "ی";
else if (@char == char.Parse("ك"))
res += "ک";
else else
res += @char; res += @char;
} }
@@ -1696,19 +1588,19 @@ public static class Tools
public static TimeOnly CalculateOffset(ICollection<CustomizeSifts> shiftDetailsRegularShifts) public static TimeOnly CalculateOffset(ICollection<CustomizeSifts> shiftDetailsRegularShifts)
{ {
if (!shiftDetailsRegularShifts.Any()) if (!shiftDetailsRegularShifts.Any())
{ {
return TimeOnly.MinValue; return TimeOnly.MinValue;
} }
var date = new DateOnly(); var date = new DateOnly();
var firstStartShift = new DateTime(date, shiftDetailsRegularShifts.MinBy(x => x.Placement).StartTime); var firstStartShift = new DateTime(date, shiftDetailsRegularShifts.MinBy(x => x.Placement).StartTime);
var lastEndShift = new DateTime(date, shiftDetailsRegularShifts.MaxBy(x => x.Placement).EndTime); var lastEndShift = new DateTime(date, shiftDetailsRegularShifts.MaxBy(x => x.Placement).EndTime);
if (lastEndShift > firstStartShift) if (lastEndShift > firstStartShift)
firstStartShift = firstStartShift.AddDays(1); firstStartShift = firstStartShift.AddDays(1);
var offSet = (firstStartShift - lastEndShift).Divide(2); var offSet = (firstStartShift - lastEndShift).Divide(2);
return TimeOnly.FromDateTime(lastEndShift.Add(offSet)); 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; int numberOfNextDayOfWeek = ((int)dayOfWeek - (int)date.DayOfWeek + 7) % 7;
return date.AddDays(numberOfNextDayOfWeek == 0 ? 7 : numberOfNextDayOfWeek); return date.AddDays(numberOfNextDayOfWeek == 0 ? 7 : numberOfNextDayOfWeek);
@@ -1788,10 +1680,6 @@ public static class Tools
} }
#endregion #endregion
#region Pooya #region Pooya
@@ -1884,75 +1772,75 @@ public static class Tools
public static string ToFarsiHoursAndMinutes(int hours, int minutes, string emptyValue = "") public static string ToFarsiHoursAndMinutes(int hours, int minutes, string emptyValue = "")
{ {
string message = emptyValue; string message = emptyValue;
if (hours > 0 && minutes > 0) if (hours > 0 && minutes > 0)
{ {
message = hours + " " + "ساعت و" + " " + minutes + " " + "دقیقه"; message = hours + " " + "ساعت و" + " " + minutes + " " + "دقیقه";
} }
else if (hours > 0 && minutes == 0) else if (hours > 0 && minutes == 0)
{ {
message = hours + " " + "ساعت "; message = hours + " " + "ساعت ";
} }
else if (hours == 0 && minutes > 0) 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 hours = (int)timeSpan.TotalHours;
var minutes = timeSpan.Minutes; var minutes = timeSpan.Minutes;
string message = emptyValue; string message = emptyValue;
if (hours > 0 && minutes > 0) if (hours > 0 && minutes > 0)
{ {
message = hours + " " + "ساعت و" + " " + minutes + " " + "دقیقه"; message = hours + " " + "ساعت و" + " " + minutes + " " + "دقیقه";
} }
else if (hours > 0 && minutes == 0) else if (hours > 0 && minutes == 0)
{ {
message = hours + " " + "ساعت "; message = hours + " " + "ساعت ";
} }
else if (hours == 0 && minutes > 0) else if (hours == 0 && minutes > 0)
{ {
message = minutes + " " + "دقیقه"; message = minutes + " " + "دقیقه";
} }
return message; return message;
} }
public static string ToFarsiDaysAndHoursAndMinutes(this TimeSpan timeSpan, string emptyValue = "") public static string ToFarsiDaysAndHoursAndMinutes(this TimeSpan timeSpan, string emptyValue = "")
{ {
var hours = (int)timeSpan.TotalHours; var hours = (int)timeSpan.TotalHours;
var minutes = timeSpan.Minutes; var minutes = timeSpan.Minutes;
var days = hours / 24; var days = hours / 24;
hours = hours % 24; hours = hours % 24;
string message = ""; string message = "";
if (days > 0) if (days > 0)
message += days + " " + "روز"; message += days + " " + "روز";
if (hours > 0) if (hours > 0)
if (message == "") if (message == "")
message += hours + " " + "ساعت"; message += hours + " " + "ساعت";
else else
message += " و " + hours + " " + "ساعت"; message += " و " + hours + " " + "ساعت";
if (minutes > 0) if (minutes > 0)
if (message == "") if (message == "")
message += minutes + " " + "دقیقه"; message += minutes + " " + "دقیقه";
else else
message += " و " + minutes + " " + "دقیقه"; message += " و " + minutes + " " + "دقیقه";
if (message == "") if (message == "")
message = emptyValue; message = emptyValue;
return message; 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 either object is null, they can't be equal
if (obj1 == null || obj2 == null) if (obj1 == null || obj2 == null)
@@ -1985,44 +1873,5 @@ public static class Tools
return true; 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 #endregion
} }

View File

@@ -38,7 +38,7 @@ public class UidBasicInformation
{ {
"GENDER_MALE" => Application.Gender.Male, "GENDER_MALE" => Application.Gender.Male,
"GENDER_FEMALE" => Application.Gender.Female, "GENDER_FEMALE" => Application.Gender.Female,
_ => Application.Gender.None _ => throw new ArgumentOutOfRangeException()
}; };
} }
public record IdentificationInformation(string NationalId, string BirthDate, string ShenasnameSeri, string ShenasnameSerial, string ShenasnamehNumber); public record IdentificationInformation(string NationalId, string BirthDate, string ShenasnameSeri, string ShenasnameSerial, string ShenasnamehNumber);

View File

@@ -10,70 +10,72 @@ namespace _0_Framework.Application.UID;
public class UidService : IUidService public class UidService : IUidService
{ {
private readonly HttpClient _httpClient; private readonly HttpClient _httpClient;
private const string BaseUrl = "https://json-api.uid.ir/api/inquiry/"; private const string BaseUrl= "https://json-api.uid.ir/api/inquiry/";
public UidService() public UidService()
{ {
_httpClient = new HttpClient() _httpClient = new HttpClient()
{ {
BaseAddress = new Uri(BaseUrl) BaseAddress = new Uri(BaseUrl)
}; };
} }
public async Task<PersonalInfoResponse> GetPersonalInfo(string nationalCode, string birthDate) public async Task<PersonalInfoResponse> GetPersonalInfo(string nationalCode, string birthDate)
{ {
var request = new PersonalInfoRequest var request = new PersonalInfoRequest
{ {
BirthDate = birthDate, BirthDate = birthDate ,
NationalId = nationalCode, NationalId = nationalCode,
RequestContext = new UidRequestContext() RequestContext = new UidRequestContext()
}; };
var json = JsonConvert.SerializeObject(request); var json = JsonConvert.SerializeObject(request);
var contentType = new StringContent(json, Encoding.UTF8, "application/json"); var contentType = new StringContent(json, Encoding.UTF8, "application/json");
try try
{ {
var requestResult = await _httpClient.PostAsync("person/v2", contentType); var requestResult = await _httpClient.PostAsync("person/v2", contentType);
if (!requestResult.IsSuccessStatusCode) if (!requestResult.IsSuccessStatusCode)
return null; return null;
var responseResult = await requestResult.Content.ReadFromJsonAsync<PersonalInfoResponse>(); var responseResult = await requestResult.Content.ReadFromJsonAsync<PersonalInfoResponse>();
if (responseResult.BasicInformation != null) responseResult.BasicInformation.FirstName = responseResult.BasicInformation.FirstName.ToPersian();
{ responseResult.BasicInformation.LastName = responseResult.BasicInformation.LastName.ToPersian();
responseResult.BasicInformation.FirstName = responseResult.BasicInformation.FirstName?.ToPersian(); responseResult.BasicInformation.FatherName = responseResult.BasicInformation.FatherName.ToPersian();
responseResult.BasicInformation.LastName = responseResult.BasicInformation.LastName?.ToPersian();
responseResult.BasicInformation.FatherName = responseResult.BasicInformation.FatherName?.ToPersian();
}
return responseResult;
}
catch
{
return new PersonalInfoResponse(new UidBasicInformation(),
new IdentificationInformation(default, default, default, default, default), new RegistrationStatus(),
new ResponseContext(new UidStatus(14, "")));
}
}
public async Task<MatchMobileWithNationalCodeResponse> IsMachPhoneWithNationalCode(string nationalCode, string phoneNumber) return responseResult;
{ }
var request = new PersonalInfoRequest catch (Exception)
{ {
MobileNumber = phoneNumber,
NationalId = nationalCode,
RequestContext = new UidRequestContext()
};
var json = JsonConvert.SerializeObject(request);
var contentType = new StringContent(json, Encoding.UTF8, "application/json");
var requestResult = await _httpClient.PostAsync("mobile/owner/v2", contentType); return null;
if (!requestResult.IsSuccessStatusCode) }
return null; }
var responseResult = await requestResult.Content.ReadFromJsonAsync<MatchMobileWithNationalCodeResponse>();
return responseResult; public async Task<MatchMobileWithNationalCodeResponse> IsMachPhoneWithNationalCode(string nationalCode, string phoneNumber)
} {
var request = new PersonalInfoRequest
{
MobileNumber = phoneNumber,
NationalId = nationalCode,
RequestContext = new UidRequestContext()
};
var json = JsonConvert.SerializeObject(request);
var contentType = new StringContent(json, Encoding.UTF8, "application/json");
try
{
var requestResult = await _httpClient.PostAsync("mobile/owner/v2", contentType);
if (!requestResult.IsSuccessStatusCode)
return null;
var responseResult = await requestResult.Content.ReadFromJsonAsync<MatchMobileWithNationalCodeResponse>();
return responseResult;
}
catch (Exception e)
{
return null;
}
}
} }

View File

@@ -8,8 +8,7 @@ namespace _0_Framework.Application
Client, Client,
SubAccount, SubAccount,
Camera, Camera,
Admin, Admin
System
} }
} }

View File

@@ -1,6 +1,4 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using _0_Framework.Domain.CustomizeCheckoutShared.Enums; using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects; using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
using Microsoft.EntityFrameworkCore.Design.Internal; using Microsoft.EntityFrameworkCore.Design.Internal;
@@ -14,7 +12,8 @@ public class BaseCustomizeEntity : EntityBase
} }
public BaseCustomizeEntity(FridayPay fridayPay, OverTimePay overTimePay, public BaseCustomizeEntity(FridayPay fridayPay, OverTimePay overTimePay,
BaseYearsPay baseYearsPay, BonusesPay bonusesPay, NightWorkPay nightWorkPay, MarriedAllowance marriedAllowance, ShiftPay shiftPay, BaseYearsPay baseYearsPay, BonusesPay bonusesPay, NightWorkPay nightWorkPay, MarriedAllowance marriedAllowance, ShiftPay shiftPay,
FamilyAllowance familyAllowance, LeavePay leavePay, InsuranceDeduction insuranceDeduction, FineAbsenceDeduction fineAbsenceDeduction, LateToWork lateToWork, EarlyExit earlyExit, HolidayWork holidayWork, BreakTime breakTime,int leavePermittedDays,List<WeeklyOffDay> weeklyOffDays) FamilyAllowance familyAllowance, LeavePay leavePay, InsuranceDeduction insuranceDeduction, FineAbsenceDeduction fineAbsenceDeduction, LateToWork lateToWork, EarlyExit earlyExit,
FridayWork fridayWork, HolidayWork holidayWork, BreakTime breakTime,int leavePermittedDays)
{ {
FridayPay = fridayPay; FridayPay = fridayPay;
@@ -30,10 +29,10 @@ public class BaseCustomizeEntity : EntityBase
FineAbsenceDeduction = fineAbsenceDeduction; FineAbsenceDeduction = fineAbsenceDeduction;
LateToWork = lateToWork; LateToWork = lateToWork;
EarlyExit = earlyExit; EarlyExit = earlyExit;
FridayWork = fridayWork;
HolidayWork = holidayWork; HolidayWork = holidayWork;
BreakTime = breakTime; BreakTime = breakTime;
LeavePermittedDays = leavePermittedDays; LeavePermittedDays = leavePermittedDays;
WeeklyOffDays = weeklyOffDays.Select(x=> new WeeklyOffDay(x.DayOfWeek)).ToList();
} }
/// <summary> /// <summary>
@@ -118,28 +117,4 @@ public class BaseCustomizeEntity : EntityBase
public BreakTime BreakTime { get; protected set; } public BreakTime BreakTime { get; protected set; }
public List<WeeklyOffDay> WeeklyOffDays { get; set; } = [];
public void FridayWorkToWeeklyDayOfWeek()
{
if (FridayWork == FridayWork.Default && !WeeklyOffDays.Any(x => x.DayOfWeek == DayOfWeek.Friday))
{
WeeklyOffDays.Add(new WeeklyOffDay(DayOfWeek.Friday));
}
}
}
public class WeeklyOffDay
{
public WeeklyOffDay(DayOfWeek dayOfWeek)
{
DayOfWeek = dayOfWeek;
}
public long Id { get; set; }
public DayOfWeek DayOfWeek { get; set; }
public long ParentId { get; set; }
} }

View File

@@ -4,7 +4,6 @@ using System.Linq;
using System.Linq.Expressions; using System.Linq.Expressions;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore.Storage;
namespace _0_Framework.Domain; namespace _0_Framework.Domain;
@@ -18,6 +17,4 @@ public interface IRepository<TKey, T> where T:class
bool Exists(Expression<Func<T, bool>> expression); bool Exists(Expression<Func<T, bool>> expression);
void SaveChanges(); void SaveChanges();
Task SaveChangesAsync(); Task SaveChangesAsync();
Task<IDbContextTransaction> BeginTransactionAsync();
} }

View File

@@ -1,75 +0,0 @@
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Diagnostics;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
namespace _0_Framework.Exceptions.Handler;
public class CustomExceptionHandler : IExceptionHandler
{
private readonly ILogger<CustomExceptionHandler> _logger;
public CustomExceptionHandler(ILogger<CustomExceptionHandler> logger)
{
_logger = logger;
}
public async ValueTask<bool> TryHandleAsync(HttpContext context, Exception exception, CancellationToken cancellationToken)
{
_logger.LogError(
"Error Message: {exceptionMessage}, Time of occurrence {time}",
exception.Message, DateTime.UtcNow);
(string Detail, string Title, int StatusCode) details = exception switch
{
InternalServerException =>
(
exception.Message,
exception.GetType().Name,
context.Response.StatusCode = StatusCodes.Status500InternalServerError
),
BadRequestException =>
(
exception.Message,
exception.GetType().Name,
context.Response.StatusCode = StatusCodes.Status400BadRequest
),
NotFoundException =>
(
exception.Message,
exception.GetType().Name,
context.Response.StatusCode = StatusCodes.Status404NotFound
),
UnAuthorizeException =>
(
exception.Message,
exception.GetType().Name,
context.Response.StatusCode = StatusCodes.Status401Unauthorized
),
_ =>
(
exception.Message,
exception.GetType().Name,
context.Response.StatusCode = StatusCodes.Status500InternalServerError
)
};
var problemDetails = new ProblemDetails
{
Title = details.Title,
Detail = details.Detail,
Status = details.StatusCode,
Instance = context.Request.Path
};
problemDetails.Extensions.Add("traceId", context.TraceIdentifier);
await context.Response.WriteAsJsonAsync(problemDetails, cancellationToken: cancellationToken);
return true;
}
}

View File

@@ -1,10 +0,0 @@
using System;
namespace _0_Framework.Exceptions;
public class UnAuthorizeException:Exception
{
public UnAuthorizeException(string message) : base(message)
{
}
}

View File

@@ -1,22 +0,0 @@
using System.Collections.Generic;
using System.Linq;
namespace _0_Framework.InfraStructure;
public static class QueryableExtensions
{
public static IQueryable<T> ApplyPagination<T>(this IQueryable<T> query, int page, int pageSize)
{
if (page <= 0) page = 1;
if (pageSize <= 0) pageSize = 10;
return query.Skip((page - 1) * pageSize).Take(pageSize);
}
public static IEnumerable<T> ApplyPagination<T>(this IEnumerable<T> source, int page, int pageSize)
{
if (page <= 0) page = 1;
if (pageSize <= 0) pageSize = 10;
return source.Skip((page - 1) * pageSize).Take(pageSize);
}
}

View File

@@ -6,7 +6,6 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using _0_Framework.Domain; using _0_Framework.Domain;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Storage;
namespace _0_Framework.InfraStructure namespace _0_Framework.InfraStructure
{ {
@@ -71,10 +70,5 @@ namespace _0_Framework.InfraStructure
{ {
await _context.SaveChangesAsync(); await _context.SaveChangesAsync();
} }
public async Task<IDbContextTransaction> BeginTransactionAsync()
{
return await _context.Database.BeginTransactionAsync();
}
} }
} }

View File

@@ -1,9 +0,0 @@
namespace AccountManagement.Application.Contracts.Account;
public class AccountSelectListViewModel
{
public long Id { get; set; }
public string Name { get; set; }
public long RoleId { get; set; }
}

View File

@@ -41,8 +41,6 @@ public interface IAccountApplication
List<AccountViewModel> GetAccountsByPositionId(long positionId); List<AccountViewModel> GetAccountsByPositionId(long positionId);
List<AccountViewModel> GetAccountEqualToLowerPositionValue(); List<AccountViewModel> GetAccountEqualToLowerPositionValue();
Task<List<AccountSelectListViewModel>> GetAdminSelectList();
OperationResult ReLogin(); OperationResult ReLogin();
#endregion #endregion
@@ -57,11 +55,4 @@ public interface IAccountApplication
#endregion #endregion
OperationResult DirectCameraLogin(long cameraAccountId); OperationResult DirectCameraLogin(long cameraAccountId);
/// <summary>
/// چک میکند که آیا اکانتی با این نام کاربری وجود دارد یا نه
/// </summary>
/// <param name="userName"></param>
/// <returns></returns>
public bool CheckExistClientAccount(string userName);
} }

View File

@@ -4,13 +4,12 @@ using System.Collections.Generic;
namespace AccountManagement.Application.Contracts.Media namespace AccountManagement.Application.Contracts.Media
{ {
public interface IMediaApplication public interface IMediaApplication
{ {
MediaViewModel Get(long id); MediaViewModel Get(long id);
OperationResult UploadFile(IFormFile file, string fileLabel, string relativePath, int maximumFileLength, OperationResult UploadFile(IFormFile file, string fileLabel, string relativePath, int maximumFileLength, List<string> allowedExtensions);
List<string> allowedExtensions, string category); OperationResult MoveFile(long mediaId, string newRelativePath);
OperationResult MoveFile(long mediaId, string newRelativePath); OperationResult DeleteFile(long mediaId);
OperationResult DeleteFile(long mediaId); List<MediaViewModel> GetRange(IEnumerable<long> select);
List<MediaViewModel> GetRange(IEnumerable<long> select); }
}
} }

View File

@@ -15,6 +15,6 @@ namespace AccountManagement.Application.Contracts.SubAccount
public string PhoneNumber { get; set; } public string PhoneNumber { get; set; }
public string Username { get; set; } public string Username { get; set; }
public string ProfilePhoto { get; set; } public string ProfilePhoto { get; set; }
//public List<long> WorkshopIds { get; set; } public List<long> WorkshopIds { get; set; }
} }
} }

View File

@@ -8,6 +8,5 @@ namespace AccountManagement.Application.Contracts.SubAccount
public string Title { get; set; } public string Title { get; set; }
public long AccountId { get; set; } public long AccountId { get; set; }
public List<int> Permissions { get; set; } public List<int> Permissions { get; set; }
public List<long> WorkshopIds { get; set; }
} }
} }

View File

@@ -13,7 +13,7 @@ namespace AccountManagement.Application.Contracts.SubAccount
public string PhoneNumber { get; set; } public string PhoneNumber { get; set; }
public string RePassword { get; set; } public string RePassword { get; set; }
public long SubAccountRoleId { get; set; } public long SubAccountRoleId { get; set; }
//public List<long> WorkshopIds { get; set; } public List<long> WorkshopIds { get; set; }
} }

View File

@@ -7,6 +7,5 @@ namespace AccountManagement.Application.Contracts.SubAccount
public long Id { get; set; } public long Id { get; set; }
public string Title { get; set; } public string Title { get; set; }
public List<int> Permissions { get; set; } public List<int> Permissions { get; set; }
public List<long> WorkshopIds { get; set; }
} }
} }

View File

@@ -1,5 +1,4 @@
using System.Collections.Generic; using System.Collections.Generic;
using IPE.SmsIrClient.Models.Results;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
namespace AccountManagement.Application.Contracts.Task; namespace AccountManagement.Application.Contracts.Task;
@@ -20,9 +19,9 @@ public class CreateTask
#region Task Schedule #region Task Schedule
public string ScheduleCount { get; set; } public string ScheduleCount { get; set; }
public TaskScheduleType ScheduleType { get; set; } public string ScheduleType{ get; set; }
public bool HasSchedule { get; set; } public bool HasSchedule { get; set; }
public TaskScheduleUnitType ScheduleUnitType { get; set; } public string ScheduleUnitType { get; set; }
public string ScheduleUnitNumber { get; set; } public string ScheduleUnitNumber { get; set; }
public long TaskScheduleId { get; set; } public long TaskScheduleId { get; set; }
@@ -32,17 +31,3 @@ public class CreateTask
} }
public enum TaskScheduleType
{
Limited,
Unlimited
}
public enum TaskScheduleUnitType
{
Day,
Week,
Month,
Year
}

View File

@@ -20,6 +20,4 @@ public class EditTask:CreateTask
public long? TicketId { get; set; } public long? TicketId { get; set; }
public List<AccountViewModel> AssignsLists { get; set; } public List<AccountViewModel> AssignsLists { get; set; }
public bool HasTicket { get; set; } public bool HasTicket { get; set; }
public long TaskScheduleId { get; set; }
public bool HasRequest { get; set; }
} }

View File

@@ -1,5 +1,4 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks;
using _0_Framework.Application; using _0_Framework.Application;
using AccountManagement.Application.Contracts.Assign; using AccountManagement.Application.Contracts.Assign;
using AccountManagement.Application.Contracts.TaskMessage; using AccountManagement.Application.Contracts.TaskMessage;
@@ -25,13 +24,6 @@ public interface ITaskApplication
List<TaskViewModel> GetSentTasks(TaskSearchModel searchModel); List<TaskViewModel> GetSentTasks(TaskSearchModel searchModel);
List<TaskViewModel> GetTasksHaveTicket(TaskSearchModel searchModel); List<TaskViewModel> GetTasksHaveTicket(TaskSearchModel searchModel);
/// <summary>
/// لیست تسک های دوره ای ایجاد شده توسط کاربر
/// </summary>
/// <param name="searchModel"></param>
/// <returns></returns>
List<TaskViewModel> GetTaskScheduleList(TaskSearchModel searchModel);
// گرفتن مهلت برای یک وظیفه // گرفتن مهلت برای یک وظیفه
OperationResult CreateRequestTime(CreateTaskTimeRequest command); OperationResult CreateRequestTime(CreateTaskTimeRequest command);
List<TaskViewModel> GetRequestTaskHasTicket(TaskSearchModel searchModel); List<TaskViewModel> GetRequestTaskHasTicket(TaskSearchModel searchModel);
@@ -54,10 +46,10 @@ public interface ITaskApplication
OperationResult CreateTaskByPosition(CreateTask command, List<long> positionIds); OperationResult CreateTaskByPosition(CreateTask command, List<long> positionIds);
List<TaskViewModel> GetRequestedTasks(TaskSearchModel searchModel); List<TaskViewModel> GetRequestedTasks(TaskSearchModel searchModel);
List<TaskViewModel> AllRequestedTasks(TaskSearchModel searchModel); List<TaskViewModel> AllRequestedTasks(TaskSearchModel searchModel);
Task<int> GetRequestedTasksCount(); int GetRequestedTasksCount();
Task<int> TasksHaveTicketCounts(long userId); int TasksHaveTicketCounts(long userId);
Task<int> TasksHaveTicketRequestsCount(long userId); int TasksHaveTicketRequestsCount(long userId);
List<TaskMessageViewModel> GetTaskMessages(long assignId); List<TaskMessageViewModel> GetTaskMessages(long assignId);
@@ -71,14 +63,16 @@ public interface ITaskApplication
List<AssignViewModel> GetAssignsByTaskId(long taskId); List<AssignViewModel> GetAssignsByTaskId(long taskId);
Task<int> RequestedAndOverdueTasksCount(long userId); int RequestedAndOverdueTasksCount(long userId);
/// <summary> /// <summary>
/// تعداد تسک های شخصی و دریافتی برای امروز و یا عقب افتاده ///تعداد تسک های شخصی و دریافتی برای امروز و یا عقب افتاده
/// </summary> /// </summary>
/// <param name="userId"></param> /// <param name="userId"></param>
/// <returns></returns> /// <returns></returns>
Task<int> OverdueTasksCount(long userId); int OverdueTasksCount(long userId);
//متد انتقال داده از تسک به ارجاعی ها
//OperationResult MoveDataFRomTaskToAssign();
} }

View File

@@ -48,10 +48,7 @@ public class TaskViewModel
public bool CanDelete { get; set; } public bool CanDelete { get; set; }
public bool CanAssign { get; set; } public bool CanAssign { get; set; }
public bool CanCheckRequests { get; set; } public bool CanCheckRequests { get; set; }
public bool HasRequest { get; set; }
public AssignViewModel AssignedReceiverViewModel { get; set; } public AssignViewModel AssignedReceiverViewModel { get; set; }
public TaskScheduleType ScheduleType { get; set; }
public TaskScheduleUnitType ScheduleUnitType { get; set; }
public long TaskScheduleId { get; set; }
} }

View File

@@ -1,6 +1,4 @@
using System; using _0_Framework.Application;
using System.Threading.Tasks;
using _0_Framework.Application;
using AccountManagement.Application.Contracts.Task; using AccountManagement.Application.Contracts.Task;
namespace AccountManagement.Application.Contracts.TaskSchedule; namespace AccountManagement.Application.Contracts.TaskSchedule;
@@ -8,8 +6,7 @@ namespace AccountManagement.Application.Contracts.TaskSchedule;
public interface ITaskScheduleApplication public interface ITaskScheduleApplication
{ {
OperationResult Create(CreateTask command); OperationResult Create(CreateTask command);
OperationResult CreateLimitedTasks(CreateTask command);
OperationResult CreateUnlimitedTasks(CreateTask command);
Task<TaskScheduleDetailsViewModel> GetDetails(long id);
OperationResult Remove(long taskScheduleId);
} }

View File

@@ -1,22 +0,0 @@
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 string Count { get; set; }
public string FirstEndTaskDate { get; set; }
public List<MediaViewModel> Medias { get; set; }
}

View File

@@ -259,8 +259,7 @@ public class AccountApplication : IAccountApplication
var workshop = workshopList.First(); var workshop = workshopList.First();
authViewModel.WorkshopName = workshop.Name; authViewModel.WorkshopName = workshop.Name;
authViewModel.WorkshopSlug = _passwordHasher.SlugHasher(workshop.Id); authViewModel.WorkshopSlug = _passwordHasher.SlugHasher(workshop.Id);
authViewModel.WorkshopId = workshop.Id; }
}
} }
_authHelper.Signin(authViewModel); _authHelper.Signin(authViewModel);
@@ -309,7 +308,7 @@ public class AccountApplication : IAccountApplication
{ {
Slug = _passwordHasher.SlugHasher(x.WorkshopId), Slug = _passwordHasher.SlugHasher(x.WorkshopId),
Name = x.WorkshopName, Name = x.WorkshopName,
PersonnelCount = x.PersonnelCount, PersonnelCount = 0,
Id = x.WorkshopId Id = x.WorkshopId
}).ToList(); }).ToList();
@@ -318,7 +317,6 @@ public class AccountApplication : IAccountApplication
var workshop = workshopList.First(); var workshop = workshopList.First();
authViewModel.WorkshopName = workshop.WorkshopName; authViewModel.WorkshopName = workshop.WorkshopName;
authViewModel.WorkshopSlug = _passwordHasher.SlugHasher(workshop.WorkshopId); authViewModel.WorkshopSlug = _passwordHasher.SlugHasher(workshop.WorkshopId);
authViewModel.WorkshopId = workshop.WorkshopId;
} }
_authHelper.Signin(authViewModel); _authHelper.Signin(authViewModel);
idAutoriz = 2; idAutoriz = 2;
@@ -370,7 +368,6 @@ public class AccountApplication : IAccountApplication
var workshop = workshopList.First(); var workshop = workshopList.First();
authViewModel.WorkshopName = workshop.Name; authViewModel.WorkshopName = workshop.Name;
authViewModel.WorkshopSlug = _passwordHasher.SlugHasher(workshop.Id); authViewModel.WorkshopSlug = _passwordHasher.SlugHasher(workshop.Id);
authViewModel.WorkshopId = workshop.Id;
} }
} }
@@ -518,7 +515,6 @@ public class AccountApplication : IAccountApplication
var workshop = authViewModel.WorkshopList.First(); var workshop = authViewModel.WorkshopList.First();
authViewModel.WorkshopSlug = _passwordHasher.SlugHasher(workshop.Id); authViewModel.WorkshopSlug = _passwordHasher.SlugHasher(workshop.Id);
authViewModel.WorkshopName = workshop.Name; authViewModel.WorkshopName = workshop.Name;
authViewModel.WorkshopId = workshop.Id;
} }
_authHelper.Signin(authViewModel); _authHelper.Signin(authViewModel);
return operation.Succcedded(2); return operation.Succcedded(2);
@@ -553,8 +549,7 @@ public class AccountApplication : IAccountApplication
return operation.Succcedded(2); return operation.Succcedded(2);
} }
public AccountLeftWorkViewModel WorkshopList(long accountId)
public AccountLeftWorkViewModel WorkshopList(long accountId)
{ {
string fullname = this._accountRepository.GetById(accountId).Fullname; string fullname = this._accountRepository.GetById(accountId).Fullname;
List<WorkshopAccountlistViewModel> source =_accountLeftworkRepository.WorkshopList(accountId); List<WorkshopAccountlistViewModel> source =_accountLeftworkRepository.WorkshopList(accountId);
@@ -631,10 +626,7 @@ public class AccountApplication : IAccountApplication
} }
public async Task<List<AccountSelectListViewModel>> GetAdminSelectList()
{
return await _accountRepository.GetAdminSelectList();
}
#endregion #endregion
#region Pooya #region Pooya
@@ -793,10 +785,4 @@ public class AccountApplication : IAccountApplication
//} //}
#endregion #endregion
public bool CheckExistClientAccount(string userName)
{
return _accountRepository.CheckExistClientAccount(userName);
}
} }

View File

@@ -9,113 +9,147 @@ using Microsoft.AspNetCore.Http;
namespace AccountManagement.Application namespace AccountManagement.Application
{ {
public class MediaApplication : IMediaApplication public class MediaApplication:IMediaApplication
{ {
private const string _basePath = "Medias"; private const string _basePath = "Medias";
private readonly IMediaRepository _mediaRepository; private readonly IMediaRepository _mediaRepository;
public MediaApplication(IMediaRepository mediaRepository) public MediaApplication(IMediaRepository mediaRepository)
{ {
_mediaRepository = mediaRepository; _mediaRepository = mediaRepository;
} }
/// <summary> /// <summary>
/// دریافت فایل و نوشتن آن در مسیر داده شده، و ثبت مدیا /// دریافت فایل و نوشتن آن در مسیر داده شده، و ثبت مدیا
/// </summary> /// </summary>
/// <param name="file">فایل</param> /// <param name="file">فایل</param>
/// <param name="fileLabel">برچسب فایل که در نام فایل ظاهر می شود</param> /// <param name="fileLabel">برچسب فایل که در نام فایل ظاهر می شود</param>
/// <param name="relativePath">مسیر فایل</param> /// <param name="relativePath">مسیر فایل</param>
/// <param name="maximumFileLength">حداکثر حجم فایل به مگابایت</param> /// <param name="allowedExtensions">[.png,.jpg,.jpeg] پسوند های مجاز مثلا </param>
/// <param name="allowedExtensions">[.png,.jpg,.jpeg] پسوند های مجاز مثلا </param> /// <param name="maximumFileLength">حداکثر حجم فایل به مگابایت</param>
/// <param name="category"></param> /// <returns></returns>
/// <returns></returns> public OperationResult UploadFile(IFormFile file, string fileLabel, string relativePath,int maximumFileLength,List<string> allowedExtensions)
public OperationResult UploadFile(IFormFile file, string fileLabel, string relativePath, int maximumFileLength, {
List<string> allowedExtensions, string category) OperationResult op = new();
{ var path = Path.Combine(_basePath, relativePath);
return _mediaRepository.UploadFile(file, fileLabel, relativePath, maximumFileLength, allowedExtensions, category); var fileExtension = Path.GetExtension(file.FileName);
}
if (file == null || file.Length == 0)
return op.Failed("خطای سیستمی");
if (file.Length > (maximumFileLength * 1024 * 1024))
return op.Failed($"حجم فایل نمی تواند بیشتر از " +
$"{maximumFileLength}" +
$"مگابایت باشد");
if (!allowedExtensions.Contains(fileExtension.ToLower()))
{
var operationMessage = ":فرمت فایل باید یکی از موارد زیر باشد";
operationMessage += "\n";
operationMessage += string.Join(" ", allowedExtensions);
return op.Failed(operationMessage);
}
/// <summary> Directory.CreateDirectory(path);
/// حذف فایل
/// </summary>
public OperationResult DeleteFile(long mediaId)
{
OperationResult op = new();
var media = _mediaRepository.Get(mediaId);
if (media == null)
return op.Failed("رکورد مورد نظر یافت نشد");
try
{
if (File.Exists(media.Path))
File.Delete(media.Path);
else
return op.Failed("فایل یافت نشد");
}
catch
{
return op.Failed("خطایی در حذف فایل رخ داده است");
}
_mediaRepository.Remove(media.id); var extension = Path.GetExtension(file.FileName);
_mediaRepository.SaveChanges();
return op.Succcedded();
}
/// <summary> var uniqueFileName = $"{fileLabel}-{DateTime.Now.Ticks}{extension}";
/// جابجا کردن فایل var filePath = Path.Combine(path, uniqueFileName);
/// </summary> using (var fileStream = new FileStream(filePath, FileMode.CreateNew))
public OperationResult MoveFile(long mediaId, string newRelativePath) {
{ file.CopyTo(fileStream);
OperationResult op = new(); }
var media = _mediaRepository.Get(mediaId); var mediaEntity = new Media(filePath, extension, "فایل", "EmployeeDocuments");
var oldPath = media.Path; _mediaRepository.Create(mediaEntity);
var path = Path.Combine(_basePath, newRelativePath); _mediaRepository.SaveChanges();
Directory.CreateDirectory(path);
string filepath = Path.Combine(path, Path.GetFileName(oldPath)); return op.Succcedded(mediaEntity.id);
try
{
File.Move(oldPath, filepath);
}
catch
{
return op.Failed("در جابجایی فایل خطایی رخ داده است");
}
media.Edit(filepath, media.Type, media.Category); }
_mediaRepository.SaveChanges();
return op.Succcedded();
}
public MediaViewModel Get(long id)
{
var media = _mediaRepository.Get(id);
if (media == null)
return new();
return new MediaViewModel()
{
Category = media.Category,
Path = media.Path,
Id = media.id,
Type = media.Type
};
}
public List<MediaViewModel> GetRange(IEnumerable<long> ids) /// <summary>
{ /// حذف فایل
var medias = _mediaRepository.GetRange(ids); /// </summary>
return medias.Select(x => new MediaViewModel() public OperationResult DeleteFile(long mediaId)
{ {
Category = x.Category, OperationResult op = new();
Path = x.Path, var media = _mediaRepository.Get(mediaId);
Id = x.id, if (media == null)
Type = x.Type, return op.Failed("رکورد مورد نظر یافت نشد");
}).ToList(); try
} {
if (File.Exists(media.Path))
File.Delete(media.Path);
else
return op.Failed("فایل یافت نشد");
}
catch
{
return op.Failed("خطایی در حذف فایل رخ داده است");
}
} _mediaRepository.Remove(media.id);
_mediaRepository.SaveChanges();
return op.Succcedded();
}
/// <summary>
/// جابجا کردن فایل
/// </summary>
public OperationResult MoveFile(long mediaId, string newRelativePath)
{
OperationResult op = new();
var media = _mediaRepository.Get(mediaId);
var oldPath = media.Path;
var path = Path.Combine(_basePath, newRelativePath);
Directory.CreateDirectory(path);
string filepath = Path.Combine(path, Path.GetFileName(oldPath));
try
{
File.Move(oldPath, filepath);
}
catch
{
return op.Failed("در جابجایی فایل خطایی رخ داده است");
}
media.Edit(filepath, media.Type, media.Category);
_mediaRepository.SaveChanges();
return op.Succcedded();
}
public MediaViewModel Get(long id)
{
var media = _mediaRepository.Get(id);
if (media == null)
return new();
return new MediaViewModel()
{
Category = media.Category,
Path = media.Path,
Id = media.id,
Type = media.Type
};
}
public List<MediaViewModel> GetRange(IEnumerable<long> ids)
{
var medias = _mediaRepository.GetRange(ids);
return medias.Select(x=>new MediaViewModel()
{
Category = x.Category,
Path = x.Path,
Id = x.id,
Type = x.Type,
}).ToList();
}
}
} }

View File

@@ -113,12 +113,12 @@ namespace AccountManagement.Application
if (cmd.PhoneNumber.Length != 11) if (cmd.PhoneNumber.Length != 11)
return op.Failed("شماره تلفن همراه نامعتبر است"); return op.Failed("شماره تلفن همراه نامعتبر است");
//if (!cmd.WorkshopIds.Any()) if (!cmd.WorkshopIds.Any())
// return op.Failed("حداقل یک کارگاه را انتخاب کنید"); return op.Failed("حداقل یک کارگاه را انتخاب کنید");
//if (!cmd.WorkshopIds.All(x => accountWorkshopsList.Contains(x))) if (!cmd.WorkshopIds.All(x => accountWorkshopsList.Contains(x)))
// return op.Failed("خطای سیستمی"); return op.Failed("خطای سیستمی");
if (cmd.SubAccountRoleId == 0 || !_subAccountRoleRepository.Exists(x => cmd.SubAccountRoleId == x.id)) if (cmd.SubAccountRoleId == 0 || !_subAccountRoleRepository.Exists(x => cmd.SubAccountRoleId == x.id))
@@ -131,10 +131,6 @@ namespace AccountManagement.Application
_cameraAccountRepository.Exists(x => x.Username == cmd.Username)) _cameraAccountRepository.Exists(x => x.Username == cmd.Username))
return op.Failed("نام کاربری نمی تواند تکراری باشد"); return op.Failed("نام کاربری نمی تواند تکراری باشد");
var role = _subAccountRoleRepository.Get(cmd.SubAccountRoleId);
var workshopId = role.RoleWorkshops.Select(x => x.WorkshopId).ToList();
var entity = new SubAccount(cmd.AccountId, cmd.SubAccountRoleId, cmd.NationalCode, cmd.FName, cmd.LName, cmd.PhoneNumber, cmd.Username, _passwordHasher.Hash(cmd.Password), var entity = new SubAccount(cmd.AccountId, cmd.SubAccountRoleId, cmd.NationalCode, cmd.FName, cmd.LName, cmd.PhoneNumber, cmd.Username, _passwordHasher.Hash(cmd.Password),
cmd.ProfilePhoto); cmd.ProfilePhoto);
@@ -146,7 +142,7 @@ namespace AccountManagement.Application
_subAccountRepository.SaveChanges(); _subAccountRepository.SaveChanges();
var workshops = workshopId.Select(x => new WorkshopSubAccount(x, entity.id)); var workshops = cmd.WorkshopIds.Select(x => new WorkshopSubAccount(x, entity.id));
foreach (var w in workshops) foreach (var w in workshops)
_workshopSubAccountRepository.Create(w); _workshopSubAccountRepository.Create(w);
@@ -179,22 +175,22 @@ namespace AccountManagement.Application
//if (!cmd.WorkshopIds.All(x => accountWorkshopsList.Contains(x))) if (!cmd.WorkshopIds.All(x => accountWorkshopsList.Contains(x)))
// return op.Failed("خطای سیستمی"); return op.Failed("خطای سیستمی");
if (cmd.SubAccountRoleId == 0 || !_subAccountRoleRepository.Exists(x => cmd.SubAccountRoleId == x.id)) if (cmd.SubAccountRoleId == 0 || !_subAccountRoleRepository.Exists(x => cmd.SubAccountRoleId == x.id))
return op.Failed("نقش مورد نظر وجود ندارد"); return op.Failed("نقش مورد نظر وجود ندارد");
//var workshopSubAccounts = _workshopSubAccountRepository.GetWorkshopsSubAccountEntityBySubAccountId(entity.id); var workshopSubAccounts = _workshopSubAccountRepository.GetWorkshopsSubAccountEntityBySubAccountId(entity.id);
//foreach (var workshopSubAccount in workshopSubAccounts) foreach (var workshopSubAccount in workshopSubAccounts)
// _workshopSubAccountRepository.Remove(workshopSubAccount); _workshopSubAccountRepository.Remove(workshopSubAccount);
//var workshops = cmd.WorkshopIds.Select(x => new WorkshopSubAccount(x, entity.id)); var workshops = cmd.WorkshopIds.Select(x => new WorkshopSubAccount(x, entity.id));
//foreach (var w in workshops) foreach (var w in workshops)
// _workshopSubAccountRepository.Create(w); _workshopSubAccountRepository.Create(w);
entity.Edit(cmd.SubAccountRoleId, cmd.NationalCode, cmd.FName, cmd.LName, cmd.ProfilePhoto); entity.Edit(cmd.SubAccountRoleId, cmd.NationalCode, cmd.FName, cmd.LName, cmd.ProfilePhoto);
_workshopSubAccountRepository.SaveChanges(); _workshopSubAccountRepository.SaveChanges();
@@ -231,8 +227,7 @@ namespace AccountManagement.Application
{ {
Id = entity.id, Id = entity.id,
Title = entity.Title, Title = entity.Title,
Permissions = entity.RolePermissions.Select(x => x.PermissionCode).ToList(), Permissions = entity.RolePermissions.Select(x => x.PermissionCode).ToList()
WorkshopIds = entity.RoleWorkshops.Select(x=>x.WorkshopId).ToList()
}; };
} }
@@ -246,7 +241,7 @@ namespace AccountManagement.Application
OperationResult op = new(); OperationResult op = new();
if (_subAccountRoleRepository.Exists(x => x.AccountId == command.AccountId && x.Title.Trim() == command.Title.Trim())) if (_subAccountRoleRepository.Exists(x => x.AccountId == command.AccountId && x.Title.Trim() == command.Title.Trim()))
return op.Failed("یک نقش با این عنوان وجود دارد"); return op.Failed("یک نقش با این عنوان وجود دارد");
var role = new SubAccountRole(command.Title, command.Permissions, command.AccountId,command.WorkshopIds); var role = new SubAccountRole(command.Title, command.Permissions, command.AccountId);
_subAccountRoleRepository.Create(role); _subAccountRoleRepository.Create(role);
_subAccountRoleRepository.SaveChanges(); _subAccountRoleRepository.SaveChanges();
return op.Succcedded(role.id); return op.Succcedded(role.id);
@@ -259,26 +254,8 @@ namespace AccountManagement.Application
var entity = _subAccountRoleRepository.Get(cmd.Id); var entity = _subAccountRoleRepository.Get(cmd.Id);
if (entity == null) if (entity == null)
return op.Failed(ApplicationMessages.RecordNotFound); return op.Failed(ApplicationMessages.RecordNotFound);
entity.Edit(cmd.Title, cmd.Permissions,cmd.WorkshopIds); entity.Edit(cmd.Title, cmd.Permissions);
_subAccountRoleRepository.SaveChanges();
var subAccountRoles = _subAccountRepository.GetBySubAccountRole(cmd.Id);
foreach (var subAccount in subAccountRoles)
{
var workshopSubAccounts = _workshopSubAccountRepository.GetWorkshopsSubAccountEntityBySubAccountId(subAccount.id);
foreach (var workshopSubAccount in workshopSubAccounts)
_workshopSubAccountRepository.Remove(workshopSubAccount);
var workshops = cmd.WorkshopIds.Select(x => new WorkshopSubAccount(x, subAccount.id));
foreach (var w in workshops)
_workshopSubAccountRepository.Create(w);
}
_subAccountRoleRepository.SaveChanges();
_workshopSubAccountRepository.SaveChanges();
return op.Succcedded(); return op.Succcedded();
} }
public OperationResult AssignRoleToSubAccount(AssignSubAccountRole command) public OperationResult AssignRoleToSubAccount(AssignSubAccountRole command)

View File

@@ -16,7 +16,6 @@ using System.Collections.Generic;
using System.Globalization; using System.Globalization;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Threading.Tasks;
namespace AccountManagement.Application; namespace AccountManagement.Application;
@@ -509,11 +508,6 @@ public class TaskApplication : ITaskApplication
return _taskRepository.GetTasksHaveTicket(searchModel); return _taskRepository.GetTasksHaveTicket(searchModel);
} }
public List<TaskViewModel> GetTaskScheduleList(TaskSearchModel searchModel)
{
return _taskRepository.GetTaskScheduleList(searchModel);
}
//ساخت درخواست مهلت //ساخت درخواست مهلت
public OperationResult CreateRequestTime(CreateTaskTimeRequest command) public OperationResult CreateRequestTime(CreateTaskTimeRequest command)
{ {
@@ -595,9 +589,6 @@ public class TaskApplication : ITaskApplication
{ {
return operation.Failed("تاریخی برای درخواست وظیفه ثبت نشده است"); return operation.Failed("تاریخی برای درخواست وظیفه ثبت نشده است");
} }
assign.AcceptTimeRequest(); assign.AcceptTimeRequest();
message = string.IsNullOrWhiteSpace(message) ? "درخواست شما مورد تایید قرار گرفت" : message; message = string.IsNullOrWhiteSpace(message) ? "درخواست شما مورد تایید قرار گرفت" : message;
var messageEntity = new TaskMessage(message, "تایید درخواست مهلت", assign.id); var messageEntity = new TaskMessage(message, "تایید درخواست مهلت", assign.id);
@@ -622,7 +613,6 @@ public class TaskApplication : ITaskApplication
{ {
return operation.Failed("چنین وظیفه ای درخواستی برای مهلت ندارد"); return operation.Failed("چنین وظیفه ای درخواستی برای مهلت ندارد");
} }
assign.RejectTimeRequest(); assign.RejectTimeRequest();
if (assign.EndTaskDate.Date <= DateTime.Now.Date) if (assign.EndTaskDate.Date <= DateTime.Now.Date)
{ {
@@ -875,14 +865,14 @@ public class TaskApplication : ITaskApplication
return _taskRepository.AllRequestedTasks(searchModel); return _taskRepository.AllRequestedTasks(searchModel);
} }
public async Task<int> TasksHaveTicketCounts(long userId) public int TasksHaveTicketCounts(long userId)
{ {
return await _taskRepository.TasksHaveTicketCounts(userId); return _taskRepository.TasksHaveTicketCounts(userId);
} }
public async Task<int> TasksHaveTicketRequestsCount(long userId) public int TasksHaveTicketRequestsCount(long userId)
{ {
return await _taskRepository.TasksHaveTicketRequestsCount(userId); return _taskRepository.TasksHaveTicketRequestsCount(userId);
} }
@@ -891,9 +881,9 @@ public class TaskApplication : ITaskApplication
return _taskMessageRepository.GetTaskMessages(assignId); return _taskMessageRepository.GetTaskMessages(assignId);
} }
public async Task<int> GetRequestedTasksCount() public int GetRequestedTasksCount()
{ {
return await _taskRepository.GetRequestedTasksCount(); return _taskRepository.GetRequestedTasksCount();
} }
public OperationResult ChangeRequestTimeAndAccept(string time, long taskId, long assignedId, string message) public OperationResult ChangeRequestTimeAndAccept(string time, long taskId, long assignedId, string message)
@@ -1017,15 +1007,15 @@ public class TaskApplication : ITaskApplication
return _assignRepository.GetAssignsByTaskId(taskId); return _assignRepository.GetAssignsByTaskId(taskId);
} }
public async Task<int> RequestedAndOverdueTasksCount(long userId) public int RequestedAndOverdueTasksCount(long userId)
{ {
return await _taskRepository.RequestedAndOverdueTasksCount(userId); return _taskRepository.RequestedAndOverdueTasksCount(userId);
} }
public async Task<int> OverdueTasksCount(long userId) public int OverdueTasksCount(long userId)
{ {
return await _taskRepository.OverdueTasksCount(userId); return _taskRepository.OverdueTasksCount(userId);
} }
//public OperationResult MoveDataFRomTaskToAssign() //public OperationResult MoveDataFRomTaskToAssign()

View File

@@ -4,355 +4,222 @@ using AccountManagement.Application.Contracts.TaskSchedule;
using AccountManagement.Domain.TaskScheduleAgg; using AccountManagement.Domain.TaskScheduleAgg;
using System; using System;
using System.IO; using System.IO;
using System.Linq;
using System.Threading.Tasks;
using System.Transactions;
using AccountManagement.Domain.TaskAgg;
using Company.Domain.HolidayItemAgg; using Company.Domain.HolidayItemAgg;
namespace AccountManagement.Application; namespace AccountManagement.Application;
public class TaskScheduleApplication : ITaskScheduleApplication public class TaskScheduleApplication : ITaskScheduleApplication
{ {
private readonly ITaskApplication _taskApplication; private readonly ITaskApplication _taskApplication;
private readonly ITaskScheduleRepository _taskScheduleRepository; private readonly ITaskScheduleRepository _taskScheduleRepository;
private readonly IHolidayItemRepository _holidayItemRepository; 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 OperationResult Create(CreateTask command) public TaskScheduleApplication(ITaskApplication taskApplication, ITaskScheduleRepository taskScheduleRepository, IHolidayItemRepository holidayItemRepository)
{ {
OperationResult operation = new OperationResult(); _taskApplication = taskApplication;
_taskScheduleRepository = taskScheduleRepository;
_holidayItemRepository = holidayItemRepository;
}
public OperationResult Create(CreateTask command)
{
OperationResult operation = new OperationResult();
if (command.HasSchedule) if (command.HasSchedule)
{ {
switch (command.ScheduleType) switch (command.ScheduleType)
{ {
case TaskScheduleType.Limited: case "limited":
if (Convert.ToInt32(command.ScheduleCount) > 60) if (Convert.ToInt32(command.ScheduleCount) > 60)
{ {
return operation.Failed("تعداد وارد شده بیشتر از حد مجاز است"); return operation.Failed("تعداد وارد شده بیشتر از حد مجاز است");
} }
return CreateLimitedTasks(command); return CreateLimitedTasks(command);
break; break;
case TaskScheduleType.Unlimited: case "unlimited":
return CreateUnlimitedTasks(command); return CreateUnlimitedTasks(command);
break; break;
default: default:
return operation.Failed("نوع وظیفه محول شده مشخص نمیباشد"); return operation.Failed("خطای سیستمی!");
} }
} }
else else
{ {
return operation.Failed("این تسک بصورت دوره ای نمیباشد"); return operation.Failed("این تسک بصورت زمان بندی شده نمیباشد");
} }
} }
public async Task<TaskScheduleDetailsViewModel> GetDetails(long id) public OperationResult CreateLimitedTasks(CreateTask command)
{ {
return await _taskScheduleRepository.GetDetails(id); OperationResult operation = new OperationResult();
} if (Convert.ToInt32(command.ScheduleCount) < 1 || string.IsNullOrWhiteSpace(command.ScheduleCount))
{
return operation.Failed("تعداد وارد شده باید بیشتر از 2 باشد");
}
public OperationResult Remove(long taskScheduleId) switch (command.ScheduleUnitType)
{ {
var op = new OperationResult(); case "year":
var taskSchedule = _taskScheduleRepository.Get(taskScheduleId); if (Convert.ToInt32(command.ScheduleCount) != 1)
if (taskSchedule == null) {
return op.Failed("وظیفه مورد نظر یافت نشد"); return operation.Failed("دوره نمیتواند بیشتر از 1 سال باشد");
var tasks = _taskRepository.GetTasksByTaskScheduleId(taskScheduleId); }
var assigns = tasks.SelectMany(x => x.Assigns); break;
if (assigns.Any(x => x.IsCanceledRequest || x.IsDone || x.IsCancel || x.TimeRequest || x.AcceptedTimeRequest > 0)) case "month":
{ if (Convert.ToInt32(command.ScheduleCount) > 12)
taskSchedule.DeActive(); {
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;
var removableTask = tasks.Where(x=>x.Assigns.All(a=>a.IsDone==false && a.IsCancel == false)).ToList(); }
_taskRepository.RemoveRange(removableTask); try
{
DateTime previousDateRaw = command.EndTaskDate.ToEndDayOfGeorgianDateTime();
DateTime previousDateEdited = command.EndTaskDate.ToEndDayOfGeorgianDateTime();
} int count = Convert.ToInt32(command.ScheduleCount);
else bool isInt = int.TryParse(command.ScheduleUnitNumber, out int unitNumber);
{ string kindOfWeekUnit = isInt ? "" : command.ScheduleUnitNumber;
_taskScheduleRepository.Remove(taskSchedule); var taskSchedule = new TaskSchedule(command.ScheduleCount, command.ScheduleType, command.ScheduleUnitType,
_taskRepository.RemoveRange(tasks); command.ScheduleUnitNumber, previousDateEdited);
} _taskScheduleRepository.Create(taskSchedule);
_taskRepository.SaveChanges(); _taskScheduleRepository.SaveChanges();
return op.Succcedded(); command.TaskScheduleId = taskSchedule.id;
}
private OperationResult CreateLimitedTasks(CreateTask command) switch (command.ScheduleUnitType)
{ {
OperationResult operation = new OperationResult(); case "year":
if (Convert.ToInt32(command.ScheduleCount) < 1 || string.IsNullOrWhiteSpace(command.ScheduleCount)) for (int i = 1; i <= count; i++)
{ {
return operation.Failed("تعداد وارد شده باید بیشتر از 2 باشد"); command.EndTaskDate = previousDateEdited.ToFarsi();
} operation = _taskApplication.CreateTask(command);
if (string.IsNullOrWhiteSpace(command.ScheduleUnitNumber)) taskSchedule.SetLastEndTaskDate(previousDateEdited);
{
return operation.Failed("لطفا تعداد بازه خود را مشخص کنید");
}
switch (command.ScheduleUnitType) bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
{ while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
case TaskScheduleUnitType.Year: {
if (Convert.ToInt32(command.ScheduleCount) != 1) previousDateEdited = previousDateRaw.AddDays(1);
{ isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
return operation.Failed("دوره نمیتواند بیشتر از 1 سال باشد");
}
break;
case TaskScheduleUnitType.Month:
if (Convert.ToInt32(command.ScheduleUnitNumber) is > 12 or < 1) }
{ previousDateRaw = previousDateRaw.AddYears(unitNumber);
return operation.Failed("بازه وارد شده نا معتبر است"); previousDateEdited = previousDateRaw;
}
if (Convert.ToInt32(command.ScheduleCount) is > 60 or < 1) }
{ break;
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;
} case "month":
try for (int i = 1; i <= count; i++)
{ {
//using var transaction = new TransactionScope(); command.EndTaskDate = previousDateEdited.ToFarsi();
DateTime previousDateRaw = command.EndTaskDate.ToEndDayOfGeorgianDateTime(); operation = _taskApplication.CreateTask(command);
DateTime previousDateEdited = command.EndTaskDate.ToEndDayOfGeorgianDateTime(); taskSchedule.SetLastEndTaskDate(previousDateEdited);
var day = Convert.ToInt32(command.EndTaskDate.Substring(8, 2)); bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
var month = Convert.ToInt32(command.EndTaskDate.Substring(5, 2)); while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
var year = Convert.ToInt32(command.EndTaskDate.Substring(0, 4)); {
previousDateEdited = previousDateRaw.AddDays(1);
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
int count = Convert.ToInt32(command.ScheduleCount); }
bool isInt = int.TryParse(command.ScheduleUnitNumber, out int unitNumber); previousDateRaw = previousDateRaw.AddMonths(unitNumber);
string kindOfWeekUnit = isInt ? "" : command.ScheduleUnitNumber; previousDateEdited = previousDateRaw;
var taskSchedule = new TaskSchedule(command.ScheduleCount, command.ScheduleType, command.ScheduleUnitType,
command.ScheduleUnitNumber, previousDateEdited);
_taskScheduleRepository.Create(taskSchedule);
_taskScheduleRepository.SaveChanges();
command.TaskScheduleId = taskSchedule.id;
switch (command.ScheduleUnitType) }
{ break;
case TaskScheduleUnitType.Year:
for (int i = 1; i <= count; i++)
{
command.EndTaskDate = previousDateEdited.ToFarsi();
operation = _taskApplication.CreateTask(command);
taskSchedule.SetLastEndTaskDate(previousDateEdited);
bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw); case "week":
while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday) for (int i = 1; i <= count; i++)
{ {
previousDateEdited = previousDateRaw.AddDays(1); if (string.IsNullOrWhiteSpace(kindOfWeekUnit))
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited); {
} throw new InvalidDataException();
previousDateRaw = previousDateRaw.AddYears(unitNumber); }
previousDateEdited = previousDateRaw;
}
break;
case TaskScheduleUnitType.Month: command.EndTaskDate = kindOfWeekUnit switch
bool endOfMonth = day == 31; {
"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) }
{ previousDateRaw = command.EndTaskDate.ToGeorgianDateTime();
for (int i = 1; i <= count; i++) previousDateEdited = previousDateRaw;
{
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);
}
}
break;
previousDateEdited = previousDateRaw; case "day":
} for (int i = 1; i <= count; i++)
} {
else command.EndTaskDate = previousDateEdited.ToFarsi();
{ operation = _taskApplication.CreateTask(command);
for (int i = 1; i < count; i++) taskSchedule.SetLastEndTaskDate(previousDateEdited);
{ previousDateRaw = previousDateRaw.AddDays(unitNumber);
command.EndTaskDate = previousDateEdited.ToFarsi(); bool isHoliday = _holidayItemRepository.GetHoliday(previousDateRaw);
operation = _taskApplication.CreateTask(command); while (isHoliday || previousDateEdited.DayOfWeek == DayOfWeek.Friday)
taskSchedule.SetLastEndTaskDate(previousDateEdited); {
var endDay = 0; previousDateEdited = previousDateRaw.AddDays(1);
isHoliday = _holidayItemRepository.GetHoliday(previousDateEdited);
if (month >= 12) }
{
var extra = month - 12;
year++;
month = extra + unitNumber;
} previousDateEdited = previousDateRaw;
else }
{ break;
month = unitNumber + month;
}
if (day == 30) }
{ _taskScheduleRepository.SaveChanges();
if (month == 12) operation = operation.Succcedded();
{ return operation;
var lastYearDay = Convert.ToInt32($"{year:0000}/{month:00}/1".FindeEndOfMonth() }
.Substring(8, 2)); catch (Exception e)
endDay = lastYearDay == 30 ? lastYearDay : 29; {
} return operation.Failed(e.ToString());
}
}
} 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();
}
} }

View File

@@ -1,9 +1,7 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using _0_Framework.Application; using _0_Framework.Application;
using AccountManagement.Application.Contracts.TaskSubject; using AccountManagement.Application.Contracts.TaskSubject;
using AccountManagement.Domain.TaskSubjectAgg; using AccountManagement.Domain.TaskSubjectAgg;
using static Microsoft.EntityFrameworkCore.DbLoggerCategory.Database;
namespace AccountManagement.Application; namespace AccountManagement.Application;

View File

@@ -7,7 +7,6 @@ using AccountManagement.Application.Contracts.Role;
using AccountManagement.Application.Contracts.SubAccount; using AccountManagement.Application.Contracts.SubAccount;
using AccountManagement.Application.Contracts.SubAccountPermissionSubtitle; using AccountManagement.Application.Contracts.SubAccountPermissionSubtitle;
using AccountManagement.Application.Contracts.Task; using AccountManagement.Application.Contracts.Task;
using AccountManagement.Application.Contracts.TaskSchedule;
using AccountManagement.Application.Contracts.TaskSubject; using AccountManagement.Application.Contracts.TaskSubject;
using AccountManagement.Application.Contracts.Ticket; using AccountManagement.Application.Contracts.Ticket;
using AccountManagement.Application.Contracts.TicketAccessAccount; using AccountManagement.Application.Contracts.TicketAccessAccount;
@@ -26,7 +25,6 @@ using AccountManagement.Domain.SubAccountPermissionSubtitle4Agg;
using AccountManagement.Domain.SubAccountRoleAgg; using AccountManagement.Domain.SubAccountRoleAgg;
using AccountManagement.Domain.TaskAgg; using AccountManagement.Domain.TaskAgg;
using AccountManagement.Domain.TaskMessageAgg; using AccountManagement.Domain.TaskMessageAgg;
using AccountManagement.Domain.TaskScheduleAgg;
using AccountManagement.Domain.TaskSubjectAgg; using AccountManagement.Domain.TaskSubjectAgg;
using AccountManagement.Domain.TicketAccessAccountAgg; using AccountManagement.Domain.TicketAccessAccountAgg;
using AccountManagement.Domain.TicketAgg; using AccountManagement.Domain.TicketAgg;
@@ -64,8 +62,6 @@ namespace AccountManagement.Configuration
services.AddScoped<ITaskRepository, TaskRepository>(); services.AddScoped<ITaskRepository, TaskRepository>();
services.AddTransient<ITaskApplication, TaskApplication>(); services.AddTransient<ITaskApplication, TaskApplication>();
services.AddTransient<ITaskScheduleApplication, TaskScheduleApplication>();
services.AddTransient<ITaskScheduleRepository, TaskScheduleRepository>();
services.AddTransient<ITaskSubjectRepository, TaskSubjectRepository>(); services.AddTransient<ITaskSubjectRepository, TaskSubjectRepository>();
services.AddTransient<ITaskSubjectApplication, TaskSubjectApplication>(); services.AddTransient<ITaskSubjectApplication, TaskSubjectApplication>();

View File

@@ -27,21 +27,12 @@ namespace AccountManagement.Domain.AccountAgg
List<AccountViewModel> GetAccountEqualToLowerPositionValue(); List<AccountViewModel> GetAccountEqualToLowerPositionValue();
AccountViewModel GetAccountViewModel(long id); AccountViewModel GetAccountViewModel(long id);
List<AccountViewModel> GetAccountsDeactivePositionValue(long Positionid); List<AccountViewModel> GetAccountsDeactivePositionValue(long Positionid);
Task<List<AccountSelectListViewModel>> GetAdminSelectList();
#endregion #endregion
List<AccountViewModel> GetAdminAccountsNew(); List<AccountViewModel> GetAdminAccountsNew();
List<AccountViewModel> GetAccountsToEditWorkshop(long workshopId); List<AccountViewModel> GetAccountsToEditWorkshop(long workshopId);
/// <summary>
/// چک میکند که اکانتی با این ام کاربری وجود دارد یا نه
/// </summary>
/// <param name="userName"></param>
/// <returns></returns>
public bool CheckExistClientAccount(string userName);
} }
} }

View File

@@ -2,14 +2,13 @@
using AccountManagement.Domain.TaskAgg; using AccountManagement.Domain.TaskAgg;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using AccountManagement.Domain.TaskMessageAgg; using AccountManagement.Domain.TaskMessageAgg;
namespace AccountManagement.Domain.AssignAgg; namespace AccountManagement.Domain.AssignAgg;
public class Assign : EntityBase 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; TaskId = taskId;
AssignerId = assignerId; AssignerId = assignerId;
@@ -19,7 +18,7 @@ public class Assign : EntityBase
AssignedPositionValue = assignedPositionValue; AssignedPositionValue = assignedPositionValue;
EndTaskDate = endTaskDate; EndTaskDate = endTaskDate;
FirstTimeCreation = firstTimeCreation; FirstTimeCreation = firstTimeCreation;
} }
//آیدی شخص ارسال کننده //آیدی شخص ارسال کننده
public long TaskId { get; private set; } public long TaskId { get; private set; }
@@ -53,9 +52,7 @@ public class Assign : EntityBase
public string? DoneDescription { get; private set; } public string? DoneDescription { get; private set; }
public bool IsCanceledRequest { get; private set; } public bool IsCanceledRequest { get; private set; }
public bool FirstTimeCreation { get; private set; } public bool FirstTimeCreation { get; private set; }
public Tasks Task { get; set; } public Tasks Task { get; set; }
public List<TaskMessage> TaskMessageList { get; set; } public List<TaskMessage> TaskMessageList { get; set; }
@@ -72,16 +69,14 @@ public class Assign : EntityBase
public void AcceptTimeRequest() public void AcceptTimeRequest()
{ {
ClearRequests(); TimeRequest = false;
TimeRequest = false;
AcceptedTimeRequest++; AcceptedTimeRequest++;
EndTaskDate = RequestDate < DateTime.Today ? DateTime.Today : RequestDate.Value; EndTaskDate = RequestDate.Value;
} }
public void RejectTimeRequest() public void RejectTimeRequest()
{ {
ClearRequests(); TimeRequest = false;
TimeRequest = false;
TimeRequestDescription = null; TimeRequestDescription = null;
RequestDate = null; RequestDate = null;
} }
@@ -95,36 +90,31 @@ public class Assign : EntityBase
} }
public void AcceptCancelRequest() public void AcceptCancelRequest()
{ {
ClearRequests(); IsCanceledRequest = false;
IsCanceledRequest = false;
IsCancel = true; IsCancel = true;
} }
public void RejectCancel() public void RejectCancel()
{ {
ClearRequests(); CancelDescription = null;
CancelDescription = null;
IsCanceledRequest = false; IsCanceledRequest = false;
} }
public void CompleteRequest(string? doneDescription) public void CompleteRequest(string? doneDescription)
{ {
ClearRequests(); DoneDescription = doneDescription;
DoneDescription = doneDescription;
IsDoneRequest = true; IsDoneRequest = true;
} }
public void RejectCompleteRequest() public void RejectCompleteRequest()
{ {
ClearRequests(); IsDoneRequest = false;
IsDoneRequest = false;
DoneDescription = null; DoneDescription = null;
} }
public void Completed() public void Completed()
{ {
ClearRequests(); IsDoneRequest = false;
IsDoneRequest = false;
IsDone = true; IsDone = true;
} }
@@ -136,13 +126,6 @@ public class Assign : EntityBase
TimeRequest = false; TimeRequest = false;
} }
public void ClearRequests()
{
IsDoneRequest = false;
IsCanceledRequest = false;
TimeRequest = false;
}
public void InsertNewData(DateTime endTaskDate,bool timeRequest,int acceptedTimeRequest,DateTime? requestDate, string timeRequestDescription, bool isCanceledRequest, public void InsertNewData(DateTime endTaskDate,bool timeRequest,int acceptedTimeRequest,DateTime? requestDate, string timeRequestDescription, bool isCanceledRequest,
bool isCancel,string cancelDescription,bool isDone,bool isDoneRequest,string? doneDescription) bool isCancel,string cancelDescription,bool isDone,bool isDoneRequest,string? doneDescription)
{ {
@@ -159,24 +142,4 @@ public class Assign : EntityBase
IsDoneRequest=isDoneRequest; IsDoneRequest=isDoneRequest;
DoneDescription=doneDescription; DoneDescription=doneDescription;
} }
public void ChangeAssignedId(long assignedId)
{
AssignedId = assignedId;
}
public void SetAssignerId(long assignerId)
{
AssignerId = assignerId;
}
public void ChangeSender(long senderId)
{
Task.SetSender(senderId);
var taskMessageItemsEnumerable =TaskMessageList.SelectMany(m => m.TaskMessageItemsList);
foreach (var taskMessageItems in taskMessageItemsEnumerable)
{
taskMessageItems.SetSenderId(senderId);
}
}
} }

View File

@@ -1,15 +1,12 @@
using System.Collections.Generic; using System.Collections.Generic;
using _0_Framework.Application;
using _0_Framework.Domain; using _0_Framework.Domain;
using AccountManagement.Application.Contracts.Media; using AccountManagement.Application.Contracts.Media;
using Microsoft.AspNetCore.Http;
namespace AccountManagement.Domain.MediaAgg; namespace AccountManagement.Domain.MediaAgg;
public interface IMediaRepository : IRepository<long, Media> public interface IMediaRepository:IRepository<long,Media>
{ {
public string BasePath { get; protected set; }
void CreateMediaWithTaskMedia(long taskId, long mediaId); void CreateMediaWithTaskMedia(long taskId, long mediaId);
List<MediaViewModel> GetMediaByTaskId(long taskId); List<MediaViewModel> GetMediaByTaskId(long taskId);
void Remove(long id); void Remove(long id);
@@ -26,6 +23,4 @@ public interface IMediaRepository : IRepository<long, Media>
#endregion #endregion
OperationResult UploadFile(IFormFile file, string fileLabel, string relativePath, int maximumFileLength,
List<string> allowedExtensions, string category);
} }

View File

@@ -2,7 +2,6 @@
using _0_Framework.Domain; using _0_Framework.Domain;
using AccountManagement.Application.Contracts.SubAccount; using AccountManagement.Application.Contracts.SubAccount;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.Specialized;
namespace AccountManagement.Domain.SubAccountAgg namespace AccountManagement.Domain.SubAccountAgg
{ {
@@ -14,6 +13,5 @@ namespace AccountManagement.Domain.SubAccountAgg
SubAccount GetDetails(long subAccountId); SubAccount GetDetails(long subAccountId);
SubAccount GetBy(string commandUsername); SubAccount GetBy(string commandUsername);
SubAccountViewModel GetByVerifyCodeAndPhoneNumber(string code, string phone); SubAccountViewModel GetByVerifyCodeAndPhoneNumber(string code, string phone);
List<SubAccount> GetBySubAccountRole(long subAccountRoleId);
} }
} }

View File

@@ -13,21 +13,17 @@ namespace AccountManagement.Domain.SubAccountRoleAgg
public List<SubAccountRolePermission> RolePermissions { get; private set; } public List<SubAccountRolePermission> RolePermissions { get; private set; }
public List<SubAccount> SubAccounts { get; private set; } public List<SubAccount> SubAccounts { get; private set; }
public List<SubAccountRoleWorkshop> RoleWorkshops { get; set; }
private SubAccountRole() private SubAccountRole()
{ {
} }
public SubAccountRole(string title, List<int> permissions, long accountId, List<long> workshopIds) public SubAccountRole(string title, List<int> permissions, long accountId)
{ {
Title = title; Title = title;
RolePermissions = permissions.Select(x => new SubAccountRolePermission(x, id)).ToList(); RolePermissions = permissions.Select(x => new SubAccountRolePermission(x, id)).ToList();
AccountId = accountId; AccountId = accountId;
RoleWorkshops = workshopIds.Select(x => new SubAccountRoleWorkshop(x, id)).ToList();
} }
public void ChangeTitle(string title) public void ChangeTitle(string title)
{ {
Title = title; Title = title;
@@ -36,12 +32,10 @@ namespace AccountManagement.Domain.SubAccountRoleAgg
{ {
RolePermissions.AddRange(permissionIds.Select(x => new SubAccountRolePermission(x, id))); RolePermissions.AddRange(permissionIds.Select(x => new SubAccountRolePermission(x, id)));
} }
public void Edit(string title, List<int> permissions,List<long> workshopIds) public void Edit(string title, List<int> permissions)
{ {
Title = title; Title = title;
RolePermissions = permissions.Select(x => new SubAccountRolePermission(x, id)).ToList(); RolePermissions = permissions.Select(x => new SubAccountRolePermission(x, id)).ToList();
RoleWorkshops = workshopIds.Select(x => new SubAccountRoleWorkshop(x, id)).ToList(); }
}
}
}
} }

View File

@@ -1,16 +0,0 @@
using _0_Framework.Domain;
namespace AccountManagement.Domain.SubAccountRoleAgg;
public class SubAccountRoleWorkshop:EntityBase
{
public SubAccountRoleWorkshop(long workshopId, long subAccountId)
{
WorkshopId = workshopId;
SubAccountId = subAccountId;
}
public long WorkshopId { get; set; }
public long SubAccountId { get; set; }
public SubAccountRole SubAccountRole { get; set; }
}

View File

@@ -1,6 +1,5 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks;
using _0_Framework.Application; using _0_Framework.Application;
using _0_Framework.Domain; using _0_Framework.Domain;
using AccountManagement.Application.Contracts.Task; using AccountManagement.Application.Contracts.Task;
@@ -89,22 +88,11 @@ public interface ITaskRepository:IRepository<long,Tasks>
/// <returns></returns> /// <returns></returns>
List<TaskViewModel> GetTasksHaveTicket(TaskSearchModel searchModel); List<TaskViewModel> GetTasksHaveTicket(TaskSearchModel searchModel);
/// <summary>
/// لیست تسک های دوره ای ایجاد شده توسط کاربر
/// </summary>
/// <param name="searchModel"></param>
/// <returns></returns>
List<TaskViewModel> GetTaskScheduleList(TaskSearchModel searchModel);
/// <summary> /// <summary>
/// تعداد تسک های درخواستی. بدون تیکت /// تعداد تسک های درخواستی. بدون تیکت
/// </summary> /// </summary>
/// <returns></returns> /// <returns></returns>
Task<int> GetRequestedTasksCount(); int GetRequestedTasksCount();
/// <summary> /// <summary>
/// گرفتن جزئیات درخواست وظیفه /// گرفتن جزئیات درخواست وظیفه
@@ -126,38 +114,39 @@ public interface ITaskRepository:IRepository<long,Tasks>
/// <returns></returns> /// <returns></returns>
bool HasOverdueTasks(long userId); bool HasOverdueTasks(long userId);
/// <summary> /// <summary>
/// مجوع تعداد تسک های عقب افتاده و درخواستی ///مجوع تعداد تسک های عقب افتاده و درخواستی
/// </summary> /// </summary>
/// <param name="userId"></param> /// <param name="userId"></param>
/// <returns></returns> /// <returns></returns>
Task<int> RequestedAndOverdueTasksCount(long userId); int RequestedAndOverdueTasksCount(long userId);
/// <summary> /// <summary>
/// تعداد تسک های دارای تیکت /// تعداد تسک های دارای تیکت
/// </summary> /// </summary>
/// <param name="userId"></param> /// <param name="userId"></param>
/// <returns></returns> /// <returns></returns>
Task<int> TasksHaveTicketCounts(long userId); int TasksHaveTicketCounts(long userId);
/// <summary> /// <summary>
/// تعداد درخواست های تسک های دارا تیکت /// تعداد درخواست های تسک های دارا تیکت
/// </summary> /// </summary>
/// <param name="userId"></param> /// <param name="userId"></param>
/// <returns></returns> /// <returns></returns>
Task<int> TasksHaveTicketRequestsCount(long userId); int TasksHaveTicketRequestsCount(long userId);
/// <summary> /// <summary>
/// تعداد تسک های شخصی و دریافتی برای امروز و یا عقب افتاده ///تعداد تسک های شخصی و دریافتی برای امروز و یا عقب افتاده
/// </summary> /// </summary>
/// <param name="userId"></param> /// <param name="userId"></param>
/// <returns></returns> /// <returns></returns>
Task<int> OverdueTasksCount(long userId); int OverdueTasksCount(long userId);
// گرفتن پیام های مربوط به هر تسک // گرفتن پیام های مربوط به هر تسک
List<Tasks> GetTasksByTaskScheduleId(long taskScheduleId);
void RemoveRange(IEnumerable<Tasks> tasks);
//OperationResult MoveDataFRomTaskToAssign();
} }

View File

@@ -1,12 +1,10 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using System.Security.AccessControl; using System.Security.AccessControl;
using _0_Framework.Domain; using _0_Framework.Domain;
using AccountManagement.Domain.AssignAgg; using AccountManagement.Domain.AssignAgg;
using AccountManagement.Domain.TaskMediaAgg; using AccountManagement.Domain.TaskMediaAgg;
using AccountManagement.Domain.TaskScheduleAgg; using AccountManagement.Domain.TaskScheduleAgg;
using OfficeOpenXml.Style;
namespace AccountManagement.Domain.TaskAgg; namespace AccountManagement.Domain.TaskAgg;
@@ -82,40 +80,4 @@ public class Tasks : EntityBase
TaskScheduleId = taskScheduleId; TaskScheduleId = taskScheduleId;
} }
public void ChangeSender(long senderId)
{
var prevSender = SenderId;
var assigners = Assigns.Where(x => x.AssignerId == prevSender).ToList();
foreach (var assigner in assigners)
{
assigner.SetAssignerId(senderId);
}
var senderMessageItem = Assigns
.SelectMany(x=>x.TaskMessageList
.SelectMany(m=>m.TaskMessageItemsList)).Where(x=>x.SenderAccountId == prevSender).ToList();
var receiverMessageItem = Assigns.SelectMany(x=>x.TaskMessageList
.SelectMany(m=>m.TaskMessageItemsList)).Where(x=>x.ReceiverAccountId == prevSender).ToList();
SenderId = senderId;
foreach (var taskMessageItems in senderMessageItem)
{
taskMessageItems.SetSenderId(senderId);
}
foreach (var taskMessageItems in receiverMessageItem)
{
taskMessageItems.SetReceiver(senderId);
}
}
public void SetSender(long senderId)
{
SenderId = senderId;
}
} }

View File

@@ -19,13 +19,4 @@ public class TaskMessageItems:EntityBase
public TaskMessage TaskMessage { get; set; } public TaskMessage TaskMessage { get; set; }
public void SetSenderId(long senderId)
{
SenderAccountId = senderId;
}
public void SetReceiver(long receiverId)
{
ReceiverAccountId = receiverId;
}
} }

View File

@@ -1,11 +1,8 @@
using System.Threading.Tasks; using _0_Framework.Domain;
using _0_Framework.Domain;
using AccountManagement.Application.Contracts.TaskSchedule;
namespace AccountManagement.Domain.TaskScheduleAgg; 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);
} }

View File

@@ -1,38 +1,29 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using _0_Framework.Application;
using _0_Framework.Domain; using _0_Framework.Domain;
using AccountManagement.Application.Contracts.Task;
using AccountManagement.Domain.TaskAgg; using AccountManagement.Domain.TaskAgg;
namespace AccountManagement.Domain.TaskScheduleAgg; namespace AccountManagement.Domain.TaskScheduleAgg;
public class TaskSchedule:EntityBase public class TaskSchedule:EntityBase
{ {
public TaskSchedule(string count, TaskScheduleType type, TaskScheduleUnitType unitType, string unitNumber, DateTime lastEndTaskDate) public TaskSchedule(string count, string type, string unitType, string unitNumber, DateTime lastEndTaskDate)
{ {
Count = count; Count = count;
Type = type; Type = type;
UnitType = unitType; UnitType = unitType;
UnitNumber = unitNumber; UnitNumber = unitNumber;
LastEndTaskDate = lastEndTaskDate; LastEndTaskDate = lastEndTaskDate;
IsActive = IsActive.True;
} }
public string Count { get; private set; } public string Count { get; private set; }
public TaskScheduleType Type { get; private set; } public string Type { get; private set; }
public TaskScheduleUnitType UnitType { get; private set; } public string UnitType { get; private set; }
public string UnitNumber { get; private set; } public string UnitNumber { get; private set; }
public DateTime LastEndTaskDate { get; private set; } public DateTime LastEndTaskDate { get; private set; }
public IsActive IsActive { get; private set; }
public List<Tasks> TasksList { get; set; } public List<Tasks> TasksList { get; set; }
public void SetLastEndTaskDate(DateTime lastEndTaskDate) public void SetLastEndTaskDate(DateTime lastEndTaskDate)
{ {
LastEndTaskDate = lastEndTaskDate; LastEndTaskDate = lastEndTaskDate;
} }
public void DeActive()
{
IsActive = IsActive.False;
}
} }

View File

@@ -27,7 +27,6 @@ using AccountManagement.Domain.SubAccountPermissionSubtitle3Agg;
using AccountManagement.Domain.SubAccountPermissionSubtitle4Agg; using AccountManagement.Domain.SubAccountPermissionSubtitle4Agg;
using AccountManagement.Domain.SubAccountRoleAgg; using AccountManagement.Domain.SubAccountRoleAgg;
using AccountMangement.Infrastructure.EFCore.Seed; using AccountMangement.Infrastructure.EFCore.Seed;
using AccountManagement.Domain.TaskScheduleAgg;
namespace AccountMangement.Infrastructure.EFCore namespace AccountMangement.Infrastructure.EFCore
{ {
@@ -58,9 +57,6 @@ namespace AccountMangement.Infrastructure.EFCore
public DbSet<TicketAccessAccount> TicketAccessAccounts { get; set; } public DbSet<TicketAccessAccount> TicketAccessAccounts { get; set; }
public DbSet<TaskSchedule> TaskSchedules { get; set; }
#endregion #endregion
#region Pooya #region Pooya

View File

@@ -21,10 +21,6 @@ namespace AccountMangement.Infrastructure.EFCore.Mappings
opt.WithOwner(x => x.SubAccountRole); opt.WithOwner(x => x.SubAccountRole);
}); });
builder.OwnsMany(x => x.RoleWorkshops, roleWorkshop =>
{
roleWorkshop.WithOwner(x => x.SubAccountRole).HasForeignKey(x => x.SubAccountId);
});
} }
} }
} }

View File

@@ -12,10 +12,9 @@ public class TaskScheduleMapping : IEntityTypeConfiguration<TaskSchedule>
builder.HasKey(x => x.id); builder.HasKey(x => x.id);
builder.Property(x => x.Count).HasMaxLength(10); builder.Property(x => x.Count).HasMaxLength(10);
builder.Property(x => x.Type).HasConversion<string>().HasMaxLength(12); builder.Property(x => x.Type).HasMaxLength(12);
builder.Property(x => x.UnitNumber).HasMaxLength(10); builder.Property(x => x.UnitNumber).HasMaxLength(10);
builder.Property(x => x.UnitType).HasConversion<string>().HasMaxLength(10); builder.Property(x => x.UnitType).HasMaxLength(10);
builder.Property(x => x.IsActive).HasConversion<string>().HasMaxLength(5);
builder.HasMany(x => x.TasksList).WithOne(x => x.TaskSchedule) builder.HasMany(x => x.TasksList).WithOne(x => x.TaskSchedule)
.HasForeignKey(x => x.TaskScheduleId); .HasForeignKey(x => x.TaskScheduleId);

View File

@@ -1,74 +0,0 @@
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);
}
}
}

View File

@@ -1,28 +0,0 @@
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");
}
}
}

View File

@@ -1,43 +0,0 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace AccountMangement.Infrastructure.EFCore.Migrations
{
/// <inheritdoc />
public partial class addworkshoptosubAccountRole : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "SubAccountRoleWorkshop",
columns: table => new
{
id = table.Column<long>(type: "bigint", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
SubAccountId = table.Column<long>(type: "bigint", nullable: false),
WorkshopId = table.Column<long>(type: "bigint", nullable: false),
CreationDate = table.Column<DateTime>(type: "datetime2", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_SubAccountRoleWorkshop", x => new { x.SubAccountId, x.id });
table.ForeignKey(
name: "FK_SubAccountRoleWorkshop_SubAccountRoles_SubAccountId",
column: x => x.SubAccountId,
principalTable: "SubAccountRoles",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "SubAccountRoleWorkshop");
}
}
}

View File

@@ -759,16 +759,10 @@ namespace AccountMangement.Infrastructure.EFCore.Migrations
b.Property<DateTime>("CreationDate") b.Property<DateTime>("CreationDate")
.HasColumnType("datetime2"); .HasColumnType("datetime2");
b.Property<string>("IsActive")
.IsRequired()
.HasMaxLength(5)
.HasColumnType("nvarchar(5)");
b.Property<DateTime>("LastEndTaskDate") b.Property<DateTime>("LastEndTaskDate")
.HasColumnType("datetime2"); .HasColumnType("datetime2");
b.Property<string>("Type") b.Property<string>("Type")
.IsRequired()
.HasMaxLength(12) .HasMaxLength(12)
.HasColumnType("nvarchar(12)"); .HasColumnType("nvarchar(12)");
@@ -777,7 +771,6 @@ namespace AccountMangement.Infrastructure.EFCore.Migrations
.HasColumnType("nvarchar(10)"); .HasColumnType("nvarchar(10)");
b.Property<string>("UnitType") b.Property<string>("UnitType")
.IsRequired()
.HasMaxLength(10) .HasMaxLength(10)
.HasColumnType("nvarchar(10)"); .HasColumnType("nvarchar(10)");
@@ -1078,33 +1071,6 @@ namespace AccountMangement.Infrastructure.EFCore.Migrations
modelBuilder.Entity("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRole", b => modelBuilder.Entity("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRole", b =>
{ {
b.OwnsMany("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRoleWorkshop", "RoleWorkshops", b1 =>
{
b1.Property<long>("SubAccountId")
.HasColumnType("bigint");
b1.Property<long>("id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b1.Property<long>("id"));
b1.Property<DateTime>("CreationDate")
.HasColumnType("datetime2");
b1.Property<long>("WorkshopId")
.HasColumnType("bigint");
b1.HasKey("SubAccountId", "id");
b1.ToTable("SubAccountRoleWorkshop");
b1.WithOwner("SubAccountRole")
.HasForeignKey("SubAccountId");
b1.Navigation("SubAccountRole");
});
b.OwnsMany("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRolePermission", "RolePermissions", b1 => b.OwnsMany("AccountManagement.Domain.SubAccountRoleAgg.SubAccountRolePermission", "RolePermissions", b1 =>
{ {
b1.Property<long>("id") b1.Property<long>("id")
@@ -1132,8 +1098,6 @@ namespace AccountMangement.Infrastructure.EFCore.Migrations
}); });
b.Navigation("RolePermissions"); b.Navigation("RolePermissions");
b.Navigation("RoleWorkshops");
}); });
modelBuilder.Entity("AccountManagement.Domain.TaskAgg.Tasks", b => modelBuilder.Entity("AccountManagement.Domain.TaskAgg.Tasks", b =>

View File

@@ -312,17 +312,6 @@ public class AccountRepository : RepositoryBase<long, Account>, IAccountReposito
IsActiveString = x.IsActive ? "true" : "false", IsActiveString = x.IsActive ? "true" : "false",
}).ToList(); }).ToList();
} }
public async Task<List<AccountSelectListViewModel>> GetAdminSelectList()
{
return await _context.Accounts.Where(x => x.AdminAreaPermission == "true").Select(x => new AccountSelectListViewModel()
{
Id = x.id,
Name = x.Fullname,
RoleId = x.RoleId
}).ToListAsync();
}
//public List<AccountViewModel> GetAdminAccounts() //public List<AccountViewModel> GetAdminAccounts()
//{ //{
// return _context.Accounts.Where(x=>x.AdminAreaPermission == "true" && x.IsActiveString == "true").Select(x => new AccountViewModel() // return _context.Accounts.Where(x=>x.AdminAreaPermission == "true" && x.IsActiveString == "true").Select(x => new AccountViewModel()
@@ -343,9 +332,4 @@ public class AccountRepository : RepositoryBase<long, Account>, IAccountReposito
#endregion #endregion
public bool CheckExistClientAccount(string userName)
{
return _context.Accounts.Any(x => x.Username == userName);
}
} }

View File

@@ -1,8 +1,5 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.IO;
using System.Linq; using System.Linq;
using _0_Framework.Application;
using _0_Framework.InfraStructure; using _0_Framework.InfraStructure;
using AccountManagement.Application.Contracts.Media; using AccountManagement.Application.Contracts.Media;
using AccountManagement.Domain.AdminResponseMediaAgg; using AccountManagement.Domain.AdminResponseMediaAgg;
@@ -10,35 +7,27 @@ using AccountManagement.Domain.ClientResponseMediaAgg;
using AccountManagement.Domain.MediaAgg; using AccountManagement.Domain.MediaAgg;
using AccountManagement.Domain.TaskMediaAgg; using AccountManagement.Domain.TaskMediaAgg;
using AccountManagement.Domain.TicketMediasAgg; using AccountManagement.Domain.TicketMediasAgg;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
namespace AccountMangement.Infrastructure.EFCore.Repository; namespace AccountMangement.Infrastructure.EFCore.Repository;
public class MediaRepository : RepositoryBase<long, Media>, IMediaRepository public class MediaRepository:RepositoryBase<long,Media>,IMediaRepository
{ {
private const string _basePath = "Storage/Medias";
public string BasePath { get; set; }
private readonly AccountContext _accountContext; private readonly AccountContext _accountContext;
public MediaRepository(AccountContext taskManagerContext, IWebHostEnvironment webHostEnvironment) : base(taskManagerContext) public MediaRepository( AccountContext taskManagerContext) : base(taskManagerContext)
{ {
_accountContext = taskManagerContext; _accountContext = taskManagerContext;
BasePath = webHostEnvironment.ContentRootPath + "/Storage";
} }
//ساخت جدول واسط بین مدیا و نسک //ساخت جدول واسط بین مدیا و نسک
//نکته: این متد ذخیره انجام نمیدهد //نکته: این متد ذخیره انجام نمیدهد
public void CreateMediaWithTaskMedia(long taskId, long mediaId) public void CreateMediaWithTaskMedia(long taskId, long mediaId)
{ {
var Taskmedias = new TaskMedia(taskId, mediaId); var Taskmedias = new TaskMedia(taskId,mediaId);
_accountContext.Add(Taskmedias); _accountContext.Add(Taskmedias);
} }
public void Remove(long id) public void Remove(long id)
{ {
var media = Get(id); var media = Get(id);
Remove(media); Remove(media);
} }
@@ -88,48 +77,6 @@ public class MediaRepository : RepositoryBase<long, Media>, IMediaRepository
{ {
return _accountContext.Medias.Where(x => mediaIds.Contains(x.id)).ToList(); return _accountContext.Medias.Where(x => mediaIds.Contains(x.id)).ToList();
} }
public OperationResult UploadFile(IFormFile file, string fileLabel, string relativePath, int maximumFileLength,
List<string> allowedExtensions, string category)
{
OperationResult op = new();
var path = Path.Combine(_basePath, relativePath);
var fileExtension = Path.GetExtension(file.FileName);
if (file == null || file.Length == 0)
return op.Failed("خطای سیستمی");
if (file.Length > (maximumFileLength * 1024 * 1024))
return op.Failed($"حجم فایل نمی تواند بیشتر از " +
$"{maximumFileLength}" +
$"مگابایت باشد");
if (!allowedExtensions.Contains(fileExtension.ToLower()))
{
var operationMessage = ":فرمت فایل باید یکی از موارد زیر باشد";
operationMessage += "\n";
operationMessage += string.Join(" ", allowedExtensions);
return op.Failed(operationMessage);
}
Directory.CreateDirectory(path);
var extension = Path.GetExtension(file.FileName);
var uniqueFileName = $"{fileLabel}-{DateTime.Now.Ticks}{extension}";
var filePath = Path.Combine(path, uniqueFileName);
using (var fileStream = new FileStream(filePath, FileMode.CreateNew))
{
file.CopyTo(fileStream);
}
var mediaEntity = new Media(filePath, extension, "فایل", category);
Create(mediaEntity);
SaveChanges();
return op.Succcedded(mediaEntity.id);
}
} }
#endregion #endregion

View File

@@ -77,10 +77,5 @@ namespace AccountMangement.Infrastructure.EFCore.Repository
Username = entity.Username Username = entity.Username
}; };
} }
public List<SubAccount> GetBySubAccountRole(long subAccountRoleId)
{
return _context.SubAccounts.Where(x => x.SubAccountRoleId == subAccountRoleId).ToList();
}
} }
} }

View File

@@ -4,7 +4,6 @@ using _0_Framework.InfraStructure;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using System.Linq; using System.Linq;
using System.Threading.Tasks;
using _0_Framework.Application; using _0_Framework.Application;
using AccountManagement.Application.Contracts.Account; using AccountManagement.Application.Contracts.Account;
using AccountManagement.Application.Contracts.Assign; using AccountManagement.Application.Contracts.Assign;
@@ -47,6 +46,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
public EditTask GetDetails(long TaskId) public EditTask GetDetails(long TaskId)
{ {
var task = Get(TaskId);
var userId = _authHelper.CurrentAccountId(); var userId = _authHelper.CurrentAccountId();
@@ -94,8 +94,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
Fullname = a.Fullname, Fullname = a.Fullname,
Id = a.id, Id = a.id,
}).FirstOrDefault(), }).FirstOrDefault()
TaskScheduleId = x.TaskScheduleId ?? 0
}).FirstOrDefault(); }).FirstOrDefault();
@@ -106,26 +105,13 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
{ {
res.EndTaskDate = _accountContext.Assigns.First(a => a.TaskId == res.Id && a.AssignedId == userId) res.EndTaskDate = _accountContext.Assigns.First(a => a.TaskId == res.Id && a.AssignedId == userId)
.EndTaskDate.ToFarsi(); .EndTaskDate.ToFarsi();
var userAssign = res.AssignViewModels.First(x => x.AssignedId == userId);
res.AssignViewModels = res.AssignViewModels.Where(x => x.AssignedId == userId).ToList(); res.AssignViewModels = res.AssignViewModels.Where(x => x.AssignedId == userId).ToList();
res.IsDone = userAssign.IsDone; res.IsDone = res.AssignViewModels.First(x => x.AssignedId == userId).IsDone;
res.IsCancel = userAssign.IsCancel; res.IsCancel = res.AssignViewModels.First(x => x.AssignedId == userId).IsCancel;
res.HasRequest = userAssign.IsCanceledRequest || userAssign.TimeRequest ||
userAssign.IsDoneRequest;
} }
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() //_accountContext.Tasks.Where(x => x.id == TaskId).Select(x => new EditTask()
//{ //{
// EndTaskDate = x.EndTaskDate.ToFarsi(), // EndTaskDate = x.EndTaskDate.ToFarsi(),
@@ -162,6 +148,8 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
Remove(task); Remove(task);
} }
public List<TaskViewModel> GetRequestedTasks(TaskSearchModel searchModel) public List<TaskViewModel> GetRequestedTasks(TaskSearchModel searchModel)
{ {
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value); var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
@@ -900,7 +888,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
AcceptedTimeRequest = x.AcceptedTimeRequest, AcceptedTimeRequest = x.AcceptedTimeRequest,
IsCancelRequest = x.IsCancelRequest, IsCancelRequest = x.IsCancelRequest,
ContractingPartyName = x.ContractingPartyName, ContractingPartyName = x.ContractingPartyName,
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel,false), Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
MediaCount = x.MediaCount, MediaCount = x.MediaCount,
HasAttachment = x.MediaCount > 0, HasAttachment = x.MediaCount > 0,
SelfName = x.SelfName, SelfName = x.SelfName,
@@ -980,7 +968,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
.ThenInclude(x => x.Media) .ThenInclude(x => x.Media)
.Where(x => .Where(x =>
x.Task.IsActiveString == "true" && (x.AssignerId == accountId && x.AssignedId != accountId) && (!x.IsCanceledRequest && !x.TimeRequest && !x.IsDoneRequest) && x.Task.TicketId == null && 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.TaskScheduleId == null) x.Task.SenderId == accountId)
.Select(x => .Select(x =>
new TaskViewModel() new TaskViewModel()
{ {
@@ -1229,7 +1217,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
AcceptedTimeRequest = x.AcceptedTimeRequest, AcceptedTimeRequest = x.AcceptedTimeRequest,
IsCancelRequest = x.IsCancelRequest, IsCancelRequest = x.IsCancelRequest,
ContractingPartyName = x.ContractingPartyName, ContractingPartyName = x.ContractingPartyName,
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel, false), Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
MediaCount = x.MediaCount, MediaCount = x.MediaCount,
HasAttachment = x.MediaCount > 0, HasAttachment = x.MediaCount > 0,
SelfName = x.SelfName, SelfName = x.SelfName,
@@ -1788,7 +1776,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
AcceptedTimeRequest = x.AcceptedTimeRequest, AcceptedTimeRequest = x.AcceptedTimeRequest,
IsCancelRequest = x.IsCancelRequest, IsCancelRequest = x.IsCancelRequest,
ContractingPartyName = x.ContractingPartyName, ContractingPartyName = x.ContractingPartyName,
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel, false), Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
MediaCount = x.MediaCount, MediaCount = x.MediaCount,
HasAttachment = x.MediaCount > 0, HasAttachment = x.MediaCount > 0,
SelfName = x.SelfName, SelfName = x.SelfName,
@@ -1851,313 +1839,10 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
return final; return final;
} }
public List<TaskViewModel> GetTaskScheduleList(TaskSearchModel searchModel)
public string SetTasksColors(DateTime date, bool isCancel)
{ {
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) && x.Task.TaskSchedule.IsActive== IsActive.True);
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, false),
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,bool hasRequest)
{
if (hasRequest)
return "red";
if (isCancel) if (isCancel)
{ {
//return "brown"; //return "brown";
@@ -2203,23 +1888,23 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
} }
public async Task<int> GetRequestedTasksCount() public int GetRequestedTasksCount()
{ {
var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value); var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value);
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value); var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
if (positionValue == 1) if (positionValue == 1)
{ {
return await _accountContext.Assigns.Include(x => x.Task).Where(x => return _accountContext.Assigns.Include(x => x.Task).Where(x =>
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel && !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) (x.IsCanceledRequest || x.TimeRequest || x.IsDoneRequest) && (accountId == x.Task.SenderId) && x.Task.TicketId == null).GroupBy(x => x.TaskId)
.Select(x => x.First()).CountAsync(); .Select(x => x.First()).Count();
} }
else else
{ {
return await _accountContext.Assigns.Include(x => x.Task).Where(x => return _accountContext.Assigns.Include(x => x.Task).Where(x =>
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel && !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) (x.IsCanceledRequest || x.TimeRequest || x.IsDoneRequest) && (accountId == x.Task.SenderId) && x.Task.TicketId == null).GroupBy(x => x.TaskId)
.Select(x => x.First()).CountAsync(); .Select(x => x.First()).Count();
} }
} }
@@ -2316,7 +2001,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
} }
public async Task<int> RequestedAndOverdueTasksCount(long userId) public int RequestedAndOverdueTasksCount(long userId)
{ {
var account = _accountRepository.GetIncludePositions(userId); var account = _accountRepository.GetIncludePositions(userId);
if (account.Position == null) if (account.Position == null)
@@ -2324,7 +2009,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
DateTime now = DateTime.Now; DateTime now = DateTime.Now;
var overdueTasksCount = await OverdueTasksCount(userId); var overdueTasksCount = OverdueTasksCount(userId);
//overdueTasksCount = _accountContext.Tasks.Include(x => //overdueTasksCount = _accountContext.Tasks.Include(x =>
@@ -2333,10 +2018,10 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
// !x.Assigns.Any(a => a.TimeRequest) // !x.Assigns.Any(a => a.TimeRequest)
// && x.Assigns.Any(a => a.AssignedId == userId) && // && x.Assigns.Any(a => a.AssignedId == userId) &&
// (x.Assigns.First(a => a.AssignedId == userId).EndTaskDate.Date <= DateTime.Now.Date)); // (x.Assigns.First(a => a.AssignedId == userId).EndTaskDate.Date <= DateTime.Now.Date));
var overdueRequestsCount = await GetRequestedTasksCount(); var overdueRequestsCount = GetRequestedTasksCount();
var ticketRequested = await TasksHaveTicketRequestsCount(userId); var ticketRequested = TasksHaveTicketRequestsCount(userId);
var overdueTicket = await TasksHaveTicketCounts(userId); var overdueTicket = TasksHaveTicketCounts(userId);
return overdueTasksCount + overdueRequestsCount + ticketRequested + overdueTicket; return overdueTasksCount + overdueRequestsCount + ticketRequested + overdueTicket;
} }
@@ -2351,7 +2036,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
return overdueRequestsCount; return overdueRequestsCount;
} }
public async Task<int> OverdueTasksCount(long userId) public int OverdueTasksCount(long userId)
{ {
var account = _accountRepository.GetIncludePositions(userId); var account = _accountRepository.GetIncludePositions(userId);
@@ -2363,12 +2048,12 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
int overdueTasksCount; int overdueTasksCount;
if (positionValue == 1) if (positionValue == 1)
{ {
overdueTasksCount = await _accountContext.Assigns.Include(x => x.Task).Where(x => x.AssignedId == userId && overdueTasksCount = _accountContext.Assigns.Include(x => x.Task).Where(x => x.AssignedId == userId &&
x.AssignerId == userId && x.Task.Assigns.Count == 1 && x.AssignerId == userId && x.Task.Assigns.Count == 1 &&
!x.IsCancel && !x.IsCanceledRequest && !x.IsCancel && !x.IsCanceledRequest &&
!x.IsDone && !x.TimeRequest && !x.IsDoneRequest && x.EndTaskDate.Date <= DateTime.Now.Date && !x.IsDone && !x.TimeRequest && !x.IsDoneRequest && x.EndTaskDate.Date <= DateTime.Now.Date &&
x.Task.IsActiveString == "true" && x.Task.TicketId == null) x.Task.IsActiveString == "true" && x.Task.TicketId == null)
.GroupBy(x => x.TaskId).Select(x => x.First()).CountAsync(); .GroupBy(x => x.TaskId).Select(x => x.First()).Count();
//overdueTasksCount = _accountContext.Tasks.Include(x => //overdueTasksCount = _accountContext.Tasks.Include(x =>
// x.Assigns).Count(x => !x.Assigns.Any(a => a.IsCancel) && !x.Assigns.Any(a => a.IsCanceledRequest) && // x.Assigns).Count(x => !x.Assigns.Any(a => a.IsCancel) && !x.Assigns.Any(a => a.IsCanceledRequest) &&
@@ -2380,49 +2065,43 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
} }
else else
{ {
overdueTasksCount = await _accountContext.Assigns.Include(x => x.Task).Where(x => x.AssignedId == userId && overdueTasksCount = _accountContext.Assigns.Include(x => x.Task).Where(x => x.AssignedId == userId &&
!x.IsCancel && !x.IsCanceledRequest && !x.IsCancel && !x.IsCanceledRequest &&
!x.IsDone && !x.TimeRequest && !x.IsDoneRequest && x.EndTaskDate.Date <= DateTime.Now.Date && !x.IsDone && !x.TimeRequest && !x.IsDoneRequest && x.EndTaskDate.Date <= DateTime.Now.Date &&
x.Task.IsActiveString == "true" && x.Task.TicketId == null) x.Task.IsActiveString == "true" && x.Task.TicketId == null)
.GroupBy(x => x.TaskId).Select(x => x.First()).CountAsync(); .GroupBy(x => x.TaskId).Select(x => x.First()).Count();
; ;
} }
return overdueTasksCount; return overdueTasksCount;
} }
public List<Tasks> GetTasksByTaskScheduleId(long taskScheduleId) public int TasksHaveTicketCounts(long userId)
{ {
return _accountContext.Tasks.Include(x => x.Assigns).Where(x => x.TaskScheduleId != null && x.TaskScheduleId == taskScheduleId).ToList(); return _accountContext.Assigns.Include(x => x.Task).Where(x =>
}
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.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel &&
!x.IsCanceledRequest && !x.IsDoneRequest && !x.IsCanceledRequest && !x.IsDoneRequest &&
!x.TimeRequest && (x.AssignerId == userId || x.AssignedId == userId) && !x.TimeRequest && (x.AssignerId == userId || x.AssignedId == userId) &&
(x.Task.TicketId != null && x.Task.TicketId > 0)).GroupBy(x => x.TaskId).CountAsync(); (x.Task.TicketId != null && x.Task.TicketId > 0)).GroupBy(x => x.TaskId).Count();
} }
public async Task<int> TasksHaveTicketRequestsCount(long userId) public int TasksHaveTicketRequestsCount(long userId)
{ {
var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value); var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value);
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value); var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
if (positionValue == 1) if (positionValue == 1)
{ {
return await _accountContext.Assigns.Include(x => x.Task).Where(x => return _accountContext.Assigns.Include(x => x.Task).Where(x =>
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel && !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) (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()).CountAsync(); .Select(x => x.First()).Count();
} }
else else
{ {
return await _accountContext.Assigns.Include(x => x.Task).Where(x => return _accountContext.Assigns.Include(x => x.Task).Where(x =>
!x.IsDone && x.Task.IsActiveString == "true" && !x.IsCancel && !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) (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()).CountAsync(); .Select(x => x.First()).Count();
} }
} }
@@ -2661,7 +2340,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
AcceptedTimeRequest = x.AcceptedTimeRequest, AcceptedTimeRequest = x.AcceptedTimeRequest,
IsCancelRequest = x.IsCancelRequest, IsCancelRequest = x.IsCancelRequest,
ContractingPartyName = x.ContractingPartyName, ContractingPartyName = x.ContractingPartyName,
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel, false), Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
MediaCount = x.MediaCount, MediaCount = x.MediaCount,
HasAttachment = x.MediaCount > 0, HasAttachment = x.MediaCount > 0,
SelfName = x.SelfName, SelfName = x.SelfName,
@@ -2725,7 +2404,6 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
{ {
var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value); var accountId = long.Parse(_contextAccessor.HttpContext.User.FindFirst("AccountId").Value);
var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value); var positionValue = int.Parse(_contextAccessor.HttpContext.User.FindFirst("PositionValue").Value);
var today = DateTime.Today;
var emptyAcc = new AccountViewModel() var emptyAcc = new AccountViewModel()
{ {
Fullname = "-", Fullname = "-",
@@ -2735,7 +2413,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
var raw = _accountContext.Assigns.Include(x => x.Task).ThenInclude(x => x.TaskMedias) var raw = _accountContext.Assigns.Include(x => x.Task).ThenInclude(x => x.TaskMedias)
.ThenInclude(x => x.Media) .ThenInclude(x => x.Media)
.Where(x => .Where(x =>
x.Task.IsActiveString == "true" && x.AssignedId == accountId && x.Task.TicketId == null &&!x.IsDoneRequest && !x.IsCanceledRequest); x.Task.IsActiveString == "true" && x.AssignedId == accountId && (!x.IsCanceledRequest && !x.TimeRequest && !x.IsDoneRequest) && x.Task.TicketId == null);
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch)) if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
{ {
raw = raw.Where(x => raw = raw.Where(x =>
@@ -2768,7 +2446,6 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
MediaCount = _accountContext.TaskMedias.Count(m => m.TaskId == x.Task.id), MediaCount = _accountContext.TaskMedias.Count(m => m.TaskId == x.Task.id),
Description = x.Task.Description, Description = x.Task.Description,
IsDoneRequest = x.IsDoneRequest, IsDoneRequest = x.IsDoneRequest,
}); });
if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch)) if (!string.IsNullOrWhiteSpace(searchModel.GeneralSearch))
{ {
@@ -2807,8 +2484,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
ContractingPartyName = x.ContractingPartyName, ContractingPartyName = x.ContractingPartyName,
MediaCount = x.MediaCount, MediaCount = x.MediaCount,
Description = x.Description, Description = x.Description,
IsDoneRequest = x.IsDoneRequest, IsDoneRequest = x.IsDoneRequest
HasRequest = x.IsCancelRequest || x.RequestTime || x.IsDoneRequest
}); });
if (!string.IsNullOrWhiteSpace(searchModel.StartDate) && !string.IsNullOrWhiteSpace(searchModel.EndDate)) if (!string.IsNullOrWhiteSpace(searchModel.StartDate) && !string.IsNullOrWhiteSpace(searchModel.EndDate))
{ {
@@ -2877,10 +2553,8 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
} }
var orderResult = result.OrderBy(x => x.IsDone || x.IsCancel) var orderResult = result.OrderByDescending(x => x.IsCancel ? 0 : 1).ThenBy(x => x.IsDone ? 1 : 0)
.ThenByDescending(x => x.EndTaskDateGE <= today.AddDays(1) && !x.RequestTime) .ThenBy(x => x.EndTaskDateGE);
.ThenByDescending(x => x.RequestTime)
.ThenBy(x => x.EndTaskDateGE); // مرتب‌سازی داخلی بر اساس تاریخ
var final = orderResult.Skip(searchModel.PageIndex).Take(30).ToList(); var final = orderResult.Skip(searchModel.PageIndex).Take(30).ToList();
@@ -2914,7 +2588,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
MediaCount = x.MediaCount, MediaCount = x.MediaCount,
SelfName = x.SelfName, SelfName = x.SelfName,
Description = x.Description, Description = x.Description,
IsDoneRequest = x.IsDoneRequest, IsDoneRequest = x.IsDoneRequest
}).ToList(); }).ToList();
@@ -2942,7 +2616,7 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
AcceptedTimeRequest = x.AcceptedTimeRequest, AcceptedTimeRequest = x.AcceptedTimeRequest,
IsCancelRequest = x.IsCancelRequest, IsCancelRequest = x.IsCancelRequest,
ContractingPartyName = x.ContractingPartyName, ContractingPartyName = x.ContractingPartyName,
Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel,x.RequestTime), Color = x.IsDone ? "green" : SetTasksColors(x.EndTaskDateGE, x.IsCancel),
MediaCount = x.MediaCount, MediaCount = x.MediaCount,
HasAttachment = x.MediaCount > 0, HasAttachment = x.MediaCount > 0,
SelfName = x.SelfName, SelfName = x.SelfName,
@@ -3001,8 +2675,6 @@ public class TaskRepository : RepositoryBase<long, Tasks>, ITaskRepository
AssignedName = "-", AssignedName = "-",
AssignedPositionValue = 0 AssignedPositionValue = 0
}, },
HasRequest = x.IsCancelRequest || x.RequestTime || x.IsDoneRequest
}).ToList(); }).ToList();
return final; return final;
} }

View File

@@ -1,69 +0,0 @@
using System.Linq;
using System.Threading.Tasks;
using _0_Framework.Application;
using _0_Framework.InfraStructure;
using AccountManagement.Application.Contracts.Media;
using AccountManagement.Application.Contracts.Task;
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,
Count = taskSchedule.Type == TaskScheduleType.Limited ? taskSchedule.Count : "نامحدود",
FirstEndTaskDate = firstTaskDetails.Assigns.FirstOrDefault()?.EndTaskDate.ToFarsi() ?? "",
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;
}
}

View File

@@ -1,55 +0,0 @@
using System;
using System.IO;
using System.Linq;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.AdminMonthlyOverview;
using Microsoft.AspNetCore.JsonPatch.Operations;
namespace Company.Domain.AdminMonthlyOverviewAgg;
public class AdminMonthlyOverview:EntityBase
{
public AdminMonthlyOverview(long workshopId, int month, int year, AdminMonthlyOverviewStatus status)
{
WorkshopId = workshopId;
Month = month;
Year = year;
Status = status;
}
public long WorkshopId { get; set; }
public int Month { get; set; }
public int Year { get; set; }
public AdminMonthlyOverviewStatus Status { get; set; }
public void Next()
{
var maxValue = Enum.GetValues(typeof(AdminMonthlyOverviewStatus))
.Cast<AdminMonthlyOverviewStatus>()
.Max();
if (Status >= maxValue)
{
throw new InvalidDataException("تغییر وضعیت وارد شده نامعتبر است");
}
Status += 1;
}
public void Back()
{
var minValue = Enum.GetValues(typeof(AdminMonthlyOverviewStatus))
.Cast<AdminMonthlyOverviewStatus>()
.Min();
if (Status <= minValue)
{
throw new InvalidDataException("تغییر وضعیت وارد شده نامعتبر است");
}
Status -= 1;
}
public void SetStatus(AdminMonthlyOverviewStatus status)
{
Status = status;
}
}

View File

@@ -1,12 +0,0 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.AdminMonthlyOverview;
namespace Company.Domain.AdminMonthlyOverviewAgg;
public interface IAdminMonthlyOverviewRepository:IRepository<long, AdminMonthlyOverview>
{
Task<List<AdminMonthlyOverviewListViewModel>> GetWorkshopStatus(AdminMonthlyOverviewSearchModel searchModel);
Task<AdminMonthlyOverViewCounterVm> GetCounter(int year, int month, long accountId);
}

View File

@@ -1,11 +1,6 @@
using System; using System;
using System.Collections;
using System.Collections.Generic;
using _0_Framework.Application; using _0_Framework.Application;
using _0_Framework.Domain; using _0_Framework.Domain;
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
using Company.Domain.CheckoutAgg.ValueObjects;
using Company.Domain.CustomizeCheckoutAgg.ValueObjects;
using Company.Domain.WorkshopAgg; using Company.Domain.WorkshopAgg;
namespace Company.Domain.CheckoutAgg; namespace Company.Domain.CheckoutAgg;
@@ -26,11 +21,7 @@ public class Checkout : EntityBase
double salaryAidDeduction, double absenceDeduction, string sumOfWorkingDays double salaryAidDeduction, double absenceDeduction, string sumOfWorkingDays
, string archiveCode, string personnelCode, , string archiveCode, string personnelCode,
string totalClaims, string totalDeductions, double totalPayment, string signature, double marriedAllowance, bool leaveCheckout, string totalClaims, string totalDeductions, double totalPayment, string signature, double marriedAllowance, bool leaveCheckout,
double creditLeaves, double absencePeriod, double averageHoursPerDay, bool hasRollCall, string overTimeWorkvalue, double creditLeaves, double absencePeriod, double averageHoursPerDay, bool hasRollCall, string overTimeWorkvalue, string overNightWorkValue, string fridayWorkValue, string rotatingShifValue, string absenceValue, string totalDayOfLeaveCompute, string totalDayOfYearsCompute, string totalDayOfBunosesCompute)
string overNightWorkValue, string fridayWorkValue, string rotatingShifValue, string absenceValue,
string totalDayOfLeaveCompute, string totalDayOfYearsCompute, string totalDayOfBunosesCompute,
ICollection<CheckoutLoanInstallment> loanInstallments,
ICollection<CheckoutSalaryAid> salaryAids,CheckoutRollCall checkoutRollCall,TimeSpan employeeMandatoryHours)
{ {
EmployeeFullName = employeeFullName; EmployeeFullName = employeeFullName;
FathersName = fathersName; FathersName = fathersName;
@@ -87,13 +78,8 @@ public class Checkout : EntityBase
TotalDayOfLeaveCompute = totalDayOfLeaveCompute; TotalDayOfLeaveCompute = totalDayOfLeaveCompute;
TotalDayOfYearsCompute = totalDayOfYearsCompute; TotalDayOfYearsCompute = totalDayOfYearsCompute;
TotalDayOfBunosesCompute = totalDayOfBunosesCompute; TotalDayOfBunosesCompute = totalDayOfBunosesCompute;
LoanInstallments = loanInstallments;
SalaryAids = salaryAids;
CheckoutRollCall = checkoutRollCall;
EmployeeMandatoryHours = employeeMandatoryHours;
} }
public string EmployeeFullName { get; private set; } public string EmployeeFullName { get; private set; }
public string IsActiveString { get; private set; } public string IsActiveString { get; private set; }
public string Signature { get; private set; } public string Signature { get; private set; }
@@ -195,25 +181,7 @@ public class Checkout : EntityBase
/// </summary> /// </summary>
public string TotalDayOfBunosesCompute { get; private set; } public string TotalDayOfBunosesCompute { get; private set; }
/// <summary> public Workshop Workshop { get; set; }
/// دارای تداخل مبلغ است. این در زمانی اتفاق می افتد که فیش مبلغ آن تغییر کرده ولی به دلیل مسائل قانونی امکان صدور دوباره آن وجود ندارد
/// </summary>
public bool HasAmountConflict { get; private set; }
/// <summary>
/// ساعت موظفی پرسنل در ماه
/// </summary>
public TimeSpan EmployeeMandatoryHours { get; set; }
#region valueObjects
public ICollection<CheckoutLoanInstallment> LoanInstallments { get; set; } = [];
public ICollection<CheckoutSalaryAid> SalaryAids { get; set; } = [];
public CheckoutRollCall CheckoutRollCall { get; private set; }
#endregion
public Workshop Workshop { get; set; }
//public WorkingHours WorkingHours { get; set; } //public WorkingHours WorkingHours { get; set; }
public void Edit(string employeeFullName, string fathersName, string nationalCode, string dateOfBirth, public void Edit(string employeeFullName, string fathersName, string nationalCode, string dateOfBirth,
@@ -310,171 +278,4 @@ public class Checkout : EntityBase
this.TotalDeductions = totalDeductions; this.TotalDeductions = totalDeductions;
this.TotalPayment = totalPayment; this.TotalPayment = totalPayment;
} }
public void SetSalaryAid(ICollection<CheckoutSalaryAid> salaryAids,double salaryAidAmount)
{
SalaryAids = salaryAids;
SalaryAidDeduction = salaryAidAmount;
}
public void SetLoanInstallment(ICollection<CheckoutLoanInstallment> lonaInstallments, double installmentsAmount)
{
LoanInstallments = lonaInstallments;
InstallmentDeduction = installmentsAmount;
}
public void SetCheckoutRollCall(CheckoutRollCall checkoutRollCall)
{
CheckoutRollCall = checkoutRollCall;
}
public void SetAmountConflict(bool hasAmountConflict)
{
HasAmountConflict = hasAmountConflict;
}
public void SetEmployeeMandatoryHours(TimeSpan employeeMandatoryHours)
{
EmployeeMandatoryHours = employeeMandatoryHours;
}
}
public class CheckoutRollCall
{
private CheckoutRollCall(){}
public CheckoutRollCall(TimeSpan totalMandatoryTimeSpan, TimeSpan totalPresentTimeSpan, TimeSpan totalBreakTimeSpan,
TimeSpan totalWorkingTimeSpan, TimeSpan totalPaidLeaveTmeSpan, TimeSpan totalSickLeaveTimeSpan,
ICollection<CheckoutRollCallDay> rollCallDaysCollection)
{
TotalMandatoryTimeSpan = totalMandatoryTimeSpan;
TotalPresentTimeSpan = totalPresentTimeSpan;
TotalBreakTimeSpan = totalBreakTimeSpan;
TotalWorkingTimeSpan = totalWorkingTimeSpan;
TotalPaidLeaveTmeSpan = totalPaidLeaveTmeSpan;
TotalSickLeaveTimeSpan = totalSickLeaveTimeSpan;
RollCallDaysCollection = rollCallDaysCollection;
}
/// <summary>
/// مجموع ساعت موظفی
/// </summary>
public TimeSpan TotalMandatoryTimeSpan { get; private set; }
/// <summary>
/// مجموع ساعت حضور
/// </summary>
public TimeSpan TotalPresentTimeSpan { get; private set; }
/// <summary>
/// مجموع ساعت استراحت
/// </summary>
public TimeSpan TotalBreakTimeSpan { get; private set; }
/// <summary>
/// مجموع ساعت کارکرد
/// </summary>
public TimeSpan TotalWorkingTimeSpan { get; private set; }
/// <summary>
/// مجموع ساعت مرخصی استحقاقی
/// </summary>
public TimeSpan TotalPaidLeaveTmeSpan { get; private set; }
/// <summary>
/// مجموع ساعت مرخصی استعلاجی
/// </summary>
public TimeSpan TotalSickLeaveTimeSpan { get; private set; }
/// <summary>
/// روز های حضور غیاب
/// </summary>
public ICollection<CheckoutRollCallDay> RollCallDaysCollection { get; private set; }
}
public class CheckoutRollCallDay
{
private CheckoutRollCallDay(){}
public CheckoutRollCallDay(DateTime date, string firstStartDate, string firstEndDate,
string secondStartDate, string secondEndDate, TimeSpan breakTimeSpan,
bool isSliced, TimeSpan workingTimeSpan, bool isAbsent, bool isFriday,
bool isHoliday, string leaveType)
{
Date = date;
FirstStartDate = firstStartDate;
FirstEndDate = firstEndDate;
SecondStartDate = secondStartDate;
SecondEndDate = secondEndDate;
BreakTimeSpan = breakTimeSpan;
IsSliced = isSliced;
WorkingTimeSpan = workingTimeSpan;
IsAbsent = isAbsent;
IsFriday = isFriday;
IsHoliday = isHoliday;
LeaveType = leaveType;
}
public long Id { get; set; }
/// <summary>
/// تاریخ
/// </summary>
public DateTime Date { get; private set; }
/// <summary>
/// ورود اول
/// </summary>
public string FirstStartDate { get; private set; }
/// <summary>
/// خروج اول
/// </summary>
public string FirstEndDate { get; private set; }
/// <summary>
/// ورود دوم
/// </summary>
public string SecondStartDate { get; private set; }
/// <summary>
/// خروج دوم
/// </summary>
public string SecondEndDate { get; private set; }
/// <summary>
/// ساعت استراحت
/// </summary>
public TimeSpan BreakTimeSpan { get; private set; }
/// <summary>
/// مقدار زمان کارکرد
/// </summary>
public TimeSpan WorkingTimeSpan { get; private set; }
/// <summary>
/// آیا منقطع است؟
/// </summary>
public bool IsSliced { get; private set; }
/// <summary>
/// آیا غیبت است
/// </summary>
public bool IsAbsent { get; private set; }
/// <summary>
/// آیا جمعه است
/// </summary>
public bool IsFriday { get; private set; }
/// <summary>
/// آیا تعطیل رسمی است
/// </summary>
public bool IsHoliday { get; private set; }
/// <summary>
/// نوع مرخصی - درصورت نداشتن مرخصی مقدارش null میباشد
/// </summary>
public string LeaveType { get; private set; }
public long CheckoutId { get; set; }
} }

View File

@@ -10,36 +10,9 @@ namespace Company.Domain.CheckoutAgg;
public interface ICheckoutRepository : IRepository<long, Checkout> public interface ICheckoutRepository : IRepository<long, Checkout>
{ {
/// <summary>
/// چک میکند که آیا پرسنل در سال و ماه درخواستی در این کارگاه فیش حقوقی دارد یا خیر
/// </summary>
/// <param name="workshopId"></param>
/// <param name="employeId"></param>
/// <param name="سال به صورت رشته عددی"></param>
/// <param name="ماه بصورت رشته عددی"></param>
/// <returns></returns>
(bool hasChekout, double FamilyAlloance, double OverTimePay, double RotatingShift, double Nightwork, double Fridaywork, double YraesPay) HasCheckout(long workshopId, long employeId,
string year, string month);
EditCheckout GetDetails(long id); EditCheckout GetDetails(long id);
Task CreateCkeckout(Checkout command); void CreateCkeckout(Checkout command);
/// <summary>
/// لود لیست اولیه جهت ایجاد فیش حقوقی
/// </summary>
/// <param name="workshopId"></param>
/// <param name="employeeId"></param>
/// <param name="year"></param>
/// <param name="month"></param>
/// <param name="contractStart"></param>
/// <param name="contractEnd"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
Task<CreateCheckoutListViewModel> GetContractResultToCreateCheckout(long workshopId, long employeeId, string year,
string month,
string contractStart, string contractEnd);
//void CreateCkeckout(Checkout command);
Task<List<CheckoutViewModel>> Search(CheckoutSearchModel searchModel); Task<List<CheckoutViewModel>> Search(CheckoutSearchModel searchModel);
@@ -59,16 +32,6 @@ public interface ICheckoutRepository : IRepository<long, Checkout>
OperationResult DeleteAllCheckouts(List<long> ids); OperationResult DeleteAllCheckouts(List<long> ids);
OperationResult DeleteCheckout(long id); OperationResult DeleteCheckout(long id);
List<long> CheckHasSignature(List<long> ids); List<long> CheckHasSignature(List<long> ids);
/// <summary>
/// لیست تصفیه حساب
/// جدید
///
/// </summary>
/// <param name="searchModel"></param>
/// <returns></returns>
Task<List<CheckoutViewModel>> SearchCheckoutOptimized(CheckoutSearchModel searchModel);
Task<List<CheckoutViewModel>> SearchForMainCheckout(CheckoutSearchModel searchModel); Task<List<CheckoutViewModel>> SearchForMainCheckout(CheckoutSearchModel searchModel);
#endregion #endregion
@@ -78,6 +41,4 @@ public interface ICheckoutRepository : IRepository<long, Checkout>
long workshopId, DateTime start, DateTime end); long workshopId, DateTime start, DateTime end);
#endregion #endregion
Task<Checkout> GetByWorkshopIdEmployeeIdInDate(long workshopId, long employeeId, DateTime inDate);
} }

View File

@@ -1,25 +0,0 @@
using _0_Framework.Application;
namespace Company.Domain.CheckoutAgg.ValueObjects;
public class CheckoutLoanInstallment
{
public CheckoutLoanInstallment(string amountForMonth, string month, string year, IsActive isActive, string loanRemaining, string loanAmount, long entityId)
{
AmountForMonth = amountForMonth;
Month = month;
Year = year;
IsActive = isActive;
LoanRemaining = loanRemaining;
LoanAmount = loanAmount;
EntityId = entityId;
}
public string AmountForMonth { get; private set; }
public string Month { get; private set; }
public string Year { get; private set; }
public string LoanRemaining { get; set; }
public IsActive IsActive { get; private set; }
public string LoanAmount { get; set; }
public long EntityId { get; set; }
}

View File

@@ -1,24 +0,0 @@
using System;
using AccountManagement.Domain.AccountAgg;
namespace Company.Domain.CheckoutAgg.ValueObjects;
public class CheckoutSalaryAid
{
public CheckoutSalaryAid(string amount, DateTime salaryAidDateTime, string salaryAidDateTimeFa, DateTime calculationDateTime, string calculationDateTimeFa, long entityId)
{
Amount = amount;
SalaryAidDateTime = salaryAidDateTime;
SalaryAidDateTimeFa = salaryAidDateTimeFa;
CalculationDateTime = calculationDateTime;
CalculationDateTimeFa = calculationDateTimeFa;
EntityId = entityId;
}
public string Amount { get; private set; }
public DateTime SalaryAidDateTime { get; private set; }
public string SalaryAidDateTimeFa { get; private set; }
public DateTime CalculationDateTime { get; private set; }
public string CalculationDateTimeFa { get; private set; }
public long EntityId { get; set; }
}

View File

@@ -10,7 +10,6 @@ namespace Company.Domain.ClassifiedSalaryAgg
{ {
public class ClassifiedSalary : EntityBase public class ClassifiedSalary : EntityBase
{ {
//test
public ClassifiedSalary(double group1, double group2, double group3, double group4, double group5, double group6, double group7, double group8, double group9, double group10, double group11, double group12, double group13, double group14, double group15, double group16, double group17, double group18, double group19, double group20, DateTime startDate, DateTime endDate, int year) public ClassifiedSalary(double group1, double group2, double group3, double group4, double group5, double group6, double group7, double group8, double group9, double group10, double group11, double group12, double group13, double group14, double group15, double group16, double group17, double group18, double group19, double group20, DateTime startDate, DateTime endDate, int year)
{ {
Group1 = group1; Group1 = group1;

View File

@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
@@ -14,8 +14,4 @@
<ProjectReference Include="..\CompanyManagment.App.Contracts\CompanyManagment.App.Contracts.csproj" /> <ProjectReference Include="..\CompanyManagment.App.Contracts\CompanyManagment.App.Contracts.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Folder Include="CheckoutAgg\ValueObjects\" />
</ItemGroup>
</Project> </Project>

View File

@@ -1,26 +0,0 @@
using _0_Framework.Domain;
namespace Company.Domain.ContactUsAgg;
public class ContactUs:EntityBase
{
public ContactUs(string firstName, string lastName, string email, string phoneNumber, string title, string message)
{
FirstName = firstName.Trim();
LastName = lastName.Trim();
Email = email;
PhoneNumber = phoneNumber;
Title = title;
Message = message;
FullName = FirstName + " " + LastName;
}
public string FirstName { get; private set; }
public string LastName { get; private set; }
public string Email { get; private set; }
public string PhoneNumber { get; private set; }
public string Title { get; private set; }
public string Message { get; private set; }
public string FullName { get; private set; }
}

View File

@@ -1,8 +0,0 @@
using _0_Framework.Domain;
namespace Company.Domain.ContactUsAgg;
public interface IContactUsRepository : IRepository<long, ContactUs>
{
}

View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
using _0_Framework.Application; using _0_Framework.Application;
using _0_Framework.Domain; using _0_Framework.Domain;
using AccountManagement.Application.Contracts.Account; using AccountManagement.Application.Contracts.Account;
using System.Threading.Tasks;
namespace Company.Domain.ContarctingPartyAgg; namespace Company.Domain.ContarctingPartyAgg;
@@ -43,35 +42,6 @@ public interface IPersonalContractingPartyRepository :IRepository<long, Personal
#endregion #endregion
/// <summary>
/// لیست طرف حساب ها
/// </summary>
/// <param name="searchModel"></param>
/// <returns></returns>
Task<ICollection<ContractingPartyGetListViewModel>> GetList(ContractingPartyGetListSearchModel searchModel);
/// <summary>
/// لیست طرف حساب برای سلکت لیست سرچ
/// </summary>
/// <param name="search"></param>
/// <returns></returns>
Task<List<ContractingPartySelectListViewModel>> GetSelectList(string search,long id);
/// <summary>
/// لیستی از شماره ملی یا شناسه ملی بر اساس حقیقی یا حقوقی بودن
/// </summary>
/// <returns></returns>
Task<List<GetContractingPartyNationalCodeOrNationalIdViewModel>> GetNationalCodeOrNationalId();
/// <summary>
/// غیرفعال کردن طرف حساب و زیرمجموعه های آن
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
Task<OperationResult<string>> DeactivateWithSubordinates(long id);
void Remove(PersonalContractingParty entity);
Task<GetRealContractingPartyDetailsViewModel> GetRealDetails(long id);
Task<GetLegalContractingPartyDetailsViewModel> GetLegalDetails(long id);
} }

View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.Security.Cryptography.X509Certificates; using System.Security.Cryptography.X509Certificates;
using _0_Framework.Application; using _0_Framework.Application;
using _0_Framework.Domain; using _0_Framework.Domain;
using Company.Domain.ContractingPartyBankAccountsAgg;
using Company.Domain.empolyerAgg; using Company.Domain.empolyerAgg;
using Company.Domain.RepresentativeAgg; using Company.Domain.RepresentativeAgg;
@@ -84,7 +83,6 @@ public class PersonalContractingParty : EntityBase
public List<Employer> Employers { get; private set; } public List<Employer> Employers { get; private set; }
public Representative Representative { get; set; } public Representative Representative { get; set; }
public List<ContractingPartyBankAccount> ContractingPartyBankAccounts { get; set; }
public PersonalContractingParty() public PersonalContractingParty()
{ {
@@ -215,14 +213,4 @@ public class PersonalContractingParty : EntityBase
this.Gender = gender; this.Gender = gender;
this.IsAuthenticated = true; this.IsAuthenticated = true;
} }
public void RegisterComplete(string fatherName, string idNumberSeri, string idNumberSerial, DateTime dateOfBirth, Gender gender)
{
this.FatherName = fatherName;
this.IdNumberSeri = idNumberSeri;
this.IdNumberSerial = idNumberSerial;
this.DateOfBirth = dateOfBirth;
this.Gender = gender;
this.IsAuthenticated = true;
}
} }

View File

@@ -1,27 +0,0 @@
using _0_Framework.Domain;
using Company.Domain.ContarctingPartyAgg;
namespace Company.Domain.ContractingPartyBankAccountsAgg;
public class ContractingPartyBankAccount : EntityBase
{
public long ContractingPartyId { get; private set; }
public PersonalContractingParty ContractingParty { get; private set; }
public string CardNumber { get; private set; }
public string AccountHolderName { get; private set; }
public string AccountNumber { get; private set; }
public string IBan { get; private set; }
public bool IsAuth { get; private set; }
public ContractingPartyBankAccount(long contractingPartyId, string cardNumber, string accountHolderName,
string accountNumber, string iBan , bool isAuth)
{
ContractingPartyId = contractingPartyId;
CardNumber = cardNumber;
AccountHolderName = accountHolderName;
AccountNumber = accountNumber;
IBan = iBan;
IsAuth = isAuth;
}
}

View File

@@ -1,19 +0,0 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using _0_Framework.Application;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.ContractingPartyBankAccounts;
namespace Company.Domain.ContractingPartyBankAccountsAgg;
public interface IContractingPartyBankAccountsRepository:IRepository<long,ContractingPartyBankAccount>
{
Task<GetContractingPartyBankAccountViewModel> GetList(ContractingPartyBankAccountSearchModel searchModel);
Task<List<string>> ContractingPartyOrAccountHolderNameSelectList(string search, string selected);
Task<List<string>> IBanSelectList(string search, string selected);
Task<List<string>> CardNumberSelectList(string search, string selected);
Task<List<string>> AccountNumberSelectList(string search, string selected);
Task<List<string>> GetAccountHolderNameSelectList(string search, string selected);
Task<List<string>> ContractingPartyNamesSelectList(string search, string selected);
}

View File

@@ -1,13 +1,11 @@
using System; using _0_Framework.Application;
using System.Collections.Generic;
using System.Linq;
using _0_Framework.Application;
using _0_Framework.Domain; using _0_Framework.Domain;
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
using Company.Domain.CustomizeCheckoutAgg.ValueObjects; using Company.Domain.CustomizeCheckoutAgg.ValueObjects;
using Company.Domain.EmployeeAgg; using Company.Domain.EmployeeAgg;
using Company.Domain.WorkshopAgg; using Company.Domain.WorkshopAgg;
using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Authentication.Cookies;
namespace Company.Domain.CustomizeCheckoutAgg; namespace Company.Domain.CustomizeCheckoutAgg;
@@ -17,7 +15,8 @@ namespace Company.Domain.CustomizeCheckoutAgg;
public class CustomizeCheckout : EntityBase public class CustomizeCheckout : EntityBase
{ {
private CustomizeCheckout() private CustomizeCheckout()
{ } {
}
public CustomizeCheckout(DateTime contractStart, DateTime contractEnd, long employeeId, string employeeFName, public CustomizeCheckout(DateTime contractStart, DateTime contractEnd, long employeeId, string employeeFName,
string employeeLName, DateTime employeeDateOfBirth, string employeeLName, DateTime employeeDateOfBirth,
string employeeNationalCode, string workshopFullName, long workshopId, long? contractId, string employeeNationalCode, string workshopFullName, long workshopId, long? contractId,
@@ -31,9 +30,7 @@ public class CustomizeCheckout : EntityBase
double totalPayment, string contractNo, ICollection<CustomizeCheckoutFine> checkoutFines, double totalPayment, string contractNo, ICollection<CustomizeCheckoutFine> checkoutFines,
ICollection<CustomizeCheckoutLoanInstallments> customizeCheckoutLoanInstallments, ICollection<CustomizeCheckoutLoanInstallments> customizeCheckoutLoanInstallments,
ICollection<CustomizeCheckoutSalaryAid> customizeCheckoutSalaryAids, ICollection<CustomizeCheckoutSalaryAid> customizeCheckoutSalaryAids,
ICollection<CustomizeCheckoutReward> customizeCheckoutRewards, TimeSpan lateToWorkValue, double settingSalary, ICollection<CustomizeCheckoutReward> customizeCheckoutRewards, TimeSpan lateToWorkValue)
double dailyWage, WorkshopShiftStatus shiftStatus, IrregularShift irregularShift,
ICollection<CustomizeRotatingShift> customizeRotatingShifts, ICollection<CustomizeCheckoutRegularShift> employeeSettingsShifts)
{ {
YearInt = Convert.ToInt32(contractStart.ToFarsi().Substring(0, 4)); YearInt = Convert.ToInt32(contractStart.ToFarsi().Substring(0, 4));
MonthInt = Convert.ToInt32(contractStart.ToFarsi().Substring(5, 2)); MonthInt = Convert.ToInt32(contractStart.ToFarsi().Substring(5, 2));
@@ -77,12 +74,6 @@ public class CustomizeCheckout : EntityBase
WorkshopFullName = workshopFullName; WorkshopFullName = workshopFullName;
LateToWorkValue = lateToWorkValue; LateToWorkValue = lateToWorkValue;
SettingSalary = settingSalary;
DailyWage = dailyWage;
ShiftStatus = shiftStatus;
IrregularShift = irregularShift;
CustomizeRotatingShifts = customizeRotatingShifts;
RegularShifts = employeeSettingsShifts;
} }
@@ -258,18 +249,6 @@ public class CustomizeCheckout : EntityBase
/// </summary> /// </summary>
public double TotalPayment { get; private set; } 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 #region Values
@@ -287,12 +266,6 @@ public class CustomizeCheckout : EntityBase
public ICollection<CustomizeCheckoutSalaryAid> CustomizeCheckoutSalaryAids { get; set; } public ICollection<CustomizeCheckoutSalaryAid> CustomizeCheckoutSalaryAids { get; set; }
public ICollection<CustomizeCheckoutReward> CustomizeCheckoutRewards { 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 #endregion
#region Relations #region Relations
@@ -302,85 +275,4 @@ public class CustomizeCheckout : EntityBase
#endregion #endregion
public void SetValueObjects(ICollection<CustomizeCheckoutFine> checkoutFines,
ICollection<CustomizeCheckoutLoanInstallments> customizeCheckoutLoanInstallments,
ICollection<CustomizeCheckoutSalaryAid> customizeCheckoutSalaryAids,
ICollection<CustomizeCheckoutReward> customizeCheckoutRewards)
{
CheckoutFines = checkoutFines;
CustomizeCheckoutLoanInstallments = customizeCheckoutLoanInstallments;
CustomizeCheckoutSalaryAids = customizeCheckoutSalaryAids;
CustomizeCheckoutRewards = customizeCheckoutRewards;
}
public void SetRewards(ICollection<CustomizeCheckoutReward> rewards)
{
var previousTotalAmount = CustomizeCheckoutRewards.Sum(x => x.Amount.MoneyToDouble());
var newTotalAmount = rewards.Sum(x => x.Amount.MoneyToDouble());
RewardPay = newTotalAmount;
IncreaseTotalPayment(previousTotalAmount, newTotalAmount);
RecalculateTotalClaims(previousTotalAmount, newTotalAmount);
CustomizeCheckoutRewards = rewards;
}
public void SetSalaryAids(ICollection<CustomizeCheckoutSalaryAid> salaryAids)
{
var previousTotalAmount = CustomizeCheckoutSalaryAids.Sum(x => x.Amount.MoneyToDouble());
var newTotalAmount = salaryAids.Sum(x => x.Amount.MoneyToDouble());
SalaryAidDeduction = newTotalAmount;
ReduceTotalPayment(previousTotalAmount, newTotalAmount);
RecalculateTotalDeduction(previousTotalAmount, newTotalAmount);
CustomizeCheckoutSalaryAids = salaryAids;
}
public void SetFines(ICollection<CustomizeCheckoutFine> fines)
{
var previousTotalAmount = CheckoutFines.Sum(x => x.Amount.MoneyToDouble());
var newTotalAmount = fines.Sum(x => x.Amount.MoneyToDouble());
FineDeduction = newTotalAmount;
ReduceTotalPayment(previousTotalAmount, newTotalAmount);
RecalculateTotalDeduction(previousTotalAmount, newTotalAmount);
CheckoutFines = fines;
}
public void SetLoanInstallment(ICollection<CustomizeCheckoutLoanInstallments> installments)
{
var previousTotalAmount = CustomizeCheckoutLoanInstallments.Sum(x => x.AmountForMonth.MoneyToDouble());
var newTotalAmount = installments.Sum(x => x.AmountForMonth.MoneyToDouble());
InstallmentDeduction = newTotalAmount;
ReduceTotalPayment(previousTotalAmount, newTotalAmount);
RecalculateTotalDeduction(previousTotalAmount, newTotalAmount);
CustomizeCheckoutLoanInstallments = installments;
}
private void RecalculateTotalClaims(double previousTotalAmount, double newTotalAmount)
{
TotalClaims = (TotalClaims.MoneyToDouble() - previousTotalAmount + newTotalAmount).ToMoney();
}
private void RecalculateTotalDeduction(double previousTotalAmount, double newTotalAmount)
{
TotalDeductions = (TotalDeductions.MoneyToDouble() - previousTotalAmount + newTotalAmount).ToMoney();
}
private void ReduceTotalPayment(double previousAmount, double newAmount)
{
TotalPayment = TotalPayment + previousAmount - newAmount;
}
private void IncreaseTotalPayment(double previousAmount, double newAmount)
{
TotalPayment = TotalPayment - previousAmount + newAmount;
}
/// <summary>
/// آیا مغایرت مبلغ دارد
/// </summary>
public bool HasAmountConflict { get; private set; }
public void SetHasAmountConflict(bool hasConflict)
{
HasAmountConflict = hasConflict;
}
} }

View File

@@ -3,7 +3,6 @@ using _0_Framework.Domain;
using CompanyManagment.App.Contracts.CustomizeCheckout; using CompanyManagment.App.Contracts.CustomizeCheckout;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks;
namespace Company.Domain.CustomizeCheckoutAgg namespace Company.Domain.CustomizeCheckoutAgg
{ {
@@ -15,12 +14,5 @@ namespace Company.Domain.CustomizeCheckoutAgg
void RemoveEmployeeCustomizeCheckoutInDates(long workshopId, long employeeId, DateTime startOfMonth, DateTime endOfMonth); void RemoveEmployeeCustomizeCheckoutInDates(long workshopId, long employeeId, DateTime startOfMonth, DateTime endOfMonth);
IEnumerable<CustomizeCheckout> GetRange(long workshopId, List<long> ids); IEnumerable<CustomizeCheckout> GetRange(long workshopId, List<long> ids);
void RemoveRange(IEnumerable<CustomizeCheckout> entities); void RemoveRange(IEnumerable<CustomizeCheckout> entities);
List<CustomizeCheckout> GetByWorkshopIdEmployeeIdInDates(long workshopId, long employeeId, DateTime startDate, DateTime endDate);
Task<CustomizeCheckout> GetByWorkshopIdEmployeeIdMonthYear(long workshopId, long employeeId, int year,
int month);
(bool Checkout, bool CustomizeCheckout, bool CustomizeCheckoutTemp) ValidateExistsCheckouts(
DateTime startDate, DateTime endDate, long workshopId, List<long> employeeId);
} }
} }

View File

@@ -5,7 +5,7 @@ namespace Company.Domain.CustomizeCheckoutAgg.ValueObjects;
public record CustomizeCheckoutFine public record CustomizeCheckoutFine
{ {
public CustomizeCheckoutFine(string title, string amount, string fineDateFa, DateTime fineDateGr, IsActive isActive, DateTime creationDate, long entityId) public CustomizeCheckoutFine(string title, string amount, string fineDateFa, DateTime fineDateGr, IsActive isActive, DateTime creationDate)
{ {
Title = title; Title = title;
Amount = amount; Amount = amount;
@@ -13,7 +13,6 @@ public record CustomizeCheckoutFine
FineDateGr = fineDateGr; FineDateGr = fineDateGr;
IsActive = isActive; IsActive = isActive;
CreationDate = creationDate; CreationDate = creationDate;
EntityId = entityId;
} }
public string Title { get; private set; } public string Title { get; private set; }
@@ -22,5 +21,4 @@ public record CustomizeCheckoutFine
public DateTime FineDateGr { get; private set; } public DateTime FineDateGr { get; private set; }
public IsActive IsActive { get; private set; } public IsActive IsActive { get; private set; }
public DateTime CreationDate { get; private set; } public DateTime CreationDate { get; private set; }
public long EntityId { get; set; }
} }

View File

@@ -5,7 +5,7 @@ namespace Company.Domain.CustomizeCheckoutAgg.ValueObjects;
public class CustomizeCheckoutLoanInstallments public class CustomizeCheckoutLoanInstallments
{ {
public CustomizeCheckoutLoanInstallments(string amountForMonth, string month, string year, IsActive isActive, string loanRemaining, string loanAmount, long entityId) public CustomizeCheckoutLoanInstallments(string amountForMonth, string month, string year, IsActive isActive, string loanRemaining, string loanAmount)
{ {
AmountForMonth = amountForMonth; AmountForMonth = amountForMonth;
Month = month; Month = month;
@@ -13,16 +13,12 @@ public class CustomizeCheckoutLoanInstallments
IsActive = isActive; IsActive = isActive;
LoanRemaining = loanRemaining; LoanRemaining = loanRemaining;
LoanAmount = loanAmount; LoanAmount = loanAmount;
EntityId = entityId;
} }
public string AmountForMonth { get; private set; } public string AmountForMonth { get; private set; }
public string Month { get; private set; } public string Month { get; private set; }
public string Year { get; private set; } public string Year { get; private set; }
public string LoanRemaining { get; set; } public string LoanRemaining { get; set; }
public IsActive IsActive { get; private set; }
public string LoanAmount { get; set; } public string LoanAmount { get; set; }
public long EntityId { get; set; } public IsActive IsActive { get; private set; }
} }

View File

@@ -1,12 +0,0 @@
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)
{
}
}

View File

@@ -5,7 +5,7 @@ namespace Company.Domain.CustomizeCheckoutAgg.ValueObjects;
public class CustomizeCheckoutReward public class CustomizeCheckoutReward
{ {
public CustomizeCheckoutReward(string amount, string description, DateTime grantDate, string grantDateFa, IsActive isActive, string title, long entityId) public CustomizeCheckoutReward(string amount, string description, DateTime grantDate, string grantDateFa, IsActive isActive, string title)
{ {
Amount = amount; Amount = amount;
Description = description; Description = description;
@@ -13,7 +13,6 @@ public class CustomizeCheckoutReward
GrantDateFa = grantDateFa; GrantDateFa = grantDateFa;
IsActive = isActive; IsActive = isActive;
Title = title; Title = title;
EntityId = entityId;
} }
/// <summary> /// <summary>
@@ -40,7 +39,5 @@ public class CustomizeCheckoutReward
public IsActive IsActive { get; private set; } public IsActive IsActive { get; private set; }
public long EntityId { get; set; }
} }

View File

@@ -4,23 +4,14 @@ namespace Company.Domain.CustomizeCheckoutAgg.ValueObjects;
public class CustomizeCheckoutSalaryAid public class CustomizeCheckoutSalaryAid
{ {
public CustomizeCheckoutSalaryAid(string amount, DateTime salaryAidDateTime, string salaryAidDateTimeFa,DateTime calculationDateTime,string calculationDateTimeFa, long entityId) public CustomizeCheckoutSalaryAid(string amount, DateTime salaryAidDateTime, string salaryAidDateTimeFa)
{ {
Amount = amount; Amount = amount;
SalaryAidDateTime = salaryAidDateTime; SalaryAidDateTime = salaryAidDateTime;
SalaryAidDateTimeFa = salaryAidDateTimeFa; SalaryAidDateTimeFa = salaryAidDateTimeFa;
CalculationDateTime = calculationDateTime;
CalculationDateTimeFa = calculationDateTimeFa;
EntityId = entityId;
} }
public string Amount { get; private set; } public string Amount { get; private set; }
public DateTime SalaryAidDateTime { get; private set; } public DateTime SalaryAidDateTime { get; private set; }
public string SalaryAidDateTimeFa { get; private set; } public string SalaryAidDateTimeFa { get; private set; }
public DateTime CalculationDateTime { get; private set; }
public string CalculationDateTimeFa { get; private set; }
public long EntityId { get; set; }
} }

View File

@@ -6,9 +6,6 @@ using Company.Domain.WorkshopAgg;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using Company.Domain.CustomizeCheckoutTempAgg.ValueObjects; using Company.Domain.CustomizeCheckoutTempAgg.ValueObjects;
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
using _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
using System.Linq;
namespace Company.Domain.CustomizeCheckoutTempAgg; namespace Company.Domain.CustomizeCheckoutTempAgg;
@@ -21,23 +18,15 @@ public class CustomizeCheckoutTemp : EntityBase
{ {
LateToWorkValue = lateToWorkValue; LateToWorkValue = lateToWorkValue;
} }
public CustomizeCheckoutTemp(DateTime contractStart, DateTime contractEnd, long employeeId, string employeeFName, public CustomizeCheckoutTemp(DateTime contractStart, DateTime contractEnd, long employeeId, string employeeFName, string employeeLName, DateTime employeeDateOfBirth,
string employeeLName, DateTime employeeDateOfBirth,
string employeeNationalCode, string workshopFullName, long workshopId, long? contractId, string employeeNationalCode, string workshopFullName, long workshopId, long? contractId,
double monthlySalary, double fridayPay, double overTimePay, double baseYearsPay, double bonusesPay, double monthlySalary, double fridayPay, double overTimePay, double baseYearsPay, double bonusesPay, double nightWorkPay,
double nightWorkPay, double marriedAllowance, double shiftPay, double familyAllowance, double leavePay, double insuranceDeduction, double fineAbsenceDeduction,
double marriedAllowance, double shiftPay, double familyAllowance, double leavePay, double insuranceDeduction, double lateToWorkDeduction, double earlyExitDeduction, double rewardPay, double salaryAidDeduction, double installmentDeduction,
double fineAbsenceDeduction, double fineDeduction, double taxDeduction, string sumOfWorkingDays, string totalClaims, string totalDeductions, double totalPayment, string contractNo,
double lateToWorkDeduction, double earlyExitDeduction, double rewardPay, double salaryAidDeduction, ICollection<CustomizeCheckoutTempFine> checkoutFines, ICollection<CustomizeCheckoutTempLoanInstallments> customizeCheckoutLoanInstallments,
double installmentDeduction, ICollection<CustomizeCheckoutTempSalaryAid> customizeCheckoutSalaryAids, ICollection<CustomizeCheckoutTempReward> customizeCheckoutRewards,
double fineDeduction, double taxDeduction, string sumOfWorkingDays, string totalClaims, string totalDeductions, TimeSpan lateToWorkValue)
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)); YearInt = Convert.ToInt32(contractStart.ToFarsi().Substring(0, 4));
MonthInt = Convert.ToInt32(contractStart.ToFarsi().Substring(5, 2)); MonthInt = Convert.ToInt32(contractStart.ToFarsi().Substring(5, 2));
@@ -81,13 +70,7 @@ public class CustomizeCheckoutTemp : EntityBase
WorkshopFullName = workshopFullName; WorkshopFullName = workshopFullName;
LateToWorkValue = lateToWorkValue; LateToWorkValue = lateToWorkValue;
SettingSalary = settingSalary; }
DailyWage = dailyWage;
ShiftStatus = shiftStatus;
IrregularShift = irregularShift;
CustomizeRotatingShifts = customizeRotatingShifts;
RegularShifts = employeeSettingsShifts;
}
#region Getters #region Getters
/// <summary> /// <summary>
@@ -120,10 +103,6 @@ public class CustomizeCheckoutTemp : EntityBase
public ICollection<CustomizeCheckoutTempSalaryAid> CustomizeCheckoutSalaryAids { get; set; } public ICollection<CustomizeCheckoutTempSalaryAid> CustomizeCheckoutSalaryAids { get; set; }
public ICollection<CustomizeCheckoutTempReward> CustomizeCheckoutRewards { 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 #endregion
@@ -275,22 +254,10 @@ public class CustomizeCheckoutTemp : EntityBase
/// </summary> /// </summary>
public double TotalPayment { get; private set; } public double TotalPayment { get; private set; }
/// <summary>
/// مزد روزانه
/// </summary>
public double DailyWage { get; private set; }
/// <summary> #region Values
/// حقوق تعیین شده
/// </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 #endregion
@@ -304,89 +271,6 @@ public class CustomizeCheckoutTemp : EntityBase
public Workshop Workshop { get; set; } public Workshop Workshop { get; set; }
public Employee Employee { get; set; } public Employee Employee { get; set; }
#endregion #endregion
public void SetValueObjects(ICollection<CustomizeCheckoutTempFine> checkoutFines,
ICollection<CustomizeCheckoutTempLoanInstallments> customizeCheckoutLoanInstallments,
ICollection<CustomizeCheckoutTempSalaryAid> customizeCheckoutSalaryAids,
ICollection<CustomizeCheckoutTempReward> customizeCheckoutRewards)
{
CheckoutFines = checkoutFines;
CustomizeCheckoutLoanInstallments = customizeCheckoutLoanInstallments;
CustomizeCheckoutSalaryAids = customizeCheckoutSalaryAids;
CustomizeCheckoutRewards = customizeCheckoutRewards;
}
public void SetRewards(ICollection<CustomizeCheckoutTempReward> rewards)
{
var previousTotalAmount = CustomizeCheckoutRewards.Sum(x => x.Amount.MoneyToDouble());
var newTotalAmount = rewards.Sum(x => x.Amount.MoneyToDouble());
RewardPay = newTotalAmount;
IncreaseTotalPayment(previousTotalAmount,newTotalAmount);
RecalculateTotalClaims(previousTotalAmount, newTotalAmount);
CustomizeCheckoutRewards = rewards;
}
public void SetSalaryAids(ICollection<CustomizeCheckoutTempSalaryAid> salaryAids)
{
var previousTotalAmount = CustomizeCheckoutSalaryAids.Sum(x => x.Amount.MoneyToDouble());
var newTotalAmount = salaryAids.Sum(x => x.Amount.MoneyToDouble());
SalaryAidDeduction = newTotalAmount;
ReduceTotalPayment(previousTotalAmount,newTotalAmount);
RecalculateTotalDeduction(previousTotalAmount, newTotalAmount);
CustomizeCheckoutSalaryAids = salaryAids;
}
public void SetFines(ICollection<CustomizeCheckoutTempFine> fines)
{
var previousTotalAmount = CheckoutFines.Sum(x => x.Amount.MoneyToDouble());
var newTotalAmount = fines.Sum(x => x.Amount.MoneyToDouble());
FineDeduction = newTotalAmount;
ReduceTotalPayment(previousTotalAmount,newTotalAmount);
RecalculateTotalDeduction(previousTotalAmount, newTotalAmount);
CheckoutFines = fines;
}
public void SetLoanInstallment(ICollection<CustomizeCheckoutTempLoanInstallments> installments)
{
var previousTotalAmount = CustomizeCheckoutLoanInstallments.Sum(x => x.AmountForMonth.MoneyToDouble());
var newTotalAmount = installments.Sum(x => x.AmountForMonth.MoneyToDouble());
InstallmentDeduction = newTotalAmount;
ReduceTotalPayment(previousTotalAmount,newTotalAmount);
RecalculateTotalDeduction(previousTotalAmount, newTotalAmount);
CustomizeCheckoutLoanInstallments = installments;
}
private void RecalculateTotalClaims(double previousTotalAmount, double newTotalAmount)
{
TotalClaims = (TotalClaims.MoneyToDouble() - previousTotalAmount + newTotalAmount).ToMoney();
}
private void RecalculateTotalDeduction(double previousTotalAmount, double newTotalAmount)
{
TotalDeductions = (TotalDeductions.MoneyToDouble() - previousTotalAmount + newTotalAmount).ToMoney();
}
private void ReduceTotalPayment(double previousAmount, double newAmount)
{
TotalPayment = TotalPayment + previousAmount - newAmount;
}
private void IncreaseTotalPayment(double previousAmount, double newAmount)
{
TotalPayment = TotalPayment - previousAmount + newAmount;
}
/// <summary>
/// آیا مغایرت مبلغ دارد
/// </summary>
public bool HasAmountConflict { get; private set; }
public void SetHasAmountConflict(bool hasConflict)
{
HasAmountConflict = hasConflict;
}
} }

View File

@@ -4,7 +4,6 @@ using Company.Domain.CustomizeCheckoutAgg;
using CompanyManagment.App.Contracts.CustomizeCheckout; using CompanyManagment.App.Contracts.CustomizeCheckout;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks;
namespace Company.Domain.CustomizeCheckoutTempAgg namespace Company.Domain.CustomizeCheckoutTempAgg
{ {
@@ -20,7 +19,5 @@ namespace Company.Domain.CustomizeCheckoutTempAgg
IEnumerable<CustomizeCheckoutTemp> GetRange(long workshopId, List<long> ids); IEnumerable<CustomizeCheckoutTemp> GetRange(long workshopId, List<long> ids);
void RemoveRange(IEnumerable<CustomizeCheckoutTemp> entities); void RemoveRange(IEnumerable<CustomizeCheckoutTemp> entities);
List<CustomizeCheckoutTemp> GetByWorkshopIdEmployeeIdInDates(long workshopId, long employeeId, DateTime startDate, DateTime endDate);
Task<CustomizeCheckoutTemp> GetByWorkshopIdEmployeeIdInDate(long workshopId, long employeeId, DateTime inDate);
} }
} }

Some files were not shown because too many files have changed in this diff Show More