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.

220 lines
7.2 KiB

const installationController = require("../controllers/installationController")
module.exports = function (fastify, opts, next) {
fastify.post("/api/createTeamMember", {
schema: {
description: "Create a new team member under an installation",
tags: ["Installation"],
summary: "Create Team Member",
body: {
type: "object",
required: ["departmentId", "firstName", "phone", "password"],
properties: {
departmentId: { type: "string", description: "Installation ID to associate the team member with" },
firstName: { type: "string", description: "Full name of the team member" },
phone: { type: "string", description: "Phone number of the team member" },
password: { type: "string", description: "Password for the team member" },
alternativePhone: { type: "string", },
email: { type: "string", },
status: { type: "string", },
},
},
},
handler: installationController.createTeamMember,
});
fastify.get("/api/getTeamMembers/:installationId", {
schema: {
description: "Get all team members under a specific installation",
tags: ["Installation"],
summary: "Get Team Members",
params: {
type: "object",
properties: {
installationId: {
type: "string",
description: "Installation ID to fetch team members from"
}
},
required: ["installationId"]
},
},
handler: installationController.getTeamMembers
});
fastify.get("/api/getQuations/:installationId", {
schema: {
description: "Get all quatations under a specific installation",
tags: ["Installation"],
summary: "Get all quatations under a specific installation",
params: {
type: "object",
properties: {
installationId: {
type: "string",
description: "Installation ID to fetch team members from"
}
},
required: ["installationId"]
},
},
handler: installationController.getQuotationsByInstallationId
});
fastify.get("/api/getQuations/:installationId/:teamMemberId", {
schema: {
description: "Get all quatations under a specific installation and team member",
tags: ["Installation"],
summary: "Get all quatations under a specific installation and team member",
params: {
type: "object",
properties: {
installationId: {
type: "string",
description: "Installation ID to fetch team members from"
},
teamMemberId: {
type: "string",
description: "teamMember ID to fetch team members from"
}
},
// required: ["installationId"]
},
},
handler: installationController.getQuotationsByInstallationAndTeamMember
});
fastify.post("/api/assignTeammember/:installationId", {
schema: {
description: "Assign a team member to an installation's quotation",
tags: ["Installation"],
summary: "Assign a team member based on installationId",
params: {
type: "object",
properties: {
installationId: {
type: "string",
description: "Installation ID to fetch team members from"
}
},
required: ["installationId"]
},
body: {
type: "object",
properties: {
teamMemberId: {
type: "string",
description: "The team member ID to assign"
},
quotationId: {
type: "string",
description: "The team member ID to assign"
}
},
// required: ["teamMemberId"]
},
},
handler: installationController.assignTeamMemberToQuotation
});
fastify.get("/api/getAllInstallers/:departmentName", {
schema: {
description: "Get All Installtion list",
tags: ["Installation"],
summary: "Get All Installtion list",
params: {
type: "object",
properties: {
departmentName: {
type: "string",
description: "departmentName to fetch Installation list"
}
},
required: ["departmentName"]
},
},
handler: installationController.getAllInstallers
});
fastify.put("/api/editTeamMember/:installationId/:teamMemberId", {
schema: {
description: "Update an existing team member's details",
tags: ["Installation"],
summary: "Edit Team Member",
params: {
type: "object",
properties: {
installationId: { type: "string", description: "Installation ID" },
teamMemberId: { type: "string", description: "Team Member ID" }
},
required: ["installationId", "teamMemberId"]
},
body: {
type: "object",
properties: {
name: { type: "string" },
phone: { type: "string" },
email: { type: "string" },
alternativePhone: { type: "string" },
status: { type: "string" }
}
},
response: {
200: {
type: "object",
properties: {
simplydata: {
type: "object",
properties: {
error: { type: "boolean" },
message: { type: "string" }
}
}
}
}
}
},
handler: installationController.editTeamMember
});
fastify.delete("/api/deleteTeamMember/:installationId/:teamMemberId", {
schema: {
description: "Delete a team member from an installation",
tags: ["Installation"],
summary: "Delete Team Member",
params: {
type: "object",
properties: {
installationId: { type: "string", description: "Installation ID" },
teamMemberId: { type: "string", description: "Team Member ID" }
},
required: ["installationId", "teamMemberId"]
},
response: {
200: {
type: "object",
properties: {
simplydata: {
type: "object",
properties: {
error: { type: "boolean" },
message: { type: "string" }
}
}
}
}
}
},
handler: installationController.deleteTeamMember
});
next();
}