45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import sqlite from "better-sqlite3";
|
|
|
|
import {
|
|
lotOccupancyDB as databasePath
|
|
} from "../../data/databasePaths.js";
|
|
|
|
import type * as recordTypes from "../../types/recordTypes";
|
|
import { clearLotOccupantTypesCache } from "../functions.cache.js";
|
|
|
|
|
|
interface AddLotOccupantTypeForm {
|
|
lotOccupantType: string;
|
|
orderNumber?: number;
|
|
}
|
|
|
|
|
|
export const addLotOccupantType =
|
|
(lotOccupantTypeForm: AddLotOccupantTypeForm, requestSession: recordTypes.PartialSession): number => {
|
|
|
|
const database = sqlite(databasePath);
|
|
|
|
const rightNowMillis = Date.now();
|
|
|
|
const result = database
|
|
.prepare("insert into LotOccupantTypes (" +
|
|
"lotOccupantType, orderNumber," +
|
|
" recordCreate_userName, recordCreate_timeMillis," +
|
|
" recordUpdate_userName, recordUpdate_timeMillis)" +
|
|
" values (?, ?, ?, ?, ?, ?)")
|
|
.run(lotOccupantTypeForm.lotOccupantType,
|
|
(lotOccupantTypeForm.orderNumber || 0),
|
|
requestSession.user.userName,
|
|
rightNowMillis,
|
|
requestSession.user.userName,
|
|
rightNowMillis);
|
|
|
|
database.close();
|
|
|
|
clearLotOccupantTypesCache();
|
|
|
|
return result.lastInsertRowid as number;
|
|
};
|
|
|
|
|
|
export default addLotOccupantType; |