gpt4 book ai didi

javascript - 如何在 jspdf autotable 中的列标题和行之间添加字段名称作为第一行?

转载 作者:搜寻专家 更新时间:2023-10-30 21:44:49 25 4
gpt4 key购买 nike

我需要使用 jspdf 打印发票..im,但我需要在 col 标题和行之间添加一个字段作为医生姓名和部门名称..在 jspdf 中是否可行?

demo img

  let col=['Item','Unit','Amt','Discnt','Net Amt','Vat%','VatAmt','Total']; 
// initialization for headers
let title = "INVOICE" // title of report
for(let i=0;i <this.itemForPrint.length;i++)
{
row.push(this.itemForPrint[i].itemName);
row.push(this.itemForPrint[i].unit);
row.push(this.itemForPrint[i].rate);
row.push(this.itemForPrint[i].insDiscount);
row.push(this.itemForPrint[i].amount);
rowD.push(row);
}
this.getReport(col , rowD , title );
}
getReport(col: any[], rowD: any[], title: any)
{
var pageContent = function (data) {
// HEADER

// FOOTER
var gdate = "Generated on : "+formatDate(new Date(), 'dd/MM/yyyy',
'en');
var str = "Page " + data.pageCount;
// Total page number plugin only available in jspdf v1.0+
if (typeof pdf.putTotalPages === 'function') {
str = str + " of " + totalPagesExp;
}
pdf.setFontSize(10);
var pageHeight = pdf.internal.pageSize.height ||
pdf.internal.pageSize.getHeight();
pdf.text(gdate,40, pageHeight - 30);
pdf.text(str,500, pageHeight - 30); // showing current page number
};
pdf.autoTable(col, rowD,
{ addPageContent: pageContent,

margin: { top: 200 },

});

最佳答案

对于您的示例,我将包括一个空行,我使用 minCellHeight 手动设置高度并将 colspan 设置为等于总列数。然后我会使用 didDrawCell 钩子(Hook)来手动绘制标题。

关于javascript - 如何在 jspdf autotable 中的列标题和行之间添加字段名称作为第一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57356954/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com