30 lines
688 B
TypeScript
30 lines
688 B
TypeScript
import type { RequestHandler } from "express";
|
|
|
|
import { deleteWorkOrderLot } from "../../helpers/lotOccupancyDB/deleteWorkOrderLot.js";
|
|
import { getLots } from "../../helpers/lotOccupancyDB/getLots.js";
|
|
|
|
export const handler: RequestHandler = async (request, response) => {
|
|
const success = deleteWorkOrderLot(
|
|
request.body.workOrderId,
|
|
request.body.lotId,
|
|
request.session
|
|
);
|
|
|
|
const workOrderLots = getLots(
|
|
{
|
|
workOrderId: request.body.workOrderId
|
|
},
|
|
{
|
|
limit: -1,
|
|
offset: 0
|
|
}
|
|
).lots;
|
|
|
|
response.json({
|
|
success,
|
|
workOrderLots
|
|
});
|
|
};
|
|
|
|
export default handler;
|