Commit 834273ba authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

Supply: Extend Periodicity Mixin

parent 4683b007
...@@ -29,10 +29,11 @@ ...@@ -29,10 +29,11 @@
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet from Products.ERP5Type import Permissions, PropertySheet
from Products.ERP5.Document.Inventory import Inventory from Products.ERP5.Document.Inventory import Inventory
from Products.ERP5.mixin.periodicity import PeriodicityMixin
from erp5.component.document.BankingOperation import BankingOperation from erp5.component.document.BankingOperation import BankingOperation
class CashInventory(Inventory, BankingOperation): class CashInventory(Inventory, BankingOperation, PeriodicityMixin):
""" """
A Cash Inventory A Cash Inventory
""" """
...@@ -54,6 +55,7 @@ class CashInventory(Inventory, BankingOperation): ...@@ -54,6 +55,7 @@ class CashInventory(Inventory, BankingOperation):
, PropertySheet.Movement , PropertySheet.Movement
, PropertySheet.Delivery , PropertySheet.Delivery
, PropertySheet.Path , PropertySheet.Path
, PropertySheet.Periodicity
, PropertySheet.FlowCapacity , PropertySheet.FlowCapacity
) )
......
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