64 lines
2.8 KiB
JavaScript
64 lines
2.8 KiB
JavaScript
import sqlite from "better-sqlite3";
|
|
import { lotOccupancyDB as databasePath } from "../../data/databasePaths.js";
|
|
import { clearOccupancyTypesCache } from "../functions.cache.js";
|
|
export function moveOccupancyTypeFieldDown(occupancyTypeFieldId) {
|
|
const database = sqlite(databasePath);
|
|
const currentField = database
|
|
.prepare(`select occupancyTypeId, orderNumber from OccupancyTypeFields where occupancyTypeFieldId = ?`)
|
|
.get(occupancyTypeFieldId);
|
|
database
|
|
.prepare("update OccupancyTypeFields" +
|
|
" set orderNumber = orderNumber - 1" +
|
|
" where recordDelete_timeMillis is null" +
|
|
(currentField.occupancyTypeId
|
|
? " and occupancyTypeId = '" + currentField.occupancyTypeId + "'"
|
|
: " and occupancyTypeId is null") +
|
|
" and orderNumber = ? + 1")
|
|
.run(currentField.orderNumber);
|
|
const result = database
|
|
.prepare(`update OccupancyTypeFields set orderNumber = ? + 1 where occupancyTypeFieldId = ?`)
|
|
.run(currentField.orderNumber, occupancyTypeFieldId);
|
|
database.close();
|
|
clearOccupancyTypesCache();
|
|
return result.changes > 0;
|
|
}
|
|
export function moveOccupancyTypeFieldDownToBottom(occupancyTypeFieldId) {
|
|
const database = sqlite(databasePath);
|
|
const currentField = database
|
|
.prepare(`select occupancyTypeId, orderNumber
|
|
from OccupancyTypeFields
|
|
where occupancyTypeFieldId = ?`)
|
|
.get(occupancyTypeFieldId);
|
|
const occupancyTypeParameters = [];
|
|
if (currentField.occupancyTypeId) {
|
|
occupancyTypeParameters.push(currentField.occupancyTypeId);
|
|
}
|
|
const maxOrderNumber = database
|
|
.prepare("select max(orderNumber) as maxOrderNumber" +
|
|
" from OccupancyTypeFields" +
|
|
" where recordDelete_timeMillis is null" +
|
|
(currentField.occupancyTypeId
|
|
? " and occupancyTypeId = ?"
|
|
: " and occupancyTypeId is null"))
|
|
.get(occupancyTypeParameters).maxOrderNumber;
|
|
if (currentField.orderNumber !== maxOrderNumber) {
|
|
database
|
|
.prepare("update OccupancyTypeFields set orderNumber = ? + 1 where occupancyTypeFieldId = ?")
|
|
.run(maxOrderNumber, occupancyTypeFieldId);
|
|
occupancyTypeParameters.push(currentField.orderNumber);
|
|
database
|
|
.prepare("update OccupancyTypeFields" +
|
|
" set orderNumber = orderNumber - 1" +
|
|
" where recordDelete_timeMillis is null" +
|
|
(currentField.occupancyTypeId
|
|
? " and occupancyTypeId = ?"
|
|
: " and occupancyTypeId is null") +
|
|
" and orderNumber > ?")
|
|
.run(occupancyTypeParameters);
|
|
}
|
|
database.close();
|
|
clearOccupancyTypesCache();
|
|
return true;
|
|
}
|
|
export default moveOccupancyTypeFieldDown;
|