feat(FE-170,175): add grading data handling in RecordingForm and update types

This commit is contained in:
rstubryan
2025-11-06 22:40:04 +07:00
parent 62c16bb9d1
commit c45217e98e
2 changed files with 18 additions and 2 deletions
+4
View File
@@ -55,6 +55,10 @@ export type RecordingEgg = {
qty: number;
created_by: User;
product_warehouse: ProductWarehouse;
gradings?: {
grade: string;
qty: number;
}[];
};
export type GradingEgg = {