fleet-contractor/Site/SystemSettings/ManageDepartments.aspx
2024-03-26 15:56:31 +08:00

324 lines
13 KiB
Plaintext

<%@ Page Title="" Language="C#" MasterPageFile="~/SystemSettings/SysSettingMasterPage.master" AutoEventWireup="true" CodeFile="ManageDepartments.aspx.cs" Inherits="ManageDepartments" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
<style type="text/css">
::-ms-clear, ::-ms-reveal {
display: none;
}
.selectinput {
width: 150px;
margin-right: 10px;
}
#dialogdatatb td {
padding-top: 30px;
}
.a {
text-decoration: none;
color: #2140fb;
}
</style>
<script type="text/javascript" src="<%=GetFileUrlWithVersion("../js/vue.min.js")%>"></script>
<script>Vue.config.productionTip = false; Vue.config.silent = true;</script>
<script type="text/javascript" src="<%=GetFileUrlWithVersion("../js/components/datagrid.js")%>"></script>
<script type="text/javascript">
function departmentrequest(method, param, callback, error) {
_network.request("SystemSettings/ManageDepartments.aspx", -1, method, param, callback, error || function (e) {
showmaskbg(false, true);
showAlert(GetTextByKey('P_SET_QUERY', 'An unknown error occurred. Please refresh page.'), GetTextByKey('P_SET_QUERY', 'Query'));
});
}
function OnAdd(pid) {
departmentID = undefined;
pID = pid;
$('#dialog_code').val('');
$('#dialog_name').val('');
$('#dialog_notes').val('');
$('#dialog_department .dialog-title span.title').text(GetTextByKey("P_SET_ADDDEPARTMENT", "Add Department"));
showmaskbg(true);
$('#dialog_department')
.css({
'top': (document.documentElement.clientHeight - $('#dialog_department').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_department').width()) / 2
}).showDialogfixed();
$('#dialog_name').focus();
}
var departmentID;
var pID;
function OnEdit() {
var index = grid_dt.selectedIndex;
if (index < 0) {
showAlert(GetTextByKey("P_SET_PLEASESELECTDEPARTMENT", "Please select Department."), GetTextByKey("P_SET_EDITLOCATIONS", "Edit Department")); return;
}
var department = grid_dt.source[index];
if (!department) {
departmentID = undefined;
pID = undefined;
return;
}
departmentID = department.Id;
pID = department.PId;
$('#dialog_code').val(department.Code);
$('#dialog_name').val(department.Name);
$('#dialog_notes').val(department.Notes);
$('#dialog_department .dialog-title span.title').text(GetTextByKey("P_SET_EDITDEPARTMENT", "Edit Department"));
showmaskbg(true);
$('#dialog_department')
.css({
'top': (document.documentElement.clientHeight - $('#dialog_department').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_department').width()) / 2
}).showDialogfixed();
$('#dialog_name').focus();
}
function OnDblClick(e) {
OnEdit();
}
function OnDelete() {
var index = grid_dt.selectedIndex;
if (index < 0) {
return;
}
var dep = grid_dt.source[index];
if (!dep) {
return;
}
showConfirm(GetTextByKey("P_SET_DOYOUWANTTODELETETHEDEPARTMENT", 'Do you want to delete the department?'), GetTextByKey("P_SET_DELETEDEPARTMENT", "Delete Department"), function () {
departmentrequest("DeleteDepartment", dep.Id, function (data) {
if (typeof (data) === "string")
showAlert(data, GetTextByKey("P_SET_DELETEDEPARTMENT", "Delete Department"));
else
OnRefresh();
}, function (err) {
showAlert(GetTextByKey("P_SET_FAILEDTODELETETHISDEPARTMENT", 'Failed to delete this Department.'), GetTextByKey("P_SET_DELETEDEPARTMENT", "Delete Department"));
});
});
}
function OnRefresh() {
showloading(true);
departmentrequest("GetDepartments", "", function (data) {
showloading(false);
if (typeof (data) === "string") {
showAlert(data, GetTextByKey("P_SET_ERROR", 'Error'));
return;
}
if (data)
showDepartments(data);
}, function (err) {
showloading(false);
});
}
function showDepartments(data) {
for (var i = 0; i < data.length; i++) {
var r = data[i];
}
grid_dt.setData(data);
}
//加载表格
function initGrid() {
grid_dt = createGridView('#departmentlist');
grid_dt.columns = CreateStyleColumn();
grid_dt.init();
grid_dt.onCellDblClicked = function (_rowindex, colindex) {
if (colindex >= 0)
OnEdit();
};
}
//创建列表的行
function CreateStyleColumn() {
var list_columns = [
{ name: 'Name', caption: GetTextByKey("P_SET_DEPARTMENTNAME", "Department Name"), valueIndex: 'Name', type: 0, css: { 'width': 200, 'text-align': 'left' } },
{ name: 'Code', caption: GetTextByKey("P_SET_CODE", "Code"), valueIndex: 'Code', type: 0, css: { 'width': 200, 'text-align': 'left' } },
{ name: 'Notes', caption: GetTextByKey("P_SET_NOTES", "Notes"), valueIndex: 'Notes', type: 0, css: { 'width': 280, 'text-align': 'left' } },
{ name: 'AddSub', caption: "", valueIndex: 'Add', type: 5, css: { 'width': 30, 'text-align': 'center' } },
{ name: 'Edit', caption: "", valueIndex: 'Edit', type: 5, css: { 'width': 30, 'text-align': 'center' } },
{ name: 'Delete', caption: "", valueIndex: 'Delete', type: 5, css: { 'width': 30, 'text-align': 'center' } }
];
var columns = [];
// head
for (var hd in list_columns) {
var col = {};
col.name = list_columns[hd].name;
col.caption = list_columns[hd].caption;
col.type = list_columns[hd].type;
col.enabled = true;
col.width = list_columns[hd].css.width;
col.align = list_columns[hd].css["text-align"]
col.key = list_columns[hd].valueIndex;
col.sortable = false;
if (col.name === "Name") {
col.styleFilter = function (e) {
if (e.PId > 0)
return { 'padding-left': '24px' };
else
return { 'font-weight': 'bold' };
}
}
else if (col.name === "AddSub") {
col.sortable = false;
col.resizable = false;
col.type = GridView.ColumnTypes.Icon;
col.text = 'plus';
col.iconType = 'fa-light';
col.events = {
onclick: function () {
OnAdd(this.Id);
}
};
col.attrs = { 'title': GetTextByKey("P_SET_ADD", 'Edit') };
}
else if (col.name === "Edit") {
col.sortable = false;
col.resizable = false;
col.type = GridView.ColumnTypes.Icon;
col.text = 'edit';
col.iconType = 'fa-light';
col.events = {
onclick: function () {
OnEdit();
}
};
col.attrs = { 'title': GetTextByKey("P_SET_EDIT", 'Edit') };
}
else if (col.name === "Delete") {
col.sortable = false;
col.resizable = false;
col.type = GridView.ColumnTypes.Icon;
col.text = 'times';
col.iconType = 'fa-light';
col.events = {
onclick: function () {
OnDelete();
}
};
col.attrs = { 'title': GetTextByKey("P_SET_DELETE", 'Delete') };
}
columns.push(col);
}
return columns;
}
function OnDialogOK() {
var item = {
'Code': $.trim($('#dialog_code').val()),
'Name': $.trim($('#dialog_name').val()),
'Notes': $.trim($('#dialog_notes').val())
};
var alerttitle;
if (departmentID) {
item.Id = departmentID;
item.PId = pID;
alerttitle = GetTextByKey("P_SET_EDITDEPARTMENT", "Edit Department");
} else {
item.Id = -1;
item.PId = pID;
alerttitle = GetTextByKey("P_SET_ADDDEPARTMENT", "Add Department");
}
if (!item.Code || item.Code.length == 0) {
showAlert(GetTextByKey("P_SET_CODECANNOTBEEMPTY", 'Code cannot be empty.'), alerttitle);
$('#dialog_code').focus();
return;
}
if (!item.Name || item.Name.length == 0) {
showAlert(GetTextByKey("P_SET_DEPARTMENTNAMECANNOTBEEMPTY", 'Department name cannot be empty.'), alerttitle);
$('#dialog_name').focus();
return;
}
departmentrequest("SaveDepartment", htmlencode(JSON.stringify(item)), function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey("P_SET_ERROR", 'Error'));
return;
}
showmaskbg(false);
$('#dialog_department').hideDialog();
OnRefresh();
}, function (err) {
showmaskbg(false);
});
}
$(function () {
setPageTitle(GetTextByKey("P_SET_MANAGEDEPARTMENTS", 'Manage Departments'), true);
initGrid();
OnRefresh();
$('#dialog_department').dialog(function () {
showmaskbg(false);
});
$(window).resize(function () {
$("#departmentlist").css("height", $(window).height() - $("#departmentlist").offset().top - 4);
}).resize();
});
</script>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div id="recordcontent" style="padding: 0px; margin: 0px;">
<div class="page_title" data-lgid="P_SET_MANAGEDEPARTMENTS">Manage Departments</div>
<div class="function_title">
<span class="sbutton iconadd" onclick="OnAdd();" data-lgid="P_SET_ADD">Add</span>
<span class="sbutton iconrefresh" onclick="OnRefresh();" data-lgid="P_SET_REFRESH">Refresh</span>
</div>
<div class="clear"></div>
<div id="departmentlist">
<data-grid ref="grid" v-bind:columns="columns" v-bind:source="source" v-bind:allow-editing="true" v-on:rowdblclick="rowdblclick"
v-bind:allow-auto-new-row="false" v-bind:total-row="totalRow" body-class="autoHeightBody">
</data-grid>
</div>
<%--<div id="departmentlist"></div>--%>
</div>
<div id="mask_bg" style="display: none;"><div class="loading c-spin"></div></div>
<div class="dialog" id="dialog_department" style="display: none; width: 500px;">
<div class="dialog-title"><span class="title" data-lgid="P_SET_ADDLOCATIONS">Add Department</span><em class="dialog-close"></em></div>
<div class="dialog-content">
<table>
<tr>
<td class="label" data-lgid="P_SET_DEPARTMENTNAME_COLON">Department Name:</td>
<td>
<input type="text" id="dialog_name" maxlength="200" tabindex="1" style="width: 320px;" autocomplete="off" /></td>
</tr>
<tr>
<td class="label" data-lgid="P_SET_CODE_COLON">Code:</td>
<td>
<input type="text" id="dialog_code" maxlength="20" tabindex="1" style="width: 320px;" autocomplete="off" /></td>
</tr>
<tr>
<td class="label" data-lgid="P_SET_NOTES_COLON">Notes:</td>
<td>
<textarea id="dialog_notes" maxlength="1000" tabindex="1" style="width: 320px;"></textarea></td>
</tr>
</table>
</div>
<div class="dialog-func">
<input type="button" value="Cancel" data-lgid="P_SET_CANCEL" class="dialog-close" tabindex="8" />
<input type="button" onclick="OnDialogOK();" value="OK" data-lgid="P_SET_OK" tabindex="7" />
<div class="clear"></div>
</div>
</div>
</asp:Content>