69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
import sqlite from "better-sqlite3";
|
|
|
|
import { lotOccupancyDB as databasePath } from "../../data/databasePaths.js";
|
|
|
|
import {
|
|
dateStringToInteger,
|
|
dateToInteger,
|
|
dateToTimeInteger,
|
|
timeStringToInteger
|
|
} from "@cityssm/expressjs-server-js/dateTimeFns.js";
|
|
|
|
import type * as recordTypes from "../../types/recordTypes";
|
|
|
|
interface AddLotOccupancyCommentForm {
|
|
lotOccupancyId: string | number;
|
|
lotOccupancyCommentDateString?: string;
|
|
lotOccupancyCommentTimeString?: string;
|
|
lotOccupancyComment: string;
|
|
}
|
|
|
|
export const addLotOccupancyComment = (
|
|
commentForm: AddLotOccupancyCommentForm,
|
|
requestSession: recordTypes.PartialSession
|
|
): number => {
|
|
const rightNow = new Date();
|
|
|
|
let lotOccupancyCommentDate: number;
|
|
let lotOccupancyCommentTime: number;
|
|
|
|
if (commentForm.lotOccupancyCommentDateString) {
|
|
lotOccupancyCommentDate = dateStringToInteger(
|
|
commentForm.lotOccupancyCommentDateString
|
|
);
|
|
lotOccupancyCommentTime = timeStringToInteger(
|
|
commentForm.lotOccupancyCommentTimeString
|
|
);
|
|
} else {
|
|
lotOccupancyCommentDate = dateToInteger(rightNow);
|
|
lotOccupancyCommentTime = dateToTimeInteger(rightNow);
|
|
}
|
|
|
|
const database = sqlite(databasePath);
|
|
|
|
const result = database
|
|
.prepare(
|
|
"insert into LotOccupancyComments (" +
|
|
"lotOccupancyId, lotOccupancyCommentDate, lotOccupancyCommentTime, lotOccupancyComment," +
|
|
" recordCreate_userName, recordCreate_timeMillis," +
|
|
" recordUpdate_userName, recordUpdate_timeMillis)" +
|
|
" values (?, ?, ?, ?, ?, ?, ?, ?)"
|
|
)
|
|
.run(
|
|
commentForm.lotOccupancyId,
|
|
lotOccupancyCommentDate,
|
|
lotOccupancyCommentTime,
|
|
commentForm.lotOccupancyComment,
|
|
requestSession.user.userName,
|
|
rightNow.getTime(),
|
|
requestSession.user.userName,
|
|
rightNow.getTime()
|
|
);
|
|
|
|
database.close();
|
|
|
|
return result.lastInsertRowid as number;
|
|
};
|
|
|
|
export default addLotOccupancyComment;
|