Commit 8ac9dc7d authored by Jean-Paul Smets's avatar Jean-Paul Smets

changed relative imports into absolute imports


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@466 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f33642c5
......@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Delivery import Delivery
from Products.ERP5.Document.Delivery import Delivery
class AccountingTransaction(Delivery):
"""
......
......@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Path import Path
from Products.ERP5.Document.Path import Path
class Assignment(Path):
# CMF Type Definition
......
......@@ -36,7 +36,7 @@ from Products.ERP5Type.Utils import cartesianProduct
from Products.ERP5.Document.TransformedResource import TransformedResource
from Products.ERP5Type.Base import TempBase
from Amount import Amount
from Products.ERP5.Document.Amount import Amount
from Products.ERP5.ERP5Globals import resource_type_list, variation_type_list, \
column_base_category_list, line_base_category_list, tab_base_category_list
......
......@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base
from Coordinate import Coordinate
from Products.ERP5.Document.Coordinate import Coordinate
import string
......
......@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Document.Folder import Folder
from Document import Document
from Products.ERP5.Document.Document import Document
class Binder(Folder, Document):
"""
......
......@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base
from Predicate import Predicate
from Products.ERP5.Document.Predicate import Predicate
class ComplementPredicate(Base, Predicate):
"""
......
......@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Capacity import Capacity
from Products.ERP5.Document.Capacity import Capacity
class DependentCapacity(Capacity):
"""
......
......@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Item import Item
from Products.ERP5.Document.Item import Item
class Device(Item):
"""
......
......@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from PredicateGroup import PredicateGroup
from Products.ERP5.Document.PredicateGroup import PredicateGroup
class Domain(PredicateGroup):
"""
......
......@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base
from Coordinate import Coordinate
from Products.ERP5.Document.Coordinate import Coordinate
import string
......
......@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Capacity import Capacity
from Products.ERP5.Document.Capacity import Capacity
class IndependentCapacity(Capacity):
"""
......
......@@ -29,7 +29,7 @@
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.CMFCore.utils import getToolByName
from AccountingTransaction import AccountingTransaction
from Products.ERP5.Document.AccountingTransaction import AccountingTransaction
class Invoice(AccountingTransaction):
# CMF Type Definition
......
......@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.XMLObject import XMLObject
from Amount import Amount
from Products.ERP5.Document.Amount import Amount
class Item(XMLObject, Amount):
"""
......
......@@ -34,7 +34,7 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.XMLObject import XMLObject
from Products.CMFCore.WorkflowCore import WorkflowMethod
from Event import Event
from Products.ERP5.Document.Event import Event
import smtplib
from zLOG import LOG
......
......@@ -32,8 +32,8 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Utils import UpperCase
from Domain import Domain
from Amount import Amount
from Products.ERP5.Document.Domain import Domain
from Products.ERP5.Document.Amount import Amount
from zLOG import LOG
......
......@@ -30,7 +30,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core.MetaNode import MetaNode as CoreMetaNode
from Organisation import Organisation as Node
from Products.ERP5.Document.Organisation import Organisation as Node
#from Node import Node
#class MetaNode(Node, CoreMetaNode):
......
......@@ -30,7 +30,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core.MetaResource import MetaResource as CoreMetaResource
from Resource import Resource
from Products.ERP5.Document.Resource import Resource
class MetaResource(Resource, CoreMetaResource):
"""
......
......@@ -34,7 +34,7 @@ from Products.ERP5.Core import MetaNode, MetaResource
from Products.ERP5Type.XMLObject import XMLObject
from Amount import Amount
from Products.ERP5.Document.Amount import Amount
class Movement(XMLObject, Amount):
"""
......
......@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base
from ValuePredicate import ValuePredicate
from Products.ERP5.Document.ValuePredicate import ValuePredicate
class MultivaluePredicate(ValuePredicate):
"""
......
......@@ -34,7 +34,7 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base
from Products.ERP5.ERP5Globals import movement_type_list, draft_order_state, planned_order_state
from Delivery import Delivery
from Products.ERP5.Document.Delivery import Delivery
from zLOG import LOG
......
......@@ -32,7 +32,7 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.ERP5Globals import movement_type_list, draft_order_state
from Products.CMFCore.utils import getToolByName
from Delivery import Delivery
from Products.ERP5.Document.Delivery import Delivery
class PackingList(Delivery):
"""
......
......@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core import MetaNode, MetaResource
from MappedValue import MappedValue
from Products.ERP5.Document.MappedValue import MappedValue
class Path(MappedValue):
"""
......
......@@ -33,7 +33,7 @@ from Products.ERP5Type.XMLObject import XMLObject
from Products.ERP5.Core.Node import Node
from Entity import Entity
from Products.ERP5.Document.Entity import Entity
class Person(Entity, Node, XMLObject):
"""
......
......@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Document.Folder import Folder
from Predicate import Predicate
from Products.ERP5.Document.Predicate import Predicate
class PredicateGroup(Folder, Predicate):
"""
......
......@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Delivery import Delivery
from Products.ERP5.Document.Delivery import Delivery
class ProductionReport(Delivery):
"""
......
......@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core import MetaNode, MetaResource
from Domain import Domain
from Products.ERP5.Document.Domain import Domain
class ReportTopic(Domain, MetaNode, MetaResource):
"""
......
......@@ -32,8 +32,8 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core import MetaNode
from Domain import Domain
from MetaResource import MetaResource
from Products.ERP5.Document.Domain import Domain
from Products.ERP5.Document.MetaResource import MetaResource
class Segment(Domain, MetaNode, MetaResource):
"""
......
......@@ -31,8 +31,8 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from MappedValue import MappedValue
from SetPredicate import SetPredicate
from Products.ERP5.Document.MappedValue import MappedValue
from Products.ERP5.Document.SetPredicate import SetPredicate
class SetMappedValue(MappedValue, SetPredicate):
"""
......
......@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base
from Coordinate import Coordinate
from Products.ERP5.Document.Coordinate import Coordinate
import re
......
......@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Delivery import Delivery
from Products.ERP5.Document.Delivery import Delivery
class Transaction(Delivery):
"""
......
......@@ -36,7 +36,7 @@ from Products.ERP5Type.Utils import asList, keepIn, rejectIn
from Products.ERP5.Variated import Variated
from Products.ERP5.ERP5Globals import resource_type_list, variation_type_list
from Domain import Domain
from Products.ERP5.Document.Domain import Domain
from zLOG import LOG
......
......@@ -35,7 +35,7 @@ from Products.ERP5Type.XMLMatrix import XMLMatrix
from Products.ERP5Type.Utils import cartesianProduct
from Products.ERP5Type.Base import TempBase
from Amount import Amount
from Products.ERP5.Document.Amount import Amount
from Products.ERP5.ERP5Globals import resource_type_list, variation_type_list
......@@ -705,4 +705,4 @@ identify a bank account."""
)
return [line_item], total_base_price, total_source_base_price, \
total_variated_base_price, total_variated_source_base_price, duration
\ No newline at end of file
......@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base
from Coordinate import Coordinate
from Products.ERP5.Document.Coordinate import Coordinate
class Url(Coordinate, Base):
"""
......
......@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base
from Predicate import Predicate
from Products.ERP5.Document.Predicate import Predicate
class ValuePredicate(Base, Predicate):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment