This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.printtable { | |
width: 100%; | |
border-collapse: collapse; | |
} | |
.print-title{ | |
text-align: center; | |
} | |
.table-text{ | |
text-align: center; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// switch状态判断 | |
//主要是这块 | |
case var s when Regex.IsMatch(s, @"^N[B-Z]$"): | |
case var s when Regex.IsMatch(s, @"^N[A-Z]R$"): | |
// 获取办公室Id | |
await OfficeManage.GetOfficeId(entity.OrganizationUnitId) | |
await OfficeManage.GetOfficeId("", "", AbpSession.UserId.Value, entity.OrganizationUnitId) | |
// 查询当前用户 | |
var employee = await DapperExtensions.QueryFirstOrDefaultAsync<T_Employee>( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using Abp.Application.Services.Dto; | |
using Saury.Web.Service.Common.Dto; | |
using Saury.Web.Service.Core.Office.Model; | |
using Saury.Web.Workflow; | |
namespace Saury.Web.Service.Service.Office.MyContract.Dto | |
{ | |
public class GetForEditInput : MyContractDto | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
$(function () { | |
var _personalAdjustmentService = abp.services.web.personalAdjustment; | |
var _$table; | |
var _$searchInput = { | |
pageNumber: 1, | |
pageSize: 10, | |
sorting: ' CreationTime desc' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
app.modals.CreateOrEditModal = function () { | |
var _personalAdjustmentService = abp.services.web.personalAdjustment; | |
var _modalManager; | |
var _applyPersonalAdjustmentPage = new app.pages.ApplyPersonalAdjustmentPage(); | |
this.init = function (modalManager) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function () { | |
$(function () { | |
var _personalAdjustmentService = abp.services.web.personalAdjustment; | |
var _personalAdjustmentInfoPage = new app.pages.PersonalAdjustmentInfoPage(); | |
var _workflowLogsPage = new app.pages.WorkflowLogsPage(); | |
var _auditPanel = $('#personalAdjustment-workflow-auditpanel'); | |
var _$id = _auditPanel.find('#Id').val(); | |
var _$auditForm = _auditPanel.find('form[name="AuditForm"]'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
$(function () { | |
var _personalAdjustmentService = abp.services.web.personalAdjustment; | |
var _$id = $('#Id').val(); | |
var _$redirect = $('#Redirect').val(); | |
var _applyPersonalAdjustmentPage = new app.pages.ApplyPersonalAdjustmentPage(); | |
var _page = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using Saury.Authorization | |
@{ | |
ViewBag.CurrentPageName = AppPermissions.Pages_Financial_PersonalAdjustment_Audits; | |
} | |
@section Scripts | |
{ | |
<script abp-src="/view-resources/Areas/Financial/Views/PersonalAdjustment/Pages/_SearchFormPage.js" asp-append-version="true"></script> | |
<script abp-src="/view-resources/Areas/Financial/Views/PersonalAdjustment/Audits.js" asp-append-version="true"></script> | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using Saury.Web.Models.Common.Modals | |
<script abp-src="/view-resources/Views/Common/_FileUploadPage.js" asp-append-version="true"></script> | |
<script type="text/javascript" abp-src="/view-resources/Areas/Financial/Views/PersonalAdjustment/Pages/_ApplyPersonalAdjustmentPage.js" asp-append-version="true"></script> | |
@await Html.PartialAsync("~/Views/Common/Modals/_ModalHeader.cshtml", new ModalHeaderViewModel("个账调整")) | |
<div class="modal-body p-t-5" id="PersonalAdjustmentModal"> | |
<input type="hidden" value="@ViewBag.Id" id="KeyId" name="KeyId"/> | |
@await Html.PartialAsync("~/Areas/Financial/Views/PersonalAdjustment/Pages/_ApplyPersonalAdjustmentPage.cshtml") | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using Saury.Authorization | |
<script type="text/javascript" abp-src="/view-resources/Areas/Financial/Views/PersonalAdjustment/Pages/_PersonalAdjustmentInfoPage.js" asp-append-version="true"></script> | |
<script type="text/javascript" abp-src="/view-resources/Areas/Financial/Views/PersonalAdjustment/SlidePages/Audit.js" asp-append-version="true"></script> | |
<div data-ref="workflow-auditpanel" style="padding-bottom:200px"> | |
<div class="slidePanel-header p-x-15 p-y-5 bg-primary-600"> | |
<div class="slidePanel-actions"> | |
<button type="button" class="btn btn-pure btn-icon slidePanel-close ations-top icon md-close"></button> | |
</div> | |
<h4 class="white">@L(AppPermissions.Pages_Financial_PersonalAdjustment_Audits)</h4> |
NewerOlder