receipt-wizard
v1.0.1
Published
Generate receipt-like output.
Downloads
3
Readme
Receipt-Wizard
Generate receipt-like output for printing in a kiosk, POS system, etc.
Created from https://www.npmjs.com/package/receipt
Configuration.
Some aspects of the output can be configured via the config
property:
<script src="unpkg.com/receipt-wizard"></script>
const receipt = rWizard;
receipt.config.currency = '$'; // The currency symbol to use in output.
receipt.config.width = 50; // The amount of characters used to give the output a "width".
receipt.config.ruler = '='; // The character used for ruler output.
Example:
const receipt = require('receipt');
receipt.config.currency = '£';
receipt.config.width = 60;
receipt.config.ruler = '-';
const output = receipt.create([
{ type: 'text', value: [
'MY AWESOME STORE',
'123 STORE ST',
'[email protected]',
'www.store.com'
], align: 'center' },
{ type: 'empty' },
{ type: 'properties', lines: [
{ name: 'Order Number', value: 'XXXXXXXXXXXX' },
{ name: 'Date', value: 'XX/XX/XXXX XX:XX' }
] },
{ type: 'table', lines: [
{ item: 'Product 1', qty: 1, cost: 1000 },
{ item: 'Product 2 with a really long name', qty: 1, cost: 17500, discount: { type: 'absolute', value: 1000 } },
{ item: 'Another product wth quite a name', qty: 2, cost: 900 },
{ item: 'Product 4', qty: 1, cost: 80, discount: { type: 'percentage', value: 0.15 } },
{ item: 'This length is ridiculously lengthy', qty: 14, cost: 8516 },
{ item: 'Product 6', qty: 3, cost: 500 },
{ item: 'Product 7', qty: 3, cost: 500, discount: { type: 'absolute', value: 500, message: '3 for the price of 2' } }
] },
{ type: 'empty' },
{ type: 'text', value: 'Some extra information to add to the footer of this docket.', align: 'center' },
{ type: 'empty' },
{ type: 'properties', lines: [
{ name: 'GST (10.00%)', value: 'AUD XX.XX' },
{ name: 'Total amount (excl. GST)', value: 'AUD XX.XX' },
{ name: 'Total amount (incl. GST)', value: 'AUD XX.XX' }
] },
{ type: 'empty' },
{ type: 'properties', lines: [
{ name: 'Amount Received', value: 'AUD XX.XX' },
{ name: 'Amount Returned', value: 'AUD XX.XX' }
] },
{ type: 'empty' },
{ type: 'text', value: 'Final bits of text at the very base of a docket. This text wraps around as well!', align: 'center', padding: 5 }
]);
console.log(output);
Which generates:
MY AWESOME STORE
123 STORE ST
[email protected]
www.store.com
Order Number: XXXXXXXXXXXX
Date: XX/XX/XXXX XX:XX
--------------------------------------------------
Qty Product Total
--------------------------------------------------
1 Product 1 £10.00
1 Product 2 with a really long nam £165.00
(Item Disc. -£10.00)
2 Another product wth quite a name £18.00
1 Product 4 £0.68
(Item Disc. -15%)
14 This length is ridiculously leng £1192.24
3 Product 6 £15.00
3 Product 7 £10.00
(3 for the price of 2)
--------------------------------------------------
Some extra information to add to the footer of
this docket.
GST (10.00%): AUD XX.XX
Total amount (excl. GST): AUD XX.XX
Total amount (incl. GST): AUD XX.XX
Amount Received: AUD XX.XX
Amount Returned: AUD XX.XX
Final bits of text at the very base of a
docket. This text wraps around as well!
Formatting.
When creating a receipt, simply feed in an array of "chunks". Each chunk defines the format for that chunk, the value to output and other auxiliary information depending on the chunk type.
The inbuilt chunk types and their formats are:
Custom Formatters.
You can define your own formatting types using addFormatter()
:
<script src="unpkg.com/receipt-wizard"></script>
const receipt = rWizard;
receipt.addFormatter('custom', function(chunk) {
return 'Custom: ' + chunk.value;
});
let output = receipt.create([{ type: 'custom', value: 'Test' }]);
The formatters are bound to receipt
, so you are able to access the configuration via this.config
or other formatters via this.formatters.x
etc.