Initial import from Docker volume
This commit is contained in:
36
modules/sale_opportunity/__init__.py
Executable file
36
modules/sale_opportunity/__init__.py
Executable file
@@ -0,0 +1,36 @@
|
||||
# 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 (
|
||||
account, company, configuration, opportunity, opportunity_reporting, party,
|
||||
product, sale)
|
||||
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
opportunity.SaleOpportunity,
|
||||
opportunity.SaleOpportunityLine,
|
||||
opportunity_reporting.Context,
|
||||
opportunity_reporting.Main,
|
||||
opportunity_reporting.MainTimeseries,
|
||||
opportunity_reporting.Conversion,
|
||||
opportunity_reporting.ConversionTimeseries,
|
||||
opportunity_reporting.ConversionEmployee,
|
||||
opportunity_reporting.ConversionEmployeeTimeseries,
|
||||
configuration.Configuration,
|
||||
configuration.ConfigurationSequence,
|
||||
sale.Sale,
|
||||
party.Party,
|
||||
party.Address,
|
||||
account.PaymentTerm,
|
||||
account.PaymentTermLine,
|
||||
product.Template,
|
||||
product.Product,
|
||||
company.Company,
|
||||
company.Employee,
|
||||
module='sale_opportunity', type_='model')
|
||||
Pool.register(
|
||||
party.Replace,
|
||||
module='sale_opportunity', type_='wizard')
|
||||
Reference in New Issue
Block a user