File: __init__.py

package info (click to toggle)
tryton-modules-party 7.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,560 kB
  • sloc: python: 2,702; xml: 1,408; makefile: 11; sh: 3
file content (36 lines) | stat: -rw-r--r-- 1,062 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This file is part of Tryton.  The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

from trytond.pool import Pool

from . import (
    address, category, configuration, contact_mechanism, country, ir, party)


def register():
    Pool.register(
        country.PostalCode,
        category.Category,
        party.Party,
        party.PartyLang,
        party.PartyCategory,
        party.Identifier,
        party.CheckVIESResult,
        party.ReplaceAsk,
        party.EraseAsk,
        address.Address,
        address.AddressFormat,
        address.SubdivisionType,
        contact_mechanism.ContactMechanism,
        contact_mechanism.ContactMechanismLanguage,
        configuration.Configuration,
        configuration.ConfigurationSequence,
        configuration.ConfigurationLang,
        ir.Email,
        ir.EmailTemplate,
        module='party', type_='model')
    Pool.register(
        party.CheckVIES,
        party.Replace,
        party.Erase,
        module='party', type_='wizard')