ken_nogi/pleasanter/develop/#リフォームラボ/■イオン多摩平シフト希望/sites/serverscripts/選択年月リスト作成.js
Kenichiro NOGI 7176dc33ec pleasanter
2025-07-10 10:15:35 +09:00

27 lines
663 B
JavaScript

/*
@config : next999.json
@filename : ${psFileBasename}
@title : 選択年月リスト作成
@name : 選択年月リスト作成
@siteIds : 310514
@siteTitles : イオン多摩平シフト希望
@disabled: false
*/
try {
//年月を当月から3ヶ月後まで自動表示
let now = new Date();
for (let i = 0; i < 3; i++) {
let date = new Date(now.getFullYear(), now.getMonth() + i, 1);
let year = date.getFullYear();
let month = (date.getMonth() + 1).toString().padStart(2, '0');
let ym = year + '年' + month + '月';
columns.ClassA.AddChoiceHash(ym, ym);
}
} catch (e) {
context.Log(e.stack);
}