mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
- convert accented chars to ascii chars (via the unidecode lib) - use "PrvtId" instead of "OrgId" in the XML Use the sequence of payment.order as the "Message identification" of the XML file (advantages : it is unique, users can easily customize the sequence and users can easily find the payment corresponding to the "Message Identification" in OpenERP). It is also used as the Payment Identification, combined with the sequence type. Use the sequence of payment.line in the "EndtoEnd Identification" field. Reduce flake8 warnings.
22 lines
571 B
XML
22 lines
571 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data noupdate="1">
|
|
|
|
|
|
<record id="sdd_mandate_seq_type" model="ir.sequence.type">
|
|
<field name="name">SDD Mandate Reference</field>
|
|
<field name="code">sdd.mandate.reference</field>
|
|
</record>
|
|
|
|
<record id="sdd_mandate_seq" model="ir.sequence">
|
|
<field name="name">SDD Mandate Reference</field>
|
|
<field name="code">sdd.mandate.reference</field>
|
|
<field name="prefix">RUM</field>
|
|
<field name="padding" eval="7"/>
|
|
<!-- remember that max size for the mandate ref is 35 -->
|
|
</record>
|
|
|
|
|
|
</data>
|
|
</openerp>
|