yyb
2026-04-23 b6db02f5ff1c06cbfdda090ade5719f2d45f5b6f
1
2
3
4
5
6
7
8
9
10
11
12
13
export const QUALITY_TYPE = {
  qualified: "qualified",
  unqualified: "unqualified",
} as const;
 
export type QualityType = (typeof QUALITY_TYPE)[keyof typeof QUALITY_TYPE];
 
export const CONTRACT_KIND = {
  sales: "sales",
  purchase: "purchase",
} as const;
 
export type ContractKind = (typeof CONTRACT_KIND)[keyof typeof CONTRACT_KIND];