23 lines
1.1 KiB
JavaScript
23 lines
1.1 KiB
JavaScript
import { clearCacheByTableName } from '../helpers/functions.cache.js';
|
|
import { acquireConnection } from './pool.js';
|
|
export default async function updateLotTypeField(lotTypeFieldForm, user) {
|
|
const database = await acquireConnection();
|
|
const result = database
|
|
.prepare(`update LotTypeFields
|
|
set lotTypeField = ?,
|
|
isRequired = ?,
|
|
fieldType = ?,
|
|
minimumLength = ?,
|
|
maximumLength = ?,
|
|
pattern = ?,
|
|
lotTypeFieldValues = ?,
|
|
recordUpdate_userName = ?,
|
|
recordUpdate_timeMillis = ?
|
|
where lotTypeFieldId = ?
|
|
and recordDelete_timeMillis is null`)
|
|
.run(lotTypeFieldForm.lotTypeField, Number.parseInt(lotTypeFieldForm.isRequired, 10), lotTypeFieldForm.fieldType ?? 'text', lotTypeFieldForm.minimumLength ?? 0, lotTypeFieldForm.maximumLength ?? 100, lotTypeFieldForm.pattern ?? '', lotTypeFieldForm.lotTypeFieldValues, user.userName, Date.now(), lotTypeFieldForm.lotTypeFieldId);
|
|
database.release();
|
|
clearCacheByTableName('LotTypeFields');
|
|
return result.changes > 0;
|
|
}
|