46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import sqlite from "better-sqlite3";
|
|
|
|
import { lotOccupancyDB as databasePath } from "../../data/databasePaths.js";
|
|
|
|
import { clearLotStatusesCache } from "../functions.cache.js";
|
|
|
|
import type * as recordTypes from "../../types/recordTypes";
|
|
|
|
interface UpdateLotStatusForm {
|
|
lotStatusId: number | string;
|
|
lotStatus: string;
|
|
}
|
|
|
|
export const updateLotStatus = (
|
|
lotStatusForm: UpdateLotStatusForm,
|
|
requestSession: recordTypes.PartialSession
|
|
): boolean => {
|
|
const database = sqlite(databasePath);
|
|
|
|
const rightNowMillis = Date.now();
|
|
|
|
const result = database
|
|
.prepare(
|
|
"update LotStatuses" +
|
|
" set lotStatus = ?," +
|
|
" recordUpdate_userName = ?," +
|
|
" recordUpdate_timeMillis = ?" +
|
|
" where lotStatusId = ?" +
|
|
" and recordDelete_timeMillis is null"
|
|
)
|
|
.run(
|
|
lotStatusForm.lotStatus,
|
|
requestSession.user.userName,
|
|
rightNowMillis,
|
|
lotStatusForm.lotStatusId
|
|
);
|
|
|
|
database.close();
|
|
|
|
clearLotStatusesCache();
|
|
|
|
return result.changes > 0;
|
|
};
|
|
|
|
export default updateLotStatus;
|