Commit 34fa598c authored by Guillaume Michon's avatar Guillaume Michon

Added ImmobilisationMovement to parent classes


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5885 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 82a3d64f
......@@ -37,10 +37,11 @@ from Products.ERP5Type.Base import Base
from Products.ERP5.Document.OrderLine import OrderLine
from Products.ERP5.Document.Movement import Movement
from Products.ERP5.Document.MappedValue import MappedValue
from Products.ERP5.Document.ImmobilisationMovement import ImmobilisationMovement
from zLOG import LOG
class DeliveryCell(MappedValue, Movement):
class DeliveryCell(MappedValue, Movement, ImmobilisationMovement):
"""
A DeliveryCell allows to define specific quantities
for each variation of a resource in a delivery line.
......
......@@ -38,10 +38,11 @@ from Products.ERP5Type.Base import Base
from Products.ERP5.Document.Movement import Movement
from Products.ERP5.Variated import Variated
from Products.CMFCategory.Renderer import Renderer
from Products.ERP5.Document.ImmobilisationMovement import ImmobilisationMovement
from zLOG import LOG
class DeliveryLine(Movement, XMLObject, XMLMatrix, Variated):
class DeliveryLine(Movement, XMLObject, XMLMatrix, Variated, ImmobilisationMovement):
"""
A DeliveryLine object allows to implement lines in
Deliveries (packing list, order, invoice, etc.)
......
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