fix: include database ID in rv_openitem update data
Deploy Application / deploy (push) Successful in 30s Details

This commit is contained in:
faisolavolut 2025-11-26 13:47:54 +07:00
parent 21fa8cec4d
commit a5e8e05136
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ async function processDatabaseSync(database: any) {
transactions.push(
db.rv_openitem.update({
where: { id: existingId },
data: op,
data: { ...op, db_id: database.db_id },
})
);
dbUpdated++;