Merge branch 'dev' into feat/consultation-82
This commit is contained in:
No files matched your search
+13
-1
@@ -1,6 +1,18 @@
|
||||
export interface Material {
|
||||
import { type Base, genBase } from "./_base"
|
||||
|
||||
export interface Material extends Base {
|
||||
code: string
|
||||
name: string
|
||||
uom_code: string
|
||||
stock: number
|
||||
}
|
||||
|
||||
export function genMaterial(): Material {
|
||||
return {
|
||||
...genBase(),
|
||||
code: '',
|
||||
name: '',
|
||||
uom_code: '',
|
||||
stock: 0,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user