Passed
Push — master ( babb16...96e596 )
by Jordi
04:46
created

build.bika.lims.content.invoicebatch.ObjectModifiedEventHandler()   B

Complexity

Conditions 6

Size

Total Lines 48
Code Lines 31

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 31
dl 0
loc 48
rs 8.2026
c 0
b 0
f 0
cc 6
nop 2
1
# -*- coding: utf-8 -*-
2
#
3
# This file is part of SENAITE.CORE
4
#
5
# Copyright 2018 by it's authors.
6
# Some rights reserved. See LICENSE.rst, CONTRIBUTORS.rst.
7
8
from bika.lims.config import PROJECTNAME
9
from bika.lims.interfaces import IInvoiceBatch
10
from Products.Archetypes.public import registerType
11
from Products.Archetypes.public import BaseFolder
12
from zope.interface import implements
13
14
15
class InvoiceBatch(BaseFolder):
16
    """REMOVE AFTER 1.3
17
    """
18
    implements(IInvoiceBatch)
19
20
21
registerType(InvoiceBatch, PROJECTNAME)
22