Files
kintone-attendance-system/src/8.学期反省・評価/processStateHandler.js
2025-09-15 11:09:17 +08:00

21 lines
657 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(function () {
"use strict";
const statusFieldMap = {
'園長確認中1学期': '指導1',
'担任作成中2学期': '園長1',
'園長確認中2学期': '指導2',
'担任作成中3学期': '園長2',
'園長確認中3学期': '指導3',
'完了3学期': '園長3',
}
kintone.events.on("app.record.detail.process.proceed", (event) => {
const field = statusFieldMap[event.nextStatus.value];
if (field) {
event.record[field].value = kintone.getLoginUser().name;
}
return event;
});
})();