리포트 디자이너에 바코드/QR코드 컴포넌트 추가

This commit is contained in:
dohyeons
2025-12-19 17:59:54 +09:00
parent 932eb288c6
commit ea01309158
11 changed files with 1017 additions and 10 deletions

View File

@@ -189,6 +189,15 @@ export interface ComponentConfig {
showCalcBorder?: boolean; // 테두리 표시 여부
numberFormat?: "none" | "comma" | "currency"; // 숫자 포맷 (없음, 천단위, 원화)
currencySuffix?: string; // 통화 접미사 (예: "원")
// 바코드 컴포넌트 전용
barcodeType?: "CODE128" | "CODE39" | "EAN13" | "EAN8" | "UPC" | "QR"; // 바코드 타입
barcodeValue?: string; // 고정값
barcodeFieldName?: string; // 쿼리 필드 바인딩
showBarcodeText?: boolean; // 바코드 아래 텍스트 표시 (1D만)
barcodeColor?: string; // 바코드 색상
barcodeBackground?: string; // 배경 색상
barcodeMargin?: number; // 여백
qrErrorCorrectionLevel?: "L" | "M" | "Q" | "H"; // QR 오류 보정 수준
}
// 리포트 상세