我需要创建一张与图片中的表格相等的表格,我将数据安排在其中
我只能设法创建简单的表。
示例数据数组以及到目前为止的代码:
employees=[{
'factor':'Clientes',
'caracteristica':'Tipo de Persona',
'descripcion':'Posibilidad de que las personas naturales, juridicas..'
},{
'factor':'Clientes',
'caracteristica':'Tipo de Regimen',
'descripcion':'Posibilidad de que los clientes incluidos...'
},{
'factor':'Clientes',
'caracteristica':'Actividad Economica',
'descripcion':'Posibilidad de que los clientes...'
},{
'factor':'Productos y/o Servicios',
'caracteristica':'Servicios',
'descripcion':'Posibilidad de que los distintos servicios ofrecidos '
},{
'factor':'Productos y/o Servicios',
'caracteristica':'Canales de distribucion',
'descripcion':'Posibilidad de que los canales....'
},{
'factor':'Zona Geografica',
'caracteristica':'Zona de Frontera',
'descripcion':'Presencia en Zonas de frontera con incidencias............'
},{
'factor':'Zona Geografica',
'caracteristica':'Zona de Produccion de Hoja de Coca',
'descripcion':'Presencia en Zonas para la produccion de hoja de coca.........'
},{
'factor':'Zona Geografica',
'caracteristica':'Zona de Minera',
'descripcion':'Presencia en Zonas con actividades...'
}];
function funcion2(employees) {
var doc = DocumentApp.openById('some id');
var nombre = ''
var body = doc.getBody();
var header = body.appendParagraph("Anexo 01");
header.setAlignment(DocumentApp.HorizontalAlignment.CENTER)
.editAsText().setFontSize(12);
var header2 = body.appendParagraph("IDENTIFICACIÓN DE LOS RIESGOS DE LAFT Y RIESGOS ASOCIADOS");
header2.setAlignment(DocumentApp.HorizontalAlignment.CENTER);
body.appendParagraph("");
var section = body.appendParagraph("Para identificar los riesgos de LAFT y riesgos asociados, de acuerdo con la clasificación y caracterización " + nombre + "-" + descripcion);
section.setAlignment(DocumentApp.HorizontalAlignment.JUSTIFY);
body.appendParagraph("");
var tableCliente = body.appendTable();
var tr1 = tableCliente.appendTableRow();
var tb = tr1.appendTableCell("CLIENTE").setBackgroundColor("#84cdff");
var table = body.appendTable();
for (var i = 0; i < employees.length; i++) {
if (employees[i].factor == "CLIENTES") {
var tr=table.appendTableRow();
var tb = tr.appendTableCell(employees[i].caracteristica).setWidth(90);
var tb = tr.appendTableCell(employees[i].descripcion);
}
}
}
答案 0 :(得分:0)
我不确定您为什么要使用脚本来执行此操作。我认为在页面编辑器中创建表要简单得多。
脚本选项
OP希望通过脚本创建一个表 ,该表的功能是第一列中某些“公共”单元的合并。 OP的代码一直到该表的标题为止。
在Google文档中创建表时,没有太多资源可以使用资源。此外,很明显,对表的引用强调了“行”方面,并且基于列的事件/命令供不应求。
构建表内容有两个选择。在这段代码中,我遵循了OP遍历对象并逐步用内容更新表的方法。一种替代方法是建立一个新数组,然后以与Google Class Table documentation中描述的几乎相同的方式从该数组构建表。
employees = [{
'factor': 'Clientes',
'caracteristica': 'Tipo de Persona',
'descripcion': 'Posibilidad de que las personas naturales, juridicas..'
}, {
'factor': 'Clientes',
'caracteristica': 'Tipo de Regimen',
'descripcion': 'Posibilidad de que los clientes incluidos...'
}, {
'factor': 'Clientes',
'caracteristica': 'Actividad Economica',
'descripcion': 'Posibilidad de que los clientes...'
}, {
'factor': 'Productos y/o Servicios',
'caracteristica': 'Servicios',
'descripcion': 'Posibilidad de que los distintos servicios ofrecidos '
}, {
'factor': 'Productos y/o Servicios',
'caracteristica': 'Canales de distribucion',
'descripcion': 'Posibilidad de que los canales....'
}, {
'factor': 'Zona Geografica',
'caracteristica': 'Zona de Frontera',
'descripcion': 'Presencia en Zonas de frontera con incidencias............'
}, {
'factor': 'Zona Geografica',
'caracteristica': 'Zona de Produccion de Hoja de Coca',
'descripcion': 'Presencia en Zonas para la produccion de hoja de coca.........'
}, {
'factor': 'Zona Geografica',
'caracteristica': 'Zona de Minera',
'descripcion': 'Presencia en Zonas con actividades...'
}];
function so5501193401() {
//define header cell style which we will use while adding cells in header row
//Background color, text bold, white
var headerStyle = {};
headerStyle[DocumentApp.Attribute.BACKGROUND_COLOR] = '#84cdff';
headerStyle[DocumentApp.Attribute.BOLD] = true;
headerStyle[DocumentApp.Attribute.FOREGROUND_COLOR] = '#FFFFFF';
//Style for the cells other than header row
var cellStyle = {};
cellStyle[DocumentApp.Attribute.BOLD] = false;
cellStyle[DocumentApp.Attribute.FOREGROUND_COLOR] = '#000000';
//By default, each paragraph had space after, so we will change the paragraph style to add zero space
//we will use it later
var paraStyle = {};
paraStyle[DocumentApp.Attribute.SPACING_AFTER] = 0;
paraStyle[DocumentApp.Attribute.LINE_SPACING] = 1;
//setup the document reference
var docid = "<<insert document id as a string>>";
var doc = DocumentApp.openById(docid);
var body = doc.getBody();
// build the document introduction
var header = body.appendParagraph("Anexo 01");
header.setAlignment(DocumentApp.HorizontalAlignment.CENTER).editAsText().setFontSize(12);
var header2 = body.appendParagraph("IDENTIFICACIÓN DE LOS RIESGOS DE LAFT Y RIESGOS ASOCIADOS");
header2.setAlignment(DocumentApp.HorizontalAlignment.CENTER);
body.appendParagraph("");
var section = body.appendParagraph("Para identificar los riesgos de LAFT y riesgos asociados, de acuerdo con la clasificación y caracterización");
section.setAlignment(DocumentApp.HorizontalAlignment.JUSTIFY);
body.appendParagraph("");
// variables for the loop
var factortext = "";
var factorcounter = 0
// build the header row of the table
var table = body.appendTable();
var tr = table.appendTableRow();
var col1title = "Factores de riesgo";
var col2title = "Caracteristica";
var col3title = "Descripcion del Riesgo de LAFT";
var th = tr.appendTableCell(col1title);
th.setAttributes(headerStyle);
var th = tr.appendTableCell(col2title);
th.setAttributes(headerStyle);
var th = tr.appendTableCell(col3title);
th.setAttributes(headerStyle);
// create a loop to work through the 'employees' object
for (var i = 0; i < employees.length; i++) {
// add a row and define the cell contents
var tr = table.appendTableRow();
var factorname = employees[i].factor;
var caraname = employees[i].caracteristica;
var descname = employees[i].descripcion;
//establish if this is the first row or not
if (factorcounter != 0) {
// Logger.log("DEBUG: i: "+i+", record#"+(i+1));//DEBUG
var factorname = employees[i].factor;
// Logger.log("DEBUG: factor: "+factorname);//DEBUG
// establish if this is the continuation or beginning of a new factor group
if (factortext != factorname) { // this is a new group
var td = tr.appendTableCell(factorname);
td.setAttributes(cellStyle);
} else {
var td = tr.appendTableCell("");
}
factortext = factorname;
}
// establish if this is the first row of the table
if (factorcounter == 0) {
// Logger.log("DEBUG: i: "+i+", record#1");//DEBUG
var factorname = employees[i].factor;
factortext = factorname;
//Logger.log("DEBUG: factor: "+factorname);//DEBUG
var td = tr.appendTableCell(factorname);
td.setAttributes(cellStyle);
}
// increment the factor counter
factorcounter++;
// insert the characttics and description
var td = tr.appendTableCell(caraname);
td.setAttributes(cellStyle);
var td = tr.appendTableCell(descname);
td.setAttributes(cellStyle);
}
}
文档截图