szamlazz.js
A fork of the Node.js client for Szamlazz.hu, with Node v16 support.
Installation
npm install szamlazz16 --save
Usage
const szamlazz = require('szamlazz16')
Create a client
const szamlazzClient = new szamlazz.Client({
user: 'USERNAME',
password: 'PASSWORD',
eInvoice: false,
passphrase: '',
requestInvoiceDownload: true,
downloadedInvoiceCount: 1,
responseVersion: 1
})
Or use "Számla Agent" key to authenticate the client
const szamlazzClient = new szamlazz.Client({
authToken: 'SZAMLAAGENTKEY',
eInvoice: false,
passphrase: '',
requestInvoiceDownload: true,
downloadedInvoiceCount: 1,
responseVersion: 1
})
You can reuse this client to issue invoices.
Create a seller
let seller = new szamlazz.Seller({
bank: {
name: 'Test Bank <name>',
accountNumber: '11111111-11111111-11111111'
},
email: {
replyToAddress: 'test@email.com',
subject: 'Invoice email subject',
message: 'This is an email message'
},
issuerName: ''
})
Create a buyer
let buyer = new szamlazz.Buyer({
name: 'Some Buyer Name ' + Math.random(),
country: '',
zip: '1234',
city: 'City',
address: 'Some street address',
taxNumber: '12345678-1-42',
postAddress: {
name: 'Some Buyer Name',
zip: '1234',
city: 'City',
address: 'Some street address'
},
issuerName: '',
identifier: 1,
phone: '',
comment: ''
})
Create an invoice item
With net unit price:
let soldItem1 = new szamlazz.Item({
label: 'First item',
quantity: 2,
unit: 'qt',
vat: 27,
netUnitPrice: 100.55,
comment: 'Ez egy árvíztűrő tükörfúrógép'
})
With gross unit price:
let soldItem2 = new szamlazz.Item({
label: 'Second item',
quantity: 5,
unit: 'qt',
vat: 27,
grossUnitPrice: 1270
})
Create an invoice
You can create an invoice with the instances created above:
let invoice = new szamlazz.Invoice({
paymentMethod: szamlazz.PaymentMethod.BankTransfer,
currency: szamlazz.Currency.Ft,
language: szamlazz.Language.Hungarian,
seller: seller,
buyer: buyer,
items: [ soldItem1, soldItem2 ],
prepaymentInvoice: false
})
To issue the invoice with szamlazz.hu:
szamlazzClient.issueInvoice(invoice, (e, result) =>
{
if (e) {
console.error(e.message, e.code)
throw e;
}
if (result.pdf) {
}
})
Get invoice data
You can get the data of a previously issued invoice:
const szamlazzClient = new szamlazz.Client({
user: 'USERNAME',
password: 'PASSWORD'
})
const getInvoiceData = util.promisify(szamlazzClient.getInvoiceData).bind(szamlazzClient)
const invoice = await getInvoiceData({
invoiceId: 'E-RNJLO-2019-1234',
orderNumber: '1234',
pdf: false
})
Either the invoice number or the order number must be specified.
Reverse invoice
You can reverse a previously issued invoice:
const szamlazzClient = new szamlazz.Client({
user: 'USERNAME',
password: 'PASSWORD'
})
const reverseInvoice = util.promisify(szamlazzClient.reverseInvoice).bind(szamlazzClient)
const invoice = await reverseInvoice({
invoiceId: 'E-RNJLO-2019-1234',
eInvoice: true,
requestInvoiceDownload: false,
})
Response
{
invoiceId: 'WXSKA-2020-00',
netTotal: '1000',
grossTotal: '1270'
pdf: null
}
Constants
PaymentMethod
The following payment methods are supported by szamlazz.hu:
szamlazz.PaymentMethod.Cash
szamlazz.PaymentMethod.BankTransfer
szamlazz.PaymentMethod.CreditCard
szamlazz.PaymentMethod.PayPal
Currency
The following currencies are recognized by szamlazz.hu:
szamlazz.Currency.Ft
szamlazz.Currency.HUF
szamlazz.Currency.EUR
szamlazz.Currency.CHF
szamlazz.Currency.USD
szamlazz.Currency.AUD
szamlazz.Currency.AED
szamlazz.Currency.BGN
szamlazz.Currency.CAD
szamlazz.Currency.CNY
szamlazz.Currency.CZK
szamlazz.Currency.DKK
szamlazz.Currency.EEK
szamlazz.Currency.GBP
szamlazz.Currency.HRK
szamlazz.Currency.ISK
szamlazz.Currency.JPY
szamlazz.Currency.LTL
szamlazz.Currency.LVL
szamlazz.Currency.NOK
szamlazz.Currency.NZD
szamlazz.Currency.PLN
szamlazz.Currency.RON
szamlazz.Currency.RUB
szamlazz.Currency.SEK
szamlazz.Currency.SKK
szamlazz.Currency.UAH
Language
The accepted languages are:
szamlazz.Currency.Hungarian
szamlazz.Currency.English
szamlazz.Currency.German
szamlazz.Currency.Italian
szamlazz.Currency.Romanian
szamlazz.Currency.Slovak