mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
32 lines
592 B
Python
32 lines
592 B
Python
from .types import (
|
|
AnalysisPriceType,
|
|
ProfilePriceType,
|
|
AnalysisDiscountType,
|
|
ProfileDiscountType,
|
|
VoucherType,
|
|
VoucherCodeType,
|
|
VoucherCustomerType,
|
|
TestBillType,
|
|
TestBillEdge,
|
|
TestBillCursorPage,
|
|
TestBillTransactionType,
|
|
TestBillInvoiceType
|
|
)
|
|
|
|
billing_types = [
|
|
AnalysisPriceType,
|
|
ProfilePriceType,
|
|
AnalysisDiscountType,
|
|
ProfileDiscountType,
|
|
VoucherType,
|
|
VoucherCodeType,
|
|
VoucherCustomerType,
|
|
TestBillType,
|
|
TestBillEdge,
|
|
TestBillCursorPage,
|
|
TestBillTransactionType,
|
|
TestBillInvoiceType,
|
|
]
|
|
|
|
|
|
|