2 Commits
7.6 ... 8.0.0

Author SHA1 Message Date
6cbf4eaf7f move register from __init__ to tryton.cfg 2026-07-02 19:21:02 -05:00
85c7ac0e56 Update version to 8.0.0 2026-07-02 17:13:52 -05:00
2 changed files with 10 additions and 23 deletions

View File

@@ -1,22 +0,0 @@
# 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 invoice, purchase, sale
__all__ = ['register']
def register():
Pool.register(
purchase.Purchase,
purchase.PurchaseLine,
sale.Sale,
sale.SaleLine,
invoice.Invoice,
invoice.InvoiceLine,
module='analytic_operations', type_='model')
Pool.register(
module='analytic_operations', type_='wizard')
Pool.register(
module='analytic_operations', type_='report')

View File

@@ -1,5 +1,5 @@
[tryton] [tryton]
version=7.6.0 version=8.0.0
depends: depends:
ir ir
purchase purchase
@@ -9,3 +9,12 @@ xml:
purchase.xml purchase.xml
sale.xml sale.xml
invoice.xml invoice.xml
[register]
model:
purchase.Purchase
purchase.PurchaseLine
sale.Sale
sale.SaleLine
invoice.Invoice
invoice.InvoiceLine