Skip to content

Commit b93dcf3

Browse files
authored
fix: C1 xero bug fix (#1097)
1 parent 3de2e0e commit b93dcf3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/core/models/xero/xero-configuration/xero-export-settings.model.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export class XeroExportSettingModel {
184184
static getValidators(): [ExportSettingValidatorRule, ExportModuleRule[]] {
185185
const exportSettingValidatorRule: ExportSettingValidatorRule = {
186186
reimbursableExpense: ['reimbursableExportType', 'reimbursableExportGroup', 'reimbursableExportDate', 'expenseState'],
187-
creditCardExpense: ['creditCardExportType', 'creditCardExportGroup', 'creditCardExportDate', 'cccExpenseState', 'bankAccount', 'splitExpenseGrouping']
187+
creditCardExpense: ['creditCardExportType', 'creditCardExportGroup', 'creditCardExportDate', 'cccExpenseState', 'splitExpenseGrouping']
188188
};
189189

190190
const exportModuleRule: ExportModuleRule[] = [
@@ -196,6 +196,7 @@ export class XeroExportSettingModel {
196196
{
197197
formController: 'creditCardExportType',
198198
requiredValue: {
199+
[XeroCorporateCreditCardExpensesObject.BANK_TRANSACTION]: ['bankAccount']
199200
}
200201
}
201202
];
@@ -242,6 +243,7 @@ export class XeroExportSettingModel {
242243
bank_account: exportSettingsForm.get('bankAccount')?.value ? ExportSettingModel.formatGeneralMappingPayload(exportSettingsForm.get('bankAccount')?.value) : emptyDestinationAttribute
243244
}
244245
};
246+
245247
return exportSettingPayload;
246248
}
247249
}

0 commit comments

Comments
 (0)