mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
20 lines
619 B
Python
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,
|
|
]
|