You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

66 lines
3.2 KiB

'use strict';
var sProgramId = getProgramId(),
sEditPrgId = getEditPrgId(),
oGrid = null,
fnPageInit = function () {
var canDo = new CanDo({
sortField: 'OrderByValue',
sortOrder: 'asc',
/**
* 當前程式所有ID名稱集合
*/
idKeys: ['OrgID', 'DepartmentID'],
/**
* Grid欄位設置(可以是 function)
*/
gridFields: [
{ name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 50, sorting: false },
{ name: "DepartmentName", title: 'common.DepartmentName', width: 200 },
{ name: "DepartmentID", title: 'common.DepartmentID', width: 150 },
{ name: "DepartmentShortName", title: 'DepartmentsMaintain_Upd.DepartmentShortName', width: 200 },
{ name: "ParentDepartmentID", title: 'DepartmentsMaintain_Upd.ParentDepartmentID', width: 200 },
{ name: "ChiefOfDepartmentID", title: 'DepartmentsMaintain_Upd.ChiefOfDepartmentID', width: 200 },
{
name: "Effective", title: 'common.Status', width: 100, align: 'center', itemTemplate: function (val) {
return val === 'Y' ? i18next.t('common.Effective') : i18next.t('common.Invalid');
}
},
{
name: "OrderByValue", title: 'common.OrderByValue', type: "select", width: 100,
itemTemplate: function (val, item) {
return this._createSelect = $("<select>", {
class: 'w70',
html: createOptions(item.OrderCount),
change: function () {
var sOldValue = val,
sNewValue = this.value;
g_api.ConnectLite(canDo.ProgramId, canDo._api.order, {
Id: item.DepartmentID,
OldOrderByValue: sOldValue,
NewOrderByValue: sNewValue
}, function (res) {
if (res.RESULT) {
showMsg(i18next.t('message.Update_Success'), 'success');// ╠message.Update_Success⇒更新成功╣
canDo.Grid.openPage(canDo.options.toFirstPage ? 1 : canDo.options.queryPageidx);
}
else {
showMsg(i18next.t('message.Update_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Update_Failed⇒更新失敗╣
}
});
}
}).val(val);
}
}
],
/**
* 頁面初始化
* @param {Object} pargs CanDo 對象
*/
pageInit: function (pargs) {
pargs._reSetQueryPm();
pargs._initGrid();
}
});
};
require(['base', 'jsgrid', 'cando'], fnPageInit);