Welcome | Get started | Dive into Lino | Contribute | Topics | Reference | More

sepa : Communicating with the bank using SEPA

The lino_xl.lib.sepa plugin functionality for managing bank accounts for your partners. When this plugin is installed, every partner can have one or several bank accounts.

The name sepa is actually irritating because this plugin won't do any SEPA transfer. Maybe rename it to iban? OTOH it is needed by the SEPA modules lino_xl.lib.b2c and lino_cosi.lib.c2b.

It requires the lino_xl.lib.ledger plugin.

class lino_xl.lib.sepa.Account

A bank account related to a given partner.

partner

Partner

iban = IBANField(verbose_name=_("IBAN"))
bic = BICField(verbose_name=_("BIC"), blank=True)
remark = models.CharField(_("Remark"), max_length=200, blank=True)
primary = models.BooleanField(
statements

A virtual field which displays the date of the last imported statement for this account. Clicking on this date will open the B2C account <lino_xl.lib.b2c.models.Account> with same IBAN number.

This field is empty when no B2C Account exists.

Available only when lino_xl.lib.b2c is installed as well.

class lino_xl.lib.sepa.Accounts
class lino_xl.lib.sepa.AccountsByPartner

Show the bank account(s) defined for a given partner. To be included to a detail window on partner.

class lino_xl.lib.sepa.BankAccount

Defines a field bank_account and its chooser.