fix: refactoring account form fields with FastField component.

This commit is contained in:
Ahmed Bouhuolia
2020-11-29 20:22:02 +02:00
parent 62bfc1fc5c
commit cfeca92a60
5 changed files with 306 additions and 317 deletions

View File

@@ -0,0 +1,25 @@
import { formatMessage } from 'services/intl';
export const transformApiErrors = (errors) => {
const fields = {};
if (errors.find((e) => e.type === 'NOT_UNIQUE_CODE')) {
fields.code = formatMessage({ id: 'account_code_is_not_unique' });
}
if (errors.find((e) => e.type === 'ACCOUNT.NAME.NOT.UNIQUE')) {
fields.name = formatMessage({ id: 'account_name_is_already_used' });
}
return fields;
};
export const transformAccountToForm = (account, {
action,
parentAccountId,
accountTypeId
}) => {
return {
parent_account_id: action === 'new_child' ? parentAccountId : '',
account_type_id: action === 'new_child'? accountTypeId : '',
subaccount: action === 'new_child' ? true : false,
...account,
}
}