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

build.bika.lims.content.invoicebatch.InvoiceBatch.createInvoice()   A

Complexity

Conditions 4

Size

Total Lines 37
Code Lines 32

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 32
dl 0
loc 37
rs 9.112
c 0
b 0
f 0
cc 4
nop 3
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