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

+12 -1
View File
@@ -1,5 +1,16 @@
export interface Uom {
import { type Base, genBase } from "./_base"
export interface Uom extends Base {
code: string
name: string
erp_id: string
}
export function genUom(): Uom {
return {
...genBase(),
code: '',
name: '',
erp_id: '',
}
}