Files
kintone-attendance-system/src/学年別保育計画/main.mobile.js
2025-02-17 22:00:03 +08:00

12 lines
322 B
JavaScript

(function () {
"use strict";
kintone.events.on("mobile.app.record.detail.process.proceed", (event) => {
const field = statusFieldMap[event.nextStatus.value];
if (field) {
event.record[field].value = kintone.getLoginUser().name;
}
return event;
});
})();