felicity-lims/felicity/api/gql/billing/__init__.py
Aurthur Musendame 9352b91fac formated code
2024-02-16 17:48:19 +02:00

20 lines
619 B
Python

from .types import (AnalysisDiscountType, AnalysisPriceType,
ProfileDiscountType, ProfilePriceType, TestBillCursorPage,
TestBillEdge, TestBillInvoiceType, TestBillTransactionType,
TestBillType, VoucherCodeType, VoucherCustomerType,
VoucherType)
billing_types = [
AnalysisPriceType,
ProfilePriceType,
AnalysisDiscountType,
ProfileDiscountType,
VoucherType,
VoucherCodeType,
VoucherCustomerType,
TestBillType,
TestBillEdge,
TestBillCursorPage,
TestBillTransactionType,
TestBillInvoiceType,
]