90 lines
2.3 KiB
TypeScript
90 lines
2.3 KiB
TypeScript
import { acquireConnection } from './pool.js'
|
|
|
|
import { clearCacheByTableName } from '../functions.cache.js'
|
|
|
|
export async function moveOccupancyTypePrintDown(
|
|
occupancyTypeId: number | string,
|
|
printEJS: string
|
|
): Promise<boolean> {
|
|
const database = await acquireConnection()
|
|
|
|
const currentOrderNumber = database
|
|
.prepare(
|
|
'select orderNumber from OccupancyTypePrints where occupancyTypeId = ? and printEJS = ?'
|
|
)
|
|
.get(occupancyTypeId, printEJS).orderNumber
|
|
|
|
database
|
|
.prepare(
|
|
`update OccupancyTypePrints
|
|
set orderNumber = orderNumber - 1
|
|
where recordDelete_timeMillis is null
|
|
and occupancyTypeId = ?
|
|
and orderNumber = ? + 1`
|
|
)
|
|
.run(occupancyTypeId, currentOrderNumber)
|
|
|
|
const result = database
|
|
.prepare(
|
|
'update OccupancyTypePrints set orderNumber = ? + 1 where occupancyTypeId = ? and printEJS = ?'
|
|
)
|
|
.run(currentOrderNumber, occupancyTypeId, printEJS)
|
|
|
|
database.release()
|
|
|
|
clearCacheByTableName('OccupancyTypePrints')
|
|
|
|
return result.changes > 0
|
|
}
|
|
|
|
export async function moveOccupancyTypePrintDownToBottom(
|
|
occupancyTypeId: number | string,
|
|
printEJS: string
|
|
): Promise<boolean> {
|
|
const database = await acquireConnection()
|
|
|
|
const currentOrderNumber = database
|
|
.prepare(
|
|
'select orderNumber from OccupancyTypePrints where occupancyTypeId = ? and printEJS = ?'
|
|
)
|
|
.get(occupancyTypeId, printEJS).orderNumber
|
|
|
|
const maxOrderNumber: number = database
|
|
.prepare(
|
|
`select max(orderNumber) as maxOrderNumber
|
|
from OccupancyTypePrints
|
|
where recordDelete_timeMillis is null
|
|
and occupancyTypeId = ?`
|
|
)
|
|
.get(occupancyTypeId).maxOrderNumber
|
|
|
|
if (currentOrderNumber !== maxOrderNumber) {
|
|
database
|
|
.prepare(
|
|
`update OccupancyTypePrints
|
|
set orderNumber = ? + 1
|
|
where occupancyTypeId = ?
|
|
and printEJS = ?`
|
|
)
|
|
.run(maxOrderNumber, occupancyTypeId, printEJS)
|
|
|
|
database
|
|
.prepare(
|
|
`update OccupancyTypeFields
|
|
set orderNumber = orderNumber - 1
|
|
where recordDelete_timeMillis is null
|
|
and occupancyTypeId = ?
|
|
and orderNumber > ?`
|
|
)
|
|
.run(occupancyTypeId, currentOrderNumber)
|
|
}
|
|
|
|
database.release()
|
|
|
|
clearCacheByTableName('OccupancyTypePrints')
|
|
|
|
return true
|
|
}
|
|
|
|
export default moveOccupancyTypePrintDown
|