Javascript代码的放置

Javascript代码的放置,javascript,google-apps-script,google-sheets,Javascript,Google Apps Script,Google Sheets,这是一个脚本,我有一个谷歌电子表格。除了最后两行代码外,它都可以工作。我不知道该把他们放在哪里工作。我知道他们是正确的,只是我猜他们不在正确的位置 function doStuff() { var ss = SpreadsheetApp.getActiveSheet(); var starting_row = 2; // starting row to scan for part# on column C // outer loop, loop over products so

这是一个脚本,我有一个谷歌电子表格。除了最后两行代码外,它都可以工作。我不知道该把他们放在哪里工作。我知道他们是正确的,只是我猜他们不在正确的位置

 function doStuff() {
  var ss = SpreadsheetApp.getActiveSheet();

  var starting_row = 2; // starting row to scan for part# on column C

  // outer loop, loop over products sold
  for (var j=6;j<=16;j++) {
    var r = ss.getRange(j,2);
    // read inventory part number entered
    var partnum = r.getValue();
    if (!partnum) {
      continue; // attempt to skip over empty rows in the B6:B16 range
    }
    var partcount = parseInt(ss.getRange(j,1).getValue());
    if (isNaN(partcount) || partcount<=0) {
      // invalid quantity. skip.
      continue;
    }

//  Browser.msgBox("partnum = "+partnum);

    // get list of known part # from the spreadsheet
    var parts = ss.getRange(starting_row,3,9999,1).getValues();
    var found = false;
    for (var i=0,l=parts.length;i<l;++i) {
      if (parts[i]==partnum) {
        // we have found our part. grab inventory count cell.
        found = true;
        var count = ss.getRange(starting_row+i,1).getValue();
        if (count-partcount<0) {
          Browser.msgBox("Error: Inventory for part "+partnum+", is "+count);
        } else {
          // write back the count number for that part, decremented by 1.
          ss.getRange(starting_row+i,1).setValue(count-partcount);
//          Browser.msgBox("Inventory updated.");
        }
        break; // either way, we're done with that part.
      }
    }
    if (!found) {
      Browser.msgBox("Part# "+partnum+" not found.");

**//I'm not sure where to place these next two lines. Everything else works but them. The    code is correct just not the placement.        
 SpreadsheetApp.getActiveSpreadsheet().toast("Hello", "world?", 3);  
 SpreadsheetApp.getActiveSheet().getRange(6, 1, 10, 1).clear({contentsOnly:true});**  
    }
  }

}
函数doStuff(){
var ss=SpreadsheetApp.getActiveSheet();
var start_row=2;//开始扫描C列上的部分#的行
//外环、外环产品销售

对于(var j=6;j它们是否应该在
if
块中?可以尝试将它们放在最后一个
}

我不熟悉谷歌电子表格,所以这完全是我的猜测。只是在
if
块中似乎不正确

由此:

        if (!found) {
            Browser.msgBox("Part# " + partnum + " not found.");
            SpreadsheetApp.getActiveSpreadsheet().toast("Hello", "world?", 3);
            SpreadsheetApp.getActiveSheet().getRange(6, 1, 10, 1).clear({
                contentsOnly: true
            });
        }
    }

}
也许是这样:

        if (!found) {
            Browser.msgBox("Part# " + partnum + " not found.");

        }
    }
    SpreadsheetApp.getActiveSpreadsheet().toast("Hello", "world?", 3);
    SpreadsheetApp.getActiveSheet().getRange(6, 1, 10, 1).clear({
        contentsOnly: true
    });
}