trytonpsk-account_col/__init__.py

122 lines
3.8 KiB
Python
Raw Normal View History

2020-04-07 15:34:03 +02:00
# 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
2021-05-31 19:40:08 +02:00
from . import move
from . import party
from . import company
from . import invoice
from . import account
from . import tax
from . import geographic_codes
from . import product
from . import invoice_authorization
from . import asset
2021-06-08 23:29:31 +02:00
from . import payment_term
from . import user
2023-08-04 22:38:41 +02:00
from . import audit
2020-04-07 15:34:03 +02:00
def register():
Pool.register(
geographic_codes.CountryCode,
geographic_codes.DepartmentCode,
geographic_codes.CityCode,
account.BalanceSheetComparisionContext,
account.BalanceSheetContext,
2022-10-07 22:25:07 +02:00
account.AccountConfiguration,
account.CashflowTemplate,
account.Cashflow,
account.Account,
2022-12-15 00:01:19 +01:00
account.Type,
2022-10-07 22:25:07 +02:00
account.AuxiliaryBookStart,
account.PrintTrialBalanceDetailedStart,
account.PrintTrialBalanceStart,
account.CashflowStatementContext,
account.PrintBalanceSheetCOLGAAPStart,
# account.BalanceSheetContextCol,
2022-10-07 22:25:07 +02:00
account.OpenChartAccountStart,
account.PrintIncomeStatementCOLGAAPStart,
account.PartyWithholdingStart,
account.AuxiliaryPartyStart,
account.GeneralLedgerAccountContext,
account.IncomeStatementContext,
2021-05-31 19:40:08 +02:00
party.Configuration,
party.Address,
party.Party,
party.PartyFixCodeStart,
2021-08-30 20:57:20 +02:00
party.Category,
2022-10-07 22:25:07 +02:00
party.BankAccountNumber,
2021-05-31 19:40:08 +02:00
tax.TaxLine,
2020-04-07 15:34:03 +02:00
tax.Tax,
company.Company,
asset.Asset,
2022-07-08 16:12:16 +02:00
asset.AssetLocation,
2022-07-12 17:42:11 +02:00
asset.DepreciationKind,
2020-04-07 15:34:03 +02:00
invoice_authorization.InvoiceAuthorization,
invoice.Invoice,
invoice.InvoiceLine,
2021-09-28 07:33:35 +02:00
invoice.InvoiceTax,
2020-04-07 15:34:03 +02:00
tax.TaxesByInvoiceStart,
tax.TaxesPostedStart,
2022-10-07 22:25:07 +02:00
move.MoveFixNumberStart,
move.Move,
move.Line,
2020-04-07 15:34:03 +02:00
move.RenumberMoveStart,
move.MoveCloseYearStart,
move.MoveCloseYearDone,
product.ProductCategory,
product.ProductTemplate,
2021-07-23 19:11:24 +02:00
product.Product,
2023-06-10 15:24:01 +02:00
product.ProductIdentifier,
2022-10-07 22:25:07 +02:00
product.PriceList,
2020-04-07 15:34:03 +02:00
invoice.MovesInvoicesStart,
2021-03-04 17:16:37 +01:00
invoice.InvoiceUpdateStart,
2021-11-29 15:42:00 +01:00
invoice.InvoiceReport,
2021-06-08 23:29:31 +02:00
payment_term.PaymentTerm,
2023-08-04 22:38:41 +02:00
audit.AuditReportStart,
2020-04-07 15:34:03 +02:00
module='account_col', type_='model')
Pool.register(
move.AccountMoveSheet,
account.AuxiliaryBook,
account.TrialBalanceDetailed,
account.TrialBalanceClassic,
account.BalanceSheet,
account.IncomeStatement,
invoice.EquivalentInvoice,
account.PartyWithholding,
tax.TaxesByInvoice,
tax.TaxesPosted,
account.AuxiliaryParty,
account.BalanceSheetCOLGAAP,
account.IncomeStatementCOLGAAP,
account.CashflowStatement,
invoice.MovesInvoicesReport,
2023-08-04 22:38:41 +02:00
audit.AuditReport,
2022-12-15 00:01:19 +01:00
# account.BalanceSheetDetail,
2020-04-07 15:34:03 +02:00
module='account_col', type_='report')
Pool.register(
move.MoveForceDraft,
move.MoveAutoreconcile,
move.MoveUnreconcile,
invoice.InvoiceForceDraft,
account.PrintAuxiliaryBook,
account.PrintTrialBalanceDetailed,
account.PrintTrialBalance,
move.MoveFixNumber,
account.PrintPartyWithholding,
tax.PrintTaxesByInvoice,
tax.PrintTaxesPosted,
account.PrintAuxiliaryParty,
move.RenumberMove,
account.OpenChartAccount,
account.PrintBalanceSheetCOLGAAP,
account.PrintIncomeStatementCOLGAAP,
move.MoveCloseYear,
party.PartyFixCode,
invoice.MovesInvoices,
2021-03-04 17:16:37 +01:00
invoice.InvoiceUpdate,
2021-05-08 17:30:43 +02:00
party.PartyFix,
user.UserLoginAttempRemove,
2023-08-04 22:38:41 +02:00
audit.AuditReportWizard,
2020-04-07 15:34:03 +02:00
module='account_col', type_='wizard')