- 백엔드: 배열 객체 형식 Repeater 데이터 처리 로직 추가 - 백엔드: Repeater 저장 시 company_code 자동 주입 - 백엔드: 부모 테이블 데이터 자동 병합 (targetTable = tableName) - 프론트엔드: beforeFormSave 이벤트로 formData 주입 - 프론트엔드: _targetTable 메타데이터 전달 - 프론트엔드: ComponentRendererProps 상속 및 Renderer 단순화 멀티테넌시 및 부모-자식 관계 자동 처리로 복잡한 배열 데이터 저장 안정성 확보
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];
|