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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
|
/*
* 勤怠管理 タイムカード
* Copyright (c) 2014 Cybozu
*
* Licensed under the MIT License
* https://opensource.org/license/mit/
*/
(function() {
// 定数、変数定義、関数定義
'use strict';
// サーバーの時間を取得する
function getUTCDateByServer() {
const r = new XMLHttpRequest();
return (r)
? (r.open('HEAD', '#', false), r.send(null), new Date(r.getResponseHeader('Date'))) : null;
}
// 指定された文字の指定された長さのゼロサプレスを取得する
function zero_suppress(s, len) {
let str = '';
for (let i = 0; i < len; i += 1) {
str += '0';
}
str += s;
return str.substr(str.length - len, len);
}
// 時計に表示する関数
function set_digitTime() {
const dt = new Date(getUTCDateByServer());
const DAY = ['SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT'];
const yyyy = dt.getFullYear();
const MM = zero_suppress(dt.getMonth() + 1, 2);
const dd = zero_suppress(dt.getDate(), 2);
const hh = zero_suppress(dt.getHours(), 2);
const mm = zero_suppress(dt.getMinutes(), 2);
const ss = zero_suppress(dt.getSeconds(), 2);
$('#year')[0].innerHTML = yyyy;
$('#date')[0].innerHTML = MM + '/' + dd + ' ' + DAY[dt.getDay()];
$('#time')[0].innerHTML = hh + ':' + mm + ':' + ss;
}
// イベントハンドラ実行
const events = ['app.record.index.show'];
kintone.events.on(events, (event) => {
if (event.viewId !== CUSTOM_VIEW_ID) {
return;
}
// タイムカード
// アカウント=ログインユーザー、日付=今日 のレコードをすべて取得
const appId = kintone.app.getId();
const user = kintone.getLoginUser();
const qryInfo = 'アカウント名 = "' + user.code + '" and 日付 = TODAY() order by 出勤 desc limit 1';
const params = {
app: appId,
query: qryInfo,
fields: [
'社員番号',
'アカウント名',
'日付',
'出勤',
'退勤',
'休憩中'
]
};
kintone.api(kintone.api.url('/k/v1/records', true), 'GET', params, (resp) => {
// resp['records'] の長さが0 or 1以上の場合で状態を変える
// 今日の レコード数 = 0
if (resp.records.length === 0) {
$('#syukkin').replaceWith('<input id=\'syukkin\' type=\'button\' value=\'出勤\'>');
$('#syukkin').on('click', clickFunction);
} else if (resp.records.length === 1) {
// 今日の レコード数 >= 1
if (resp.records[0]['退勤'].value === null) {
if (resp.records[0]['休憩中'].value[0] === '休憩中') {
$('#fukki').replaceWith('<input id=\'fukki\' type=\'button\' value=\'復帰\'>');
$('#fukki').on('click', clickFunction);
} else {
$('#kyuukei').replaceWith('<input id=\'kyuukei\' type=\'button\' value=\'休憩\'>');
$('#kyuukei').on('click', clickFunction);
$('#taikin').replaceWith('<input id=\'taikin\' type=\'button\' value=\'退勤\'>');
$('#taikin').on('click', clickFunction);
}
} else {
$('#syukkin').replaceWith('<input id=\'syukkin\' type=\'button\' value=\'出勤\'>');
$('#syukkin').on('click', clickFunction);
}
}
});
// クリック関数
function clickFunction() {
const id = $(this).attr('id');
switch (id) {
case 'syukkin': syukkin_func(); break;
case 'taikin': taikin_func(); break;
case 'kyuukei': kyuukei_func(); break;
case 'fukki': fukki_func(); break;
}
}
// 出勤関数
function syukkin_func() {
// ルックアップ先のID取得、従業員情報の取得
const applookId = kintone.app.getLookupTargetAppId('社員番号');
const qryInfoSyukkin = 'アカウント名= "' + user.code + '" order by レコード番号 desc limit 1';
const paramsSyukkin = {
app: applookId,
query: qryInfoSyukkin,
fields: [
'社員番号',
'氏名',
'アカウント名'
]
};
kintone.api(kintone.api.url('/k/v1/records', true), 'GET', paramsSyukkin, (resp) => {
// 従業員情報の取得
const employeeNo = resp.records[0]['社員番号'].value;
const employeeName = resp.records[0]['氏名'].value;
const employeeAccount = resp.records[0]['アカウント名'].value;
// 日時取得
const dt = new Date(getUTCDateByServer());
const yyyy = dt.getFullYear();
const MM = zero_suppress(dt.getMonth() + 1, 2);
const dd = zero_suppress(dt.getDate(), 2);
const hh = zero_suppress(dt.getHours(), 2);
const mm = zero_suppress(dt.getMinutes(), 2);
const syukkin_date = yyyy + '-' + MM + '-' + dd;
const syukkin_time = hh + ':' + mm;
const body = {
app: appId,
record: {
社員番号: {
value: employeeNo
},
氏名: {
value: employeeName
},
アカウント名: {
value: employeeAccount
},
日付: {
value: syukkin_date
},
出勤: {
value: syukkin_time
}
}
};
// 出退勤アプリにrecord登録
kintone.api(kintone.api.url('/k/v1/record', true), 'POST', body).then(location.reload());
});
}
// 休憩関数
function kyuukei_func() {
// レコード取得
const qryInfoKyuukei = 'アカウント名 = "' + user.code + '" order by レコード番号 desc limit 1';
const paramsKyuukei = {
app: appId,
query: qryInfoKyuukei,
fields: ['レコード番号']
};
kintone.api(kintone.api.url('/k/v1/records', true), 'GET', paramsKyuukei, (resp) => {
// 従業員情報の取得
const employeeRecId = resp.records[0]['レコード番号'].value;
// 日時取得
const dt = new Date(getUTCDateByServer());
const yyyy = dt.getFullYear();
const MM = zero_suppress(dt.getMonth() + 1, 2);
const dd = zero_suppress(dt.getDate(), 2);
const hh = zero_suppress(dt.getHours(), 2);
const mm = zero_suppress(dt.getMinutes(), 2);
const kyuukei_starttime = yyyy + '-' + MM + '-' + dd + 'T' + hh + ':' + mm + ':00+09:00';
const body = {
app: appId,
id: employeeRecId,
record: {
休憩中: {
value: ['休憩中']
},
休憩開始: {
value: kyuukei_starttime
}
}
};
// レコード更新へ
kintone.api(kintone.api.url('/k/v1/record', true), 'PUT', body).then(location.reload());
});
}
// 復帰関数
function fukki_func() {
// レコード取得
const qryInfoFukki = 'アカウント名 = "' + user.code + '" order by レコード番号 desc limit 1';
const paramsFukki = {
app: appId,
query: qryInfoFukki,
fields: [
'レコード番号',
'休憩開始',
'休憩'
]
};
kintone.api(kintone.api.url('/k/v1/records', true), 'GET', paramsFukki, (resp) => {
// 従業員情報の取得
const employeeRecId = resp.records[0]['レコード番号'].value;
const kyuukei_starttime = resp.records[0]['休憩開始'].value;
let kyuukei_time_total = resp.records[0]['休憩'].value;
// 日時取得
const dt = new Date(getUTCDateByServer());
const yyyy = dt.getFullYear();
const MM = zero_suppress(dt.getMonth() + 1, 2);
const dd = zero_suppress(dt.getDate(), 2);
const hh = zero_suppress(dt.getHours(), 2);
const mm = zero_suppress(dt.getMinutes(), 2);
const kyuukei_endtime = yyyy + '-' + MM + '-' + dd + 'T' + hh + ':' + mm + ':00+09:00';
const ST = new Date(kyuukei_starttime);
const ET = new Date(kyuukei_endtime);
let kyuukei_time;
if (ET - ST !== 0) {
kyuukei_time = Math.round((ET - ST) / (1000 * 60));
} else {
kyuukei_time = 0;
} // 分を表す
kyuukei_time_total = String(Number(kyuukei_time_total) + Number(kyuukei_time)); // 休憩時間トータル
const body = {
app: appId,
id: employeeRecId,
record: {
休憩中: {
value: []
},
休憩開始: {
value: null
},
休憩: {
value: kyuukei_time_total
}
}
};
// レコード更新へ
kintone.api(kintone.api.url('/k/v1/record', true), 'PUT', body).then(location.reload());
});
}
// 退勤関数
function taikin_func() {
// レコード取得
const qryInfotTaikin = 'アカウント名 = "' + user.code + '" order by レコード番号 desc limit 1';
const paramsTaikin = {
app: appId,
query: qryInfotTaikin,
fields: [
'レコード番号',
'日付',
'出勤',
'休憩'
]
};
kintone.api(kintone.api.url('/k/v1/records', true), 'GET', paramsTaikin, (resp) => {
// 従業員情報の取得
const employeeRecId = resp.records[0]['レコード番号'].value;
const syukkin_day = resp.records[0]['日付'].value;
const syukkin_time = resp.records[0]['出勤'].value;
const kyuukei_time_total = resp.records[0]['休憩'].value;
// 日時取得
const dt = new Date(getUTCDateByServer());
const yyyy = dt.getFullYear();
const MM = zero_suppress(dt.getMonth() + 1, 2);
const dd = zero_suppress(dt.getDate(), 2);
const hh = zero_suppress(dt.getHours(), 2);
const mm = zero_suppress(dt.getMinutes(), 2);
const taikin_time = hh + ':' + mm;
const syukkin_daytime = syukkin_day + 'T' + syukkin_time + ':00+09:00';
const taikin_daytime = yyyy + '-' + MM + '-' + dd + 'T' + taikin_time + ':00+09:00';
const ST = new Date(syukkin_daytime);
const TT = new Date(taikin_daytime);
let kousoku_time;
if (TT - ST !== 0) {
kousoku_time = Math.round((TT - ST) / (1000 * 60));
} else {
kousoku_time = 0;
}
const jitsudou_time = Number(kousoku_time) - Number(kyuukei_time_total);
const body = {
app: appId,
id: employeeRecId,
record: {
退勤: {
value: taikin_time
},
拘束時間: {
value: kousoku_time
},
実働時間: {
value: jitsudou_time
}
}
};
// レコード更新へ
console.log('出勤' + syukkin_time);
console.log('退勤' + taikin_time);
console.log('拘束時間' + String(kousoku_time));
console.log('実働時間' + String(jitsudou_time));
kintone.api(kintone.api.url('/k/v1/record', true), 'PUT', body).then(location.reload());
});
}
// 1000ミリ秒ごとにset_digitTime()を繰り返す
set_digitTime();
setInterval(set_digitTime, 1000);
});
// レコード編集画面を開いた際に、時刻フィールドは閲覧Onlyになるように
// イベントハンドラ実行
kintone.events.on('app.record.edit.show', (resp) => {
resp.record['休憩'].disabled = true;
return resp;
});
})();
|