fix(resolve): fix resolve MR

This commit is contained in:
rstubryan
2025-11-18 11:17:20 +07:00
26 changed files with 4151 additions and 23 deletions
+23
View File
@@ -77,3 +77,26 @@ export const LAYING_RECORDING_APPROVAL_LINE: ApprovalLine = [
step_name: 'Disetujui',
},
] as const;
export const EXPENSE_REQUEST_APPROVAL_LINE: ApprovalLine = [
{
step_number: 1,
step_name: 'Pengajuan',
},
{
step_number: 2,
step_name: 'Approval Manager Area',
},
{
step_number: 3,
step_name: 'Approval Finance',
},
{
step_number: 4,
step_name: 'Realisasi',
},
{
step_number: 5,
step_name: 'Selesai',
},
] as const;
+15
View File
@@ -40,6 +40,12 @@ export const MAIN_DRAWER_LINKS: MAIN_DRAWER_MENU[] = [
],
},
{
title: 'Biaya Operasional',
link: '/expense',
icon: 'uil:wallet',
},
{
title: 'Penjualan',
link: '/marketing/sales-orders',
@@ -264,3 +270,12 @@ export const APPROVAL_WORKFLOWS = [
],
},
];
export const ACCEPTED_FILE_TYPE = {
PDF: {
'application/pdf': ['.pdf'],
},
IMAGE: {
'image/*': [],
},
};