mirror of
https://github.com/NaN-tic/trytond-sale_opportunity.git
synced 2023-12-14 02:33:08 +01:00
27 lines
784 B
Python
27 lines
784 B
Python
#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 .sale import *
|
|
from .opportunity import *
|
|
from .configuration import *
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
Sale,
|
|
SaleLine,
|
|
SaleOpportunity,
|
|
OpportunitySale,
|
|
SaleOpportunityLine,
|
|
SaleOpportunityHistory,
|
|
SaleOpportunityEmployee,
|
|
OpenSaleOpportunityEmployeeStart,
|
|
SaleOpportunityMonthly,
|
|
SaleOpportunityEmployeeMonthly,
|
|
Configuration,
|
|
module='sale_opportunity', type_='model')
|
|
Pool.register(
|
|
ConvertOpportunity,
|
|
OpenSaleOpportunityEmployee,
|
|
module='sale_opportunity', type_='wizard')
|