You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/core/models/business-central/business-central-configuration/business-central-export-setting.model.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ export type BusinessCentralExportSetting = {
15
15
credit_card_expense_date: ExportDateType,
16
16
default_bank_account_name: string,
17
17
default_bank_account_id: string,
18
+
default_ccc_bank_account_name: string,
19
+
default_ccc_bank_account_id: string,
18
20
name_in_journal_entry: string,
19
21
employee_field_mapping: string,
20
22
auto_map_employees: string,
@@ -184,6 +186,7 @@ export class BusinessCentralExportSettingModel {
Copy file name to clipboardExpand all lines: src/app/core/models/business-central/business-central-configuration/business-central-import-settings.model.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ export class BusinessCentralImportSettingsModel extends ImportSettingsModel {
Copy file name to clipboardExpand all lines: src/app/integrations/business-central/business-central-onboarding/business-central-onboarding-landing/business-central-onboarding-landing.component.html
<app-landing-page-header[logoWidth]="'65px'" [logoStyleClasses]="'tw-p-0'" [logoSectionStyleClasses]="''" [iconPath]="'assets/logos/BusinessCentral-logo.svg'" [appName]="'Dynamics 365 Business Central'" [appDescription]="'Import data from Dynamics 365 Business Central to ' + brandingConfig.brandName + ' and Export expenses from ' + brandingConfig.brandName + ' to Dynamics 365 Business Central. '" [isLoading]="false" [isIntegrationSetupInProgress]="businessCentralConnectionInProgress" [isIntegrationConnected]="isIntegrationConnected" [redirectLink]="redirectLink" [buttonText]="'Connect'" [postConnectionRoute]="'business_central/onboarding/connector'" (connectIntegration)="connectBusinessCentral()"></app-landing-page-header>
4
4
</div>
5
5
<div>
6
6
<app-landing-page-body[headlineText]="'Guide to setup your Integrations'" [headerText]="'A quick guide to help you set up the integration quick and easy.'" [svgPath]="'assets/flow-charts/ms-dynamics-flow-chart.svg'" [appName]="appName"></app-landing-page-body>
[contextText]="'You had previously set up the integration with a different Dynamic 365 Business Central account. Please choose the same to restore the settings'"
Copy file name to clipboardExpand all lines: src/app/integrations/business-central/business-central-onboarding/business-central-onboarding-landing/business-central-onboarding-landing.component.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ export class BusinessCentralOnboardingLandingComponent implements OnInit, OnDest
33
33
34
34
privateoauthCallbackSubscription: Subscription;
35
35
36
-
isIncorrectQBOConnectedDialogVisible: boolean;
36
+
isIncorrectBCConnectedDialogVisible: boolean;
37
37
38
38
constructor(
39
39
privatehelperService: HelperService,
@@ -45,9 +45,9 @@ export class BusinessCentralOnboardingLandingComponent implements OnInit, OnDest
Copy file name to clipboardExpand all lines: src/app/integrations/business-central/business-central-shared/business-central-export-settings/business-central-export-settings.component.html
+10-8Lines changed: 10 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -91,8 +91,8 @@
91
91
[mandatoryErrorListName]="'Default Bank Account Name'"
92
92
[label]="'Set the Default Bank Account as?'"
93
93
[subLabel]="'The integration will assign the Expenses that is exported as Journal Entry to the Bank Account selected here.'"
Copy file name to clipboardExpand all lines: src/app/integrations/business-central/business-central-shared/business-central-export-settings/business-central-export-settings.component.ts
+56-22Lines changed: 56 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,7 @@ export class BusinessCentralExportSettingsComponent implements OnInit {
29
29
30
30
exportSettingForm: FormGroup;
31
31
32
-
bankOptions: DestinationAttribute[];
33
-
34
-
reimbursableBankOptions: DestinationAttribute[];
32
+
bankAccountOptions: DestinationAttribute[];
35
33
36
34
vendorOptions: DestinationAttribute[];
37
35
@@ -142,13 +140,23 @@ export class BusinessCentralExportSettingsComponent implements OnInit {
0 commit comments