Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 2966 #3

Open
wants to merge 2 commits into
base: court-room-hrms
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const initRequestBody = (tenantId) => ({
moduleDetails: [
{
moduleName: "common-masters",
masterDetails: [{ name: "CourtEstablishment" }, { name: "Court_Rooms" },{ name: "Designation" }, { name: "StateInfo" }, { name: "wfSlaConfig" }, { name: "uiHomePage" }],
masterDetails: [{ name: "CourtEstablishment" },{ name: "District" }, { name: "Court_Rooms" },{ name: "Designation" }, { name: "StateInfo" }, { name: "wfSlaConfig" }, { name: "uiHomePage" }],
},
{
moduleName: "tenant",
Expand Down Expand Up @@ -727,6 +727,7 @@ const getHrmsEmployeeRolesandDesignations = () => ({
moduleName: "common-masters",
masterDetails: [
{ name: "CourtEstablishment", filter: "[?(@.active == true)]" },
{ name: "District", filter: "[?(@.active == true)]" },
{ name: "Designation", filter: "[?(@.active == true)]" },
{ name: "Court_Rooms", filter: "[?(@.active == true)]" },
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const UserService = {
Object.entries(details).forEach(([key, value]) => data.append(key, value));
data.append("scope", "read");
data.append("grant_type", "password");
console.log("detailss");

let authResponse = await ServiceRequest({
serviceName: "authenticate",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ export const newConfig = [
// key: "SelectEmployeeGender",
// withoutLabel: true,
// },
{
type: "component",
component: "SelectDateofBirthEmployment",
key: "SelectDateofBirthEmployment",
withoutLabel: true,
},
// {
// type: "component",
// component: "SelectDateofBirthEmployment",
// key: "SelectDateofBirthEmployment",
// withoutLabel: true,
// },
{
type: "component",
component: "SelectEmployeeEmailId",
Expand Down Expand Up @@ -55,37 +55,37 @@ export const newConfig = [
// key: "SelectDateofEmployment",
// withoutLabel: true,
// },
// {
// type: "component",
// component: "SelectEmployeeId",
// key: "SelectEmployeeId",
// withoutLabel: true,
// },
{
type: "component",
component: "SelectEmployeeId",
key: "SelectEmployeeId",
withoutLabel: true,
},

// {
// type: "component",
// component: "HRBanner",
// key: "Banner1",
// withoutLabel: true,
// texts: {
// headerCaption: "Info",
// header: "HR_EMP_ID_MESSAGE",
// },
// },
],
},
{
head: "HR_JURISDICTION_DETAILS_HEADER",
body: [
{
type: "component",
isMandatory: true,
component: "Jurisdictions",
key: "Jurisdictions",
component: "HRBanner",
key: "Banner1",
withoutLabel: true,
texts: {
headerCaption: "Info",
header: "HR_EMP_ID_MESSAGE",
},
},
],
},
// {
// head: "HR_JURISDICTION_DETAILS_HEADER",
// body: [
// {
// type: "component",
// isMandatory: true,
// component: "Jurisdictions",
// key: "Jurisdictions",
// withoutLabel: true,
// },
// ],
// },

{
head: "HR_ASSIGN_DET_HEADER",
Expand All @@ -96,7 +96,7 @@ export const newConfig = [
key: "Banner2",
withoutLabel: true,
texts: {
nosideText:true,
nosideText: true,
headerCaption: "Info",
header: "HR_ASSIGN_DET_SUB_HEADER",
},
Expand Down
Loading