Commit e90b40d7 authored by Luca Cristaldi's avatar Luca Cristaldi
Browse files

Add copiryght notice

parent 2eab88d1
Loading
Loading
Loading
Loading
+25 −20
Original line number Diff line number Diff line
# 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 .account import *
from .member import *
from .membership import *
from .configuration import *
from .ir import *
from . import account
from . import member
from . import membership
from . import configuration
from . import ir

__all__ = ['register']


def register():
    Pool.register(Member,
                  Configuration,
                  MemberSequence,
                  Membership,
                  Period,
                  Fee,
                  Line,
                  Move,
                  GenerateFeeStart,
                  Cron,
                  PrintMembersBookStart,
    Pool.register(account.Move,
                  configuration.Configuration,
                  configuration.MemberSequence,
                  ir.Cron,
                  member.Member,
                  member.PrintMembersBookStart,
                  membership.Membership,
                  membership.Period,
                  membership.Fee,
                  membership.Line,
                  membership.GenerateFeeStart,
                  module='association',
                  type_='model')

    Pool.register(PostFee,
                  GenerateFee,
                  MembersBookWizard,
    Pool.register(member.MembersBookWizard,
                  membership.PostFee,
                  membership.GenerateFee,
                  module='association',
                  type_='wizard')

    Pool.register(MembersBookReport, module='association', type_='report')
    Pool.register(member.MembersBookReport,
                  module='association',
                  type_='report')
+3 −0
Original line number Diff line number Diff line
# 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 PoolMeta


+3 −0
Original line number Diff line number Diff line
# 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 import backend
from trytond.model import (ModelView, ModelSQL, ModelSingleton, fields)
from trytond.pyson import Eval
+3 −0
Original line number Diff line number Diff line
# 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.model.exceptions import ValidationError


+3 −0
Original line number Diff line number Diff line
# 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 PoolMeta


Loading