IO-1459 DMS Export marks bills as exported.

This commit is contained in:
Patrick Fic
2021-12-14 09:54:46 -08:00
parent 91e70750d6
commit ca846b02e0
3 changed files with 12 additions and 1 deletions

View File

@@ -1324,6 +1324,10 @@ async function MarkJobExported(socket, jobid) {
successful: true,
useremail: socket.user.email,
},
bill: {
exported: true,
exported_at: new Date(),
},
});
return result;