add mobile

This commit is contained in:
2025-02-17 22:00:03 +08:00
parent 253bdabb97
commit ccaa46ff93
12 changed files with 81 additions and 37 deletions

View File

@@ -0,0 +1,12 @@
(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;
});
})();