21 lines
834 B
JavaScript
21 lines
834 B
JavaScript
import { acquireConnection } from './pool.js';
|
|
export async function getLotOccupancyFees(lotOccupancyId, connectedDatabase) {
|
|
const database = connectedDatabase ?? (await acquireConnection());
|
|
const lotOccupancyFees = database
|
|
.prepare(`select o.lotOccupancyId, o.feeId,
|
|
c.feeCategory, f.feeName,
|
|
f.includeQuantity, o.feeAmount, o.taxAmount, o.quantity
|
|
from LotOccupancyFees o
|
|
left join Fees f on o.feeId = f.feeId
|
|
left join FeeCategories c on f.feeCategoryId = c.feeCategoryId
|
|
where o.recordDelete_timeMillis is null
|
|
and o.lotOccupancyId = ?
|
|
order by o.recordCreate_timeMillis`)
|
|
.all(lotOccupancyId);
|
|
if (connectedDatabase === undefined) {
|
|
database.release();
|
|
}
|
|
return lotOccupancyFees;
|
|
}
|
|
export default getLotOccupancyFees;
|