70 lines
2.6 KiB
Plaintext
70 lines
2.6 KiB
Plaintext
@model CompanyManagment.App.Contracts.Employee.CreateEmployeeByClient
|
|
|
|
|
|
@{
|
|
string clientVersion = _0_Framework.Application.Version.StyleVersion;
|
|
<link href="~/AssetsClient/css/select2.css?ver=@clientVersion" rel="stylesheet" />
|
|
<link href="~/assetsclient/pages/employees/css/createbankinfomodal.css?ver=@clientVersion" rel="stylesheet" />
|
|
|
|
<style>
|
|
.disableColor {
|
|
border: 1px solid #C6C6C6 !important;
|
|
background-color: #F0F0F0 !important;
|
|
}
|
|
|
|
.msgStepTempCheckout {
|
|
border: 1px solid #C6C6C6;
|
|
border-radius: 9px;
|
|
width: 60%;
|
|
margin: 35px auto;
|
|
}
|
|
|
|
</style>
|
|
}
|
|
@*
|
|
<div class="text-center">
|
|
<div>
|
|
<p class="m-0 pdHeaderTitle1">ایجاد شماره حساب پرسنل</p>
|
|
</div>
|
|
</div> *@
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
|
|
<div class="col-12 my-1">
|
|
<span class="spanTitleText">نام گروه</span>
|
|
<input type="text" class="form-control text-center disable disableColor" id="groupNameTemp" placeholder="-" style="direction: ltr;">
|
|
</div>
|
|
|
|
<div class="col-12 my-1">
|
|
<span class="spanTitleText">حقوق تعیین شده در این گروه</span>
|
|
<input type="text" class="form-control text-center disable disableColor" id="priceTemp" placeholder="-" style="direction: ltr;">
|
|
</div>
|
|
|
|
<div class="col-12 my-1 position-relative">
|
|
<span class="spanTitleText">مرخصی مجاز تعیین شده در این گروه</span>
|
|
<input class="form-control text-center disable disableColor" id="leavePermitted" placeholder="-" style="direction: ltr;" />
|
|
</div>
|
|
|
|
<div class="col-12 my-1 position-relative">
|
|
<span class="spanTitleText">حقوق پرسنل</span>
|
|
<input class="form-control text-center disable disableColor" id="personnelSalary" name="Command.CreateCustomizeEmployeeSettings.Salary" placeholder="-" style="direction: ltr" />
|
|
</div>
|
|
<div class="col-12 my-1 position-relative">
|
|
<span class="spanTitleText">مجاز مرخصی</span>
|
|
<input class="form-control text-center disable disableColor" id="leavePermittedDays" name="Command.CreateCustomizeEmployeeSettings.LeavePermittedDays" placeholder="-" style="direction: ltr" />
|
|
</div>
|
|
|
|
<div class="col-12 my-1 position-relative" id="has-group" style="display: block;">
|
|
<div class="text-center p-4 msgStepTempCheckout">
|
|
<span class="spanTitleText">به دلیل عدم انتخاب گروهبندی حضور و غیاب، امکان ثبت حقوق برای پرسنل وجود ندارد.</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// var getDetailsAjaxUrl = `@Url.Page("/Company/Employees/EmployeeList", "DetailsAjax")`;
|
|
</script>
|
|
<script src="~/assetsclient/pages/employees/js/TempCheckout.js?ver=@clientVersion"></script>
|