Google App Maker-将数据从外部数据库导出到电子表格模板中的特定单元格

时间:2019-03-07 17:38:18

标签: mysql google-apps-script google-sheets google-app-maker external-data-source

我正在尝试导出数据,或者在这种情况下,我想从我的外部数据库中获取数据,并使用该数据立即将电子表格模板编辑到特定单元格列表中。应该注意的是,我本人是基于App Maker电子表格示例。

这是我当前的用户界面。 enter image description here

这是我使用 onClick 作为生成按钮

的客户端脚本

//------------------to call server script
function generate_NC(idnc){
  google.script.run.queryNC_Excel(idnc);
  updateCellValue();
}


//function for button
function GenerateExcel_NC(button) {
  var popup = button.root;
  //popup.visible = false;
    
  var descendants = popup.descendants;
  
  //input value of dropdown 
  var idnc = descendants.id_nc_excel.value.id_nc;  

  console.log(idnc);
  generate_NC(idnc);
  //resetFields_NC(descendants);
}

我修改了电子表格示例的onPageAttach函数,将 SelectedCell 值替换为具有所有需要编辑的所有单元格的数组(不知道这是否可行)

function onPageAttach(page) {
  var props = page.properties;

  props.SpreadsheetId = SAMPLE_SPREADSHEET_ID;
  props.Sheets = null;  
  props.SelectedCell = ['Y4','V6','G11','P11','B19','N19','U19','M24','U24','B28','B44','D51','J51','T51','AB51','N53','P55','T55','W55','B58'];
}

当前,我正在使用下面的服务器脚本来调用我的外部数据库的数据,具体取决于下拉菜单的选定值。

这是用于从模型获取数据的服务器代码

//------------------------
//function to set value of GLOBAL variable idnc_global with the dropdwon value
function queryNC_Excel(idnc){
  console.log('Getting id nc...');
  idnc_global = idnc;
  console.log(idnc_global);
}


//used to query model
function calculateNoConformidadExcelModel_(query) {
  console.log('Fetching data from no_conformidad with id_nc table for Calculated Model...');

  var queryStr = 'SELECT * FROM no_conformidad WHERE id_nc ='+idnc_global+'';

  var calcRecords = [];
  var connection = getJDBCConnection_();
  var statement = connection.prepareStatement(queryStr);


  try {
    var results = statement.executeQuery();

    while (results.next()) {
      var calcRecord = app.models.NoConformidad.newRecord();
      calcRecord.id_nc = results.getString(1);
      id_no_conformidad = calcRecord.id_nc;
      
      calcRecord.fecha_nc = new Date(results.getString(2));    
      
      
      calcRecord.tipo_nc = results.getString(3);
      calcRecord.productoservicio_nc = results.getString(4);
      calcRecord.detectado_nc = results.getString(5);
      calcRecord.clasificacion_nc = results.getString(6);
      calcRecord.descripcion_nc = results.getString(7);
      calcRecord.solucion_nc = results.getString(8);
      calcRecord.decision_tomada_nc = results.getString(9);
      calcRecord.nom_responsable_nc = results.getString(10);
      calcRecord.tomar_accion_nc = results.getString(11);
      calcRecord.razon = results.getString(12);
      calcRecord.Proceso_id_proceso = results.getInt(13);
      calcRecord.accion_correctiva_id_ac = results.getString(14);
      calcRecords.push(calcRecord);
    }

    results.close();
    statement.close();
  } catch (err) {
    console.error('Unable to fetch data for Calculated Model: ' + err);
  }

  return calcRecords;
}

我想知道电子​​表格示例的功能updateCellValue()(客户端脚本),setCellValue()(服务器脚本)和getRange_()应如何设置以将值设置为多个单元格立刻。我应该将数组中的所有单元格声明为上面的onPageAttach()函数的代码段中所发布的还是其他方法?

0 个答案:

没有答案