This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @ts-nocheck | |
// 障害対応ドキュメントの作成 | |
function fileCreate(){ | |
try{ | |
//ファイル名に挿入する日付部分を取得 | |
var date = new Date(); | |
date.setDate(date.getDate()); | |
var formattedDate = Utilities.formatDate(date, "JST", "yyyyMMdd"); | |
//ファイル名に挿入する障害概要を取得 |