sunrise-cms/database/updateWorkOrderComment.js

18 lines
862 B
JavaScript

import { dateStringToInteger, timeStringToInteger } from '@cityssm/utils-datetime';
import { acquireConnection } from './pool.js';
export default async function updateWorkOrderComment(commentForm, user) {
const database = await acquireConnection();
const result = database
.prepare(`update WorkOrderComments
set workOrderCommentDate = ?,
workOrderCommentTime = ?,
workOrderComment = ?,
recordUpdate_userName = ?,
recordUpdate_timeMillis = ?
where recordDelete_timeMillis is null
and workOrderCommentId = ?`)
.run(dateStringToInteger(commentForm.workOrderCommentDateString), timeStringToInteger(commentForm.workOrderCommentTimeString), commentForm.workOrderComment, user.userName, Date.now(), commentForm.workOrderCommentId);
database.release();
return result.changes > 0;
}