Skip to content

Commit

Permalink
fix: send split lineitem in payload
Browse files Browse the repository at this point in the history
  • Loading branch information
NileshPant1999 committed Dec 6, 2024
1 parent 521d287 commit b8c83ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export class XeroExportSettingModel {
bankAccount: new FormControl(exportSettings?.general_mappings?.bank_account?.id ? findObjectByDestinationId(destinationAttribute, exportSettings.general_mappings.bank_account.id) : null),
autoMapEmployees: new FormControl(exportSettings?.workspace_general_settings?.auto_map_employees),
searchOption: new FormControl(''),
splitExpenseGrouping: new FormControl(exportSettings?.expense_group_settings?.split_expense_grouping)
splitExpenseGrouping: new FormControl(exportSettings?.expense_group_settings?.split_expense_grouping ? exportSettings?.expense_group_settings?.split_expense_grouping : SplitExpenseGrouping.MULTIPLE_LINE_ITEM)
});
}

Expand Down

0 comments on commit b8c83ef

Please sign in to comment.