module.exports = { doctype: "PrintFormat", name: "Standard Invoice Format", for: "SalesInvoice", template: `
{{ frappe._("Item") }} | {{ frappe._("Qty") }} | {{ frappe._("Rate") }} | {{ frappe._("Amount") }} | |
---|---|---|---|---|
{{ row.idx + 1 }} | {{ row.item }} {{ frappe.format(row.description, 'Text') }} |
{{ row.quantity }} | {{ frappe.format(row.rate, 'Currency') }} | {{ frappe.format(row.amount, 'Currency') }} |