update module export data csv

This commit is contained in:
2024-11-30 09:38:23 +07:00
parent b75213da15
commit 37aa7842fd
8 changed files with 382 additions and 23 deletions

View File

@ -73,4 +73,12 @@ export default class CommonHelper {
return '';
}
static getKeyEnum(obj: any, key: any): any {
try {
return Object.values(obj)[Object.keys(obj)[key]]
} catch (e: any) {
return '';
}
}
}