ปรับ workflow

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-17 13:37:13 +07:00
parent 825d99e22e
commit f251ae03d7
4 changed files with 66 additions and 44 deletions

View file

View file

@ -0,0 +1,10 @@
interface Permission {
isChangeState: boolean; //ส่งไปยังผู้บังคับบัญชา/ผู้มีอำนาจ
isOperate: boolean; //เปลี่ยนสถานะ (state) เอกสารได้
isView: boolean; //ดูเอกสารได้
isUpdate: boolean; //แก้ไขเอกสารได้
isDelete: boolean; //ลบเอกสารได้ (ถ้ามี)
isCancel: boolean; //ลบเอกสารได้ (ถ้ามี)
}
export type { Permission };