44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import sqlite from 'better-sqlite3'
|
|
|
|
import { sunriseDB } from '../helpers/database.helpers.js'
|
|
import { clearCacheByTableName } from '../helpers/functions.cache.js'
|
|
|
|
export interface UpdateIntermentContainerTypeForm {
|
|
intermentContainerTypeId: number | string
|
|
|
|
intermentContainerType: string
|
|
isCremationType: '0' | '1'
|
|
}
|
|
|
|
export default function updateIntermentContainerType(
|
|
updateForm: UpdateIntermentContainerTypeForm,
|
|
user: User
|
|
): boolean {
|
|
const database = sqlite(sunriseDB)
|
|
|
|
const rightNowMillis = Date.now()
|
|
|
|
const result = database
|
|
.prepare(
|
|
`update IntermentContainerTypes
|
|
set intermentContainerType = ?,
|
|
isCremationType = ?,
|
|
recordUpdate_userName = ?, recordUpdate_timeMillis = ?
|
|
where recordDelete_timeMillis is null
|
|
and intermentContainerTypeId = ?`
|
|
)
|
|
.run(
|
|
updateForm.intermentContainerType,
|
|
updateForm.isCremationType,
|
|
user.userName,
|
|
rightNowMillis,
|
|
updateForm.intermentContainerTypeId
|
|
)
|
|
|
|
database.close()
|
|
|
|
clearCacheByTableName('IntermentContainerTypes')
|
|
|
|
return result.changes > 0
|
|
}
|