forked from amer2004/SweetHome
23 lines
576 B
JavaScript
23 lines
576 B
JavaScript
/**
|
|
* CustomerType Enum
|
|
* Backend values for customer sub-types
|
|
* Used in: Customer registration (Customer/Add)
|
|
*/
|
|
const CustomerType = Object.freeze({
|
|
PERSONAL: 0,
|
|
FAMILY: 1,
|
|
});
|
|
|
|
// Map value → Arabic label
|
|
const CustomerTypeLabels = Object.freeze({
|
|
[CustomerType.PERSONAL]: 'شخصي',
|
|
[CustomerType.FAMILY]: 'عائلي',
|
|
});
|
|
|
|
const CustomerTypeTranslationKeys = Object.freeze({
|
|
[CustomerType.PERSONAL]: 'customerType.personal',
|
|
[CustomerType.FAMILY]: 'customerType.family',
|
|
});
|
|
|
|
export { CustomerType, CustomerTypeLabels, CustomerTypeTranslationKeys };
|