12 lines
322 B
JavaScript
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;
|
|
});
|
|
|
|
})(); |