|
|
@@ -91,8 +91,8 @@ const OrganizationCard_loadFromUser = ({ userData, userId }) => { |
|
|
|
faxNumber: values.faxNumber |
|
|
|
}, |
|
|
|
addressTemp: { |
|
|
|
country: values.country, |
|
|
|
district: values.district, |
|
|
|
country: values.country.key, |
|
|
|
district: values.district.key, |
|
|
|
addressLine1: values.addressLine1, |
|
|
|
addressLine2: values.addressLine2, |
|
|
|
addressLine3: values.addressLine3, |
|
|
@@ -228,6 +228,7 @@ const OrganizationCard_loadFromUser = ({ userData, userId }) => { |
|
|
|
label: FieldUtils.notNullFieldLabel("Country:"), |
|
|
|
valueName: "country", |
|
|
|
dataList: ComboData.country, |
|
|
|
getOptionLabel: (option) => option.type? intl.formatMessage({ id: option.type}) : "", |
|
|
|
form: formik |
|
|
|
})} |
|
|
|
</Grid> |
|
|
@@ -237,6 +238,7 @@ const OrganizationCard_loadFromUser = ({ userData, userId }) => { |
|
|
|
label: FieldUtils.notNullFieldLabel("District:"), |
|
|
|
valueName: "district", |
|
|
|
dataList: ComboData.district, |
|
|
|
getOptionLabel: (option) => option.type? intl.formatMessage({ id: option.type}) : "", |
|
|
|
form: formik |
|
|
|
})} |
|
|
|
</Grid> |
|
|
|