22 lines
517 B
TypeScript
22 lines
517 B
TypeScript
export const INPUT_MODE = {
|
|
CUSTOMER_FIRST: "customer_first",
|
|
QUOTATION: "quotation",
|
|
UNIT_PRICE: "unit_price",
|
|
} as const;
|
|
|
|
export type InputMode = (typeof INPUT_MODE)[keyof typeof INPUT_MODE];
|
|
|
|
export const SALES_TYPE = {
|
|
DOMESTIC: "domestic",
|
|
EXPORT: "export",
|
|
} as const;
|
|
|
|
export type SalesType = (typeof SALES_TYPE)[keyof typeof SALES_TYPE];
|
|
|
|
export const PRICE_TYPE = {
|
|
STANDARD: "standard",
|
|
CUSTOMER: "customer",
|
|
} as const;
|
|
|
|
export type PriceType = (typeof PRICE_TYPE)[keyof typeof PRICE_TYPE];
|