-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto-number.js
43 lines (40 loc) · 1.79 KB
/
auto-number.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// NOTE: 即時関数なんぞ使わなくても、ブロックスコープ{}で囲めば十分だと思うのです。
// https://community.cybozu.dev/t/topic/1425
{
// PluginProxy経由で任意のAPIリクエストをする関数
const fetchViaPluginProxy = async ({ pluginId, url, method, headers: reqHeaders = {}, body: reqBody = {} }) => {
const [resBody, resStatus, resHeaders] = await kintone.plugin.app.proxy(pluginId, url, method, reqHeaders, reqBody)
if (resStatus !== 200) {
console.error(resBody, resHeaders)
throw new Error(resBody)
}
return JSON.parse(resBody)
}
kintone.events.on(['app.record.create.show', 'app.record.edit.show', 'app.record.index.edit.show'], async (event) => {
// 連番フィールドは自動採番なので編集不可にする
event.record.連番.disabled = true
return event
})
kintone.events.on('app.record.create.submit', async (event) => {
try {
// 連番フィールドの最新値を取得(自分にレコードアクセス権がないレコードもAPIトークンで取得する)
const appId = kintone.app.getId()
const query = 'order by 連番 desc limit 1'
const fields = `fields[0]=連番`
const params = `?app=${appId}&query=${encodeURIComponent(query)}&${fields}`
const record = await fetchViaPluginProxy({
pluginId: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
url: 'https://example.cybozu.com/k/v1/records.json' + params,
method: 'GET',
}).then((res) => res.records[0])
// 採番してレコードに反映
const latestNumber = Number(record?.連番.value ?? 0)
event.record.連番.value = latestNumber + 1
return event
} catch (e) {
console.error(e)
alert(`採番に失敗しました。`)
return false
}
})
}