2026-05-25 21:27:39 +03:00
|
|
|
const CancellationReason = Object.freeze({
|
|
|
|
|
NONE: 0,
|
|
|
|
|
DEPOSIT_NOT_PAID: 1,
|
|
|
|
|
OWNER_CANCELED: 2,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const CancellationReasonLabels = Object.freeze({
|
|
|
|
|
[CancellationReason.NONE]: 'بدون سبب',
|
|
|
|
|
[CancellationReason.DEPOSIT_NOT_PAID]: 'عدم دفع العربون',
|
|
|
|
|
[CancellationReason.OWNER_CANCELED]: 'إلغاء من المالك',
|
|
|
|
|
});
|
|
|
|
|
|
2026-07-01 15:43:58 +03:00
|
|
|
const CancellationReasonTranslationKeys = Object.freeze({
|
|
|
|
|
[CancellationReason.NONE]: 'cancellationReason.none',
|
|
|
|
|
[CancellationReason.DEPOSIT_NOT_PAID]: 'cancellationReason.noDeposit',
|
|
|
|
|
[CancellationReason.OWNER_CANCELED]: 'cancellationReason.ownerCancellation',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export { CancellationReason, CancellationReasonLabels, CancellationReasonTranslationKeys };
|