This file contains hidden or 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
const SHEET_NAME = "Копилка челлендж"; | |
const TABLE_RANGE = "A2:E27"; | |
const SHEET = SpreadsheetApp.getActiveSpreadsheet().getSheetByName(SHEET_NAME); | |
const PAYMENT_MESSAGES = { | |
0: "Напоминалка: сегодня тебе надо внести %amount₽ в копилку для челленджа", | |
1: "Напоминалка: завтра тебе надо внести %amount₽ в копилку для челленджа", | |
} | |
class Payment { | |
constructor(date, week, amount, paid) { |