Files
X-Financial/server/src/app/services/steward_constants.py

19 lines
372 B
Python
Raw Normal View History

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)