forked from tryton/stock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
56 lines (53 loc) · 1.48 KB
/
__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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# 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 .location import *
from .shipment import *
from .period import *
from .move import *
from .product import *
from .inventory import *
from .configuration import *
def register():
Pool.register(
Location,
Party,
ProductsByLocationsStart,
LocationLeadTime,
Move,
ShipmentIn,
ShipmentInReturn,
ShipmentOut,
ShipmentOutReturn,
AssignShipmentOutAssignFailed,
ShipmentInternal,
Address,
AssignShipmentInternalAssignFailed,
AssignShipmentInReturnAssignFailed,
Period,
Cache,
Template,
Product,
ProductByLocationStart,
ProductQuantitiesByWarehouse,
ProductQuantitiesByWarehouseStart,
Inventory,
InventoryLine,
Configuration,
module='stock', type_='model')
Pool.register(
ProductsByLocations,
AssignShipmentOut,
AssignShipmentInternal,
AssignShipmentInReturn,
ProductByLocation,
OpenProductQuantitiesByWarehouse,
RecomputeCostPrice,
module='stock', type_='wizard')
Pool.register(
DeliveryNote,
PickingList,
SupplierRestockingList,
CustomerReturnRestockingList,
InteralShipmentReport,
module='stock', type_='report')