Loading __init__.py +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') account.py +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 configuration.py +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 Loading exceptions.py +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 Loading ir.py +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 Loading
__init__.py +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')
account.py +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
configuration.py +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 Loading
exceptions.py +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 Loading
ir.py +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