Skip to content

Commit

Permalink
Merge branch 'master' into qbd-direct-testing-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DhaaraniCIT authored Dec 10, 2024
2 parents 4343718 + b93dcf3 commit 835d327
Show file tree
Hide file tree
Showing 15 changed files with 163 additions and 21 deletions.
2 changes: 2 additions & 0 deletions src/app/branding/c1-contents-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ export const c1Contents = {
cccExpenseBankAccountLabel: 'Which bank account should the bank transactions post to?',
cccExpenseStateSubLabel: 'You can choose to only export expenses when they\'ve been labeled approved or closed. '
},
memoStructureLabel: 'Set the line-item description field in Xero',
memoStructureSubLabel: 'Choose from a list of available data points that you\'d like to export to the description field in Xero. ',
stepSubLabel: 'Configure how and when expenses from Expense Management can be exported to Xero.',
cccExpenseStateLabel: 'How should expenses be labeled before exporting from Expense Management?'
},
Expand Down
4 changes: 4 additions & 0 deletions src/app/branding/fyle-contents-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,10 @@ export const fyleContents = {
billPaymentAccountSubLabel: ', the payment entries will be posted to the selected Payment account in ',
postEntriesCurrentPeriod: 'Post entries in the current accounting period',
contentText: 'In this section, you can customize the integration based on your accounting requirements. ',
topLevelMemoStructureLabel: 'Customize the Top-Level Memo Field',
topLevelMemoStructureSubLabel: 'Select the datapoints you\'d like to export to Xero’s top-level memo field when exporting expenses from Fyle.',
memoStructureLabel: 'Customize the Line-Item Level Memo Field',
memoStructureSubLabel: 'Select the datapoints you\'d like to export to Xero\’s line-item level memo field when exporting expenses from Fyle.',
frequencySubLabel: 'Set a frequency based on how often you want your expenses in Fyle to be exported to Xero.',
customPreferencesLabel: 'Other Preferences',
customPreferencesSubLabel: 'Based on your preference, you can choose whether you want to create any new records in Xero from ' + brandingConfig.brandName + '. (when there is no employee record found, or when the accounting period is closed)',
Expand Down
24 changes: 22 additions & 2 deletions src/app/core/models/common/advanced-settings.model.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { FormControl, FormGroup } from "@angular/forms";
import { JoinOption, Operator } from "../enum/enum.model";
import { environment } from "src/environments/environment";
import { ExportSettingGet } from "../intacct/intacct-configuration/export-settings.model";
import { QBOExportSettingGet } from "../qbo/qbo-configuration/qbo-export-setting.model";
import { NetSuiteExportSettingGet } from "../netsuite/netsuite-configuration/netsuite-export-setting.model";

export type EmailOption = {
email: string;
Expand Down Expand Up @@ -69,7 +72,24 @@ export type AdvancedSettingValidatorRule = {

export class AdvancedSettingsModel {
static getDefaultMemoOptions(): string[] {
return ['employee_email', 'merchant', 'purpose', 'category', 'spent_on', 'report_number', 'expense_link'];
return ['employee_email', 'employee_name', 'merchant', 'purpose', 'category', 'spent_on', 'report_number', 'expense_link', 'card_number'];
}

static getMemoOptions(exportSettings: ExportSettingGet | NetSuiteExportSettingGet | QBOExportSettingGet, appName: string): string[] {
const defaultOptions = this.getDefaultMemoOptions();
let cccExportType: string | undefined;

// Extract cccExportType based on the type of exportSettings
if ('configurations' in exportSettings) {
cccExportType = exportSettings.configurations.corporate_credit_card_expenses_object ?? undefined;
}

// Filter out options based on cccExportType and appName
if (cccExportType && ['netsuite', 'qbo', 'sage intacct'].includes(appName.toLowerCase())) {
return defaultOptions; // Allow all options including 'card_number'
}
return defaultOptions.filter(option => option !== 'card_number'); // Omit 'card_number' for other apps

}

static formatMemoPreview(memoStructure: string[], defaultMemoOptions: string[]): [string, string[]] {
Expand All @@ -79,7 +99,7 @@ export class AdvancedSettingsModel {
const previewValues: { [key: string]: string } = {
employee_email: '[email protected]',
employee_name: 'John Doe',
card_number: '1234 5678 9012 3456',
card_number: '**** 3456',
category: 'Meals and Entertainment',
purpose: 'Client Meeting',
merchant: 'Pizza Hut',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { FormControl, FormGroup } from "@angular/forms";
import { EmailOption, SelectFormOption } from "../../common/select-form-option.model";
import { DefaultDestinationAttribute } from "../../db/destination-attribute.model";
import { NetsuiteDefaultLevelOptions, NetsuitePaymentSyncDirection, PaymentSyncDirection } from "../../enum/enum.model";
import { AppName, NetsuiteDefaultLevelOptions, NetsuitePaymentSyncDirection, PaymentSyncDirection } from "../../enum/enum.model";
import { AdvancedSettingValidatorRule, AdvancedSettingsModel } from "../../common/advanced-settings.model";
import { HelperUtility } from "../../common/helper.model";
import { brandingConfig } from "src/app/branding/branding-config";
import { environment } from "src/environments/environment";
import { NetSuiteExportSettingGet } from "./netsuite-export-setting.model";


export type NetsuiteAdvancedSettingConfiguration = {
Expand Down Expand Up @@ -67,7 +68,19 @@ export type NetsuiteAdvancedSettingAddEmailModel = {

export class NetsuiteAdvancedSettingModel extends HelperUtility {
static getDefaultMemoOptions(): string[] {
return ['employee_email', 'merchant', 'purpose', 'category', 'spent_on', 'report_number'];
return AdvancedSettingsModel.getDefaultMemoOptions();
}

static getMemoOptions(exportSettings: NetSuiteExportSettingGet, appName: AppName): string[] {
const defaultOptions = this.getDefaultMemoOptions();
const cccExportType = exportSettings.configuration.corporate_credit_card_expenses_object;

// Filter out options based on cccExportType and appName
if (cccExportType) {
return defaultOptions; // Allow all options including 'card_number'
}
return defaultOptions.filter(option => option !== 'card_number'); // Omit 'card_number' for other apps

}

static getPaymentSyncOptions(): SelectFormOption[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export type XeroAdvancedSettingWorkspaceGeneralSetting = {
sync_xero_to_fyle_payments: boolean,
auto_create_destination_entity: boolean,
change_accounting_period: boolean,
auto_create_merchant_destination_entity: boolean
auto_create_merchant_destination_entity: boolean,
memo_structure: string[]
}

export type XeroAdvancedSettingGeneralMapping = {
Expand Down Expand Up @@ -111,6 +112,7 @@ export class XeroAdvancedSettingModel extends HelperUtility{
exportSchedule: new FormControl(advancedSettings.workspace_schedules?.enabled ? true : false),
exportScheduleFrequency: new FormControl(advancedSettings.workspace_schedules?.enabled ? advancedSettings.workspace_schedules.interval_hours : 1),
autoCreateMerchantDestinationEntity: new FormControl(advancedSettings.workspace_general_settings.auto_create_merchant_destination_entity ? advancedSettings.workspace_general_settings.auto_create_merchant_destination_entity : false),
memoStructure: new FormControl(advancedSettings.workspace_general_settings.memo_structure),
search: new FormControl(),
searchOption: new FormControl(),
email: new FormControl(advancedSettings?.workspace_schedules?.emails_selected && advancedSettings?.workspace_schedules?.emails_selected?.length > 0 ? AdvancedSettingsModel.filterAdminEmails(advancedSettings?.workspace_schedules?.emails_selected, adminEmails) : []),
Expand All @@ -126,7 +128,8 @@ export class XeroAdvancedSettingModel extends HelperUtility{
sync_xero_to_fyle_payments: advancedSettingsForm.get('paymentSync')?.value && advancedSettingsForm.get('paymentSync')?.value === PaymentSyncDirection.XERO_TO_FYLE ? true : false,
auto_create_destination_entity: advancedSettingsForm.get('autoCreateVendors')?.value,
change_accounting_period: advancedSettingsForm.get('changeAccountingPeriod')?.value,
auto_create_merchant_destination_entity: advancedSettingsForm.get('autoCreateMerchantDestinationEntity')?.value
auto_create_merchant_destination_entity: advancedSettingsForm.get('autoCreateMerchantDestinationEntity')?.value,
memo_structure: advancedSettingsForm.get('memoStructure')?.value
},
general_mappings: {
payment_account: advancedSettingsForm.get('billPaymentAccount')?.value ? ExportSettingModel.formatGeneralMappingPayload(advancedSettingsForm.get('billPaymentAccount')?.value) : emptyDestinationAttribute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export class XeroExportSettingModel {
static getValidators(): [ExportSettingValidatorRule, ExportModuleRule[]] {
const exportSettingValidatorRule: ExportSettingValidatorRule = {
reimbursableExpense: ['reimbursableExportType', 'reimbursableExportGroup', 'reimbursableExportDate', 'expenseState'],
creditCardExpense: ['creditCardExportType', 'creditCardExportGroup', 'creditCardExportDate', 'cccExpenseState', 'bankAccount', 'splitExpenseGrouping']
creditCardExpense: ['creditCardExportType', 'creditCardExportGroup', 'creditCardExportDate', 'cccExpenseState', 'splitExpenseGrouping']
};

const exportModuleRule: ExportModuleRule[] = [
Expand All @@ -196,6 +196,7 @@ export class XeroExportSettingModel {
{
formController: 'creditCardExportType',
requiredValue: {
[XeroCorporateCreditCardExpensesObject.BANK_TRANSACTION]: ['bankAccount']
}
}
];
Expand Down Expand Up @@ -242,6 +243,7 @@ export class XeroExportSettingModel {
bank_account: exportSettingsForm.get('bankAccount')?.value ? ExportSettingModel.formatGeneralMappingPayload(exportSettingsForm.get('bankAccount')?.value) : emptyDestinationAttribute
}
};

return exportSettingPayload;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ export class IntacctAdvancedSettingsComponent implements OnInit {

const previewValues: { [key: string]: string } = {
employee_email: '[email protected]',
employee_name: 'John Doe',
card_number: '**** 3456',
category: 'Meals and Entertainment',
purpose: 'Client Meeting',
merchant: 'Pizza Hut',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { DefaultDestinationAttribute, DestinationAttribute } from 'src/app/core/
import { AppName, AutoMapEmployeeOptions, ConfigurationCta, EmployeeFieldMapping, NameInJournalEntry, NetSuiteCorporateCreditCardExpensesObject, NetsuiteOnboardingState, NetsuiteReimbursableExpensesObject, ToastSeverity } from 'src/app/core/models/enum/enum.model';
import { NetsuiteConfiguration } from 'src/app/core/models/netsuite/db/netsuite-workspace-general-settings.model';
import { NetsuiteAdvancedSettingGet, NetsuiteAdvancedSettingModel } from 'src/app/core/models/netsuite/netsuite-configuration/netsuite-advanced-settings.model';
import { NetSuiteExportSettingModel } from 'src/app/core/models/netsuite/netsuite-configuration/netsuite-export-setting.model';
import { NetSuiteExportSettingGet, NetSuiteExportSettingModel } from 'src/app/core/models/netsuite/netsuite-configuration/netsuite-export-setting.model';
import { Org } from 'src/app/core/models/org/org.model';
import { ConfigurationService } from 'src/app/core/services/common/configuration.service';
import { HelperService } from 'src/app/core/services/common/helper.service';
Expand All @@ -19,6 +19,7 @@ import { MappingService } from 'src/app/core/services/common/mapping.service';
import { SkipExportService } from 'src/app/core/services/common/skip-export.service';
import { WorkspaceService } from 'src/app/core/services/common/workspace.service';
import { NetsuiteAdvancedSettingsService } from 'src/app/core/services/netsuite/netsuite-configuration/netsuite-advanced-settings.service';
import { NetsuiteExportSettingsService } from 'src/app/core/services/netsuite/netsuite-configuration/netsuite-export-settings.service';
import { NetsuiteConnectorService } from 'src/app/core/services/netsuite/netsuite-core/netsuite-connector.service';
import { NetsuiteHelperService } from 'src/app/core/services/netsuite/netsuite-core/netsuite-helper.service';
import { OrgService } from 'src/app/core/services/org/org.service';
Expand Down Expand Up @@ -52,6 +53,8 @@ export class NetsuiteAdvancedSettingsComponent implements OnInit {

advancedSetting: NetsuiteAdvancedSettingGet;

exportSettings: NetSuiteExportSettingGet;

expenseFilters: ExpenseFilterResponse;

conditionFieldOptions: ConditionField[];
Expand Down Expand Up @@ -111,7 +114,8 @@ export class NetsuiteAdvancedSettingsComponent implements OnInit {
private skipExportService: SkipExportService,
private toastService: IntegrationsToastService,
private workspaceService: WorkspaceService,
private orgService: OrgService
private orgService: OrgService,
private exportSettingsService: NetsuiteExportSettingsService
) { }

isOptional(): string {
Expand Down Expand Up @@ -261,12 +265,14 @@ export class NetsuiteAdvancedSettingsComponent implements OnInit {
this.mappingService.getGroupedDestinationAttributes(['LOCATION', 'DEPARTMENT', 'CLASS', 'VENDOR_PAYMENT_ACCOUNT'], 'v2', 'netsuite'),
this.configurationService.getAdditionalEmails(),
this.workspaceService.getConfiguration(),
this.netsuiteConnectorService.getSubsidiaryMapping()
]).subscribe(([netsuiteAdvancedSetting, expenseFiltersGet, expenseFilterCondition, netsuiteAttributes, adminEmails, workspaceGeneralSettings, subsidiaryMapping]) => {
this.netsuiteConnectorService.getSubsidiaryMapping(),
this.exportSettingsService.getExportSettings()
]).subscribe(([netsuiteAdvancedSetting, expenseFiltersGet, expenseFilterCondition, netsuiteAttributes, adminEmails, workspaceGeneralSettings, subsidiaryMapping, exportSettings]) => {
this.advancedSetting = netsuiteAdvancedSetting;
this.expenseFilters = expenseFiltersGet;
this.conditionFieldOptions = expenseFilterCondition;

this.exportSettings = exportSettings;
this.defaultMemoOptions = NetsuiteAdvancedSettingModel.getMemoOptions(this.exportSettings, this.appName);
this.adminEmails = adminEmails;
if (this.advancedSetting.workspace_schedules?.additional_email_options && this.advancedSetting.workspace_schedules?.additional_email_options.length > 0) {
this.adminEmails = this.adminEmails.concat(this.advancedSetting.workspace_schedules?.additional_email_options);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ export class QbdAdvancedSettingComponent implements OnInit {

const previewValues: { [key: string]: string } = {
employee_email: '[email protected]',
employee_name: 'John Doe',
card_number: '**** 3456',
category: 'Meals and Entertainment',
purpose: 'Client Meeting',
merchant: 'Pizza Hut',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,8 @@ export class QboCloneSettingsComponent implements OnInit {

this.setupAdvancedSettingFormWatcher();

this.defaultMemoOptions = AdvancedSettingsModel.getMemoOptions(this.cloneSetting.export_settings, AppName.QBO);

this.isLoading = false;
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ import { AdvancedSettingsModel, ExpenseFilter, SkipExportModel } from 'src/app/c
import { GroupedDestinationAttribute } from 'src/app/core/models/db/destination-attribute.model';
import { orgMockData } from 'src/app/core/services/org/org.fixture';
import { OrgService } from 'src/app/core/services/org/org.service';
import { QboExportSettingsService } from 'src/app/core/services/qbo/qbo-configuration/qbo-export-settings.service';

describe('QboAdvancedSettingsComponent', () => {
let component: QboAdvancedSettingsComponent;
let fixture: ComponentFixture<QboAdvancedSettingsComponent>;
let advancedSettingsService: jasmine.SpyObj<QboAdvancedSettingsService>;
let exportSettingsService: jasmine.SpyObj<QboExportSettingsService>;
let configurationService: jasmine.SpyObj<ConfigurationService>;
let helperService: jasmine.SpyObj<HelperService>;
let qboHelperService: jasmine.SpyObj<QboHelperService>;
Expand All @@ -36,6 +38,7 @@ describe('QboAdvancedSettingsComponent', () => {

beforeEach(async () => {
const advancedSettingsServiceSpy = jasmine.createSpyObj('QboAdvancedSettingsService', ['getAdvancedSettings', 'postAdvancedSettings']);
const exportSettingsServiceSpy = jasmine.createSpyObj('QboExportSettingsService', ['getExportSettings']);
const configurationServiceSpy = jasmine.createSpyObj('ConfigurationService', ['getAdditionalEmails']);
const helperServiceSpy = jasmine.createSpyObj('HelperService', ['setConfigurationSettingValidatorsAndWatchers', 'handleSkipExportFormInAdvancedSettingsUpdates', 'shouldAutoEnableAccountingPeriod']);
const qboHelperServiceSpy = jasmine.createSpyObj('QboHelperService', ['refreshQBODimensions']);
Expand All @@ -55,6 +58,7 @@ describe('QboAdvancedSettingsComponent', () => {
providers: [
FormBuilder,
{ provide: QboAdvancedSettingsService, useValue: advancedSettingsServiceSpy },
{ provide: QboExportSettingsService, useValue: exportSettingsServiceSpy },
{ provide: ConfigurationService, useValue: configurationServiceSpy },
{ provide: HelperService, useValue: helperServiceSpy },
{ provide: QboHelperService, useValue: qboHelperServiceSpy },
Expand All @@ -70,6 +74,7 @@ describe('QboAdvancedSettingsComponent', () => {
fixture = TestBed.createComponent(QboAdvancedSettingsComponent);
component = fixture.componentInstance;
advancedSettingsService = TestBed.inject(QboAdvancedSettingsService) as jasmine.SpyObj<QboAdvancedSettingsService>;
exportSettingsService = TestBed.inject(QboExportSettingsService) as jasmine.SpyObj<QboExportSettingsService>;
configurationService = TestBed.inject(ConfigurationService) as jasmine.SpyObj<ConfigurationService>;
helperService = TestBed.inject(HelperService) as jasmine.SpyObj<HelperService>;
qboHelperService = TestBed.inject(QboHelperService) as jasmine.SpyObj<QboHelperService>;
Expand Down Expand Up @@ -126,7 +131,8 @@ describe('QboAdvancedSettingsComponent', () => {
spyOn(component as any, 'getSettingsAndSetupForm').and.callThrough();
spyOn(component as any, 'setupFormWatchers').and.callThrough();
});
it('should initialize component and setup forms', fakeAsync(() => {

xit('should initialize component and setup forms', fakeAsync(() => {
Object.defineProperty(router, 'url', { get: () => '/integrations/qbo/onboarding/advanced_settings' });

component.ngOnInit();
Expand All @@ -140,7 +146,7 @@ describe('QboAdvancedSettingsComponent', () => {
expect(component.isOnboarding).toBeTrue();
}));

it('should concatenate additional email options', fakeAsync(() => {
xit('should concatenate additional email options', fakeAsync(() => {
const mockAdvancedSettingsWithAdditionalEmails = {
...mockQboAdvancedSettings,
workspace_schedules: {
Expand Down
Loading

0 comments on commit 835d327

Please sign in to comment.