Closed alapierre closed 10 months ago
Hey @alapierre
GOBL for KSeF is in early stages of development and is not yet production ready. The structure you are looking for in payment details would look something like this:
{
"$schema": "https://gobl.org/draft-0/envelope",
...
"doc": {
"$schema": "https://gobl.org/draft-0/bill/invoice",
...
"payment": {
"instructions": {
"key": "credit-transfer",
"credit_transfer": [
{
"number": "61109010140000071219812874",
"name": "PKO BP"
}
]
}
}
}
}
Where number is RachunekBankowy/NrRB and name RachunekBankowy/NazwaBanku
As for the other questions we don't examples for those cases yet. Their implementation will be similar to the one we have in the italian FatturaPA so maybe you can find some answers there: https://github.com/invopop/gobl/blob/main/regimes/it/README.md
thank you, it is not important in that moment, I just looking and plaing with GOBL format.
hello,
I'm working on Java based converter for GOBL to FA(2) and I'm looking for way to map some fields from GOBL:
RachunekBankowy/NrRB
- bank account numberRachunekBankowy/NazwaBanku
- name of the bankI notice
https://gobl.org/draft-0/pay/terms
but I'm not sure.Other questions:
P_17
?P_16
- "metoda kasowa"P_18A
- Split payment?can you provide little bit more complex sample of
invoice.json
? I have reviewed your main project on GitHub (https://github.com/invopop/gobl/tree/main/regimes/pl), but unfortunately, I did not find the answer there either.