impl get position over detail divions

wip: detail division

for entry new division position

finish v1 divison-position
This commit is contained in:
Khafid Prayoga
2025-10-24 12:48:05 +07:00
parent 1042fd4923
commit df27262bd1
13 changed files with 675 additions and 6 deletions
+3 -1
View File
@@ -1,11 +1,13 @@
import { type Base, genBase } from './_base'
import type { Employee } from './employee'
export interface DivisionPosition extends Base {
code: string
name: string
headStatus?: boolean
division_id: number
employee_id?: number
employee?: Employee | null
}
export function genDivisionPosition(): DivisionPosition {