Merge branch 'dev' into feat/consultation-82

This commit is contained in:
2025-10-08 07:55:22 +07:00
287 changed files with 11633 additions and 2327 deletions

No files matched your search

+13 -1
View File
@@ -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,
}
}