sunrise-cms/helpers/lotOccupancyDB/updateLotType.ts

46 lines
1.1 KiB
TypeScript

import sqlite from "better-sqlite3";
import { lotOccupancyDB as databasePath } from "../../data/databasePaths.js";
import { clearLotTypesCache } from "../functions.cache.js";
import type * as recordTypes from "../../types/recordTypes";
interface UpdateLotTypeForm {
lotTypeId: number | string;
lotType: string;
}
export function updateLotType(
lotTypeForm: UpdateLotTypeForm,
requestSession: recordTypes.PartialSession
): boolean {
const database = sqlite(databasePath);
const rightNowMillis = Date.now();
const result = database
.prepare(
`update LotTypes
set lotType = ?,
recordUpdate_userName = ?,
recordUpdate_timeMillis = ?
where lotTypeId = ?
and recordDelete_timeMillis is null`
)
.run(
lotTypeForm.lotType,
requestSession.user.userName,
rightNowMillis,
lotTypeForm.lotTypeId
);
database.close();
clearLotTypesCache();
return result.changes > 0;
}
export default updateLotType;