API v4 계약 반영하고 보고서·입출고 화면 실연동 강화

This commit is contained in:
JiWoong Sul
2025-10-16 14:57:07 +09:00
parent 7e0f7b1c55
commit d5c99627db
34 changed files with 1767 additions and 327 deletions

View File

@@ -6,9 +6,9 @@ class ReportExportRequest {
required this.from,
required this.to,
required this.format,
this.transactionTypeId,
this.statusId,
this.warehouseId,
this.transactionStatusId,
this.approvalStatusId,
this.requestedById,
});
/// 조회 시작 일자.
@@ -20,12 +20,12 @@ class ReportExportRequest {
/// 내보내기 파일 형식.
final ReportExportFormat format;
/// 재고 트랜잭션 유형 식별자.
final int? transactionTypeId;
/// 트랜잭션 상태 식별자.
final int? transactionStatusId;
/// 결재 상태 식별자.
final int? statusId;
final int? approvalStatusId;
/// 창고 식별자.
final int? warehouseId;
/// 상신자(요청자) 식별자.
final int? requestedById;
}