Skip to content

Commit

Permalink
Adding boolean cells to sample.js for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
jrohland committed May 2, 2023
1 parent f0a75bf commit 4572571
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sample.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,12 @@ function generateWorkbook() {
invoiceWS.row(24).setHeight(20);
invoiceWS.cell(24, 4, 25, 4, true).string('USD TOTAL').style(medText);
invoiceWS.cell(24, 5, 25, 5, true).formula('SUM(E22:E23)').style(medText).style(currencyStyle);

invoiceWS.cell(27, 4).string('Invoice Paid?').style(medText);
invoiceWS.cell(27, 5).bool(false)

invoiceWS.cell(28, 4).string('Invoice Due?').style(medText);
invoiceWS.cell(28, 5).bool(true)
/*****************************************
* END Create a sample invoice
*****************************************/
Expand Down

0 comments on commit 4572571

Please sign in to comment.