rates: speichert kurse

This commit is contained in:
Frederik Jaeckel 2022-11-13 22:57:40 +01:00
parent 353df93a9e
commit 42ede3decb
15 changed files with 335 additions and 12 deletions

View file

@ -5,10 +5,12 @@
from trytond.pool import Pool
from .asset import Asset
from .rate import Rate
from .identifier import Identifier
def register():
Pool.register(
Asset,
Rate,
Identifier,
module='investment', type_='model')