1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/public/js/pdf.pdfmake.js

706 lines
24 KiB
JavaScript
Raw Normal View History

2015-05-22 09:22:24 +02:00
var NINJA = NINJA || {};
2015-07-21 20:51:56 +02:00
NINJA.TEMPLATES = {
CLEAN: "1",
BOLD:"2",
MODERN: "3",
NORMAL:"4",
BUSINESS:"5",
CREATIVE:"6",
ELEGANT:"7",
HIPSTER:"8",
PLAYFUL:"9",
PHOTO:"10"
};
function GetPdfMake(invoice, javascript, callback) {
javascript = NINJA.decodeJavascript(invoice, javascript);
2015-10-01 22:02:22 +02:00
function jsonCallBack(key, val) {
// handle custom functions
if (typeof val === 'string') {
if (val.indexOf('$firstAndLast') === 0) {
var parts = val.split(':');
return function (i, node) {
return (i === 0 || i === node.table.body.length) ? parseFloat(parts[1]) : 0;
};
} else if (val.indexOf('$none') === 0) {
return function (i, node) {
return 0;
};
} else if (val.indexOf('$notFirstAndLastColumn') === 0) {
var parts = val.split(':');
return function (i, node) {
return (i === 0 || i === node.table.widths.length) ? 0 : parseFloat(parts[1]);
};
} else if (val.indexOf('$notFirst') === 0) {
var parts = val.split(':');
return function (i, node) {
return i === 0 ? 0 : parseFloat(parts[1]);
};
} else if (val.indexOf('$amount') === 0) {
var parts = val.split(':');
return function (i, node) {
return parseFloat(parts[1]);
};
} else if (val.indexOf('$primaryColor') === 0) {
var parts = val.split(':');
return NINJA.primaryColor || parts[1];
} else if (val.indexOf('$secondaryColor') === 0) {
var parts = val.split(':');
return NINJA.secondaryColor || parts[1];
}
2015-07-21 20:51:56 +02:00
}
2015-05-22 09:22:24 +02:00
// only show the header on the first page
// and the footer on the last page
if (key === 'header') {
return function(page, pages) {
return page === 1 ? val : '';
}
} else if (invoice.is_pro && key === 'footer') {
2015-11-02 23:05:28 +01:00
return function(page, pages) {
return page === pages ? val : '';
}
}
2015-10-01 22:02:22 +02:00
// check for markdown
if (key === 'text') {
val = NINJA.parseMarkdownText(val, true);
}
2015-11-09 15:53:18 +01:00
2015-10-01 22:02:22 +02:00
/*
if (key === 'stack') {
val = NINJA.parseMarkdownStack(val);
val = NINJA.parseMarkdownText(val, false);
}
*/
2015-07-21 20:51:56 +02:00
return val;
}
2015-05-22 09:22:24 +02:00
2015-07-21 20:51:56 +02:00
2015-10-01 22:02:22 +02:00
// Add ninja logo to the footer
2015-07-21 20:51:56 +02:00
var dd = JSON.parse(javascript, jsonCallBack);
2015-09-20 23:05:02 +02:00
var designId = invoice.invoice_design_id;
if (!invoice.is_pro) {
if (designId == NINJA.TEMPLATES.CLEAN || designId == NINJA.TEMPLATES.NORMAL) {
dd.footer.columns.push({image: logoImages.imageLogo1, alignment: 'right', width: 130, margin: [0, 0, 0, 0]})
} else if (designId == NINJA.TEMPLATES.BOLD) {
dd.footer[1].columns.push({image: logoImages.imageLogo2, alignment: 'right', width: 130, margin: [0, -20, 20, 0]})
} else if (designId == NINJA.TEMPLATES.MODERN) {
dd.footer[1].columns[0].stack.push({image: logoImages.imageLogo3, alignment: 'left', width: 130, margin: [40, 6, 0, 0]});
}
2015-07-24 16:13:17 +02:00
}
2015-12-17 09:19:56 +01:00
2016-01-07 08:08:30 +01:00
pdfMake.fonts = {}
fonts = window.invoiceFonts || invoice.invoice_fonts;
// Add only the loaded fonts
$.each(fonts, function(i,font){
addFont(font);
});
function addFont(font){
if(window.ninjaFontVfs[font.folder]){
pdfMake.fonts[font.name] = {
normal: font.folder+'/'+font.normal,
italics: font.folder+'/'+font.italics,
bold: font.folder+'/'+font.bold,
bolditalics: font.folder+'/'+font.bolditalics
}
}
}
if(!dd.defaultStyle)dd.defaultStyle = {font:NINJA.bodyFont};
else if(!dd.defaultStyle.font)dd.defaultStyle.font = NINJA.bodyFont;
2015-06-03 19:55:48 +02:00
2015-05-19 21:14:00 +02:00
doc = pdfMake.createPdf(dd);
doc.save = function(fileName) {
this.download(fileName);
};
2015-11-03 12:20:49 +01:00
2015-05-19 21:14:00 +02:00
return doc;
2015-04-13 08:02:33 +02:00
}
2015-05-22 09:22:24 +02:00
2015-07-21 20:51:56 +02:00
NINJA.decodeJavascript = function(invoice, javascript)
{
var account = invoice.account;
var blankImage = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVQYV2NgYAAAAAMAAWgmWQ0AAAAASUVORK5CYII=';
2015-07-24 16:13:17 +02:00
// search/replace variables
2015-07-21 20:51:56 +02:00
var json = {
'accountName': account.name || ' ',
'accountLogo': window.accountLogo || blankImage,
'accountDetails': NINJA.accountDetails(invoice),
'accountAddress': NINJA.accountAddress(invoice),
'invoiceDetails': NINJA.invoiceDetails(invoice),
2015-09-07 11:07:55 +02:00
'invoiceDetailsHeight': (NINJA.invoiceDetails(invoice).length * 16) + 16,
2015-07-21 20:51:56 +02:00
'invoiceLineItems': NINJA.invoiceLines(invoice),
'invoiceLineItemColumns': NINJA.invoiceColumns(invoice),
2015-09-04 09:20:30 +02:00
'quantityWidth': NINJA.quantityWidth(invoice),
2015-09-20 23:05:02 +02:00
'taxWidth': NINJA.taxWidth(invoice),
2015-07-21 20:51:56 +02:00
'clientDetails': NINJA.clientDetails(invoice),
'notesAndTerms': NINJA.notesAndTerms(invoice),
'subtotals': NINJA.subtotals(invoice),
2015-09-07 11:07:55 +02:00
'subtotalsHeight': (NINJA.subtotals(invoice).length * 16) + 16,
2015-07-21 20:51:56 +02:00
'subtotalsWithoutBalance': NINJA.subtotals(invoice, true),
2015-09-07 11:07:55 +02:00
'subtotalsBalance': NINJA.subtotalsBalance(invoice),
'balanceDue': formatMoneyInvoice(invoice.balance_amount, invoice),
2015-09-20 23:05:02 +02:00
'invoiceFooter': NINJA.invoiceFooter(invoice),
2015-07-24 16:13:17 +02:00
'invoiceNumber': invoice.invoice_number || ' ',
2015-07-21 20:51:56 +02:00
'entityType': invoice.is_quote ? invoiceLabels.quote : invoiceLabels.invoice,
2015-07-26 22:05:38 +02:00
'entityTypeUC': (invoice.is_quote ? invoiceLabels.quote : invoiceLabels.invoice).toUpperCase(),
2015-07-21 20:51:56 +02:00
'fontSize': NINJA.fontSize,
'fontSizeLarger': NINJA.fontSize + 1,
2015-07-24 16:13:17 +02:00
'fontSizeLargest': NINJA.fontSize + 2,
2015-12-13 21:12:54 +01:00
'fontSizeSmaller': NINJA.fontSize - 1,
2016-01-07 08:08:30 +01:00
'bodyFont': NINJA.bodyFont,
'headerFont': NINJA.headerFont,
2015-07-21 20:51:56 +02:00
}
for (var key in json) {
2015-09-04 09:20:30 +02:00
// remove trailing commas for these fields
2015-09-20 23:05:02 +02:00
if (['quantityWidth', 'taxWidth'].indexOf(key) >= 0) {
2015-09-04 09:20:30 +02:00
var regExp = new RegExp('"\\$'+key+'",', 'g');
val = json[key];
} else {
var regExp = new RegExp('"\\$'+key+'"', 'g');
var val = JSON.stringify(json[key]);
val = doubleDollarSign(val);
}
2015-07-21 20:51:56 +02:00
javascript = javascript.replace(regExp, val);
}
2015-07-24 16:13:17 +02:00
// search/replace labels
2015-07-26 22:05:38 +02:00
var regExp = new RegExp('"\\$\\\w*?Label(UC)?(:)?(\\\?)?"', 'g');
2015-07-24 16:13:17 +02:00
var matches = javascript.match(regExp);
if (matches) {
for (var i=0; i<matches.length; i++) {
var match = matches[i];
field = match.substring(2, match.indexOf('Label'));
field = toSnakeCase(field);
2015-07-26 22:05:38 +02:00
var value = getDescendantProp(invoice, field);
if (match.indexOf('?') < 0 || value) {
if (invoice.partial && field == 'balance_due') {
field = 'amount_due';
2015-11-28 22:09:53 +01:00
} else if (invoice.is_quote && field == 'your_invoice') {
field = 'your_quote';
}
2015-11-28 22:09:53 +01:00
var label = invoiceLabels[field];
2015-07-26 22:05:38 +02:00
if (match.indexOf('UC') >= 0) {
label = label.toUpperCase();
}
if (match.indexOf(':') >= 0) {
label = label + ':';
}
} else {
label = ' ';
2015-07-24 16:13:17 +02:00
}
javascript = javascript.replace(match, '"'+label+'"');
2015-07-26 22:05:38 +02:00
}
2015-07-24 16:13:17 +02:00
}
// search/replace values
2015-08-07 08:14:29 +02:00
var regExp = new RegExp('"\\$[\\\w\\\.]*?Value"', 'g');
2015-07-24 16:13:17 +02:00
var matches = javascript.match(regExp);
if (matches) {
for (var i=0; i<matches.length; i++) {
var match = matches[i];
field = match.substring(2, match.indexOf('Value'));
field = toSnakeCase(field);
2015-09-17 21:01:06 +02:00
var value = getDescendantProp(invoice, field) || ' ';
2015-08-20 10:02:03 +02:00
value = doubleDollarSign(value);
2015-07-24 16:13:17 +02:00
javascript = javascript.replace(match, '"'+value+'"');
}
}
2015-07-21 20:51:56 +02:00
return javascript;
}
2015-10-01 22:02:22 +02:00
2015-05-22 09:22:24 +02:00
NINJA.notesAndTerms = function(invoice)
2015-04-13 22:45:09 +02:00
{
2015-07-21 20:51:56 +02:00
var data = [];
2015-05-05 11:48:23 +02:00
if (invoice.public_notes) {
2015-10-01 22:02:22 +02:00
data.push({stack:[{text: invoice.public_notes, style: ['notes']}]});
2015-07-21 20:51:56 +02:00
data.push({text:' '});
2015-05-05 11:48:23 +02:00
}
2015-04-13 22:45:09 +02:00
2015-05-05 11:48:23 +02:00
if (invoice.terms) {
2015-07-24 16:13:17 +02:00
data.push({text:invoiceLabels.terms, style: ['termsLabel']});
2015-10-01 22:02:22 +02:00
data.push({stack:[{text: invoice.terms, style: ['terms']}]});
2015-05-05 11:48:23 +02:00
}
2015-04-13 22:45:09 +02:00
2015-07-21 20:51:56 +02:00
return NINJA.prepareDataList(data, 'notesAndTerms');
}
NINJA.invoiceColumns = function(invoice)
{
2015-09-07 11:07:55 +02:00
var account = invoice.account;
var columns = ["15%", "*"];
var count = 3;
if (account.hide_quantity == '1') {
count--;
}
if (account.show_item_taxes == '1') {
count++;
}
for (var i=0; i<count; i++) {
columns.push("14%");
2015-07-21 20:51:56 +02:00
}
2015-09-07 11:07:55 +02:00
return columns;
2015-04-13 22:45:09 +02:00
}
2015-04-13 14:37:42 +02:00
2015-09-20 23:05:02 +02:00
NINJA.invoiceFooter = function(invoice)
{
if (!invoice.is_pro && invoice.invoice_design_id == 3) {
return invoice.invoice_footer ? invoice.invoice_footer.substring(0, 200) : ' ';
} else {
return invoice.invoice_footer || ' ';
}
}
2015-09-04 09:20:30 +02:00
NINJA.quantityWidth = function(invoice)
{
2015-09-07 11:07:55 +02:00
return invoice.account.hide_quantity == '1' ? '' : '"14%", ';
2015-09-04 09:20:30 +02:00
}
2015-09-20 23:05:02 +02:00
NINJA.taxWidth = function(invoice)
{
return invoice.account.show_item_taxes == '1' ? '"14%", ' : '';
}
2015-05-22 09:22:24 +02:00
NINJA.invoiceLines = function(invoice) {
2015-05-05 11:48:23 +02:00
var total = 0;
var shownItem = false;
var hideQuantity = invoice.account.hide_quantity == '1';
2015-09-07 11:07:55 +02:00
var showItemTaxes = invoice.account.show_item_taxes == '1';
2015-05-05 11:48:23 +02:00
var grid = [[
{text: invoiceLabels.item, style: ['tableHeader', 'itemTableHeader']},
2015-10-01 22:02:22 +02:00
{text: invoiceLabels.description, style: ['tableHeader', 'descriptionTableHeader']},
{text: invoiceLabels.unit_cost, style: ['tableHeader', 'costTableHeader']}
]];
if (!hideQuantity) {
grid[0].push({text: invoiceLabels.quantity, style: ['tableHeader', 'qtyTableHeader']});
}
2015-09-07 11:07:55 +02:00
if (showItemTaxes) {
grid[0].push({text: invoiceLabels.tax, style: ['tableHeader', 'taxTableHeader']});
}
grid[0].push({text: invoiceLabels.line_total, style: ['tableHeader', 'lineTotalTableHeader']});
2015-05-05 11:48:23 +02:00
for (var i = 0; i < invoice.invoice_items.length; i++) {
2015-05-05 11:48:23 +02:00
var row = [];
var item = invoice.invoice_items[i];
var cost = formatMoneyInvoice(item.cost, invoice, true);
2015-05-05 11:48:23 +02:00
var qty = NINJA.parseFloat(item.qty) ? roundToTwo(NINJA.parseFloat(item.qty)) + '' : '';
var notes = item.notes;
var productKey = item.product_key;
2015-09-07 11:07:55 +02:00
var tax = '';
2015-07-21 20:51:56 +02:00
2015-09-07 11:07:55 +02:00
if (showItemTaxes) {
if (item.tax && parseFloat(item.tax.rate)) {
tax = parseFloat(item.tax.rate);
} else if (item.tax_rate && parseFloat(item.tax_rate)) {
tax = parseFloat(item.tax_rate);
}
}
2015-05-22 09:22:24 +02:00
// show at most one blank line
2015-12-17 09:19:56 +01:00
if (shownItem && !notes && !productKey && (!cost || cost == '0' || cost == '0.00' || cost == '0,00')) {
2015-05-22 09:22:24 +02:00
continue;
}
2015-07-21 20:51:56 +02:00
2015-05-22 09:22:24 +02:00
shownItem = true;
2015-05-05 11:48:23 +02:00
2015-05-22 09:22:24 +02:00
// process date variables
if (invoice.is_recurring) {
notes = processVariables(notes);
productKey = processVariables(productKey);
}
2015-05-05 11:48:23 +02:00
2015-05-22 09:22:24 +02:00
var lineTotal = roundToTwo(NINJA.parseFloat(item.cost)) * roundToTwo(NINJA.parseFloat(item.qty));
2015-09-07 11:07:55 +02:00
if (showItemTaxes && tax) {
lineTotal += lineTotal * tax / 100;
2015-09-07 11:07:55 +02:00
}
lineTotal = formatMoneyInvoice(lineTotal, invoice);
2015-05-05 11:48:23 +02:00
2015-07-21 20:51:56 +02:00
rowStyle = (i % 2 == 0) ? 'odd' : 'even';
row.push({style:["productKey", rowStyle], text:productKey || ' '}); // product key can be blank when selecting from a datalist
2015-10-01 22:02:22 +02:00
row.push({style:["notes", rowStyle], stack:[{text:notes || ' '}]});
2015-07-21 20:51:56 +02:00
row.push({style:["cost", rowStyle], text:cost});
if (!hideQuantity) {
row.push({style:["quantity", rowStyle], text:qty || ' '});
2015-07-21 20:51:56 +02:00
}
2015-09-07 11:07:55 +02:00
if (showItemTaxes) {
2015-09-17 21:01:06 +02:00
row.push({style:["tax", rowStyle], text:tax ? (tax.toString() + '%') : ' '});
2015-09-07 11:07:55 +02:00
}
2015-07-21 20:51:56 +02:00
row.push({style:["lineTotal", rowStyle], text:lineTotal || ' '});
2015-05-05 11:48:23 +02:00
2015-05-22 09:22:24 +02:00
grid.push(row);
}
2015-07-21 20:51:56 +02:00
return NINJA.prepareDataTable(grid, 'invoiceItems');
2015-05-05 11:48:23 +02:00
}
NINJA.subtotals = function(invoice, hideBalance)
2015-05-05 11:48:23 +02:00
{
if (!invoice) {
return;
2015-04-13 14:37:42 +02:00
}
2015-07-21 20:51:56 +02:00
var account = invoice.account;
var data = [];
data.push([{text: invoiceLabels.subtotal}, {text: formatMoneyInvoice(invoice.subtotal_amount, invoice)}]);
2015-05-19 21:14:00 +02:00
2015-07-21 20:51:56 +02:00
if (invoice.discount_amount != 0) {
data.push([{text: invoiceLabels.discount}, {text: formatMoneyInvoice(invoice.discount_amount, invoice)}]);
2015-04-13 14:37:42 +02:00
}
2015-07-21 20:51:56 +02:00
2015-05-05 11:48:23 +02:00
if (NINJA.parseFloat(invoice.custom_value1) && invoice.custom_taxes1 == '1') {
data.push([{text: account.custom_invoice_label1}, {text: formatMoneyInvoice(invoice.custom_value1, invoice)}]);
2015-05-05 11:48:23 +02:00
}
if (NINJA.parseFloat(invoice.custom_value2) && invoice.custom_taxes2 == '1') {
data.push([{text: account.custom_invoice_label2}, {text: formatMoneyInvoice(invoice.custom_value2, invoice)}]);
2015-05-05 11:48:23 +02:00
}
for (var key in invoice.item_taxes) {
if (invoice.item_taxes.hasOwnProperty(key)) {
var taxRate = invoice.item_taxes[key];
var taxStr = taxRate.name + ' ' + (taxRate.rate*1).toString() + '%';
data.push([{text: taxStr}, {text: formatMoneyInvoice(taxRate.amount, invoice)}]);
}
}
2015-07-21 20:51:56 +02:00
if (invoice.tax && invoice.tax.name || invoice.tax_name) {
2015-08-07 08:14:29 +02:00
var taxStr = invoice.tax_name + ' ' + (invoice.tax_rate*1).toString() + '%';
data.push([{text: taxStr}, {text: formatMoneyInvoice(invoice.tax_amount, invoice)}]);
2015-04-13 14:37:42 +02:00
}
2015-07-21 20:51:56 +02:00
if (NINJA.parseFloat(invoice.custom_value1) && invoice.custom_taxes1 != '1') {
data.push([{text: account.custom_invoice_label1}, {text: formatMoneyInvoice(invoice.custom_value1, invoice)}]);
2015-04-13 14:37:42 +02:00
}
2015-05-05 11:48:23 +02:00
if (NINJA.parseFloat(invoice.custom_value2) && invoice.custom_taxes2 != '1') {
data.push([{text: account.custom_invoice_label2}, {text: formatMoneyInvoice(invoice.custom_value2, invoice)}]);
2015-07-21 20:51:56 +02:00
}
2015-04-13 14:37:42 +02:00
var paid = invoice.amount - invoice.balance;
2015-05-05 11:48:23 +02:00
if (invoice.account.hide_paid_to_date != '1' || paid) {
data.push([{text:invoiceLabels.paid_to_date}, {text:formatMoneyInvoice(paid, invoice)}]);
2015-05-05 11:48:23 +02:00
}
2015-04-14 12:23:35 +02:00
if (!hideBalance) {
var isPartial = NINJA.parseFloat(invoice.partial);
2015-07-21 20:51:56 +02:00
data.push([
{text: isPartial ? invoiceLabels.amount_due : invoiceLabels.balance_due, style:['balanceDueLabel']},
{text: formatMoneyInvoice(invoice.balance_amount, invoice), style:['balanceDue']}
]);
2015-07-21 20:51:56 +02:00
}
return NINJA.prepareDataPairs(data, 'subtotals');
2015-05-05 11:48:23 +02:00
}
2015-09-07 11:07:55 +02:00
NINJA.subtotalsBalance = function(invoice) {
var isPartial = NINJA.parseFloat(invoice.partial);
return [[
{text: isPartial ? invoiceLabels.amount_due : invoiceLabels.balance_due, style:['balanceDueLabel']},
{text: formatMoneyInvoice(invoice.balance_amount, invoice), style:['balanceDue']}
2015-09-07 11:07:55 +02:00
]];
}
2015-07-21 20:51:56 +02:00
NINJA.accountDetails = function(invoice) {
var account = invoice.account;
var data = [
2015-09-07 11:07:55 +02:00
{text:account.name, style: ['accountName']},
{text:account.id_number},
{text:account.vat_number},
2015-12-14 22:05:17 +01:00
{text:account.website},
2015-09-07 11:07:55 +02:00
{text:account.work_email},
{text:account.work_phone}
];
2015-07-21 20:51:56 +02:00
return NINJA.prepareDataList(data, 'accountDetails');
2015-04-14 12:23:35 +02:00
}
2015-07-21 20:51:56 +02:00
NINJA.accountAddress = function(invoice) {
2015-09-07 11:07:55 +02:00
var account = invoice.account;
var cityStatePostal = '';
2015-05-05 11:48:23 +02:00
if (account.city || account.state || account.postal_code) {
var swap = account.country && account.country.swap_postal_code;
2015-09-07 11:07:55 +02:00
cityStatePostal = formatAddress(account.city, account.state, account.postal_code, swap);
}
var data = [
2015-09-07 11:07:55 +02:00
{text: account.address1},
{text: account.address2},
{text: cityStatePostal},
{text: account.country ? account.country.name : ''},
2015-07-21 20:51:56 +02:00
];
2015-10-13 09:11:44 +02:00
if (invoice.is_pro) {
data.push({text: invoice.account.custom_value1 ? invoice.account.custom_label1 + ' ' + invoice.account.custom_value1 : false});
data.push({text: invoice.account.custom_value2 ? invoice.account.custom_label2 + ' ' + invoice.account.custom_value2 : false});
}
2015-07-21 20:51:56 +02:00
return NINJA.prepareDataList(data, 'accountAddress');
2015-05-05 11:48:23 +02:00
}
2015-05-22 09:22:24 +02:00
NINJA.invoiceDetails = function(invoice) {
2015-07-21 20:51:56 +02:00
2015-05-05 11:48:23 +02:00
var data = [
[
2015-09-07 11:07:55 +02:00
{text: (invoice.is_quote ? invoiceLabels.quote_number : invoiceLabels.invoice_number), style: ['invoiceNumberLabel']},
{text: invoice.invoice_number, style: ['invoiceNumber']}
],
[
2015-09-07 11:07:55 +02:00
{text: invoiceLabels.po_number},
{text: invoice.po_number}
],
[
2015-09-07 11:07:55 +02:00
{text: (invoice.is_quote ? invoiceLabels.quote_date : invoiceLabels.invoice_date)},
{text: invoice.invoice_date}
],
[
2015-09-07 11:07:55 +02:00
{text: (invoice.is_quote ? invoiceLabels.valid_until : invoiceLabels.due_date)},
{text: invoice.due_date}
]
2015-05-05 11:48:23 +02:00
];
2015-10-11 16:41:09 +02:00
if (invoice.custom_text_value1) {
data.push([
{text: invoice.account.custom_invoice_text_label1},
{text: invoice.custom_text_value1}
])
}
if (invoice.custom_text_value2) {
data.push([
{text: invoice.account.custom_invoice_text_label2},
{text: invoice.custom_text_value2}
])
}
var isPartial = NINJA.parseFloat(invoice.partial);
2015-07-21 20:51:56 +02:00
if (NINJA.parseFloat(invoice.balance) < NINJA.parseFloat(invoice.amount)) {
data.push([
{text: invoiceLabels.total},
{text: formatMoneyInvoice(invoice.amount, invoice)}
2015-10-11 16:41:09 +02:00
]);
} else if (isPartial) {
2015-07-21 20:51:56 +02:00
data.push([
{text: invoiceLabels.total},
{text: formatMoneyInvoice(invoice.total_amount, invoice)}
2015-10-11 16:41:09 +02:00
]);
2015-07-21 20:51:56 +02:00
}
data.push([
{text: isPartial ? invoiceLabels.amount_due : invoiceLabels.balance_due, style: ['invoiceDetailBalanceDueLabel']},
{text: formatMoneyInvoice(invoice.balance_amount, invoice), style: ['invoiceDetailBalanceDue']}
2015-10-11 16:41:09 +02:00
])
2015-07-21 20:51:56 +02:00
return NINJA.prepareDataPairs(data, 'invoiceDetails');
2015-04-14 12:23:35 +02:00
}
2015-07-21 20:51:56 +02:00
NINJA.clientDetails = function(invoice) {
2015-05-05 11:48:23 +02:00
var client = invoice.client;
2015-07-21 20:51:56 +02:00
var data;
2015-05-05 11:48:23 +02:00
if (!client) {
return;
}
2015-10-22 20:48:12 +02:00
var account = invoice.account;
2015-07-21 20:51:56 +02:00
var contact = client.contacts[0];
var clientName = client.name || (contact.first_name || contact.last_name ? (contact.first_name + ' ' + contact.last_name) : contact.email);
var clientEmail = client.contacts[0].email == clientName ? '' : client.contacts[0].email;
2015-09-07 11:07:55 +02:00
var cityStatePostal = '';
if (client.city || client.state || client.postal_code) {
var swap = client.country && client.country.swap_postal_code;
2015-09-07 11:07:55 +02:00
cityStatePostal = formatAddress(client.city, client.state, client.postal_code, swap);
}
2015-10-22 20:48:12 +02:00
// if a custom field is used in the invoice/quote number then we'll hide it from the PDF
var pattern = invoice.is_quote ? account.quote_number_pattern : account.invoice_number_pattern;
var custom1InPattern = (pattern && pattern.indexOf('{$custom1}') >= 0);
var custom2InPattern = (pattern && pattern.indexOf('{$custom2}') >= 0);
2015-07-21 20:51:56 +02:00
data = [
{text:clientName || ' ', style: ['clientName']},
{text:client.id_number},
{text:client.vat_number},
{text:client.address1},
2015-09-07 11:07:55 +02:00
{text:client.address2},
{text:cityStatePostal},
{text:client.country ? client.country.name : ''},
{text:clientEmail},
2015-10-22 20:48:12 +02:00
{text: client.custom_value1 && !custom1InPattern ? account.custom_client_label1 + ' ' + client.custom_value1 : false},
{text: client.custom_value2 && !custom2InPattern ? account.custom_client_label2 + ' ' + client.custom_value2 : false}
2015-05-05 11:48:23 +02:00
];
2015-07-21 20:51:56 +02:00
return NINJA.prepareDataList(data, 'clientDetails');
2015-05-05 11:48:23 +02:00
}
2015-05-22 09:22:24 +02:00
NINJA.getPrimaryColor = function(defaultColor) {
return NINJA.primaryColor ? NINJA.primaryColor : defaultColor;
}
NINJA.getSecondaryColor = function(defaultColor) {
return NINJA.primaryColor ? NINJA.secondaryColor : defaultColor;
2015-04-14 12:23:35 +02:00
}
2015-07-21 20:51:56 +02:00
// remove blanks and add section style to all elements
NINJA.prepareDataList = function(oldData, section) {
var newData = [];
for (var i=0; i<oldData.length; i++) {
var item = NINJA.processItem(oldData[i], section);
2015-10-01 22:02:22 +02:00
if (item.text || item.stack) {
2015-07-21 20:51:56 +02:00
newData.push(item);
}
}
return newData;
}
NINJA.prepareDataTable = function(oldData, section) {
var newData = [];
for (var i=0; i<oldData.length; i++) {
var row = oldData[i];
var newRow = [];
for (var j=0; j<row.length; j++) {
var item = NINJA.processItem(row[j], section);
2015-10-01 22:02:22 +02:00
if (item.text || item.stack) {
2015-07-21 20:51:56 +02:00
newRow.push(item);
}
}
if (newRow.length) {
newData.push(newRow);
}
}
return newData;
}
NINJA.prepareDataPairs = function(oldData, section) {
var newData = [];
for (var i=0; i<oldData.length; i++) {
var row = oldData[i];
var isBlank = false;
for (var j=0; j<row.length; j++) {
var item = NINJA.processItem(row[j], section);
if (!item.text) {
2015-10-01 22:02:22 +02:00
isBlank = true;
2015-07-21 20:51:56 +02:00
}
if (j == 1) {
NINJA.processItem(row[j], section + "Value");
}
2015-10-01 22:02:22 +02:00
}
2015-07-21 20:51:56 +02:00
if (!isBlank) {
newData.push(oldData[i]);
}
}
2015-10-01 22:02:22 +02:00
return newData;
2015-07-21 20:51:56 +02:00
}
NINJA.processItem = function(item, section) {
if (item.style && item.style instanceof Array) {
item.style.push(section);
} else {
item.style = [section];
}
return item;
2015-10-01 22:02:22 +02:00
}
NINJA.parseMarkdownText = function(val, groupText)
{
var rules = [
['\\\*\\\*(\\\w.+?)\\\*\\\*', {'bold': true}], // **value**
['\\\*(\\\w.+?)\\\*', {'italics': true}], // *value*
2015-12-13 21:12:54 +01:00
['^###(.*)', {'style': 'help'}], // ### Small/gray help
2015-10-01 22:50:29 +02:00
['^##(.*)', {'style': 'subheader'}], // ## Header
['^#(.*)', {'style': 'header'}] // # Subheader
2015-10-01 22:02:22 +02:00
];
var parts = typeof val === 'string' ? [val] : val;
for (var i=0; i<rules.length; i++) {
var rule = rules[i];
var formatter = function(data) {
return $.extend(data, rule[1]);
}
parts = NINJA.parseRegExp(parts, rule[0], formatter, true);
}
return parts.length > 1 ? parts : val;
}
/*
NINJA.parseMarkdownStack = function(val)
{
if (val.length == 1) {
var item = val[0];
var line = item.hasOwnProperty('text') ? item.text : item;
if (typeof line === 'string') {
line = [line];
}
var regExp = '^\\\* (.*[\r\n|\n|\r]?)';
var formatter = function(data) {
return {"ul": [data.text]};
}
val = NINJA.parseRegExp(line, regExp, formatter, false);
}
return val;
}
*/
NINJA.parseRegExp = function(val, regExpStr, formatter, groupText)
{
var regExp = new RegExp(regExpStr, 'gm');
var parts = [];
for (var i=0; i<val.length; i++) {
var line = val[i];
parts = parts.concat(NINJA.parseRegExpLine(line, regExp, formatter, groupText));
}
return parts.length > 1 ? parts : val;
}
NINJA.parseRegExpLine = function(line, regExp, formatter, groupText)
{
var parts = [];
var lastIndex = 0;
while (match = regExp.exec(line)) {
if (match.index > lastIndex) {
parts.push(line.substring(lastIndex, match.index));
}
var data = {};
data.text = match[1];
data = formatter(data);
parts.push(data);
lastIndex = match.index + match[0].length;
}
if (parts.length) {
if (lastIndex < line.length) {
parts.push(line.substring(lastIndex));
}
return parts;
}
return line;
2015-04-14 12:23:35 +02:00
}