44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import sqlite from "better-sqlite3";
|
|
|
|
import { lotOccupancyDB as databasePath } from "../../data/databasePaths.js";
|
|
|
|
import { updateRecordOrderNumber } from "./updateRecordOrderNumber.js";
|
|
|
|
import type * as recordTypes from "../../types/recordTypes";
|
|
|
|
export function getLotOccupantTypes(): recordTypes.LotOccupantType[] {
|
|
const database = sqlite(databasePath);
|
|
|
|
const lotOccupantTypes: recordTypes.LotOccupantType[] = database
|
|
.prepare(
|
|
`select lotOccupantTypeId, lotOccupantType, fontAwesomeIconClass, orderNumber
|
|
from LotOccupantTypes
|
|
where recordDelete_timeMillis is null
|
|
order by orderNumber, lotOccupantType`
|
|
)
|
|
.all();
|
|
|
|
let expectedOrderNumber = 0;
|
|
|
|
for (const lotOccupantType of lotOccupantTypes) {
|
|
if (lotOccupantType.orderNumber !== expectedOrderNumber) {
|
|
updateRecordOrderNumber(
|
|
"LotOccupantTypes",
|
|
lotOccupantType.lotOccupantTypeId,
|
|
expectedOrderNumber,
|
|
database
|
|
);
|
|
|
|
lotOccupantType.orderNumber = expectedOrderNumber;
|
|
}
|
|
|
|
expectedOrderNumber += 1;
|
|
}
|
|
|
|
database.close();
|
|
|
|
return lotOccupantTypes;
|
|
}
|
|
|
|
export default getLotOccupantTypes;
|