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 ...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Delivery import Delivery from Products.ERP5.Document.Delivery import Delivery
class AccountingTransaction(Delivery): class AccountingTransaction(Delivery):
""" """
......
...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping ...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Path import Path from Products.ERP5.Document.Path import Path
class Assignment(Path): class Assignment(Path):
# CMF Type Definition # CMF Type Definition
......
...@@ -36,7 +36,7 @@ from Products.ERP5Type.Utils import cartesianProduct ...@@ -36,7 +36,7 @@ from Products.ERP5Type.Utils import cartesianProduct
from Products.ERP5.Document.TransformedResource import TransformedResource from Products.ERP5.Document.TransformedResource import TransformedResource
from Products.ERP5Type.Base import TempBase 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, \ from Products.ERP5.ERP5Globals import resource_type_list, variation_type_list, \
column_base_category_list, line_base_category_list, tab_base_category_list column_base_category_list, line_base_category_list, tab_base_category_list
......
...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo ...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base from Products.ERP5Type.Base import Base
from Coordinate import Coordinate from Products.ERP5.Document.Coordinate import Coordinate
import string import string
......
...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo ...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Document.Folder import Folder from Products.ERP5Type.Document.Folder import Folder
from Document import Document from Products.ERP5.Document.Document import Document
class Binder(Folder, Document): class Binder(Folder, Document):
""" """
......
...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo ...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base from Products.ERP5Type.Base import Base
from Predicate import Predicate from Products.ERP5.Document.Predicate import Predicate
class ComplementPredicate(Base, Predicate): class ComplementPredicate(Base, Predicate):
""" """
......
...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping ...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Capacity import Capacity from Products.ERP5.Document.Capacity import Capacity
class DependentCapacity(Capacity): class DependentCapacity(Capacity):
""" """
......
...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping ...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Item import Item from Products.ERP5.Document.Item import Item
class Device(Item): class Device(Item):
""" """
......
...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo ...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from PredicateGroup import PredicateGroup from Products.ERP5.Document.PredicateGroup import PredicateGroup
class Domain(PredicateGroup): class Domain(PredicateGroup):
""" """
......
...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo ...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base from Products.ERP5Type.Base import Base
from Coordinate import Coordinate from Products.ERP5.Document.Coordinate import Coordinate
import string import string
......
...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping ...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Capacity import Capacity from Products.ERP5.Document.Capacity import Capacity
class IndependentCapacity(Capacity): class IndependentCapacity(Capacity):
""" """
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.CMFCore.utils import getToolByName from Products.CMFCore.utils import getToolByName
from AccountingTransaction import AccountingTransaction from Products.ERP5.Document.AccountingTransaction import AccountingTransaction
class Invoice(AccountingTransaction): class Invoice(AccountingTransaction):
# CMF Type Definition # CMF Type Definition
......
...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo ...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.XMLObject import XMLObject from Products.ERP5Type.XMLObject import XMLObject
from Amount import Amount from Products.ERP5.Document.Amount import Amount
class Item(XMLObject, Amount): class Item(XMLObject, Amount):
""" """
......
...@@ -34,7 +34,7 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface ...@@ -34,7 +34,7 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.XMLObject import XMLObject from Products.ERP5Type.XMLObject import XMLObject
from Products.CMFCore.WorkflowCore import WorkflowMethod from Products.CMFCore.WorkflowCore import WorkflowMethod
from Event import Event from Products.ERP5.Document.Event import Event
import smtplib import smtplib
from zLOG import LOG from zLOG import LOG
......
...@@ -32,8 +32,8 @@ from AccessControl import ClassSecurityInfo ...@@ -32,8 +32,8 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Utils import UpperCase from Products.ERP5Type.Utils import UpperCase
from Domain import Domain from Products.ERP5.Document.Domain import Domain
from Amount import Amount from Products.ERP5.Document.Amount import Amount
from zLOG import LOG from zLOG import LOG
......
...@@ -30,7 +30,7 @@ from AccessControl import ClassSecurityInfo ...@@ -30,7 +30,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core.MetaNode import MetaNode as CoreMetaNode 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 #from Node import Node
#class MetaNode(Node, CoreMetaNode): #class MetaNode(Node, CoreMetaNode):
......
...@@ -30,7 +30,7 @@ from AccessControl import ClassSecurityInfo ...@@ -30,7 +30,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core.MetaResource import MetaResource as CoreMetaResource from Products.ERP5.Core.MetaResource import MetaResource as CoreMetaResource
from Resource import Resource from Products.ERP5.Document.Resource import Resource
class MetaResource(Resource, CoreMetaResource): class MetaResource(Resource, CoreMetaResource):
""" """
......
...@@ -34,7 +34,7 @@ from Products.ERP5.Core import MetaNode, MetaResource ...@@ -34,7 +34,7 @@ from Products.ERP5.Core import MetaNode, MetaResource
from Products.ERP5Type.XMLObject import XMLObject from Products.ERP5Type.XMLObject import XMLObject
from Amount import Amount from Products.ERP5.Document.Amount import Amount
class Movement(XMLObject, Amount): class Movement(XMLObject, Amount):
""" """
......
...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo ...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base from Products.ERP5Type.Base import Base
from ValuePredicate import ValuePredicate from Products.ERP5.Document.ValuePredicate import ValuePredicate
class MultivaluePredicate(ValuePredicate): class MultivaluePredicate(ValuePredicate):
""" """
......
...@@ -34,7 +34,7 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface ...@@ -34,7 +34,7 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base from Products.ERP5Type.Base import Base
from Products.ERP5.ERP5Globals import movement_type_list, draft_order_state, planned_order_state 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 from zLOG import LOG
......
...@@ -32,7 +32,7 @@ from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface ...@@ -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.ERP5.ERP5Globals import movement_type_list, draft_order_state
from Products.CMFCore.utils import getToolByName from Products.CMFCore.utils import getToolByName
from Delivery import Delivery from Products.ERP5.Document.Delivery import Delivery
class PackingList(Delivery): class PackingList(Delivery):
""" """
......
...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo ...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core import MetaNode, MetaResource from Products.ERP5.Core import MetaNode, MetaResource
from MappedValue import MappedValue from Products.ERP5.Document.MappedValue import MappedValue
class Path(MappedValue): class Path(MappedValue):
""" """
......
...@@ -33,7 +33,7 @@ from Products.ERP5Type.XMLObject import XMLObject ...@@ -33,7 +33,7 @@ from Products.ERP5Type.XMLObject import XMLObject
from Products.ERP5.Core.Node import Node from Products.ERP5.Core.Node import Node
from Entity import Entity from Products.ERP5.Document.Entity import Entity
class Person(Entity, Node, XMLObject): class Person(Entity, Node, XMLObject):
""" """
......
...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo ...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Document.Folder import Folder from Products.ERP5Type.Document.Folder import Folder
from Predicate import Predicate from Products.ERP5.Document.Predicate import Predicate
class PredicateGroup(Folder, Predicate): class PredicateGroup(Folder, Predicate):
""" """
......
...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping ...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Delivery import Delivery from Products.ERP5.Document.Delivery import Delivery
class ProductionReport(Delivery): class ProductionReport(Delivery):
""" """
......
...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo ...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core import MetaNode, MetaResource from Products.ERP5.Core import MetaNode, MetaResource
from Domain import Domain from Products.ERP5.Document.Domain import Domain
class ReportTopic(Domain, MetaNode, MetaResource): class ReportTopic(Domain, MetaNode, MetaResource):
""" """
......
...@@ -32,8 +32,8 @@ from AccessControl import ClassSecurityInfo ...@@ -32,8 +32,8 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5.Core import MetaNode from Products.ERP5.Core import MetaNode
from Domain import Domain from Products.ERP5.Document.Domain import Domain
from MetaResource import MetaResource from Products.ERP5.Document.MetaResource import MetaResource
class Segment(Domain, MetaNode, MetaResource): class Segment(Domain, MetaNode, MetaResource):
""" """
......
...@@ -31,8 +31,8 @@ from AccessControl import ClassSecurityInfo ...@@ -31,8 +31,8 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from MappedValue import MappedValue from Products.ERP5.Document.MappedValue import MappedValue
from SetPredicate import SetPredicate from Products.ERP5.Document.SetPredicate import SetPredicate
class SetMappedValue(MappedValue, SetPredicate): class SetMappedValue(MappedValue, SetPredicate):
""" """
......
...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo ...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base from Products.ERP5Type.Base import Base
from Coordinate import Coordinate from Products.ERP5.Document.Coordinate import Coordinate
import re import re
......
...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping ...@@ -30,7 +30,7 @@ from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Delivery import Delivery from Products.ERP5.Document.Delivery import Delivery
class Transaction(Delivery): class Transaction(Delivery):
""" """
......
...@@ -36,7 +36,7 @@ from Products.ERP5Type.Utils import asList, keepIn, rejectIn ...@@ -36,7 +36,7 @@ from Products.ERP5Type.Utils import asList, keepIn, rejectIn
from Products.ERP5.Variated import Variated from Products.ERP5.Variated import Variated
from Products.ERP5.ERP5Globals import resource_type_list, variation_type_list 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 from zLOG import LOG
......
...@@ -35,7 +35,7 @@ from Products.ERP5Type.XMLMatrix import XMLMatrix ...@@ -35,7 +35,7 @@ from Products.ERP5Type.XMLMatrix import XMLMatrix
from Products.ERP5Type.Utils import cartesianProduct from Products.ERP5Type.Utils import cartesianProduct
from Products.ERP5Type.Base import TempBase 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 from Products.ERP5.ERP5Globals import resource_type_list, variation_type_list
...@@ -705,4 +705,4 @@ identify a bank account.""" ...@@ -705,4 +705,4 @@ identify a bank account."""
) )
return [line_item], total_base_price, total_source_base_price, \ return [line_item], total_base_price, total_source_base_price, \
total_variated_base_price, total_variated_source_base_price, duration total_variated_base_price, total_variated_source_base_price, duration
\ No newline at end of file
...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo ...@@ -31,7 +31,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base from Products.ERP5Type.Base import Base
from Coordinate import Coordinate from Products.ERP5.Document.Coordinate import Coordinate
class Url(Coordinate, Base): class Url(Coordinate, Base):
""" """
......
...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo ...@@ -32,7 +32,7 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Base import Base from Products.ERP5Type.Base import Base
from Predicate import Predicate from Products.ERP5.Document.Predicate import Predicate
class ValuePredicate(Base, 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