add table log pulls

This commit is contained in:
2024-12-11 15:41:48 +07:00
parent c98868defa
commit 14b7d85568
3 changed files with 67 additions and 1 deletions

15
src/types/pull.ts Normal file
View File

@ -0,0 +1,15 @@
export enum LogPullType {
"LNKOLEK" = "LNKOLEK",
"CIF_BEREKENING" = "CIF_BEREKENING",
"TRIAL_BALANCE_BRANCH" = "TRIAL_BALANCE_BRANCH",
"TRIAL_BALANCE_KONSOLIDASI" = "TRIAL_BALANCE_KONSOLIDASI",
"TRANSAKSI_CS" = "TRANSAKSI_CS"
};
export enum StatusLogPull {
"Waiting Schedule" = "W",
"Failed Pull Data" = "N",
"Retry Pull Data" = "R",
"Success Pull Data" = "Y"
};