feat(material): modify handlers and service of material

This commit is contained in:
riefive
2025-09-19 15:23:09 +07:00
parent 29b54b072c
commit 70378a69e9
11 changed files with 244 additions and 142 deletions
-6
View File
@@ -1,6 +0,0 @@
export interface EquipmentMaterial {
code: string;
name: string;
uom_code: string;
stock: number;
}
+6
View File
@@ -0,0 +1,6 @@
export interface Material {
code: string
name: string
uom_code: string
stock: number
}
+4
View File
@@ -0,0 +1,4 @@
export interface Uom {
code: string
name: string
}