------------------ ### Features * Advanced Employee Management Module is now included in IceHrm Open Source Edition * LDAP Module which was only available in IceHrm Enterprise is now included in open source also * Initial implementation of icehrm REST Api for reading employee details * Improvements to data filtering * Multiple tabs for settings module * Overtime reports - now its possible to calculate overtime for employees.compatible with US overtime rules * Logout the user if tried accessing an unauthorized module * Setting for updating module names ### Fixes * Fix issue: classes should be loaded even the module is disabled * Deleting the only Admin user is not allowed * Fixes for handling non UTF-8 * Fix for non-mandatory select boxes are shown as mandatory
87 lines
2.1 KiB
JavaScript
87 lines
2.1 KiB
JavaScript
/**
|
|
* Author: Thilina Hasantha
|
|
*/
|
|
|
|
|
|
/**
|
|
* FieldNameAdapter
|
|
*/
|
|
|
|
function FieldNameAdapter(endPoint,tab,filter,orderBy) {
|
|
this.initAdapter(endPoint,tab,filter,orderBy);
|
|
}
|
|
|
|
FieldNameAdapter.inherits(AdapterBase);
|
|
|
|
|
|
|
|
FieldNameAdapter.method('getDataMapping', function() {
|
|
return [
|
|
"id",
|
|
"name",
|
|
"textOrig",
|
|
"textMapped",
|
|
"display"
|
|
];
|
|
});
|
|
|
|
FieldNameAdapter.method('getHeaders', function() {
|
|
return [
|
|
{ "sTitle": "ID" ,"bVisible":false},
|
|
{ "sTitle": "Name" },
|
|
{ "sTitle": "Original Text"},
|
|
{ "sTitle": "Mapped Text"},
|
|
{ "sTitle": "Display Status"}
|
|
];
|
|
});
|
|
|
|
FieldNameAdapter.method('getFormFields', function() {
|
|
return [
|
|
[ "id", {"label":"ID","type":"hidden"}],
|
|
[ "type", {"label":"Type","type":"placeholder","validation":""}],
|
|
[ "name", {"label":"Name","type":"placeholder","validation":""}],
|
|
[ "textOrig", {"label":"Original Text","type":"placeholder","validation":""}],
|
|
[ "textMapped", {"label":"Mapped Text","type":"text","validation":""}],
|
|
[ "display", {"label":"Display Status","type":"select","source":[["Form","Form"],["Table and Form","Table and Form"],["Hidden","Hidden"]]}]
|
|
];
|
|
});
|
|
|
|
/*
|
|
*
|
|
*/
|
|
|
|
function CustomFieldAdapter(endPoint,tab,filter,orderBy) {
|
|
this.initAdapter(endPoint,tab,filter,orderBy);
|
|
}
|
|
|
|
CustomFieldAdapter.inherits(AdapterBase);
|
|
|
|
|
|
|
|
CustomFieldAdapter.method('getDataMapping', function() {
|
|
return [
|
|
"id",
|
|
"name",
|
|
"display"
|
|
];
|
|
});
|
|
|
|
CustomFieldAdapter.method('getHeaders', function() {
|
|
return [
|
|
{ "sTitle": "ID" ,"bVisible":false},
|
|
{ "sTitle": "Name" },
|
|
{ "sTitle": "Display Status"}
|
|
];
|
|
});
|
|
|
|
CustomFieldAdapter.method('getFormFields', function() {
|
|
return [
|
|
[ "id", {"label":"ID","type":"hidden"}],
|
|
[ "type", {"label":"Type","type":"placeholder","validation":""}],
|
|
[ "name", {"label":"Name","type":"placeholder","validation":""}],
|
|
[ "data", {"label":"Data","type":"textarea","validation":""}],
|
|
[ "display", {"label":"Display Status","type":"select","source":[["Form","Form"],["Table and Form","Table and Form"],["Hidden","Hidden"]]}]
|
|
];
|
|
});
|
|
|