19 lines
372 B
Python
19 lines
372 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
|
||
|
|
BUSINESS_CANONICAL_FIELD_ORDER = (
|
||
|
|
"expense_type",
|
||
|
|
"time_range",
|
||
|
|
"location",
|
||
|
|
"reason",
|
||
|
|
"amount",
|
||
|
|
"transport_mode",
|
||
|
|
"attachments",
|
||
|
|
"customer_name",
|
||
|
|
"merchant_name",
|
||
|
|
"department_name",
|
||
|
|
"employee_name",
|
||
|
|
"employee_no",
|
||
|
|
)
|
||
|
|
BUSINESS_CANONICAL_FIELDS = frozenset(BUSINESS_CANONICAL_FIELD_ORDER)
|