如何使用Google App脚本在任务列表中查找特定日期的任务

时间:2019-04-11 07:32:04

标签: google-apps-script google-tasks-api

我正在使用已安装的Google表格的编辑触发器来创建Google任务。但是,当对包含已作为任务创建的任务的行进行编辑时,则会在同一天创建重复的任务。

我想在给定列表中找到具有特定截止日期的所有任务。然后,我将能够检查它们的标题,并与将要创建的任务的标题进行比较,以便脚本可以决定是应该创建新任务还是更新现有任务。

这是我当前的触发代码:

function addTask(event){
  if (spreadsheet.getActiveSheet().getName() === "Task List") {
    var RowNum = event.range.getRow();
    var taskproperties = spreadsheet.getActiveSheet().getRange(RowNum, 1, 1, 5).getValues();

    var Title = taskproperties[0][1];
    var Frequency = taskproperties[0][2];
    var StartDate = taskproperties[0][3];
    var Recurrence = taskproperties[0][4];
    if (Title.trim().length !== 0 && Frequency.trim().length !== 0 &&
        StartDate.toString().trim().length !== 0 && Recurrence.toString().trim().length !== 0)
    {
      //Code to Create a new task
      //Code Get the task date                              
      //Some codes to set Date parameters for use in script functions
      //Some codes to set Date parameters for use in sheet functions
      //Set the task parameters
      //add task to list
      //--------------------------------------------------------------

      //Assign a cell in the spreadsheet for calculation of new dates for recurring task            
      var tempdatecell= spreadsheet.getSheetByName("Task List").getRange("F1")

      //Insert new tasks based on the number of recurrence
      for (i = 1; i < Recurrence; i++) {
        //Insert a formula in a cell the spreadsheet to calculate the new task date
        tempdatecell.setFormula('=WORKDAY.INTL("' + shTaskStartDate + '",' + i + '*VLOOKUP("' + Frequency + '",tasktype,2,false),"1000011")')

        //Get task date from the cell                  
        TaskDate = tempdatecell.getValue()

        //Date parameters for use in script functions                  
        var TaskDate = new Date(TaskDate);
        var taskmonth = Number(TaskDate.getMonth()) 
        var taskDay = TaskDate.getDate() + 1
        var taskyear = TaskDate.getYear()

        //Create a new task
        var task = Tasks.newTask();

        //Set the task parameters
        task.title = Title;
        task.due = new Date(taskyear, taskmonth, taskDay).toISOString()

        //add task to list
        task = Tasks.Tasks.insert(task, tasklistID);
      }

      tempdatecell.clearContent()
    }
  }  
}

2 个答案:

答案 0 :(得分:0)

您可以考虑将脚本写入指示任务状态的另一个单元格(可能在另一列中),例如 added updated ,然后写入一个条件语句,它检查该单元格以确定如何处理它。这是一个非常模糊的答案,但是正如Tanaike在他们的评论中所说,“提供您当前的脚本”或它的通用版本,我们可以提供更大的帮助。

答案 1 :(得分:0)

我设法找到一种解决方法,其中涉及过滤整个任务列表。似乎可以找到我现在要做的几个任务。我不确定它将如何处理大量任务。欢迎进一步的贡献。

我在变通方法中使用的代码如下,并替换了下面的行//在原始代码中创建一个新任务:-

library(tidyr)
library(ggplot2)

df_long <- df %>% gather(X1:X6, key = "Month", value = "Rainfall")
ggplot(df_long, aes(x = Month, y = Rainfall, group = Group, shape = Group)) +
  geom_line() +
  geom_point() +
  theme(legend.position = "bottom")

注意:-setStatus不能按预期工作,但是我将为此发布一个单独的问题。