-
Notifications
You must be signed in to change notification settings - Fork 2
/
__init__.py
35 lines (32 loc) · 827 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
"""
__init__.py
:copyright: (c) 2014 by Openlabs Technologies & Consulting (P) Limited
:license: BSD, see LICENSE for more details.
"""
from trytond.pool import Pool
from party import Address
from carrier import Carrier, UPSService
from sale import Configuration, Sale, SaleLine
from stock import (
ShipmentOut, StockMove, GenerateUPSLabelMessage, GenerateUPSLabel,
)
from configuration import UPSConfiguration
def register():
Pool.register(
Address,
SaleLine,
Carrier,
UPSService,
UPSConfiguration,
Configuration,
Sale,
StockMove,
ShipmentOut,
GenerateUPSLabelMessage,
module='ups', type_='model'
)
Pool.register(
GenerateUPSLabel,
module='ups', type_='wizard'
)