質問編集履歴

1

ソースコードの改訂(無関係な箇所のコメント化)

2021/04/18 03:19

投稿

euqina_sk
euqina_sk

スコア11

test CHANGED
File without changes
test CHANGED
@@ -218,36 +218,36 @@
218
218
 
219
219
 
220
220
 
221
- if(Date.prototype.isPrototypeOf(delivery_date)){
222
-
223
- delivery_date = Utilities.formatDate(delivery_date, "JST", "MM/dd");
221
+ // if(Date.prototype.isPrototypeOf(delivery_date)){
222
+
223
+ // delivery_date = Utilities.formatDate(delivery_date, "JST", "MM/dd");
224
+
225
+ // } //こちらについては今回のエラーには関係ないため、一旦コメント化させていただきます。
226
+
227
+
228
+
229
+ //taskListの生成
230
+
231
+
232
+
233
+ taskList = taskList + "【" + status + "】" + "\n◆担当:" + charge + " ◆納期:" + delivery_date + "\n顧客名:" + customer + "(" + number + ")" + "\n会場:" + place + " 総額:" + price + "円\n商品:" + item + "\n保管:" + storage + "\n\n";
234
+
235
+
224
236
 
225
237
  }
226
238
 
227
239
 
228
240
 
229
- //taskListの生成
230
-
231
-
232
-
233
- taskList = taskList + "【" + status + "】" + "\n◆担当:" + charge + " ◆納期:" + delivery_date + "\n顧客名:" + customer + "(" + number + ")" + "\n会場:" + place + " 総額:" + price + "円\n商品:" + item + "\n保管:" + storage + "\n\n";
234
-
235
-
241
+ //最終的な出力の生成
242
+
243
+ output.push([a[i][0],String(a[i][3]) + "\n" + today + "時点の未解決案件はありません。ありがとうございます。"])
244
+
245
+ } else {
246
+
247
+ output.push([a[i][0],String(a[i][3]) + "\n" + today + "時点の未解決案件リストです。\n*各案件への進捗報告、お願い致します。*\n========\n" + "```\n" + taskList + "```\n"]);
236
248
 
237
249
  }
238
250
 
239
-
240
-
241
- //最終的な出力の生成
242
-
243
- output.push([a[i][0],String(a[i][3]) + "\n" + today + "時点の未解決案件はありません。ありがとうございます。"])
244
-
245
- } else {
246
-
247
- output.push([a[i][0],String(a[i][3]) + "\n" + today + "時点の未解決案件リストです。\n*各案件への進捗報告、お願い致します。*\n========\n" + "```\n" + taskList + "```\n"]);
248
-
249
- }
250
-
251
251
  }
252
252
 
253
253
  //Logger.log(output);