21 lines
554 B
TypeScript
21 lines
554 B
TypeScript
import type { JobInfoFormData } from "../types";
|
|
|
|
export const INITIAL_JOB_INFO_VALUES: JobInfoFormData = {
|
|
readyToWorkDate: "",
|
|
isCurrentEmployee: false,
|
|
hasPastCooperation: false,
|
|
isCurrentlyEmployed: false,
|
|
dualJobInterest: false,
|
|
retirementStatus: "None",
|
|
isMilitary: false,
|
|
hasInsurance: false,
|
|
insuranceType: "",
|
|
totalInsuranceYears: "0",
|
|
};
|
|
|
|
export const retirementOptions = [
|
|
{ value: "None", label: "هیچکدام" },
|
|
{ value: "Retired", label: "بازنشسته" },
|
|
{ value: "Redeemed", label: "بازخرید" },
|
|
];
|