new earchive Doc Type

This commit is contained in:
2025-10-22 11:17:17 +07:00
parent 2a0e6b0389
commit 8c28ccf13f
4 changed files with 51 additions and 3 deletions

8
src/types/earchive.ts Normal file
View File

@ -0,0 +1,8 @@
export enum StatusDocument {
"rejected" = -3,
"draft" = -1,
"submitted" = 0,
"approval" = 1,
"disposition" = 2,
};