116 lines
2.7 KiB
TypeScript
116 lines
2.7 KiB
TypeScript
// eslint-disable-next-line eslint-comments/disable-enable-pair
|
|
/* eslint-disable @typescript-eslint/indent */
|
|
|
|
import { addOrUpdateLotField } from './addOrUpdateLotField.js'
|
|
import { deleteLotField } from './deleteLotField.js'
|
|
import { acquireConnection } from './pool.js'
|
|
|
|
interface UpdateLotForm {
|
|
lotId: string | number
|
|
lotName: string
|
|
lotTypeId: string | number
|
|
lotStatusId: string | number
|
|
|
|
mapId: string | number
|
|
mapKey: string
|
|
|
|
lotLatitude: string
|
|
lotLongitude: string
|
|
|
|
lotTypeFieldIds?: string
|
|
[lotFieldValue_lotTypeFieldId: string]: unknown
|
|
}
|
|
|
|
export async function updateLot(
|
|
lotForm: UpdateLotForm,
|
|
user: User
|
|
): Promise<boolean> {
|
|
const database = await acquireConnection()
|
|
|
|
const result = database
|
|
.prepare(
|
|
`update Lots
|
|
set lotName = ?,
|
|
lotTypeId = ?,
|
|
lotStatusId = ?,
|
|
mapId = ?,
|
|
mapKey = ?,
|
|
lotLatitude = ?,
|
|
lotLongitude = ?,
|
|
recordUpdate_userName = ?,
|
|
recordUpdate_timeMillis = ?
|
|
where lotId = ?
|
|
and recordDelete_timeMillis is null`
|
|
)
|
|
.run(
|
|
lotForm.lotName,
|
|
lotForm.lotTypeId,
|
|
lotForm.lotStatusId === '' ? undefined : lotForm.lotStatusId,
|
|
lotForm.mapId === '' ? undefined : lotForm.mapId,
|
|
lotForm.mapKey,
|
|
lotForm.lotLatitude === '' ? undefined : lotForm.lotLatitude,
|
|
lotForm.lotLongitude === '' ? undefined : lotForm.lotLongitude,
|
|
user.userName,
|
|
Date.now(),
|
|
lotForm.lotId
|
|
)
|
|
|
|
if (result.changes > 0) {
|
|
const lotTypeFieldIds = (lotForm.lotTypeFieldIds ?? '').split(',')
|
|
|
|
for (const lotTypeFieldId of lotTypeFieldIds) {
|
|
const lotFieldValue = lotForm['lotFieldValue_' + lotTypeFieldId] as
|
|
| string
|
|
| undefined
|
|
|
|
await ((lotFieldValue ?? '') === ''
|
|
? deleteLotField(lotForm.lotId, lotTypeFieldId, user, database)
|
|
: addOrUpdateLotField(
|
|
{
|
|
lotId: lotForm.lotId,
|
|
lotTypeFieldId,
|
|
lotFieldValue: lotFieldValue!
|
|
},
|
|
user,
|
|
database
|
|
))
|
|
}
|
|
}
|
|
|
|
database.release()
|
|
|
|
return result.changes > 0
|
|
}
|
|
|
|
export async function updateLotStatus(
|
|
lotId: number | string,
|
|
lotStatusId: number | string,
|
|
user: User
|
|
): Promise<boolean> {
|
|
const database = await acquireConnection()
|
|
|
|
const rightNowMillis = Date.now()
|
|
|
|
const result = database
|
|
.prepare(
|
|
`update Lots
|
|
set lotStatusId = ?,
|
|
recordUpdate_userName = ?,
|
|
recordUpdate_timeMillis = ?
|
|
where lotId = ?
|
|
and recordDelete_timeMillis is null`
|
|
)
|
|
.run(
|
|
lotStatusId === '' ? undefined : lotStatusId,
|
|
user.userName,
|
|
rightNowMillis,
|
|
lotId
|
|
)
|
|
|
|
database.release()
|
|
|
|
return result.changes > 0
|
|
}
|
|
|
|
export default updateLot
|