Updated assessor

This commit is contained in:
Patrick Alvin Alcala 2026-02-26 19:01:19 +08:00
parent c266940704
commit 557f1e5dbd

View file

@ -450,12 +450,12 @@ export default () => {
const postTransaction = async (application: string) => { const postTransaction = async (application: string) => {
const id = await geteSignId(employeeId()) const id = await geteSignId(employeeId())
const today = await getDateTime() const today = await getDateTime()
const formatedDate = dayjs(today).format('YYYY-MM-DD HH:mm:ss') const formattedDate = dayjs(today).format('YYYY-MM-DD HH:mm:ss')
await postApi('post-esigntransaction', { await postApi('post-esigntransaction', {
data: parseInt(id, 10), data: parseInt(id, 10),
data2: application, data2: application,
data3: formatedDate, data3: formattedDate,
}) })
} }