mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 07:15:44 +00:00
80 lines
1.3 KiB
TypeScript
80 lines
1.3 KiB
TypeScript
import { ApprovalLine } from '@/types/config/constant';
|
|
|
|
export const PROJECT_FLOCK_APPROVAL_LINE: ApprovalLine = [
|
|
{
|
|
step_number: 1,
|
|
step_name: 'Pengajuan',
|
|
},
|
|
{
|
|
step_number: 2,
|
|
step_name: 'Aktif',
|
|
},
|
|
] as const;
|
|
|
|
export const PROJECT_FLOCK_KANDANG_APPROVAL_LINE: ApprovalLine = [
|
|
{
|
|
step_number: 1,
|
|
step_name: 'Pengajuan',
|
|
},
|
|
{
|
|
step_number: 2,
|
|
step_name: 'Disetujui',
|
|
},
|
|
] as const;
|
|
|
|
export const TRANSFER_TO_LAYING_APPROVAL_LINE: ApprovalLine = [
|
|
{
|
|
step_number: 1,
|
|
step_name: 'Pengajuan',
|
|
},
|
|
{
|
|
step_number: 2,
|
|
step_name: 'Disetujui',
|
|
},
|
|
] as const;
|
|
|
|
export const RECORDING_APPROVAL_LINE: ApprovalLine = [
|
|
{
|
|
step_number: 1,
|
|
step_name: 'Grading-Telur',
|
|
},
|
|
{
|
|
step_number: 2,
|
|
step_name: 'Pengajuan',
|
|
},
|
|
{
|
|
step_number: 3,
|
|
step_name: 'Disetujui',
|
|
},
|
|
] as const;
|
|
|
|
export const GROWING_RECORDING_APPROVAL_LINE: ApprovalLine = [
|
|
{
|
|
step_number: 1,
|
|
step_name: 'Grading-Telur',
|
|
},
|
|
{
|
|
step_number: 2,
|
|
step_name: 'Pengajuan',
|
|
},
|
|
{
|
|
step_number: 3,
|
|
step_name: 'Disetujui',
|
|
},
|
|
] as const;
|
|
|
|
export const LAYING_RECORDING_APPROVAL_LINE: ApprovalLine = [
|
|
{
|
|
step_number: 1,
|
|
step_name: 'Grading-Telur',
|
|
},
|
|
{
|
|
step_number: 2,
|
|
step_name: 'Pengajuan',
|
|
},
|
|
{
|
|
step_number: 3,
|
|
step_name: 'Disetujui',
|
|
},
|
|
] as const;
|