29 lines
1.3 KiB
JavaScript
29 lines
1.3 KiB
JavaScript
import sqlite from 'better-sqlite3';
|
|
import { lotOccupancyDB as databasePath } from '../../data/databasePaths.js';
|
|
export function updateFee(feeForm, requestSession) {
|
|
const database = sqlite(databasePath);
|
|
const rightNowMillis = Date.now();
|
|
const result = database
|
|
.prepare(`update Fees
|
|
set feeCategoryId = ?,
|
|
feeName = ?,
|
|
feeDescription = ?,
|
|
occupancyTypeId = ?,
|
|
lotTypeId = ?,
|
|
feeAmount = ?,
|
|
feeFunction = ?,
|
|
taxAmount = ?,
|
|
taxPercentage = ?,
|
|
includeQuantity = ?,
|
|
quantityUnit = ?,
|
|
isRequired = ?,
|
|
recordUpdate_userName = ?,
|
|
recordUpdate_timeMillis = ?
|
|
where recordDelete_timeMillis is null
|
|
and feeId = ?`)
|
|
.run(feeForm.feeCategoryId, feeForm.feeName, feeForm.feeDescription, feeForm.occupancyTypeId === '' ? undefined : feeForm.occupancyTypeId, feeForm.lotTypeId === '' ? undefined : feeForm.lotTypeId, feeForm.feeAmount ?? undefined, feeForm.feeFunction ?? undefined, feeForm.taxAmount ?? undefined, feeForm.taxPercentage ?? undefined, feeForm.includeQuantity === '' ? 0 : 1, feeForm.quantityUnit, feeForm.isRequired === '' ? 0 : 1, requestSession.user.userName, rightNowMillis, feeForm.feeId);
|
|
database.close();
|
|
return result.changes > 0;
|
|
}
|
|
export default updateFee;
|