├── .github └── ISSUE_TEMPLATE │ ├── 1_bug_report.md │ ├── 2_feature_request.md │ ├── 3_support_question.md │ └── 4_documentation_issue.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bootstrap_test.php ├── composer.json ├── dev.json ├── dev.lock ├── incompatibilities-2-1.md ├── incompatibilities-2-2.md ├── incompatibilities-2-3.md ├── incompatibilities-2-4.md ├── incompatibilities-2-5.md ├── incompatibilities-2-6.md ├── incompatibilities-3-0.md ├── incompatibilities-3-1.md ├── incompatibilities-4-0.md ├── incompatibilities-4-1.md ├── incompatibilities-4-2.md ├── incompatibilities-5-0.md ├── incompatibilities-5-1.md ├── incompatibilities-6-0-rc.md ├── incompatibilities-6-0.md ├── incompatibilities-6-1.md ├── phpunit.xml.dist ├── security.md ├── src └── Oro │ ├── Bridge │ ├── CalendarCRM │ │ ├── Migrations │ │ │ ├── Data │ │ │ │ └── Demo │ │ │ │ │ └── ORM │ │ │ │ │ └── LoadUsersCalendarData.php │ │ │ └── Schema │ │ │ │ └── OroCalendarCRMBridgeBundleInstaller.php │ │ ├── OroCalendarCRMBridgeBundle.php │ │ ├── README.md │ │ └── Resources │ │ │ └── config │ │ │ └── oro │ │ │ └── bundles.yml │ ├── CallCRM │ │ ├── DependencyInjection │ │ │ └── OroCallCRMBridgeExtension.php │ │ ├── Migrations │ │ │ ├── Data │ │ │ │ ├── Demo │ │ │ │ │ └── ORM │ │ │ │ │ │ └── LoadCallData.php │ │ │ │ └── ORM │ │ │ │ │ ├── CrmRoles │ │ │ │ │ └── roles.yml │ │ │ │ │ └── UpdateCallAccessLevels.php │ │ │ └── Schema │ │ │ │ └── OroCallCRMBridgeBundleInstaller.php │ │ ├── OroCallCRMBridgeBundle.php │ │ ├── Provider │ │ │ └── CallDirectionProvider.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ ├── oro │ │ │ │ └── bundles.yml │ │ │ │ └── services.yml │ │ └── Tests │ │ │ └── Unit │ │ │ └── Provider │ │ │ └── CallDirectionProviderTest.php │ ├── CustomerPortalCRM │ │ ├── Migrations │ │ │ └── Data │ │ │ │ └── ORM │ │ │ │ └── LoadAccountAndContactToAccountManagerRole.php │ │ ├── OroCustomerPortalCRMBridgeBundle.php │ │ ├── README.md │ │ └── Resources │ │ │ └── config │ │ │ └── oro │ │ │ └── bundles.yml │ └── TaskCRM │ │ ├── Migrations │ │ ├── Data │ │ │ ├── Demo │ │ │ │ └── ORM │ │ │ │ │ ├── LoadTaskData.php │ │ │ │ │ └── UpdateTaskAccessLevels.php │ │ │ └── ORM │ │ │ │ ├── CrmRoles │ │ │ │ └── workflows.yml │ │ │ │ └── LoadWorkflowAclData.php │ │ └── Schema │ │ │ └── OroTaskCRMBundleInstaller.php │ │ ├── OroTaskCRMBridgeBundle.php │ │ ├── README.md │ │ └── Resources │ │ └── config │ │ └── oro │ │ └── bundles.yml │ └── Bundle │ ├── AccountBundle │ ├── Controller │ │ ├── AccountController.php │ │ └── Api │ │ │ └── Rest │ │ │ └── AccountController.php │ ├── Datagrid │ │ └── AccountsViewList.php │ ├── DependencyInjection │ │ └── OroAccountExtension.php │ ├── Entity │ │ └── Account.php │ ├── Event │ │ └── CollectAccountWebsiteActivityCustomersEvent.php │ ├── Form │ │ ├── Handler │ │ │ └── AccountHandler.php │ │ └── Type │ │ │ ├── AccountApiType.php │ │ │ ├── AccountSelectType.php │ │ │ └── AccountType.php │ ├── ImportExport │ │ ├── Configuration │ │ │ └── AccountImportExportConfigurationProvider.php │ │ ├── Strategy │ │ │ └── AccountAddOrReplaceStrategy.php │ │ └── TemplateFixture │ │ │ └── AccountFixture.php │ ├── Migrations │ │ ├── Data │ │ │ └── ORM │ │ │ │ ├── LoadDashboardData.php │ │ │ │ └── UpdateAccountWithOrganization.php │ │ └── Schema │ │ │ ├── OroAccountBundleInstaller.php │ │ │ ├── v1_0 │ │ │ └── OroAccountBundle.php │ │ │ ├── v1_1 │ │ │ └── OroAccountBundle.php │ │ │ ├── v1_10 │ │ │ └── InheritanceActivityTargets.php │ │ │ ├── v1_11 │ │ │ ├── AddCIIndex.php │ │ │ └── MakeRichAccountExtendDescription.php │ │ │ ├── v1_12 │ │ │ └── UpdateEntityMergeOptions.php │ │ │ ├── v1_13 │ │ │ └── UpdateIndexes.php │ │ │ ├── v1_14 │ │ │ ├── UpdateAccountFormType.php │ │ │ └── UpdateFormTypeForExtendDescription.php │ │ │ ├── v1_14_1 │ │ │ └── UpdateAccountEntityConfig.php │ │ │ ├── v1_2 │ │ │ └── OroAccountBundle.php │ │ │ ├── v1_3 │ │ │ └── AccountAttachment.php │ │ │ ├── v1_4 │ │ │ └── OroAccountBundle.php │ │ │ ├── v1_5 │ │ │ └── UpdateEntityLabel.php │ │ │ ├── v1_6 │ │ │ └── CreateActivityAssociation.php │ │ │ ├── v1_7 │ │ │ ├── DropExtendConfigQuery.php │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_8 │ │ │ └── AddReferredBy.php │ │ │ └── v1_9 │ │ │ └── UpdateCreatedUpdatedLabels.php │ ├── OroAccountBundle.php │ ├── Provider │ │ ├── AccountAutocompleteProvider.php │ │ └── AccountPhoneProvider.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── controllers.yml │ │ │ ├── controllers_api.yml │ │ │ ├── importexport.yml │ │ │ ├── oro │ │ │ │ ├── api.yml │ │ │ │ ├── app.yml │ │ │ │ ├── bundles.yml │ │ │ │ ├── dashboards.yml │ │ │ │ ├── datagrids.yml │ │ │ │ ├── entity.yml │ │ │ │ ├── features.yml │ │ │ │ ├── jsmodules.yml │ │ │ │ ├── navigation.yml │ │ │ │ ├── placeholders.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── sanitize.yml │ │ │ │ └── search.yml │ │ │ ├── serializer │ │ │ │ └── Entity.Account.yml │ │ │ ├── services.yml │ │ │ ├── services_test.yml │ │ │ └── validation.yml │ │ ├── doc │ │ │ └── api │ │ │ │ └── account.md │ │ ├── public │ │ │ ├── img │ │ │ │ └── recent_accessed_accounts.png │ │ │ └── js │ │ │ │ └── app │ │ │ │ └── components │ │ │ │ └── account-contact-component.js │ │ ├── translations │ │ │ ├── jsmessages.en.yml │ │ │ └── messages.en.yml │ │ └── views │ │ │ ├── Account │ │ │ ├── Datagrid │ │ │ │ └── Property │ │ │ │ │ └── accountName.html.twig │ │ │ ├── index.html.twig │ │ │ ├── lifetimeValue.html.twig │ │ │ ├── searchResult.html.twig │ │ │ ├── update.html.twig │ │ │ ├── view.html.twig │ │ │ └── widget │ │ │ │ ├── contactsInfo.html.twig │ │ │ │ └── info.html.twig │ │ │ └── Dashboard │ │ │ ├── accountsLaunchpad.html.twig │ │ │ └── myAccountsActivity.html.twig │ └── Tests │ │ ├── Behat │ │ ├── Context │ │ │ └── FeatureContext.php │ │ ├── Features │ │ │ ├── Fixtures │ │ │ │ ├── Accounts.yml │ │ │ │ ├── LoadAccountEmailTemplate.yml │ │ │ │ ├── LoadAccountEntitiesFixture.yml │ │ │ │ ├── account-grid-export.yml │ │ │ │ ├── account-with-contact.yml │ │ │ │ ├── crud-account.yml │ │ │ │ ├── import_accounts.yml │ │ │ │ ├── import_template_de.csv │ │ │ │ ├── merge_accounts.yml │ │ │ │ └── nameless_account.yml │ │ │ ├── account_attachment.feature │ │ │ ├── account_grid_export.feature │ │ │ ├── account_report.feature │ │ │ ├── check_filters_in_the_grid_settings_for_the_accounts_grid.feature │ │ │ ├── column_names_are_translated_in_exported_file.feature │ │ │ ├── create_email_campaign_from_marketing_list_based_on_account_entity.feature │ │ │ ├── crud_account.feature │ │ │ ├── get_account_entity_name.feature │ │ │ ├── import_accounts.feature │ │ │ ├── log_a_call_for_nameless_account.feature │ │ │ ├── merging_accounts.feature │ │ │ └── warning_on_edit_form_with_unsaved_data.feature │ │ └── behat.yml │ │ ├── Functional │ │ ├── Api │ │ │ └── RestJsonApi │ │ │ │ └── AccountUpdateListTest.php │ │ ├── Controller │ │ │ ├── AccountControllerTest.php │ │ │ └── Api │ │ │ │ └── Rest │ │ │ │ └── RestAccountTest.php │ │ ├── ControllersTest.php │ │ ├── DataFixtures │ │ │ └── accounts_data.yml │ │ ├── Environment │ │ │ └── TestEntityNameResolverDataLoader.php │ │ └── Stub │ │ │ └── views │ │ │ └── testCustomersWebActivity.html.twig │ │ └── Unit │ │ ├── DependencyInjection │ │ └── OroAccountExtensionTest.php │ │ ├── Entity │ │ └── AccountTest.php │ │ ├── Form │ │ ├── Handler │ │ │ └── AccountHandlerTest.php │ │ └── Type │ │ │ ├── AccountApiTypeTest.php │ │ │ ├── AccountSelectTypeTest.php │ │ │ └── AccountTypeTest.php │ │ ├── ImportExport │ │ └── Configuration │ │ │ └── AccountImportExportConfigurationProviderTest.php │ │ └── Provider │ │ └── AccountPhoneProviderTest.php │ ├── ActivityContactBundle │ ├── Api │ │ └── Processor │ │ │ └── GetConfig │ │ │ ├── CompleteDescriptionsForActivityContactFields.php │ │ │ └── UpdateActivityContactFields.php │ ├── Command │ │ └── ActivityContactRecalculateCommand.php │ ├── Controller │ │ └── ActivityContactController.php │ ├── DependencyInjection │ │ └── OroActivityContactExtension.php │ ├── Direction │ │ └── DirectionProviderInterface.php │ ├── EntityConfig │ │ └── ActivityScope.php │ ├── EventListener │ │ ├── ActivityContactMigrationListener.php │ │ └── ActivityListener.php │ ├── Migration │ │ ├── ActivityContactMigration.php │ │ └── ActivityContactMigrationQuery.php │ ├── Migrations │ │ ├── Data │ │ │ └── ORM │ │ │ │ └── ActivityContactRecalculate.php │ │ └── Schema │ │ │ ├── OroActivityContactBundleInstaller.php │ │ │ ├── v1_0 │ │ │ ├── OroActivityContactBundle.php │ │ │ └── UpdateConfigQuery.php │ │ │ └── v1_1 │ │ │ ├── OroActivityContactBundle.php │ │ │ └── UpdateContactFieldsConfigQuery.php │ ├── Model │ │ └── TargetExcludeList.php │ ├── OroActivityContactBundle.php │ ├── Placeholder │ │ └── PlaceholderFilter.php │ ├── Provider │ │ ├── ActivityContactProvider.php │ │ ├── EmailDirectionProvider.php │ │ └── EntityActivityContactDataProvider.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── commands.yml │ │ │ ├── controllers.yml │ │ │ ├── oro │ │ │ │ ├── bundles.yml │ │ │ │ ├── datagrids.yml │ │ │ │ ├── placeholders.yml │ │ │ │ └── routing.yml │ │ │ ├── services.yml │ │ │ └── services_api.yml │ │ ├── translations │ │ │ └── messages.en.yml │ │ └── views │ │ │ └── ActivityContact │ │ │ ├── metrics.html.twig │ │ │ └── widget │ │ │ └── metrics.html.twig │ ├── Tests │ │ ├── Functional │ │ │ └── Command │ │ │ │ └── ActivityContactRecalculateCommandTest.php │ │ ├── Unit │ │ │ ├── Api │ │ │ │ └── Processor │ │ │ │ │ └── GetConfig │ │ │ │ │ └── UpdateActivityContactFieldsTest.php │ │ │ ├── DependencyInjection │ │ │ │ └── OroActivityContactExtensionTest.php │ │ │ ├── EventListener │ │ │ │ └── ActivityListenerTest.php │ │ │ ├── Fixture │ │ │ │ ├── TestActivity.php │ │ │ │ └── TestTarget.php │ │ │ ├── Model │ │ │ │ └── TargetExcludeListTest.php │ │ │ ├── Provider │ │ │ │ ├── ActivityContactProviderTest.php │ │ │ │ └── EmailDirectionProviderTest.php │ │ │ └── Stub │ │ │ │ ├── AccountStub.php │ │ │ │ └── EmailStub.php │ │ └── trusted_data.neon │ └── Tools │ │ ├── ActivityContactConfigDumperExtension.php │ │ └── ActivityListenerChangedTargetsBag.php │ ├── AnalyticsBundle │ ├── Async │ │ ├── CalculateAllChannelsAnalyticsProcessor.php │ │ ├── CalculateChannelAnalyticsProcessor.php │ │ └── Topic │ │ │ ├── CalculateAllChannelsAnalyticsTopic.php │ │ │ └── CalculateChannelAnalyticsTopic.php │ ├── Builder │ │ ├── AnalyticsBuilder.php │ │ ├── AnalyticsBuilderInterface.php │ │ ├── RFMBuilder.php │ │ └── RFMProviderInterface.php │ ├── Command │ │ └── CalculateAnalyticsCommand.php │ ├── Controller │ │ └── RFMCategoryController.php │ ├── DependencyInjection │ │ └── OroAnalyticsExtension.php │ ├── Entity │ │ ├── RFMMetricCategory.php │ │ └── Repository │ │ │ └── RFMMetricCategoryRepository.php │ ├── EventListener │ │ ├── RFMCategoryListener.php │ │ └── TimezoneChangeListener.php │ ├── Form │ │ ├── Extension │ │ │ └── ChannelTypeExtension.php │ │ └── Type │ │ │ ├── RFMCategorySettingsType.php │ │ │ └── RFMCategoryType.php │ ├── Migrations │ │ └── Schema │ │ │ ├── OroAnalyticsBundleInstaller.php │ │ │ └── v1_0 │ │ │ └── OroAnalyticsBundle.php │ ├── Model │ │ ├── AnalyticsAwareInterface.php │ │ ├── RFMAwareInterface.php │ │ ├── RFMAwareTrait.php │ │ └── RFMMetricStateManager.php │ ├── OroAnalyticsBundle.php │ ├── Placeholder │ │ └── RFMAwareFilter.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── commands.yml │ │ │ ├── controllers.yml │ │ │ ├── mq_processors.yml │ │ │ ├── mq_topics.yml │ │ │ ├── oro │ │ │ │ ├── assets.yml │ │ │ │ ├── bundles.yml │ │ │ │ ├── jsmodules.yml │ │ │ │ ├── placeholders.yml │ │ │ │ ├── processes.yml │ │ │ │ └── twig.yml │ │ │ ├── services.yml │ │ │ └── validation.yml │ │ ├── public │ │ │ ├── css │ │ │ │ └── scss │ │ │ │ │ ├── main.scss │ │ │ │ │ ├── rfm-analytics-label-wrapper.scss │ │ │ │ │ ├── rfm-analytics-label.scss │ │ │ │ │ ├── rfm-settings-data.scss │ │ │ │ │ └── rfm-settings.scss │ │ │ └── js │ │ │ │ └── app │ │ │ │ └── components │ │ │ │ └── rfm-settings.js │ │ ├── translations │ │ │ ├── jsmessages.en.yml │ │ │ ├── messages.en.yml │ │ │ └── validators.en.yml │ │ └── views │ │ │ ├── Form │ │ │ ├── fields.html.twig │ │ │ └── form.html.twig │ │ │ ├── RFMCategory │ │ │ └── channelView.html.twig │ │ │ └── label.html.twig │ ├── Service │ │ └── CalculateAnalyticsScheduler.php │ ├── Tests │ │ ├── Functional │ │ │ ├── Async │ │ │ │ ├── CalculateAllChannelsAnalyticsProcessorTest.php │ │ │ │ └── CalculateChannelAnalyticsProcessorTest.php │ │ │ ├── Builder │ │ │ │ └── RFMBuilderTest.php │ │ │ ├── Command │ │ │ │ └── CalculateAnalyticsCommandTest.php │ │ │ ├── Model │ │ │ │ └── RFMMetricStateManagerTest.php │ │ │ └── Service │ │ │ │ └── CalculateAnalyticsSchedulerTest.php │ │ ├── Unit │ │ │ ├── Async │ │ │ │ ├── CalculateAllChannelsAnalyticsProcessorTest.php │ │ │ │ ├── CalculateChannelAnalyticsProcessorTest.php │ │ │ │ └── Topic │ │ │ │ │ └── CalculateChannelAnalyticsTopicTest.php │ │ │ ├── Builder │ │ │ │ ├── AnalyticsBuilderTest.php │ │ │ │ └── RFMBuilderTest.php │ │ │ ├── Entity │ │ │ │ └── RFMMetricCategoryTest.php │ │ │ ├── EventListener │ │ │ │ ├── RFMCategoryListenerTest.php │ │ │ │ └── TimezoneChangeListenerTest.php │ │ │ ├── Form │ │ │ │ └── Extension │ │ │ │ │ └── ChannelTypeExtensionTest.php │ │ │ ├── Model │ │ │ │ └── Stub │ │ │ │ │ ├── CustomerAwareStub.php │ │ │ │ │ └── RFMAwareStub.php │ │ │ ├── Placeholder │ │ │ │ └── RFMAwareFilterTest.php │ │ │ ├── Service │ │ │ │ └── ScheduleCalculateAnalyticsServiceTest.php │ │ │ └── Validator │ │ │ │ └── CategoriesValidatorTest.php │ │ └── trusted_data.neon │ └── Validator │ │ ├── CategoriesConstraint.php │ │ └── CategoriesValidator.php │ ├── CRMBundle │ ├── CacheWarmer │ │ └── ExtendEntityCacheWarmer.php │ ├── DependencyInjection │ │ └── OroCRMExtension.php │ ├── Migration │ │ ├── CleanupMagentoOneConnectorEntities.php │ │ └── CleanupMagentoOneConnectorEntityConfigsQuery.php │ ├── Migrations │ │ ├── Data │ │ │ └── ORM │ │ │ │ └── RemoveMagentoReportsAndSegments.php │ │ └── Schema │ │ │ ├── OroCRMBundleInstaller.php │ │ │ ├── v1_1 │ │ │ └── MigrateRelations.php │ │ │ ├── v1_2 │ │ │ └── MigrateGridViews.php │ │ │ ├── v1_3 │ │ │ ├── EmbededFormType.php │ │ │ └── TaggingEntityName.php │ │ │ ├── v1_3_1 │ │ │ └── WorkflowItemEntityClass.php │ │ │ ├── v1_4 │ │ │ └── NotificationEntityName.php │ │ │ ├── v1_5 │ │ │ └── MigrateNavigationItems.php │ │ │ ├── v1_6 │ │ │ └── ReminderEntityName.php │ │ │ ├── v1_7 │ │ │ └── RemoveMailChimpBundleAndAbandonedCartBundleConfigs.php │ │ │ └── v4_2_0_1 │ │ │ └── RemoveMagentoOneConnector.php │ ├── OroCRMBundle.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── oro │ │ │ │ ├── app.yml │ │ │ │ └── bundles.yml │ │ │ └── services.yml │ │ ├── public │ │ │ └── images │ │ │ │ └── oro-crm-logo.svg │ │ ├── translations │ │ │ ├── messages.de_DE.yml │ │ │ ├── messages.en.yml │ │ │ └── messages.fr_FR.yml │ │ └── views │ │ │ └── Collector │ │ │ └── crm.html.twig │ └── Tests │ │ └── Behat │ │ ├── Features │ │ ├── Fixtures │ │ │ ├── activities-contexts.yml │ │ │ ├── activities-smoke-e2e.yml │ │ │ ├── activities.yml │ │ │ ├── activity-email-context.yml │ │ │ ├── cases.yml │ │ │ ├── cat0.jpg │ │ │ ├── comment-activity.yml │ │ │ ├── contacts.yml │ │ │ ├── mass_accounts.yml │ │ │ ├── mass_action.yml │ │ │ ├── mass_action_acl.yml │ │ │ ├── mass_user_cases.yml │ │ │ ├── nameless_contact.yml │ │ │ └── searchManyToManyEntities.yml │ │ ├── activities.feature │ │ ├── activity_context_widget_feature.feature │ │ ├── activity_email_context_widget.feature │ │ ├── activity_list_feature.feature │ │ ├── application_search_related_many_to_many_entities.feature │ │ ├── contact_call_activity.feature │ │ ├── email_signature_for_send_email_to_contact.feature │ │ ├── log_a_call_for_nameless_contact.feature │ │ ├── mass_delete_records.feature │ │ └── mass_delete_records_with_acl.feature │ │ └── behat.yml │ ├── CaseBundle │ ├── Controller │ │ ├── Api │ │ │ └── Rest │ │ │ │ ├── CaseController.php │ │ │ │ └── CommentController.php │ │ ├── CaseController.php │ │ └── CommentController.php │ ├── DependencyInjection │ │ └── OroCaseExtension.php │ ├── Entity │ │ ├── CaseComment.php │ │ ├── CaseEntity.php │ │ ├── CaseMailboxProcessSettings.php │ │ ├── CasePriority.php │ │ ├── CasePriorityTranslation.php │ │ ├── CaseSource.php │ │ ├── CaseSourceTranslation.php │ │ ├── CaseStatus.php │ │ └── CaseStatusTranslation.php │ ├── Event │ │ ├── Events.php │ │ └── FormHandlerEvent.php │ ├── EventListener │ │ ├── MailboxSavedListener.php │ │ └── SearchIndexDataListener.php │ ├── Form │ │ ├── EventSubscriber │ │ │ └── CaseMailboxProcessSettingsTagSubscriber.php │ │ ├── Handler │ │ │ └── CaseEntityHandler.php │ │ └── Type │ │ │ ├── CaseCommentApiType.php │ │ │ ├── CaseCommentType.php │ │ │ ├── CaseEntityApiType.php │ │ │ ├── CaseEntityType.php │ │ │ ├── CaseMailboxProcessSettingsTagType.php │ │ │ └── CaseMailboxProcessSettingsType.php │ ├── Migrations │ │ ├── Data │ │ │ ├── Demo │ │ │ │ └── ORM │ │ │ │ │ └── LoadCaseEntityData.php │ │ │ └── ORM │ │ │ │ ├── LoadPriorityData.php │ │ │ │ ├── LoadSourceData.php │ │ │ │ ├── LoadStatusData.php │ │ │ │ └── UpdateCaseEntitiesWithOrganization.php │ │ └── Schema │ │ │ ├── OroCaseBundleInstaller.php │ │ │ ├── v1_0 │ │ │ └── OroCaseBundle.php │ │ │ ├── v1_1 │ │ │ └── OroCaseBundle.php │ │ │ ├── v1_10 │ │ │ └── UpdateIndexes.php │ │ │ ├── v1_11 │ │ │ └── UpdateObjectClassFieldLength.php │ │ │ ├── v1_12 │ │ │ └── UpdateLocaleFieldLength.php │ │ │ ├── v1_2 │ │ │ └── OroCaseBundle.php │ │ │ ├── v1_3 │ │ │ └── OroCaseBundle.php │ │ │ ├── v1_4 │ │ │ └── OroCaseBundle.php │ │ │ ├── v1_5 │ │ │ └── OroCaseBundle.php │ │ │ ├── v1_6 │ │ │ ├── OroCaseBundle.php │ │ │ └── RemoveEmailConvertTrigger.php │ │ │ ├── v1_7 │ │ │ └── InheritanceActivityTargets.php │ │ │ ├── v1_8 │ │ │ └── CreateActivityAssociation.php │ │ │ └── v1_9 │ │ │ └── OroCaseBundle.php │ ├── Model │ │ ├── CaseApiEntityManager.php │ │ ├── CaseEntityManager.php │ │ ├── CommentApiEntityManager.php │ │ └── ViewFactory.php │ ├── OroCaseBundle.php │ ├── Provider │ │ ├── CaseMailboxProcessProvider.php │ │ └── CasePhoneProvider.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── controllers.yml │ │ │ ├── controllers_api.yml │ │ │ ├── form.yml │ │ │ ├── oro │ │ │ │ ├── acls.yml │ │ │ │ ├── api.yml │ │ │ │ ├── assets.yml │ │ │ │ ├── bundles.yml │ │ │ │ ├── datagrids.yml │ │ │ │ ├── entity.yml │ │ │ │ ├── features.yml │ │ │ │ ├── jsmodules.yml │ │ │ │ ├── navigation.yml │ │ │ │ ├── placeholders.yml │ │ │ │ ├── processes.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── search.yml │ │ │ │ └── twig.yml │ │ │ ├── services.yml │ │ │ ├── services_test.yml │ │ │ └── validation.yml │ │ ├── doc │ │ │ └── api │ │ │ │ ├── case.md │ │ │ │ └── case_comment.md │ │ ├── public │ │ │ ├── css │ │ │ │ └── scss │ │ │ │ │ ├── comment.scss │ │ │ │ │ └── main.scss │ │ │ └── js │ │ │ │ └── app │ │ │ │ ├── models │ │ │ │ └── comment-model.js │ │ │ │ └── views │ │ │ │ └── comment-view.js │ │ ├── translations │ │ │ ├── entities.en.yml │ │ │ ├── jsmessages.en.yml │ │ │ └── messages.en.yml │ │ └── views │ │ │ ├── Case │ │ │ ├── Datagrid │ │ │ │ └── Property │ │ │ │ │ ├── assignedTo.html.twig │ │ │ │ │ └── subject.html.twig │ │ │ ├── accountCases.html.twig │ │ │ ├── contactCases.html.twig │ │ │ ├── index.html.twig │ │ │ ├── searchResult.html.twig │ │ │ ├── update.html.twig │ │ │ ├── userCases.html.twig │ │ │ ├── view.html.twig │ │ │ └── widget │ │ │ │ ├── accountCases.html.twig │ │ │ │ └── contactCases.html.twig │ │ │ ├── CaseMailboxProcessSettings │ │ │ └── searchResult.html.twig │ │ │ ├── Comment │ │ │ ├── dialog │ │ │ │ └── update.html.twig │ │ │ ├── js │ │ │ │ ├── list.html.twig │ │ │ │ └── view.html.twig │ │ │ └── widget │ │ │ │ └── comments.html.twig │ │ │ └── Form │ │ │ └── fields.html.twig │ └── Tests │ │ ├── Behat │ │ ├── Features │ │ │ ├── Fixtures │ │ │ │ └── case_crud.yml │ │ │ └── activity_cases.feature │ │ └── behat.yml │ │ ├── Functional │ │ ├── Controller │ │ │ ├── Api │ │ │ │ └── Rest │ │ │ │ │ ├── CaseControllerTest.php │ │ │ │ │ └── CommentControllerTest.php │ │ │ ├── CommentControllerTest.php │ │ │ └── TagControllerTest.php │ │ ├── DataFixtures │ │ │ ├── LoadCaseEntityData.php │ │ │ ├── LoadCaseMailboxSettingsData.php │ │ │ └── LoadContactData.php │ │ ├── Entity │ │ │ └── Manager │ │ │ │ └── CaseEntityManagerTest.php │ │ └── Environment │ │ │ └── TestEntityNameResolverDataLoader.php │ │ └── Unit │ │ ├── DependencyInjection │ │ └── OroCaseExtensionTest.php │ │ ├── Entity │ │ ├── CaseCommentTest.php │ │ ├── CaseEntityTest.php │ │ ├── CaseMailboxProcessSettingsTest.php │ │ ├── CasePriorityTest.php │ │ ├── CaseSourceTest.php │ │ └── CaseStatusTest.php │ │ ├── EventListener │ │ ├── MailboxSavedListenerTest.php │ │ └── SearchIndexDataListenerTest.php │ │ ├── Form │ │ └── Type │ │ │ └── CaseEntityTypeTest.php │ │ └── Provider │ │ ├── CaseMailboxProcessProviderTest.php │ │ └── CasePhoneProviderTest.php │ ├── ChannelBundle │ ├── Acl │ │ └── Voter │ │ │ └── ChannelVoter.php │ ├── Async │ │ ├── AggregateLifetimeAverageProcessor.php │ │ ├── ChangeIntegrationStatusProcessor.php │ │ ├── LifetimeHistoryStatusUpdateProcessor.php │ │ └── Topic │ │ │ ├── AggregateLifetimeAverageTopic.php │ │ │ ├── ChannelStatusChangedTopic.php │ │ │ └── LifetimeHistoryStatusUpdateTopic.php │ ├── Autocomplete │ │ └── ChannelLimitationHandler.php │ ├── Builder │ │ ├── BuilderFactory.php │ │ └── ChannelObjectBuilder.php │ ├── Command │ │ ├── LifetimeAverageAggregateCommand.php │ │ └── RecalculateLifetimeCommand.php │ ├── Configuration │ │ ├── ChannelConfiguration.php │ │ └── ChannelConfigurationProvider.php │ ├── Controller │ │ ├── Api │ │ │ └── Rest │ │ │ │ ├── ChannelController.php │ │ │ │ └── CustomerSearchController.php │ │ ├── ChannelController.php │ │ ├── ChannelIntegrationController.php │ │ └── Dashboard │ │ │ └── DashboardController.php │ ├── Datagrid │ │ ├── ChannelLimitationExtension.php │ │ └── ChannelLimitationExtensionConfiguration.php │ ├── DependencyInjection │ │ └── OroChannelExtension.php │ ├── Entity │ │ ├── Channel.php │ │ ├── CustomerIdentity.php │ │ ├── EntityName.php │ │ ├── LifetimeValueAverageAggregation.php │ │ ├── LifetimeValueHistory.php │ │ ├── Manager │ │ │ ├── ChannelApiEntityManager.php │ │ │ ├── CustomerSearchApiEntityManager.php │ │ │ └── LifetimeHistoryStatusUpdateManager.php │ │ └── Repository │ │ │ ├── ChannelRepository.php │ │ │ ├── ChannelRepositoryAbstract.php │ │ │ ├── ChannelRepositoryInterface.php │ │ │ ├── LifetimeHistoryRepository.php │ │ │ └── LifetimeValueAverageAggregationRepository.php │ ├── Event │ │ ├── AbstractEvent.php │ │ ├── ChannelBeforeDeleteEvent.php │ │ ├── ChannelDeleteEvent.php │ │ └── ChannelSaveEvent.php │ ├── EventListener │ │ ├── AccountLifetimeListener.php │ │ ├── ChannelBeforeDeleteListener.php │ │ ├── ChannelDoctrineListener.php │ │ ├── EmbeddedFormListener.php │ │ ├── JobExecutionSubscriber.php │ │ ├── LifetimeHistoryDataFixturesListener.php │ │ ├── NavigationListener.php │ │ ├── ORM │ │ │ └── RefreshChannelCacheListener.php │ │ ├── TimezoneChangeListener.php │ │ ├── TransitionsAttributeListener.php │ │ └── UpdateIntegrationConnectorsListener.php │ ├── Form │ │ ├── DataTransformer │ │ │ └── DatasourceDataTransformer.php │ │ ├── EventListener │ │ │ └── ChannelTypeSubscriber.php │ │ ├── Extension │ │ │ ├── EmbeddedFormTypeExtension.php │ │ │ ├── IntegrationTypeExtension.php │ │ │ └── SingleChannelModeExtension.php │ │ ├── Handler │ │ │ ├── ChannelHandler.php │ │ │ └── ChannelIntegrationHandler.php │ │ └── Type │ │ │ ├── AbstractChannelAwareType.php │ │ │ ├── ChannelDatasourceType.php │ │ │ ├── ChannelEntityType.php │ │ │ ├── ChannelSelectType.php │ │ │ ├── ChannelType.php │ │ │ ├── CreateOrSelectInlineChannelAwareType.php │ │ │ └── MultipleEntityChannelAwareType.php │ ├── ImportExport │ │ ├── Helper │ │ │ └── ChannelHelper.php │ │ └── TemplateFixture │ │ │ └── ChannelFixture.php │ ├── Migrations │ │ ├── Data │ │ │ └── ORM │ │ │ │ ├── AbstractDefaultChannelDataFixture.php │ │ │ │ └── DefaultChannelData.php │ │ └── Schema │ │ │ ├── OroChannelBundleInstaller.php │ │ │ ├── v1_0 │ │ │ └── OroChannelBundle.php │ │ │ ├── v1_1 │ │ │ └── OroChannelBundle.php │ │ │ ├── v1_10 │ │ │ └── UpdateChannelFormType.php │ │ │ ├── v1_11 │ │ │ ├── OroChannelBundle.php │ │ │ ├── SetCommentOnJsonArrayQuery.php │ │ │ └── UpdateJsonArrayQuery.php │ │ │ ├── v1_2 │ │ │ └── OroChannelBundle.php │ │ │ ├── v1_3 │ │ │ └── OroChannelBundle.php │ │ │ ├── v1_5 │ │ │ ├── OroChannelBundle.php │ │ │ └── UpdateChannelJsonArrayQuery.php │ │ │ ├── v1_6 │ │ │ ├── SetRestrictedModeToChannelIntegrations.php │ │ │ └── UpdateChannelIntegrationsMode.php │ │ │ ├── v1_7 │ │ │ └── MigrateRelations.php │ │ │ ├── v1_8 │ │ │ └── RemoveDataChannelFromEmbeddedForm.php │ │ │ └── v1_9 │ │ │ ├── ActivateAllChannelsQuery.php │ │ │ └── OroChannelBundle.php │ ├── Model │ │ ├── ChannelAwareInterface.php │ │ ├── ChannelEntityTrait.php │ │ └── Condition │ │ │ └── ChannelEntityAvailability.php │ ├── OroChannelBundle.php │ ├── Provider │ │ ├── ChannelEntityExclusionProvider.php │ │ ├── ChannelsByEntitiesProvider.php │ │ ├── Lifetime │ │ │ ├── AmountProvider.php │ │ │ └── AverageLifetimeWidgetProvider.php │ │ ├── MetadataProvider.php │ │ ├── MetadataProviderInterface.php │ │ ├── RequestChannelProvider.php │ │ ├── SettingsProvider.php │ │ ├── StateProvider.php │ │ └── Utility │ │ │ └── EntityStateProvider.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── commands.yml │ │ │ ├── controllers.yml │ │ │ ├── controllers_api.yml │ │ │ ├── mq_processors.yml │ │ │ ├── mq_topics.yml │ │ │ ├── oro │ │ │ │ ├── api.yml │ │ │ │ ├── app.yml │ │ │ │ ├── assets.yml │ │ │ │ ├── bundles.yml │ │ │ │ ├── channels.yml │ │ │ │ ├── charts.yml │ │ │ │ ├── dashboards.yml │ │ │ │ ├── datagrids.yml │ │ │ │ ├── entity.yml │ │ │ │ ├── features.yml │ │ │ │ ├── jsmodules.yml │ │ │ │ ├── navigation.yml │ │ │ │ ├── routing.yml │ │ │ │ └── twig.yml │ │ │ ├── services.yml │ │ │ ├── services_test.yml │ │ │ └── validation.yml │ │ ├── doc │ │ │ └── api │ │ │ │ └── channel.md │ │ ├── public │ │ │ ├── css │ │ │ │ └── scss │ │ │ │ │ ├── main.scss │ │ │ │ │ └── style.scss │ │ │ ├── img │ │ │ │ └── average_lifetime_sales_chart.png │ │ │ └── js │ │ │ │ ├── app │ │ │ │ ├── components │ │ │ │ │ ├── channel-aware-select-create-component-mixin.js │ │ │ │ │ ├── channel.js │ │ │ │ │ ├── integration-widget.js │ │ │ │ │ ├── select-create-inline-type-async-component.js │ │ │ │ │ ├── select-create-inline-type-component.js │ │ │ │ │ ├── select2-autocomplete-channel-aware-component.js │ │ │ │ │ ├── select2-grid-channel-aware-component.js │ │ │ │ │ └── template │ │ │ │ │ │ └── integration-widget-link.html │ │ │ │ ├── factory │ │ │ │ │ └── select2-channel-aware-view-factory.js │ │ │ │ └── views │ │ │ │ │ └── configure-integration-view.js │ │ │ │ └── entity-management │ │ │ │ ├── entity-component-view.js │ │ │ │ ├── model.js │ │ │ │ └── templates │ │ │ │ ├── component.html │ │ │ │ ├── entity-item.html │ │ │ │ ├── form.html │ │ │ │ └── select2 │ │ │ │ ├── result.html │ │ │ │ └── selection.html │ │ ├── translations │ │ │ ├── jsmessages.en.yml │ │ │ ├── messages.en.yml │ │ │ └── validators.en.yml │ │ └── views │ │ │ ├── Channel │ │ │ ├── index.html.twig │ │ │ ├── update.html.twig │ │ │ ├── view.html.twig │ │ │ └── widget │ │ │ │ └── info.html.twig │ │ │ ├── ChannelIntegration │ │ │ └── widget │ │ │ │ └── update.html.twig │ │ │ ├── Dashboard │ │ │ └── averageLifetimeSales.html.twig │ │ │ ├── Form │ │ │ ├── dataChannelField.html.twig │ │ │ └── fields.html.twig │ │ │ └── macros.html.twig │ ├── Tests │ │ ├── Behat │ │ │ ├── Features │ │ │ │ ├── channel_crud.feature │ │ │ │ └── channel_navigation_items.feature │ │ │ └── behat.yml │ │ ├── Functional │ │ │ ├── Async │ │ │ │ ├── AggregateLifetimeAverageProcessorTest.php │ │ │ │ └── ChangeIntegrationStatusProcessorTest.php │ │ │ ├── Command │ │ │ │ ├── AbstractRecalculateLifetimeCommandTest.php │ │ │ │ └── LifetimeAverageAggregateCommandTest.php │ │ │ ├── Controller │ │ │ │ └── Api │ │ │ │ │ └── Rest │ │ │ │ │ └── ChannelApiControllerTest.php │ │ │ ├── Environment │ │ │ │ └── TestEntityNameResolverDataLoader.php │ │ │ ├── EventListener │ │ │ │ └── AccountLifetimeListenerTest.php │ │ │ ├── Fixture │ │ │ │ ├── LoadChannel.php │ │ │ │ ├── LoadChannels.php │ │ │ │ ├── LoadChannelsWithDataSource.php │ │ │ │ ├── LoadLifetimeHistoryData.php │ │ │ │ ├── LoadRestrictedUser.php │ │ │ │ └── data │ │ │ │ │ ├── expected_results.yml │ │ │ │ │ └── history_data.csv │ │ │ └── Provider │ │ │ │ └── StateProviderTest.php │ │ ├── Unit │ │ │ ├── Acl │ │ │ │ └── Voter │ │ │ │ │ └── ChannelVoterTest.php │ │ │ ├── Async │ │ │ │ ├── AggregateLifetimeAverageProcessorTest.php │ │ │ │ ├── ChangeIntegrationStatusProcessorTest.php │ │ │ │ ├── LifetimeHistoryStatusUpdateProcessorTest.php │ │ │ │ └── Topic │ │ │ │ │ ├── AggregateLifetimeAverageTopicTest.php │ │ │ │ │ ├── ChannelStatusChangedTopicTest.php │ │ │ │ │ └── LifetimeHistoryStatusUpdateTopicTest.php │ │ │ ├── Autocomplete │ │ │ │ └── ChannelLimitationHandlerTest.php │ │ │ ├── Configuration │ │ │ │ └── ChannelConfigurationProviderTest.php │ │ │ ├── Datagrid │ │ │ │ └── ChannelLimitationExtensionConfigurationTest.php │ │ │ ├── DependencyInjection │ │ │ │ └── OroChannelExtensionTest.php │ │ │ ├── Entity │ │ │ │ ├── ChannelTest.php │ │ │ │ ├── CustomerIdentityTest.php │ │ │ │ ├── EntityNameTest.php │ │ │ │ ├── LifetimeValueAverageAggregationTest.php │ │ │ │ └── LifetimeValueHistoryTest.php │ │ │ ├── Event │ │ │ │ ├── ChannelDeleteEventTest.php │ │ │ │ └── ChannelSaveEventTest.php │ │ │ ├── EventListener │ │ │ │ ├── ChannelDoctrineListenerTest.php │ │ │ │ ├── EmbeddedFormListenerTest.php │ │ │ │ ├── NavigationListenerTest.php │ │ │ │ ├── RefreshChannelCacheListenerTest.php │ │ │ │ ├── TimezoneChangeListenerTest.php │ │ │ │ ├── TransitionsAttributeListenerTest.php │ │ │ │ └── UpdateIntegrationConnectorsListenerTest.php │ │ │ ├── Form │ │ │ │ ├── DataTransformer │ │ │ │ │ └── DatasourceDataTransformerTest.php │ │ │ │ ├── EventListener │ │ │ │ │ └── ChannelTypeSubscriberTest.php │ │ │ │ ├── Extension │ │ │ │ │ ├── EmbeddedFormTypeExtensionTest.php │ │ │ │ │ ├── IntegrationTypeExtensionTest.php │ │ │ │ │ └── SingleChannelModeExtensionTest.php │ │ │ │ ├── Handler │ │ │ │ │ ├── ChannelHandlerTest.php │ │ │ │ │ └── ChannelIntegrationHandlerTest.php │ │ │ │ └── Type │ │ │ │ │ ├── ChannelDatasourceTypeTest.php │ │ │ │ │ ├── ChannelEntityTypeTest.php │ │ │ │ │ ├── ChannelSelectTypeTest.php │ │ │ │ │ ├── ChannelTypeTest.php │ │ │ │ │ └── TestForm.php │ │ │ ├── ImportExport │ │ │ │ └── Helper │ │ │ │ │ └── ChannelHelperTest.php │ │ │ ├── Model │ │ │ │ ├── ChannelEntityTraitTest.php │ │ │ │ └── Condition │ │ │ │ │ └── ChannelEntityAvailabilityTest.php │ │ │ ├── Provider │ │ │ │ ├── ChannelEntityExclusionProviderTest.php │ │ │ │ ├── ChannelsByEntitiesProviderTest.php │ │ │ │ ├── Lifetime │ │ │ │ │ ├── AmountProviderTest.php │ │ │ │ │ └── AverageLifetimeWidgetProviderTest.php │ │ │ │ ├── MetadataProviderTest.php │ │ │ │ ├── SettingsProviderTest.php │ │ │ │ └── StateProviderTest.php │ │ │ ├── Stubs │ │ │ │ ├── Bundles │ │ │ │ │ ├── TestBundle1 │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ │ └── oro │ │ │ │ │ │ │ │ └── channels.yml │ │ │ │ │ │ └── TestBundle1.php │ │ │ │ │ └── TestBundle2 │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── oro │ │ │ │ │ │ │ └── channels.yml │ │ │ │ │ │ └── TestBundle2.php │ │ │ │ ├── Entity │ │ │ │ │ ├── Channel.php │ │ │ │ │ ├── Customer.php │ │ │ │ │ ├── EmbeddedFormStub.php │ │ │ │ │ ├── EntityName.php │ │ │ │ │ ├── Integration.php │ │ │ │ │ └── LifetimeValueHistory.php │ │ │ │ └── Form │ │ │ │ │ └── IntegrationFormTypeStub.php │ │ │ ├── Twig │ │ │ │ └── ChannelExtensionTest.php │ │ │ └── Validator │ │ │ │ ├── ChannelCustomerIdentityValidatorTest.php │ │ │ │ └── ChannelIntegrationValidatorTest.php │ │ └── trusted_data.neon │ ├── Twig │ │ └── ChannelExtension.php │ └── Validator │ │ ├── ChannelCustomerIdentityConstraint.php │ │ ├── ChannelCustomerIdentityConstraintValidator.php │ │ ├── ChannelIntegrationConstraint.php │ │ └── ChannelIntegrationConstraintValidator.php │ ├── ContactBundle │ ├── Async │ │ ├── ContactPostImportProcessor.php │ │ └── Topic │ │ │ └── ActualizeContactEmailAssociationsTopic.php │ ├── Controller │ │ ├── Api │ │ │ └── Rest │ │ │ │ ├── ContactAddressController.php │ │ │ │ ├── ContactController.php │ │ │ │ ├── ContactEmailController.php │ │ │ │ ├── ContactGroupController.php │ │ │ │ └── ContactPhoneController.php │ │ ├── ContactAddressController.php │ │ ├── ContactController.php │ │ └── GroupController.php │ ├── Datagrid │ │ └── ContactsViewList.php │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── EmailHolderHelperConfigPass.php │ │ │ └── PhoneProviderConfigPass.php │ │ ├── Configuration.php │ │ └── OroContactExtension.php │ ├── Entity │ │ ├── Contact.php │ │ ├── ContactAddress.php │ │ ├── ContactEmail.php │ │ ├── ContactPhone.php │ │ ├── Group.php │ │ ├── Manager │ │ │ └── ContactApiEntityManager.php │ │ ├── Method.php │ │ ├── Provider │ │ │ └── EmailOwnerProvider.php │ │ ├── Repository │ │ │ ├── ContactPhoneRepository.php │ │ │ └── ContactRepository.php │ │ └── Source.php │ ├── EventListener │ │ ├── ContactListener.php │ │ └── ImportEventListener.php │ ├── Form │ │ ├── Handler │ │ │ ├── ContactEmailHandler.php │ │ │ ├── ContactHandler.php │ │ │ ├── ContactPhoneHandler.php │ │ │ └── GroupHandler.php │ │ └── Type │ │ │ ├── ContactApiType.php │ │ │ ├── ContactEmailType.php │ │ │ ├── ContactPhoneType.php │ │ │ ├── ContactSelectType.php │ │ │ ├── ContactType.php │ │ │ ├── GroupApiType.php │ │ │ └── GroupType.php │ ├── Formatter │ │ └── SocialUrlFormatter.php │ ├── Handler │ │ ├── ContactEmailAddressHandler.php │ │ ├── ContactEmailApiHandler.php │ │ ├── ContactEmailDeleteHandlerExtension.php │ │ ├── ContactPhoneApiHandler.php │ │ └── ContactPhoneDeleteHandlerExtension.php │ ├── ImportExport │ │ ├── Configuration │ │ │ └── ContactImportExportConfigurationProvider.php │ │ ├── Serializer │ │ │ └── Normalizer │ │ │ │ └── ContactNormalizer.php │ │ ├── Strategy │ │ │ ├── ContactAddOrReplaceStrategy.php │ │ │ ├── ContactAddStrategy.php │ │ │ └── ContactImportHelper.php │ │ └── TemplateFixture │ │ │ ├── ContactAddressFixture.php │ │ │ └── ContactFixture.php │ ├── Migrations │ │ ├── Data │ │ │ └── ORM │ │ │ │ ├── LoadDashboardData.php │ │ │ │ ├── LoadGroupData.php │ │ │ │ ├── LoadMethodData.php │ │ │ │ ├── LoadSourceData.php │ │ │ │ └── UpdateContactEntitiesWithOrganization.php │ │ └── Schema │ │ │ ├── OroContactBundleInstaller.php │ │ │ ├── v1_0 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_1 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_10 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_11 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_12 │ │ │ └── ChangeContactAddressPostalCodeLength.php │ │ │ ├── v1_13 │ │ │ └── UpdateCreatedUpdatedLabels.php │ │ │ ├── v1_14 │ │ │ └── SetNullableLastName.php │ │ │ ├── v1_15 │ │ │ └── UpdateIndexes.php │ │ │ ├── v1_16 │ │ │ └── UpdateContactFormType.php │ │ │ ├── v1_17 │ │ │ └── CreateIndexForFirstName.php │ │ │ ├── v1_18 │ │ │ └── CreateCaseInsensitiveIndexForContactEmail.php │ │ │ ├── v1_2 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_3 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_4 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_5 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_6 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_7 │ │ │ └── OroContactBundle.php │ │ │ ├── v1_8 │ │ │ └── OroContactBundle.php │ │ │ └── v1_9 │ │ │ └── CreateActivityAssociation.php │ ├── Model │ │ └── Social.php │ ├── OroContactBundle.php │ ├── Provider │ │ ├── ContactEntityNameProvider.php │ │ ├── ContactPhoneProvider.php │ │ └── EmailRecipientsProvider.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── controllers.yml │ │ │ ├── controllers_api.yml │ │ │ ├── form.yml │ │ │ ├── importexport.yml │ │ │ ├── mq_processors.yml │ │ │ ├── mq_topics.yml │ │ │ ├── oro │ │ │ │ ├── api.yml │ │ │ │ ├── api_plain.yml │ │ │ │ ├── app.yml │ │ │ │ ├── assets.yml │ │ │ │ ├── bundles.yml │ │ │ │ ├── dashboards.yml │ │ │ │ ├── datagrids.yml │ │ │ │ ├── entity.yml │ │ │ │ ├── entity_hidden_fields.yml │ │ │ │ ├── features.yml │ │ │ │ ├── jsmodules.yml │ │ │ │ ├── navigation.yml │ │ │ │ ├── placeholders.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── sanitize.yml │ │ │ │ └── search.yml │ │ │ ├── services.yml │ │ │ ├── services_api.yml │ │ │ ├── services_test.yml │ │ │ └── validation.yml │ │ ├── doc │ │ │ └── api │ │ │ │ ├── contact.md │ │ │ │ ├── contact_address.md │ │ │ │ └── contact_group.md │ │ ├── public │ │ │ ├── css │ │ │ │ └── scss │ │ │ │ │ ├── contact.scss │ │ │ │ │ ├── main.scss │ │ │ │ │ ├── mobile │ │ │ │ │ ├── contact.scss │ │ │ │ │ ├── main.scss │ │ │ │ │ ├── variables.scss │ │ │ │ │ └── variables │ │ │ │ │ │ └── contact-variable.scss │ │ │ │ │ └── variables │ │ │ │ │ ├── contact.scss │ │ │ │ │ └── variables.scss │ │ │ ├── img │ │ │ │ └── recently_accessed_contacts.png │ │ │ └── js │ │ │ │ └── datagrid │ │ │ │ └── inline-editing │ │ │ │ └── save-api-accessor.js │ │ ├── translations │ │ │ ├── messages.en.yml │ │ │ └── validators.en.yml │ │ └── views │ │ │ ├── Contact │ │ │ ├── Datagrid │ │ │ │ └── Property │ │ │ │ │ └── contactName.html.twig │ │ │ ├── addContactButton.html.twig │ │ │ ├── addContactLink.html.twig │ │ │ ├── headerStats.html.twig │ │ │ ├── index.html.twig │ │ │ ├── searchResult.html.twig │ │ │ ├── update.html.twig │ │ │ ├── view.html.twig │ │ │ └── widget │ │ │ │ ├── accountContacts.html.twig │ │ │ │ └── info.html.twig │ │ │ ├── ContactAddress │ │ │ └── widget │ │ │ │ ├── addressBook.html.twig │ │ │ │ └── update.html.twig │ │ │ ├── Dashboard │ │ │ ├── contactsLaunchpad.html.twig │ │ │ └── myContactsActivity.html.twig │ │ │ ├── Group │ │ │ ├── index.html.twig │ │ │ └── update.html.twig │ │ │ └── Include │ │ │ └── fields.html.twig │ ├── Tests │ │ ├── Behat │ │ │ ├── Context │ │ │ │ └── FeatureContext.php │ │ │ ├── Element │ │ │ │ └── Select2Share.php │ │ │ ├── Features │ │ │ │ ├── Fixtures │ │ │ │ │ ├── LoadContactEntitiesFixture.yml │ │ │ │ │ ├── LoadContactForGroupFixture.yml │ │ │ │ │ ├── SystemCalendarEventFixture.yml │ │ │ │ │ ├── charlie-sheen.jpg │ │ │ │ │ ├── contact.yml │ │ │ │ │ ├── contacts.yml │ │ │ │ │ ├── contacts_with_big_ids.yml │ │ │ │ │ ├── merge_contacts.yml │ │ │ │ │ └── tags.yml │ │ │ │ ├── campaign_sending.feature │ │ │ │ ├── check_date_filters_for_the_contacts_grid.feature │ │ │ │ ├── check_filters_in_the_grid_settings_for_the_contacts_grid.feature │ │ │ │ ├── contact_activities.feature │ │ │ │ ├── contact_group_crud.feature │ │ │ │ ├── contacts_crud.feature │ │ │ │ ├── contacts_grid.feature │ │ │ │ ├── contacts_reports.feature │ │ │ │ ├── country_and_region_translations_for_account_contacts_update_grid.feature │ │ │ │ ├── country_and_region_translations_for_contacts.feature │ │ │ │ ├── country_and_region_translations_for_contacts_select_grid.feature │ │ │ │ ├── dataaudit_logs_acl_protection.feature │ │ │ │ ├── extended_table_fields_validation_on_import.feature │ │ │ │ ├── filters_state_view.feature │ │ │ │ ├── formatting_contact_id_in_marketing_lists.feature │ │ │ │ ├── import_contacts.feature │ │ │ │ ├── localized_email_notification_after_contact_import_export.feature │ │ │ │ ├── merging_contacts.feature │ │ │ │ ├── public_and_private_emails_in_contact_activities.feature │ │ │ │ ├── send_email_to_contact.feature │ │ │ │ ├── serialized_fields_validation_on_import.feature │ │ │ │ ├── system_calendar_event.feature │ │ │ │ └── system_calendar_event_creator_editor_in_activity_list.feature │ │ │ └── behat.yml │ │ ├── Functional │ │ │ ├── AbstractContactPaginationTestCase.php │ │ │ ├── Api │ │ │ │ ├── DataFixtures │ │ │ │ │ ├── LoadContactsData.php │ │ │ │ │ ├── contact_addresses.yml │ │ │ │ │ ├── contact_groups.yml │ │ │ │ │ └── contacts_for_address_update_list.yml │ │ │ │ ├── RestJsonApi │ │ │ │ │ ├── ContactAddressTest.php │ │ │ │ │ ├── ContactAddressUpdateListTest.php │ │ │ │ │ ├── ContactGroupTest.php │ │ │ │ │ ├── ContactTest.php │ │ │ │ │ ├── ContactUpdateListTest.php │ │ │ │ │ ├── DisabledManageContactGroupsTest.php │ │ │ │ │ ├── requests │ │ │ │ │ │ ├── create_contact_address.yml │ │ │ │ │ │ ├── create_contact_address_min.yml │ │ │ │ │ │ └── create_contact_min.yml │ │ │ │ │ └── responses │ │ │ │ │ │ ├── cget_contact_address.yml │ │ │ │ │ │ ├── cget_contact_address_filter_country.yml │ │ │ │ │ │ ├── cget_contact_address_filter_custom_region.yml │ │ │ │ │ │ ├── cget_contact_address_filter_region.yml │ │ │ │ │ │ ├── create_contact_address.yml │ │ │ │ │ │ ├── get_contact.yml │ │ │ │ │ │ ├── get_contact_address.yml │ │ │ │ │ │ ├── get_contacts_filter_by_email.yml │ │ │ │ │ │ └── get_contacts_filter_by_primary_email.yml │ │ │ │ └── RestPlain │ │ │ │ │ └── ContactTest.php │ │ │ ├── Async │ │ │ │ └── ContactPostImportProcessorTest.php │ │ │ ├── ContactPaginationDeleteTest.php │ │ │ ├── ContactPaginationPermissionTest.php │ │ │ ├── ContactPaginationTest.php │ │ │ ├── Controller │ │ │ │ └── Api │ │ │ │ │ └── Rest │ │ │ │ │ ├── RestContactAddressApiTest.php │ │ │ │ │ ├── RestContactApiTest.php │ │ │ │ │ ├── RestContactEmailApiTest.php │ │ │ │ │ ├── RestContactGroupsApiTest.php │ │ │ │ │ └── RestContactPhoneApiTest.php │ │ │ ├── DataFixtures │ │ │ │ ├── Data │ │ │ │ │ ├── contact_with_duplicate_address_phone.csv │ │ │ │ │ ├── contact_with_duplicate_records.csv │ │ │ │ │ ├── export.csv │ │ │ │ │ ├── export_template_with_oro_org.csv │ │ │ │ │ ├── export_template_with_oroinc_org.csv │ │ │ │ │ ├── import_one_record.csv │ │ │ │ │ ├── import_validation_error.json │ │ │ │ │ ├── import_wrong_data.csv │ │ │ │ │ └── update_name_prefix.csv │ │ │ │ ├── LoadAccountData.php │ │ │ │ ├── LoadContactEmailData.php │ │ │ │ ├── LoadContactEntitiesData.php │ │ │ │ ├── LoadContactPhoneData.php │ │ │ │ ├── LoadUserData.php │ │ │ │ └── contact_addresses.yml │ │ │ ├── Entity │ │ │ │ └── Provider │ │ │ │ │ ├── DataFixtures │ │ │ │ │ └── email_owner_provider.yml │ │ │ │ │ └── EmailOwnerProviderTest.php │ │ │ ├── Environment │ │ │ │ ├── TestEntitiesMigration.php │ │ │ │ ├── TestEntitiesMigrationListener.php │ │ │ │ └── TestEntityNameResolverDataLoader.php │ │ │ ├── Handler │ │ │ │ └── ContactEmailAddressHandlerTest.php │ │ │ └── ImportExportTest.php │ │ ├── Unit │ │ │ ├── Async │ │ │ │ └── ContactPostImportProcessorTest.php │ │ │ ├── DependencyInjection │ │ │ │ ├── Compiler │ │ │ │ │ └── EmailHolderHelperConfigPassTest.php │ │ │ │ └── OroContactExtensionTest.php │ │ │ ├── Entity │ │ │ │ ├── ContactAddressTest.php │ │ │ │ ├── ContactEmailTest.php │ │ │ │ ├── ContactPhoneTest.php │ │ │ │ ├── ContactTest.php │ │ │ │ ├── GroupTest.php │ │ │ │ ├── MethodTest.php │ │ │ │ └── SourceTest.php │ │ │ ├── EventListener │ │ │ │ ├── ContactListenerTest.php │ │ │ │ └── ImportEventListenerTest.php │ │ │ ├── Form │ │ │ │ ├── Handler │ │ │ │ │ └── ContactHandlerTest.php │ │ │ │ └── Type │ │ │ │ │ ├── ContactApiTypeTest.php │ │ │ │ │ ├── ContactSelectTypeTest.php │ │ │ │ │ └── ContactTypeTest.php │ │ │ ├── Formatter │ │ │ │ └── SocialUrlFormatterTest.php │ │ │ ├── Handler │ │ │ │ ├── ContactEmailDeleteHandlerExtensionTest.php │ │ │ │ └── ContactPhoneDeleteHandlerExtensionTest.php │ │ │ ├── ImportExport │ │ │ │ ├── Configuration │ │ │ │ │ └── ContactImportExportConfigurationProviderTest.php │ │ │ │ ├── Serializer │ │ │ │ │ └── Normalizer │ │ │ │ │ │ └── ContactNormalizerTest.php │ │ │ │ ├── Strategy │ │ │ │ │ └── ContactAddStrategyTest.php │ │ │ │ └── TemplateFixture │ │ │ │ │ └── ContactAddressFixtureTest.php │ │ │ ├── Provider │ │ │ │ ├── ContactEntityNameProviderTest.php │ │ │ │ ├── ContactPhoneProviderTest.php │ │ │ │ └── EmailRecipientsProviderTest.php │ │ │ ├── Twig │ │ │ │ └── ContactExtensionTest.php │ │ │ └── Validator │ │ │ │ └── Constraints │ │ │ │ └── HasContactInformationValidatorTest.php │ │ └── trusted_data.neon │ ├── Twig │ │ └── ContactExtension.php │ └── Validator │ │ └── Constraints │ │ ├── HasContactInformation.php │ │ └── HasContactInformationValidator.php │ ├── ContactUsBundle │ ├── Autocomplete │ │ └── ContactReasonSearchHandler.php │ ├── Controller │ │ ├── Api │ │ │ └── Rest │ │ │ │ └── ContactRequestController.php │ │ ├── ContactReasonController.php │ │ └── ContactRequestController.php │ ├── DependencyInjection │ │ └── OroContactUsExtension.php │ ├── Entity │ │ ├── AbstractContactRequest.php │ │ ├── ContactReason.php │ │ ├── ContactRequest.php │ │ └── Repository │ │ │ └── ContactReasonRepository.php │ ├── Form │ │ ├── Handler │ │ │ └── ContactRequestHandler.php │ │ └── Type │ │ │ ├── ContactReasonSelectType.php │ │ │ ├── ContactReasonType.php │ │ │ ├── ContactRequestEditType.php │ │ │ └── ContactRequestType.php │ ├── Migrations │ │ ├── Data │ │ │ └── ORM │ │ │ │ ├── DefaultChannelData.php │ │ │ │ ├── LoadContactReasonData.php │ │ │ │ ├── LoadEmailTemplates.php │ │ │ │ ├── LoadWorkflowAclData.php │ │ │ │ ├── LoadWorkflowData.php │ │ │ │ ├── UpdateContactRequestWithOrganization.php │ │ │ │ └── data │ │ │ │ ├── emails │ │ │ │ └── contact_request │ │ │ │ │ └── contact_request_create_notification.html.twig │ │ │ │ └── workflows.yml │ │ └── Schema │ │ │ ├── OroContactUsBundleInstaller.php │ │ │ ├── v1_0 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_1 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_10 │ │ │ ├── CreateActivityAssociation.php │ │ │ └── FillActivityAssociationTables.php │ │ │ ├── v1_11 │ │ │ └── RemoveWorkflowFields.php │ │ │ ├── v1_12 │ │ │ └── UpdatePreferredContactMethod.php │ │ │ ├── v1_13 │ │ │ └── DropChannelFieldBundle.php │ │ │ ├── v1_14 │ │ │ └── UpdateIndexes.php │ │ │ ├── v1_15 │ │ │ └── RemoveOldData.php │ │ │ ├── v1_16 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_17 │ │ │ └── UpdateIndexes.php │ │ │ ├── v1_18 │ │ │ └── MakeLabelLocalizableMigration.php │ │ │ ├── v1_19 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_2 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_3 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_4 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_5 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_6 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_7 │ │ │ └── OroContactUsBundle.php │ │ │ ├── v1_8 │ │ │ └── DropFieldConfig.php │ │ │ └── v1_9 │ │ │ └── UpdateCreatedUpdatedLabels.php │ ├── OroContactUsBundle.php │ ├── Provider │ │ ├── AbstractContactRequestPhoneProvider.php │ │ ├── ContactReasonEntityNameProvider.php │ │ ├── ContactReasonVariablesProvider.php │ │ └── ContactUsPageRequestProvider.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── controllers.yml │ │ │ ├── controllers_api.yml │ │ │ ├── oro │ │ │ │ ├── api.yml │ │ │ │ ├── app.yml │ │ │ │ ├── bundles.yml │ │ │ │ ├── datagrids.yml │ │ │ │ ├── features.yml │ │ │ │ ├── jsmodules.yml │ │ │ │ ├── navigation.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── search.yml │ │ │ │ └── workflows.yml │ │ │ ├── services.yml │ │ │ ├── services_test.yml │ │ │ └── validation.yml │ │ ├── doc │ │ │ └── api │ │ │ │ ├── contact_reason.md │ │ │ │ └── contact_request.md │ │ ├── public │ │ │ └── js │ │ │ │ ├── app │ │ │ │ └── modules │ │ │ │ │ └── validator-constraints-module.js │ │ │ │ └── validator │ │ │ │ └── contact-request-callback.js │ │ ├── translations │ │ │ ├── messages.en.yml │ │ │ └── workflows.en.yml │ │ └── views │ │ │ ├── ContactReason │ │ │ ├── index.html.twig │ │ │ └── update.html.twig │ │ │ ├── ContactRequest │ │ │ ├── index.html.twig │ │ │ ├── searchResult.html.twig │ │ │ ├── update.html.twig │ │ │ ├── view.html.twig │ │ │ └── widget │ │ │ │ └── info.html.twig │ │ │ ├── fields.html.twig │ │ │ └── layouts │ │ │ ├── default │ │ │ └── config │ │ │ │ └── jsmodules.yml │ │ │ ├── embedded_default │ │ │ └── oro_embedded_form_submit │ │ │ │ ├── default.yml │ │ │ │ └── form.html.twig │ │ │ └── optimized │ │ │ └── config │ │ │ └── jsmodules-landing.yml │ ├── Tests │ │ ├── Behat │ │ │ ├── Features │ │ │ │ ├── Fixtures │ │ │ │ │ ├── 3-contact-requests.yml │ │ │ │ │ └── email_notification_with_contact_reason_and_preferred_contact_method_fields.yml │ │ │ │ ├── checks_that_default_success_message_and_css_are_shown.feature │ │ │ │ ├── contact_reasons.feature │ │ │ │ ├── email_configuration.feature │ │ │ │ ├── email_notification_to_any_email_field.feature │ │ │ │ ├── email_notification_with_contact_reason_and_preferred_contact_method_fields.feature │ │ │ │ ├── notify_assigned_sales_representatives.feature │ │ │ │ └── workflow_orocrm_contact_us_contact_request.feature │ │ │ └── behat.yml │ │ ├── Functional │ │ │ ├── Api │ │ │ │ ├── DataFixtures │ │ │ │ │ └── contact_reasons.yml │ │ │ │ └── RestJsonApi │ │ │ │ │ ├── ContactReasonTest.php │ │ │ │ │ └── DisabledManageContactReasonsTest.php │ │ │ ├── Entity │ │ │ │ └── ContactReasonTest.php │ │ │ ├── Environment │ │ │ │ └── TestEntityNameResolverDataLoader.php │ │ │ ├── Fixtures │ │ │ │ └── LoadContactUsBundleFixtures.php │ │ │ └── Grid │ │ │ │ └── ContactRequestsGridTest.php │ │ └── Unit │ │ │ ├── Autocomplete │ │ │ └── ContactReasonSearchHandlerTest.php │ │ │ ├── Entity │ │ │ └── ContactRequestTest.php │ │ │ ├── Form │ │ │ ├── Handler │ │ │ │ └── ContactRequestHandlerTest.php │ │ │ └── Type │ │ │ │ ├── ContactReasonSelectTypeTest.php │ │ │ │ └── ContactRequestTypeTest.php │ │ │ ├── Provider │ │ │ └── ContactReasonVariablesProviderTest.php │ │ │ ├── Stub │ │ │ └── ContactReasonStub.php │ │ │ └── Validator │ │ │ └── ContactRequestCallbackValidatorTest.php │ └── Validator │ │ └── ContactRequestCallbackValidator.php │ ├── DemoDataBundle │ ├── Migrations │ │ └── Data │ │ │ ├── Demo │ │ │ └── ORM │ │ │ │ ├── AbstractDemoFixture.php │ │ │ │ ├── LoadAccountData.php │ │ │ │ ├── LoadB2bCustomerData.php │ │ │ │ ├── LoadBusinessUnitData.php │ │ │ │ ├── LoadChannelData.php │ │ │ │ ├── LoadContactData.php │ │ │ │ ├── LoadContactGroupData.php │ │ │ │ ├── LoadEmailData.php │ │ │ │ ├── LoadEmailTemplates.php │ │ │ │ ├── LoadEmbeddedFormData.php │ │ │ │ ├── LoadGroupData.php │ │ │ │ ├── LoadLeadSourceData.php │ │ │ │ ├── LoadLeadsData.php │ │ │ │ ├── LoadOpportunitiesData.php │ │ │ │ ├── LoadPintabsData.php │ │ │ │ ├── LoadReportData.php │ │ │ │ ├── LoadTagsData.php │ │ │ │ ├── LoadUserData.php │ │ │ │ ├── LoadUsersData.php │ │ │ │ ├── dictionaries │ │ │ │ ├── accounts.csv │ │ │ │ ├── campaigns.csv │ │ │ │ ├── company_names.txt │ │ │ │ ├── emails.csv │ │ │ │ ├── first_names.txt │ │ │ │ ├── last_names.txt │ │ │ │ └── leads.csv │ │ │ │ └── emails │ │ │ │ └── user │ │ │ │ ├── create │ │ │ │ ├── demo_data_bundle_create_account.html.twig │ │ │ │ ├── demo_data_bundle_create_contact.html.twig │ │ │ │ ├── demo_data_bundle_create_group.html.twig │ │ │ │ ├── demo_data_bundle_create_role.html.twig │ │ │ │ ├── demo_data_bundle_create_tag.html.twig │ │ │ │ └── demo_data_bundle_create_user.html.twig │ │ │ │ ├── delete │ │ │ │ ├── demo_data_bundle_delete_account.html.twig │ │ │ │ ├── demo_data_bundle_delete_contact.html.twig │ │ │ │ ├── demo_data_bundle_delete_group.html.twig │ │ │ │ ├── demo_data_bundle_delete_role.html.twig │ │ │ │ ├── demo_data_bundle_delete_tag.html.twig │ │ │ │ └── demo_data_bundle_delete_user.html.twig │ │ │ │ └── update │ │ │ │ ├── demo_data_bundle_update_account.html.twig │ │ │ │ ├── demo_data_bundle_update_contact.html.twig │ │ │ │ ├── demo_data_bundle_update_group.html.twig │ │ │ │ ├── demo_data_bundle_update_role.html.twig │ │ │ │ ├── demo_data_bundle_update_tag.html.twig │ │ │ │ └── demo_data_bundle_update_user.html.twig │ │ │ └── ORM │ │ │ ├── CrmRoles │ │ │ ├── roles.yml │ │ │ └── workflows.yml │ │ │ ├── LoadAclRolesData.php │ │ │ ├── LoadRolesData.php │ │ │ ├── LoadWorkflowAclData.php │ │ │ ├── UpdateB2bCustomerOrganizationData.php │ │ │ ├── UpdateEmailAccessLevels.php │ │ │ └── UpdateIntegrationAccessLevels.php │ ├── OroDemoDataBundle.php │ ├── README.md │ └── Resources │ │ └── config │ │ └── oro │ │ └── bundles.yml │ ├── ReportCRMBundle │ ├── Controller │ │ └── ReportController.php │ ├── DependencyInjection │ │ └── OroReportCRMExtension.php │ ├── EventListener │ │ ├── Datagrid │ │ │ ├── AccountsByOpportunitiesReportListener.php │ │ │ └── OpportunitiesByStatusReportListener.php │ │ └── ReportGridListener.php │ ├── Filter │ │ └── PeriodFilter.php │ ├── OroReportCRMBundle.php │ ├── Resources │ │ ├── config │ │ │ ├── controllers.yml │ │ │ ├── oro │ │ │ │ ├── bundles.yml │ │ │ │ ├── datagrids.yml │ │ │ │ ├── features.yml │ │ │ │ ├── navigation.yml │ │ │ │ └── routing.yml │ │ │ └── services.yml │ │ ├── translations │ │ │ └── messages.en.yml │ │ └── views │ │ │ └── Report │ │ │ └── index.html.twig │ ├── Tests │ │ ├── Behat │ │ │ ├── Context │ │ │ │ └── FeatureContext.php │ │ │ ├── Features │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AccountsByOpportunitiesReport.yml │ │ │ │ │ └── LeadsByDateReportFixture.yml │ │ │ │ ├── accounts_by_opportunities_report.feature │ │ │ │ ├── create_report_with_dictionary_field.feature │ │ │ │ ├── create_report_with_enum_field.feature │ │ │ │ ├── create_segment_with_dictionary_field.feature │ │ │ │ ├── leads_by_date_report.feature │ │ │ │ └── opportunities_by_status_report.feature │ │ │ └── behat.yml │ │ ├── Functional │ │ │ ├── ControllersCrmTest.php │ │ │ ├── ControllersTest.php │ │ │ ├── DataFixtures │ │ │ │ ├── LoadLeadSourceData.php │ │ │ │ ├── LoadLeadsData.php │ │ │ │ └── dictionaries │ │ │ │ │ └── leads.csv │ │ │ ├── DatagridReport │ │ │ │ └── LeadsByDateReportTest.php │ │ │ └── reports │ │ │ │ ├── report#1.yml │ │ │ │ └── report#2.yml │ │ ├── Unit │ │ │ └── EventListener │ │ │ │ └── ReportGridListenerTest.php │ │ └── trusted_data.neon │ └── readme.md │ ├── SalesBundle │ ├── Action │ │ └── FindCustomerAssociation.php │ ├── Api │ │ ├── AccountCustomerAssociationProvider.php │ │ └── Processor │ │ │ ├── AddAccountCustomerAssociationDescriptions.php │ │ │ ├── AddAccountCustomerAssociations.php │ │ │ ├── ExcludeChangeCustomerSubresources.php │ │ │ ├── HandleCustomerAccountAssociation.php │ │ │ └── HandleCustomerAssociation.php │ ├── Autocomplete │ │ ├── BusinessCustomerSearchHandler.php │ │ ├── CustomerSearchHandler.php │ │ └── ForecastWidgetBusinessUnitSearchHandler.php │ ├── Builder │ │ └── OpportunityRelationsBuilder.php │ ├── CacheWarmer │ │ └── RemoveSalesFunnelEntityConfigWarmer.php │ ├── Command │ │ └── RecalculateLifetimeCommand.php │ ├── Controller │ │ ├── Api │ │ │ └── Rest │ │ │ │ ├── B2bCustomerController.php │ │ │ │ ├── B2bCustomerEmailController.php │ │ │ │ ├── B2bCustomerPhoneController.php │ │ │ │ ├── LeadAddressController.php │ │ │ │ ├── LeadController.php │ │ │ │ ├── LeadEmailController.php │ │ │ │ ├── LeadPhoneController.php │ │ │ │ └── OpportunityController.php │ │ ├── AutocompleteController.php │ │ ├── B2bCustomerController.php │ │ ├── CustomerController.php │ │ ├── Dashboard │ │ │ └── DashboardController.php │ │ ├── LeadAddressController.php │ │ ├── LeadController.php │ │ └── OpportunityController.php │ ├── Dashboard │ │ └── Provider │ │ │ ├── OpportunityByStatusProvider.php │ │ │ └── WidgetOpportunityByLeadSourceProvider.php │ ├── Datagrid │ │ ├── Extension │ │ │ └── Customers │ │ │ │ ├── AccountExtension.php │ │ │ │ ├── AccountRelatedEntitiesExtension.php │ │ │ │ ├── RelatedEntitiesExtension.php │ │ │ │ └── RelevantOpportunitiesExtension.php │ │ ├── LeadViewList.php │ │ ├── OpportunityViewList.php │ │ └── WidgetExcludedStatusListener.php │ ├── DependencyInjection │ │ ├── Compiler │ │ │ └── AddProbabilityFieldToIgnoreForScalarDenormalizationPass.php │ │ ├── Configuration.php │ │ └── OroSalesExtension.php │ ├── Entity │ │ ├── B2bCustomer.php │ │ ├── B2bCustomerEmail.php │ │ ├── B2bCustomerPhone.php │ │ ├── Customer.php │ │ ├── EventListener │ │ │ └── OpportunityListener.php │ │ ├── Lead.php │ │ ├── LeadAddress.php │ │ ├── LeadEmail.php │ │ ├── LeadMailboxProcessSettings.php │ │ ├── LeadPhone.php │ │ ├── Manager │ │ │ ├── AccountCustomerManager.php │ │ │ └── B2bCustomerApiEntityManager.php │ │ ├── Opportunity.php │ │ ├── OpportunityCloseReason.php │ │ ├── Provider │ │ │ └── EmailOwnerProvider.php │ │ └── Repository │ │ │ ├── B2bCustomerRepository.php │ │ │ ├── CustomerRepository.php │ │ │ ├── LeadRepository.php │ │ │ └── OpportunityRepository.php │ ├── EntityConfig │ │ ├── CustomerEntityConfiguration.php │ │ └── CustomerScope.php │ ├── EntityExtend │ │ └── CustomerEntityFieldExtension.php │ ├── EventListener │ │ ├── AccountViewListener.php │ │ ├── B2bCustomerLifetimeListener.php │ │ ├── Config │ │ │ └── DefaultProbabilityListener.php │ │ ├── CustomerAccountChangeListener.php │ │ ├── CustomerAccountCountQueryOptimizationListener.php │ │ ├── Customers │ │ │ ├── CustomerAssociationListener.php │ │ │ ├── LeadsListener.php │ │ │ └── OpportunitiesListener.php │ │ ├── DefaultProbabilityListener.php │ │ └── RelevantOpportunitiesListener.php │ ├── Exception │ │ └── Customer │ │ │ └── InvalidCustomerRelationEntityException.php │ ├── Form │ │ ├── DataTransformer │ │ │ └── CustomerToStringTransformer.php │ │ ├── EventListener │ │ │ └── CustomerAssociationAccountFieldListener.php │ │ ├── Extension │ │ │ └── CustomerAssociationAccountExtension.php │ │ ├── Handler │ │ │ ├── B2bCustomerEmailHandler.php │ │ │ ├── B2bCustomerHandler.php │ │ │ ├── B2bCustomerPhoneHandler.php │ │ │ ├── LeadEmailHandler.php │ │ │ ├── LeadHandler.php │ │ │ ├── LeadPhoneHandler.php │ │ │ ├── LeadToOpportunityHandler.php │ │ │ └── OpportunityHandler.php │ │ └── Type │ │ │ ├── B2bCustomerApiType.php │ │ │ ├── B2bCustomerEmailType.php │ │ │ ├── B2bCustomerPhoneType.php │ │ │ ├── B2bCustomerSelectType.php │ │ │ ├── B2bCustomerType.php │ │ │ ├── CustomerType.php │ │ │ ├── LeadAddressType.php │ │ │ ├── LeadApiType.php │ │ │ ├── LeadEmailType.php │ │ │ ├── LeadMailboxProcessSettingsType.php │ │ │ ├── LeadMailboxProcessSourceType.php │ │ │ ├── LeadPhoneType.php │ │ │ ├── LeadSelectType.php │ │ │ ├── LeadSourceSelectType.php │ │ │ ├── LeadStatusSelectType.php │ │ │ ├── LeadToOpportunityType.php │ │ │ ├── LeadType.php │ │ │ ├── OpportunityApiType.php │ │ │ ├── OpportunityProbabilityType.php │ │ │ ├── OpportunitySelectType.php │ │ │ ├── OpportunityStatusConfigType.php │ │ │ ├── OpportunityStatusEnumValueType.php │ │ │ ├── OpportunityStatusSelectType.php │ │ │ ├── OpportunityType.php │ │ │ └── WidgetOpportunityStatusSelectType.php │ ├── Handler │ │ ├── B2bCustomerEmailApiHandler.php │ │ ├── B2bCustomerEmailDeleteHandlerExtension.php │ │ ├── B2bCustomerPhoneApiHandler.php │ │ ├── B2bCustomerPhoneDeleteHandlerExtension.php │ │ ├── LeadEmailDeleteHandlerExtension.php │ │ ├── LeadPhoneApiHandler.php │ │ ├── LeadPhoneDeleteHandlerExtension.php │ │ └── OpportunityApiHandler.php │ ├── ImportExport │ │ ├── Configuration │ │ │ ├── B2bCustomerImportExportConfigurationProvider.php │ │ │ ├── LeadImportExportConfigurationProvider.php │ │ │ └── OpportunityImportExportConfigurationProvider.php │ │ ├── EventListener │ │ │ ├── CustomerAssociationListener.php │ │ │ ├── OpportunityListener.php │ │ │ └── OpportunityProbabilitySubscriber.php │ │ ├── Strategy │ │ │ ├── B2bConfigurableAddOrReplaceStrategy.php │ │ │ └── LeadAddOrReplaceStrategy.php │ │ └── TemplateFixture │ │ │ ├── B2bCustomerFixture.php │ │ │ ├── LeadFixture.php │ │ │ └── OpportunityFixture.php │ ├── Migration │ │ ├── Extension │ │ │ ├── CustomerExtension.php │ │ │ ├── CustomerExtensionAwareInterface.php │ │ │ └── CustomerExtensionTrait.php │ │ └── RemoveCustomerAssociationQuery.php │ ├── Migrations │ │ ├── Data │ │ │ └── ORM │ │ │ │ ├── DeactivateSalesWorkflows.php │ │ │ │ ├── DefaultChannelData.php │ │ │ │ ├── LoadDashboardData.php │ │ │ │ ├── LoadLeadSourceData.php │ │ │ │ ├── LoadLeadStatusOptionData.php │ │ │ │ ├── LoadOpportunityCloseReasonData.php │ │ │ │ ├── LoadOpportunityStatusOptionsData.php │ │ │ │ ├── SplitBusinessChannelStatisticsWidget.php │ │ │ │ ├── UpdateB2bCustomerWithOrganization.php │ │ │ │ ├── UpdateEmailVisibilities.php │ │ │ │ ├── UpdateFeaturesConfigs.php │ │ │ │ ├── UpdateReportsWithVirtualRelations.php │ │ │ │ ├── UpdateSalesEntitiesWithOrganization.php │ │ │ │ └── UpdateWorkflowStartStep.php │ │ └── Schema │ │ │ ├── OroSalesBundleInstaller.php │ │ │ ├── v1_0 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_1 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_10 │ │ │ ├── AddFields.php │ │ │ ├── DropFields.php │ │ │ ├── MigrateAccountRelations.php │ │ │ ├── OroSalesBundle.php │ │ │ └── UpdateExtendedFieldQuery.php │ │ │ ├── v1_11 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_12 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_12_1 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_13 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_14 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_15 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_16 │ │ │ └── UpdateCreatedUpdatedLabels.php │ │ │ ├── v1_17 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_18 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_19 │ │ │ └── RemoveEmailConvertTrigger.php │ │ │ ├── v1_2 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_20 │ │ │ ├── RemoveExtendSourceField.php │ │ │ └── RemoveExtendSourceFieldQuery.php │ │ │ ├── v1_21 │ │ │ └── InheritanceActivityTargets.php │ │ │ ├── v1_22 │ │ │ ├── AddOpportunityStatus.php │ │ │ ├── RemoveOpportunityOldStatus.php │ │ │ ├── RemoveOpportunityStatusFK.php │ │ │ ├── UpdateOpportunityStatus.php │ │ │ ├── UpdateReport.php │ │ │ └── UpdateReportQuery.php │ │ │ ├── v1_23 │ │ │ ├── OroSalesBundle.php │ │ │ ├── UpdateEntityConfigEntityValueQuery.php │ │ │ └── UpdateWorkflowItemStepData.php │ │ │ ├── v1_24 │ │ │ ├── AddLeadStatus.php │ │ │ ├── ConvertPhoneNumberInPhone.php │ │ │ ├── CreateB2bCustomerEmail.php │ │ │ ├── CreateB2bCustomerPhone.php │ │ │ ├── CreateLeadEmail.php │ │ │ ├── CreateLeadPhone.php │ │ │ ├── InheritanceActivityTargets.php │ │ │ ├── OroSalesBundle.php │ │ │ ├── RemoveLeadEmail.php │ │ │ ├── RemoveLeadStatus.php │ │ │ ├── RemovePhoneNumberField.php │ │ │ ├── UpdateLeadFirstLastName.php │ │ │ ├── UpdateLeadStatus.php │ │ │ └── UpdateReport.php │ │ │ ├── v1_25 │ │ │ ├── AddLeadAddressTable.php │ │ │ └── UpdateReport.php │ │ │ ├── v1_25_1 │ │ │ └── B2BStatisticsWidgetName.php │ │ │ ├── v1_25_2 │ │ │ ├── AddClosedAtField.php │ │ │ └── FillClosedAtField.php │ │ │ ├── v1_25_3 │ │ │ └── RemoveOldEntityConfigs.php │ │ │ ├── v1_25_4 │ │ │ ├── FixReportsQuery.php │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_25_6 │ │ │ └── AddOpportunityStatus.php │ │ │ ├── v1_26 │ │ │ └── RemoveWorkflowFields.php │ │ │ ├── v1_27 │ │ │ ├── AddMultiCurrencyFields.php │ │ │ └── UpdateOpportunityCurrency.php │ │ │ ├── v1_28 │ │ │ └── UpdateLeadConfigs.php │ │ │ ├── v1_29 │ │ │ ├── AddCustomersTable.php │ │ │ └── OroCRMSalesBundle.php │ │ │ ├── v1_3 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_30 │ │ │ ├── AddBaseCurrencyFields.php │ │ │ └── UpdateReport.php │ │ │ ├── v1_31 │ │ │ ├── AddCustomerAssociations.php │ │ │ ├── ConvertDataChannelToExtend.php │ │ │ ├── Query │ │ │ │ ├── MigrateB2bCustomersQuery.php │ │ │ │ ├── UpdateLeadsQuery.php │ │ │ │ └── UpdateOpportunitiesQuery.php │ │ │ ├── RemoveBuisnessCustomerRelation.php │ │ │ ├── UpdateBusinessCustomers.php │ │ │ └── UpdateInheritanceActivityTargets.php │ │ │ ├── v1_32 │ │ │ └── AddB2bCustomerIndexOnName.php │ │ │ ├── v1_33 │ │ │ └── UpdateIndexes.php │ │ │ ├── v1_34 │ │ │ └── UpdateIndexes.php │ │ │ ├── v1_35 │ │ │ └── RemoveOldData.php │ │ │ ├── v1_36 │ │ │ └── UpdateLeadConfigs.php │ │ │ ├── v1_37 │ │ │ └── RemoveDeprecatedTablesAndFields.php │ │ │ ├── v1_38 │ │ │ └── UpdateIndexes.php │ │ │ ├── v1_39 │ │ │ ├── UpdateB2bCustomerFormType.php │ │ │ ├── UpdateFormTypeForRemainingFields.php │ │ │ ├── UpdateLeadFormType.php │ │ │ └── UpdateOpportunityFormTypes.php │ │ │ ├── v1_4 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_40 │ │ │ └── CreateLeadUpdatedAtIndex.php │ │ │ ├── v1_41 │ │ │ └── AddLeadEmailToOroEmailAddress.php │ │ │ ├── v1_42_1 │ │ │ └── RemoveSalesFunnelData.php │ │ │ ├── v1_43 │ │ │ └── OroCustomerLifetimeField.php │ │ │ ├── v1_43_1 │ │ │ └── RemoveSalesFunnelData.php │ │ │ ├── v1_44 │ │ │ └── DropOpportunitiesByStatusIndex.php │ │ │ ├── v1_5 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_6 │ │ │ └── OroSalesBundle.php │ │ │ ├── v1_7 │ │ │ └── OpportunityAttachment.php │ │ │ ├── v1_8 │ │ │ ├── UpdateCampaignPerformanceReport.php │ │ │ └── UpdateCampaignPerformanceReportQuery.php │ │ │ └── v1_9 │ │ │ └── MigrateLeadSource.php │ ├── Model │ │ └── ChangeLeadStatus.php │ ├── OroSalesBundle.php │ ├── Provider │ │ ├── B2bCustomerPhoneProvider.php │ │ ├── Customer │ │ │ ├── AccountAutocomplete │ │ │ │ ├── AccountAutocompleteProviderInterface.php │ │ │ │ └── ChainAccountAutocompleteProvider.php │ │ │ ├── AccountConfigProvider.php │ │ │ ├── AccountCreation │ │ │ │ ├── AccountProviderInterface.php │ │ │ │ ├── B2bAccountProvider.php │ │ │ │ ├── ChainAccountProvider.php │ │ │ │ └── DefaultProvider.php │ │ │ ├── ChainCustomerIconProvider.php │ │ │ ├── ConfigCache.php │ │ │ ├── ConfigProvider.php │ │ │ ├── CustomerIconProvider.php │ │ │ └── CustomerIconProviderInterface.php │ │ ├── CustomerAssignmentVirtualRelationProvider.php │ │ ├── CustomerVirtualRelationProvider.php │ │ ├── EntityVariablesProvider.php │ │ ├── ForecastOfOpportunities.php │ │ ├── LeadActionsAccessProvider.php │ │ ├── LeadMailboxProcessProvider.php │ │ ├── LeadPhoneProvider.php │ │ ├── LeadStatisticsProvider.php │ │ ├── LeadToOpportunityProvider.php │ │ ├── LeadToOpportunityProviderInterface.php │ │ ├── Opportunity │ │ │ ├── CurrencyCheckerProvider.php │ │ │ ├── DisplaySettingsConfigProvider.php │ │ │ ├── ForecastProvider.php │ │ │ ├── IndeterminateForecastProvider.php │ │ │ └── OpportunityStatisticsProvider.php │ │ ├── OpportunityPhoneProvider.php │ │ └── ProbabilityProvider.php │ ├── QueryDesigner │ │ ├── AbstractOpportunityStatusCountFunction.php │ │ ├── InProgressOpportunityStatusCountFunction.php │ │ ├── LostOpportunityStatusCountFunction.php │ │ ├── WonOpportunityStatusCountFunction.php │ │ └── WonRevenueSumFunction.php │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── commands.yml │ │ │ ├── controllers.yml │ │ │ ├── controllers_api.yml │ │ │ ├── form.yml │ │ │ ├── importexport.yml │ │ │ ├── oro │ │ │ │ ├── acl_categories.yml │ │ │ │ ├── api.yml │ │ │ │ ├── api_plain.yml │ │ │ │ ├── app.yml │ │ │ │ ├── assets.yml │ │ │ │ ├── bundles.yml │ │ │ │ ├── channels.yml │ │ │ │ ├── dashboards.yml │ │ │ │ ├── datagrids.yml │ │ │ │ ├── entity.yml │ │ │ │ ├── entity_config.yml │ │ │ │ ├── features.yml │ │ │ │ ├── jsmodules.yml │ │ │ │ ├── navigation.yml │ │ │ │ ├── placeholders.yml │ │ │ │ ├── processes.yml │ │ │ │ ├── query_designer.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── sanitize.yml │ │ │ │ ├── search.yml │ │ │ │ ├── system_configuration.yml │ │ │ │ ├── twig.yml │ │ │ │ ├── workflows.yml │ │ │ │ └── workflows │ │ │ │ │ ├── b2b_flow_lead.yml │ │ │ │ │ ├── b2b_flow_lead │ │ │ │ │ ├── attributes.yml │ │ │ │ │ ├── steps.yml │ │ │ │ │ ├── transition_definitions.yml │ │ │ │ │ └── transitions.yml │ │ │ │ │ ├── opportunity_flow.yml │ │ │ │ │ └── opportunity_flow │ │ │ │ │ ├── attributes.yml │ │ │ │ │ ├── entity_restrictions.yml │ │ │ │ │ ├── steps.yml │ │ │ │ │ ├── transition_definitions.yml │ │ │ │ │ └── transitions.yml │ │ │ ├── services.yml │ │ │ ├── services_api.yml │ │ │ ├── services_test.yml │ │ │ └── validation.yml │ │ ├── doc │ │ │ └── api │ │ │ │ ├── account_association.md │ │ │ │ ├── account_customers_association.md │ │ │ │ ├── b2b_customer.md │ │ │ │ ├── lead.md │ │ │ │ ├── lead_address.md │ │ │ │ └── opportunity.md │ │ ├── public │ │ │ ├── css │ │ │ │ └── scss │ │ │ │ │ ├── account-customer.scss │ │ │ │ │ ├── board │ │ │ │ │ └── opportunity-card.scss │ │ │ │ │ ├── main.scss │ │ │ │ │ ├── mobile │ │ │ │ │ ├── account-customer-info.scss │ │ │ │ │ └── main.scss │ │ │ │ │ └── oro-sales.scss │ │ │ ├── img │ │ │ │ ├── icon-big_numbers.png │ │ │ │ ├── my_sales_flow_b2b.png │ │ │ │ ├── opportunities_by_lead_source.png │ │ │ │ └── opportunity_by_status.png │ │ │ ├── js │ │ │ │ ├── app │ │ │ │ │ ├── components │ │ │ │ │ │ ├── customer-component.js │ │ │ │ │ │ └── select2-sales-customer-component.js │ │ │ │ │ └── views │ │ │ │ │ │ ├── account-multicustomer-view.js │ │ │ │ │ │ ├── board │ │ │ │ │ │ └── opportunity-card-view.js │ │ │ │ │ │ ├── create-customer-view.js │ │ │ │ │ │ ├── opportunity-status-select-view.js │ │ │ │ │ │ └── update-page-view.js │ │ │ │ ├── datagrid │ │ │ │ │ └── inline-editing │ │ │ │ │ │ └── save-api-accessor.js │ │ │ │ └── widget │ │ │ │ │ └── customer-info-widget.js │ │ │ └── templates │ │ │ │ └── board │ │ │ │ └── opportunity-card-view.html │ │ ├── translations │ │ │ ├── jsmessages.en.yml │ │ │ ├── messages.en.yml │ │ │ ├── validators.en.yml │ │ │ └── workflows.en.yml │ │ └── views │ │ │ ├── Account │ │ │ ├── account_view.html.twig │ │ │ └── action │ │ │ │ ├── addLeadButton.html.twig │ │ │ │ └── addOpportunityButton.html.twig │ │ │ ├── Autocomplete │ │ │ └── customer │ │ │ │ ├── result.html.twig │ │ │ │ └── selection.html.twig │ │ │ ├── B2bCustomer │ │ │ ├── accountCustomersInfo.html.twig │ │ │ ├── index.html.twig │ │ │ ├── searchResult.html.twig │ │ │ ├── update.html.twig │ │ │ ├── view.html.twig │ │ │ └── widget │ │ │ │ ├── b2bCustomerLeads.html.twig │ │ │ │ ├── b2bCustomerOpportunities.html.twig │ │ │ │ ├── customerInfo.html.twig │ │ │ │ └── info.html.twig │ │ │ ├── Customer │ │ │ ├── accountField.html.twig │ │ │ ├── leadsGrid.html.twig │ │ │ └── opportunitiesGrid.html.twig │ │ │ ├── Dashboard │ │ │ ├── forecastOfOpportunities.html.twig │ │ │ ├── forecastOfOpportunitiesSimpleSubwidget.html.twig │ │ │ ├── forecastOfOpportunitiesSubwidget.html.twig │ │ │ ├── leadsLaunchpad.html.twig │ │ │ ├── leadsList.html.twig │ │ │ ├── opportunitiesByLeadSource.html.twig │ │ │ ├── opportunitiesLaunchpad.html.twig │ │ │ ├── opportunitiesList.html.twig │ │ │ ├── opportunityByStatus.html.twig │ │ │ └── salesFlowChart.html.twig │ │ │ ├── Form │ │ │ └── fields.html.twig │ │ │ ├── Lead │ │ │ ├── Autocomplete │ │ │ │ ├── result.html.twig │ │ │ │ └── selection.html.twig │ │ │ ├── convertToOpportunity.html.twig │ │ │ ├── index.html.twig │ │ │ ├── searchResult.html.twig │ │ │ ├── update.html.twig │ │ │ ├── view.html.twig │ │ │ └── widget │ │ │ │ └── info.html.twig │ │ │ ├── LeadAddress │ │ │ └── widget │ │ │ │ ├── addressBook.html.twig │ │ │ │ └── update.html.twig │ │ │ ├── Opportunity │ │ │ ├── Autocomplete │ │ │ │ ├── result.html.twig │ │ │ │ └── selection.html.twig │ │ │ ├── createOpportunityButton.html.twig │ │ │ ├── createOpportunityLink.html.twig │ │ │ ├── index.html.twig │ │ │ ├── relevantOpportunities.html.twig │ │ │ ├── searchResult.html.twig │ │ │ ├── update.html.twig │ │ │ ├── view.html.twig │ │ │ └── widget │ │ │ │ └── info.html.twig │ │ │ ├── SalesFunnel │ │ │ └── index.html.twig │ │ │ └── macros.html.twig │ ├── Tests │ │ ├── Behat │ │ │ ├── Context │ │ │ │ ├── FeatureContext.php │ │ │ │ ├── SalesContext.php │ │ │ │ └── SalesFeatureToggleContext.php │ │ │ ├── Element │ │ │ │ ├── OpportunityProbabilitiesConfigForm.php │ │ │ │ ├── OpportunityProbabilitiesConfigRaw.php │ │ │ │ └── QuotesGrid.php │ │ │ ├── Features │ │ │ │ ├── Fixtures │ │ │ │ │ ├── B2bCustomerReportFixture.yml │ │ │ │ │ ├── LeadFixture.yml │ │ │ │ │ ├── LoadB2bCustomerEntitiesFixture.yml │ │ │ │ │ ├── LoadLeadEntitiesFixture.yml │ │ │ │ │ ├── OpportunityFixture.yml │ │ │ │ │ ├── OpportunityTagsFixture.yml │ │ │ │ │ ├── OpportunityWithAdditionalCommentsFixture.yml │ │ │ │ │ ├── OpportunityWithBudgetFixture.yml │ │ │ │ │ ├── OpportunityWithCreatedAtFixture.yml │ │ │ │ │ ├── SalesB2bChannel.yml │ │ │ │ │ ├── accounts_with_customers.yml │ │ │ │ │ ├── business_customer_crud.yml │ │ │ │ │ ├── lead.yml │ │ │ │ │ ├── leads_data.yml │ │ │ │ │ ├── nameless_business_customer.yml │ │ │ │ │ ├── nameless_lead.yml │ │ │ │ │ ├── nameless_opportunity.yml │ │ │ │ │ ├── opportunities_data.yml │ │ │ │ │ ├── opportunity_email_template_with_account_name_content.yml │ │ │ │ │ ├── opportunity_from_related.yml │ │ │ │ │ └── opportunity_send_email_action.yml │ │ │ │ ├── additional_comments_in_report_fields.feature │ │ │ │ ├── b2bcustomer_report_with_opportunity_and_lead_relations.feature │ │ │ │ ├── check_correct_expected_close_date_in_opportunity.feature │ │ │ │ ├── check_if_opportunity_budget_is_correct_after_currency_change.feature │ │ │ │ ├── check_if_status_filters_works_as_expected.feature │ │ │ │ ├── check_inline_editing_validation.feature │ │ │ │ ├── country_and_region_translations_for_b2bcustomers_grid.feature │ │ │ │ ├── country_and_region_translations_for_customers_leads_grid.feature │ │ │ │ ├── country_and_region_translations_for_lead.feature │ │ │ │ ├── country_and_region_translations_for_opportunity.feature │ │ │ │ ├── country_filter.feature │ │ │ │ ├── create_opportunity_from_related_entity_views.feature │ │ │ │ ├── create_opportunity_in_a_single_form.feature │ │ │ │ ├── custom_field_deleted_via_ui.feature │ │ │ │ ├── export_opportunity_with_commerce_customer.feature │ │ │ │ ├── import_opportunity.feature │ │ │ │ ├── lead_activity_list_workflow.feature │ │ │ │ ├── lead_inline_phone_edit.feature │ │ │ │ ├── lead_navigation_items.feature │ │ │ │ ├── lead_report_by_date.feature │ │ │ │ ├── lead_statistics_dashboard_widget.feature │ │ │ │ ├── log_a_call_for_nameless_business_customer.feature │ │ │ │ ├── log_a_call_for_nameless_lead.feature │ │ │ │ ├── log_a_call_for_nameless_opportunity.feature │ │ │ │ ├── manage_dashboard_widgets.feature │ │ │ │ ├── managing_business_customer.feature │ │ │ │ ├── navigation_bar_position.feature │ │ │ │ ├── opportunity_crud.feature │ │ │ │ ├── opportunity_date_time_filter.feature │ │ │ │ ├── opportunity_field_acl.feature │ │ │ │ ├── opportunity_management_flow_with_role_permissions.feature │ │ │ │ ├── opportunity_navigation_items.feature │ │ │ │ ├── opportunity_search.feature │ │ │ │ ├── opportunity_send_email_action.feature │ │ │ │ ├── opportunity_won_report.feature │ │ │ │ ├── opportunity_workflow.feature │ │ │ │ ├── public_and_private_emails_in_lead_activities.feature │ │ │ │ ├── quickly_create_lead_in_a_single_form.feature │ │ │ │ ├── tie_opportunity_probability_to_its_status.feature │ │ │ │ └── unidirectional_entity_relations_created_via_ui.feature │ │ │ ├── Page │ │ │ │ ├── LeadCreate.php │ │ │ │ ├── LeadIndex.php │ │ │ │ ├── LeadView.php │ │ │ │ ├── OpportunityCreate.php │ │ │ │ ├── OpportunityIndex.php │ │ │ │ └── OpportunityView.php │ │ │ ├── ReferenceRepositoryInitializer.php │ │ │ ├── behat.yml │ │ │ └── services.yml │ │ ├── Functional │ │ │ ├── Api │ │ │ │ ├── DataFixtures │ │ │ │ │ ├── LoadLeadsData.php │ │ │ │ │ ├── LoadOpportunitiesData.php │ │ │ │ │ ├── b2b_customers.yml │ │ │ │ │ ├── lead_addresses.yml │ │ │ │ │ └── leads_for_address_update_list.yml │ │ │ │ └── RestJsonApi │ │ │ │ │ ├── B2bCustomerAccountDocumentationTest.php │ │ │ │ │ ├── B2bCustomerAccountTest.php │ │ │ │ │ ├── B2bCustomerTest.php │ │ │ │ │ ├── LeadAddressTest.php │ │ │ │ │ ├── LeadAddressUpdateListTest.php │ │ │ │ │ ├── LeadTest.php │ │ │ │ │ ├── LeadUpdateListTest.php │ │ │ │ │ ├── OpportunityStatusTest.php │ │ │ │ │ ├── OpportunityTest.php │ │ │ │ │ ├── OpportunityUpdateListTest.php │ │ │ │ │ ├── requests │ │ │ │ │ ├── create_b2b_customer_min.yml │ │ │ │ │ ├── create_lead.yml │ │ │ │ │ ├── create_lead_address.yml │ │ │ │ │ ├── create_lead_address_min.yml │ │ │ │ │ ├── create_lead_consistent_customer.yml │ │ │ │ │ ├── create_lead_inconsistent_customer.yml │ │ │ │ │ ├── create_lead_min.yml │ │ │ │ │ ├── create_lead_no_account_and_customer.yml │ │ │ │ │ ├── create_lead_no_status.yml │ │ │ │ │ ├── create_lead_null_status.yml │ │ │ │ │ ├── create_opportunity.yml │ │ │ │ │ ├── create_opportunity_consistent_customer.yml │ │ │ │ │ ├── create_opportunity_inconsistent_customer.yml │ │ │ │ │ ├── create_opportunity_min.yml │ │ │ │ │ ├── create_opportunity_no_account_and_customer.yml │ │ │ │ │ ├── update_lead_inconsistent_customer.yml │ │ │ │ │ ├── update_lead_null_status.yml │ │ │ │ │ └── update_opportunity_inconsistent_customer.yml │ │ │ │ │ └── responses │ │ │ │ │ ├── cget_lead.yml │ │ │ │ │ ├── cget_lead_address.yml │ │ │ │ │ ├── cget_lead_address_filter_country.yml │ │ │ │ │ ├── cget_lead_address_filter_custom_region.yml │ │ │ │ │ ├── cget_lead_address_filter_region.yml │ │ │ │ │ ├── cget_lead_customer_association.yml │ │ │ │ │ ├── cget_lead_customer_association_nested.yml │ │ │ │ │ ├── cget_lead_customer_association_title.yml │ │ │ │ │ ├── cget_lead_filter_by_status.yml │ │ │ │ │ ├── cget_opportunity.yml │ │ │ │ │ ├── cget_opportunity_customer_association.yml │ │ │ │ │ ├── cget_opportunity_customer_association_nested.yml │ │ │ │ │ ├── cget_opportunity_customer_association_nested1.yml │ │ │ │ │ ├── cget_opportunity_customer_association_nested1_title.yml │ │ │ │ │ ├── cget_opportunity_customer_association_nested2.yml │ │ │ │ │ ├── cget_opportunity_customer_association_nested2_title.yml │ │ │ │ │ ├── cget_opportunity_customer_association_nested_title.yml │ │ │ │ │ ├── cget_opportunity_customer_association_title.yml │ │ │ │ │ ├── cget_opportunity_dictionary_title.yml │ │ │ │ │ ├── cget_opportunity_filter_by_status.yml │ │ │ │ │ ├── cget_opportunity_title.yml │ │ │ │ │ ├── create_lead.yml │ │ │ │ │ ├── create_lead_address.yml │ │ │ │ │ ├── create_lead_consistent_customer.yml │ │ │ │ │ ├── create_lead_no_account_and_customer.yml │ │ │ │ │ ├── create_lead_no_status.yml │ │ │ │ │ ├── create_opportunity.yml │ │ │ │ │ ├── create_opportunity_consistent_customer.yml │ │ │ │ │ ├── get_lead.yml │ │ │ │ │ ├── get_lead_address.yml │ │ │ │ │ ├── get_opportunity.yml │ │ │ │ │ ├── get_relationship_lead_account.yml │ │ │ │ │ ├── get_relationship_lead_customer.yml │ │ │ │ │ ├── get_relationship_opportunity_account.yml │ │ │ │ │ ├── get_relationship_opportunity_customer.yml │ │ │ │ │ ├── get_relationship_opportunity_lead.yml │ │ │ │ │ ├── get_subresource_lead_account.yml │ │ │ │ │ ├── get_subresource_lead_account_include.yml │ │ │ │ │ ├── get_subresource_lead_account_title.yml │ │ │ │ │ ├── get_subresource_lead_customer.yml │ │ │ │ │ ├── get_subresource_lead_customer_include.yml │ │ │ │ │ ├── get_subresource_lead_customer_title.yml │ │ │ │ │ ├── get_subresource_opportunity_account.yml │ │ │ │ │ ├── get_subresource_opportunity_account_include.yml │ │ │ │ │ ├── get_subresource_opportunity_account_title.yml │ │ │ │ │ ├── get_subresource_opportunity_customer.yml │ │ │ │ │ ├── get_subresource_opportunity_customer_include.yml │ │ │ │ │ ├── get_subresource_opportunity_customer_include_title.yml │ │ │ │ │ ├── get_subresource_opportunity_customer_title.yml │ │ │ │ │ ├── get_subresource_opportunity_lead.yml │ │ │ │ │ ├── update_lead_account.yml │ │ │ │ │ ├── update_lead_customer.yml │ │ │ │ │ ├── update_opportunity_account.yml │ │ │ │ │ ├── update_opportunity_customer.yml │ │ │ │ │ └── update_opportunity_lead.yml │ │ │ ├── Command │ │ │ │ └── RecalculateLifetimeCommandTest.php │ │ │ ├── Controller │ │ │ │ ├── Api │ │ │ │ │ ├── RestB2bCustomerEmailApiTest.php │ │ │ │ │ ├── RestB2bCustomerPhoneApiTest.php │ │ │ │ │ ├── RestB2bCustomerTest.php │ │ │ │ │ ├── RestCustomerSearchTest.php │ │ │ │ │ ├── RestLeadEmailApiTest.php │ │ │ │ │ ├── RestLeadPhoneApiTest.php │ │ │ │ │ ├── RestLeadTest.php │ │ │ │ │ └── RestOpportunityTest.php │ │ │ │ ├── LeadAddressControllersTest.php │ │ │ │ ├── OpportunityEditWithEnabledWorkflowTest.php │ │ │ │ ├── OpportunityNotChangesTest.php │ │ │ │ ├── OpportunityReopenTest.php │ │ │ │ └── OpportunityStatusBoardTest.php │ │ │ ├── Dashboard │ │ │ │ ├── CampaignByCloseRevenueTest.php │ │ │ │ ├── CampaignLeadsTest.php │ │ │ │ ├── CampaignOpportunityTest.php │ │ │ │ ├── ForecastWidgetTest.php │ │ │ │ └── OpportunityByStatusTest.php │ │ │ ├── DataFixtures │ │ │ │ ├── Data │ │ │ │ │ ├── export.csv │ │ │ │ │ ├── export_template.csv │ │ │ │ │ ├── import_one_record.csv │ │ │ │ │ ├── import_validation_error.json │ │ │ │ │ ├── import_wrong_data.csv │ │ │ │ │ ├── lead_export.csv │ │ │ │ │ ├── lead_export_template.csv │ │ │ │ │ ├── lead_import_exist_contact.csv │ │ │ │ │ ├── lead_import_one_record.csv │ │ │ │ │ └── lead_import_same_phone_address.csv │ │ │ │ ├── LoadB2bCustomerEmailData.php │ │ │ │ ├── LoadB2bCustomerEntitiesData.php │ │ │ │ └── LoadB2bCustomerPhoneData.php │ │ │ ├── Entity │ │ │ │ └── Provider │ │ │ │ │ ├── DataFixtures │ │ │ │ │ └── email_owner_provider.yml │ │ │ │ │ └── EmailOwnerProviderTest.php │ │ │ ├── EntityExtend │ │ │ │ └── CustomerEntityFieldExtensionTest.php │ │ │ ├── Environment │ │ │ │ └── TestEntityNameResolverDataLoader.php │ │ │ ├── EventListener │ │ │ │ ├── B2bCustomerLifetimeListenerTest.php │ │ │ │ ├── CustomerAccountChangeListenerTest.php │ │ │ │ └── CustomerAssociationListenerTest.php │ │ │ ├── Fixture │ │ │ │ ├── AbstractOpportunityFixtures.php │ │ │ │ ├── LoadCampaignByCloseRevenueWidgetFixture.php │ │ │ │ ├── LoadCampaignLeadsWidgetFixture.php │ │ │ │ ├── LoadCampaignOpportunityWidgetFixture.php │ │ │ │ ├── LoadClosedOpportunityFixtures.php │ │ │ │ ├── LoadForecastWidgetFixtures.php │ │ │ │ ├── LoadFullOpportunityFixtures.php │ │ │ │ ├── LoadLeadPhoneData.php │ │ │ │ ├── LoadLeadStatisticsWidgetFixture.php │ │ │ │ ├── LoadLeadsListWidgetFixture.php │ │ │ │ ├── LoadOpenOpportunityFixtures.php │ │ │ │ ├── LoadOpportunityByStatusWidgetFixture.php │ │ │ │ ├── LoadOpportunityStatisticsWidgetFixture.php │ │ │ │ ├── LoadOpportunityStatusBoardFixtures.php │ │ │ │ └── LoadSalesBundleFixtures.php │ │ │ ├── ImportExport │ │ │ │ └── Strategy │ │ │ │ │ └── B2bConfigurableAddOrReplaceStrategyTest.php │ │ │ ├── ImportExportTest.php │ │ │ ├── LeadImportExportTest.php │ │ │ └── Widget │ │ │ │ ├── BaseStatistics.php │ │ │ │ └── OpportunityStatisticsTest.php │ │ ├── Unit │ │ │ ├── Api │ │ │ │ ├── AccountCustomerAssociationProviderTest.php │ │ │ │ └── Processor │ │ │ │ │ ├── AddAccountCustomerAssociationsTest.php │ │ │ │ │ └── ExcludeChangeCustomerSubresourcesTest.php │ │ │ ├── Autocomplete │ │ │ │ ├── ForecastWidgetBusinessUnitSearchHandlerTest.php │ │ │ │ └── SearchElement.php │ │ │ ├── Builder │ │ │ │ └── OpportunityRelationsBuilderTest.php │ │ │ ├── Dashboard │ │ │ │ └── Provider │ │ │ │ │ ├── OpportunityByStatusProviderTest.php │ │ │ │ │ └── WidgetOpportunityByLeadSourceProviderTest.php │ │ │ ├── Datagrid │ │ │ │ └── Customers │ │ │ │ │ └── RelatedEntitiesExtensionTest.php │ │ │ ├── DependencyInjection │ │ │ │ └── OroSalesExtensionTest.php │ │ │ ├── Entity │ │ │ │ ├── B2bCustomerEmailTest.php │ │ │ │ ├── B2bCustomerPhoneTest.php │ │ │ │ ├── B2bCustomerTest.php │ │ │ │ ├── LeadAddressTest.php │ │ │ │ ├── LeadTest.php │ │ │ │ ├── Manager │ │ │ │ │ └── AccountCustomerManagerTest.php │ │ │ │ ├── OpportunityCloseReasonStatusTest.php │ │ │ │ └── OpportunityTest.php │ │ │ ├── EventListener │ │ │ │ ├── Config │ │ │ │ │ └── DefaultProbabilityListenerTest.php │ │ │ │ ├── Customers │ │ │ │ │ └── OpportunitiesListenerTest.php │ │ │ │ └── DefaultProbabilityListenerTest.php │ │ │ ├── Fixture │ │ │ │ ├── CustomerStub.php │ │ │ │ ├── LeadStub.php │ │ │ │ └── OpportunityStub.php │ │ │ ├── Form │ │ │ │ ├── DataTransformer │ │ │ │ │ └── CustomerToStringTransformerTest.php │ │ │ │ ├── Handler │ │ │ │ │ └── B2bCustomerHandlerTest.php │ │ │ │ └── Type │ │ │ │ │ ├── B2bCustomerSelectTypeTest.php │ │ │ │ │ ├── B2bCustomerTypeTest.php │ │ │ │ │ ├── LeadAddressTypeTest.php │ │ │ │ │ ├── LeadToOpportunityTypeTest.php │ │ │ │ │ ├── LeadTypeTest.php │ │ │ │ │ ├── OpportunityProbabilityTypeTest.php │ │ │ │ │ ├── OpportunityStatusConfigTypeTest.php │ │ │ │ │ ├── OpportunityStatusEnumValueTypeTest.php │ │ │ │ │ ├── OpportunityStatusSelectTypeTest.php │ │ │ │ │ ├── OpportunityTypeTest.php │ │ │ │ │ └── Stub │ │ │ │ │ ├── EmailCollectionTypeParent.php │ │ │ │ │ ├── EmailCollectionTypeStub.php │ │ │ │ │ ├── PhoneCollectionTypeParent.php │ │ │ │ │ └── PhoneCollectionTypeStub.php │ │ │ ├── Handler │ │ │ │ ├── B2bCustomerEmailDeleteHandlerExtensionTest.php │ │ │ │ ├── B2bCustomerPhoneDeleteHandlerExtensionTest.php │ │ │ │ ├── LeadEmailDeleteHandlerExtensionTest.php │ │ │ │ ├── LeadPhoneDeleteHandlerExtensionTest.php │ │ │ │ └── OpportunityApiHandlerTest.php │ │ │ ├── ImportExport │ │ │ │ ├── Configuration │ │ │ │ │ ├── B2bCustomerImportExportConfigurationProviderTest.php │ │ │ │ │ ├── LeadImportExportConfigurationProviderTest.php │ │ │ │ │ └── OpportunityImportExportConfigurationProviderTest.php │ │ │ │ └── EventListener │ │ │ │ │ ├── OpportunityListenerTest.php │ │ │ │ │ └── OpportunityProbabilitySubscriberTest.php │ │ │ ├── Migration │ │ │ │ └── RemoveCustomerAssociationQueryTest.php │ │ │ ├── Model │ │ │ │ └── ChangeLeadStatusTest.php │ │ │ └── Provider │ │ │ │ ├── B2bCustomerPhoneProviderTest.php │ │ │ │ ├── Customer │ │ │ │ └── CustomerIconProviderTest.php │ │ │ │ ├── CustomerAssignmentVirtualRelationProviderTest.php │ │ │ │ ├── CustomerVirtualRelationProviderTest.php │ │ │ │ ├── EntityVariablesProviderTest.php │ │ │ │ ├── ForecastOfOpportunitiesTest.php │ │ │ │ ├── LeadActionsAccessProviderTest.php │ │ │ │ ├── LeadMailboxProcessProviderTest.php │ │ │ │ ├── LeadPhoneProviderTest.php │ │ │ │ ├── LeadToOpportunityProviderTest.php │ │ │ │ ├── OpportunityPhoneProviderTest.php │ │ │ │ └── ProbabilityProviderTest.php │ │ └── trusted_data.neon │ └── Tools │ │ └── CustomerConfigDumperExtension.php │ └── TestFrameworkCRMBundle │ ├── DependencyInjection │ └── OroTestFrameworkExtension.php │ ├── Entity │ ├── TestCustomer1.php │ ├── TestCustomer2.php │ └── TestCustomerWithContactInformation.php │ ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── EnableSalesFeatures.php │ │ │ └── FillContactTestMultiEnum.php │ └── Schema │ │ └── OroTestFrameworkBundleInstaller.php │ ├── OroTestFrameworkCRMBundle.php │ ├── README.md │ ├── Resources │ ├── config │ │ └── oro │ │ │ └── api.yml │ └── translations │ │ └── messages.en.yml │ └── Tests │ └── Performance │ ├── DataFixtures │ ├── Accounts │ │ ├── LoadCrmAccountsData.php │ │ └── data.csv │ └── Users │ │ ├── LoadCrmUsersData.php │ │ └── dictionaries │ │ ├── company_names.txt │ │ ├── first_names.txt │ │ └── last_names.txt │ └── LoadTest.php └── travis.php.ini /.github/ISSUE_TEMPLATE/1_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/.github/ISSUE_TEMPLATE/1_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/.github/ISSUE_TEMPLATE/2_feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_support_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/.github/ISSUE_TEMPLATE/3_support_question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4_documentation_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/.github/ISSUE_TEMPLATE/4_documentation_issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/bootstrap_test.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/composer.json -------------------------------------------------------------------------------- /dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/dev.json -------------------------------------------------------------------------------- /dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/dev.lock -------------------------------------------------------------------------------- /incompatibilities-2-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-2-1.md -------------------------------------------------------------------------------- /incompatibilities-2-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-2-2.md -------------------------------------------------------------------------------- /incompatibilities-2-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-2-3.md -------------------------------------------------------------------------------- /incompatibilities-2-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-2-4.md -------------------------------------------------------------------------------- /incompatibilities-2-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-2-5.md -------------------------------------------------------------------------------- /incompatibilities-2-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-2-6.md -------------------------------------------------------------------------------- /incompatibilities-3-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-3-0.md -------------------------------------------------------------------------------- /incompatibilities-3-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-3-1.md -------------------------------------------------------------------------------- /incompatibilities-4-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-4-0.md -------------------------------------------------------------------------------- /incompatibilities-4-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-4-1.md -------------------------------------------------------------------------------- /incompatibilities-4-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-4-2.md -------------------------------------------------------------------------------- /incompatibilities-5-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-5-0.md -------------------------------------------------------------------------------- /incompatibilities-5-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-5-1.md -------------------------------------------------------------------------------- /incompatibilities-6-0-rc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-6-0-rc.md -------------------------------------------------------------------------------- /incompatibilities-6-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-6-0.md -------------------------------------------------------------------------------- /incompatibilities-6-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/incompatibilities-6-1.md -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/security.md -------------------------------------------------------------------------------- /src/Oro/Bridge/CalendarCRM/OroCalendarCRMBridgeBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CalendarCRM/OroCalendarCRMBridgeBundle.php -------------------------------------------------------------------------------- /src/Oro/Bridge/CalendarCRM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CalendarCRM/README.md -------------------------------------------------------------------------------- /src/Oro/Bridge/CalendarCRM/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CalendarCRM/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bridge/CallCRM/Migrations/Data/Demo/ORM/LoadCallData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CallCRM/Migrations/Data/Demo/ORM/LoadCallData.php -------------------------------------------------------------------------------- /src/Oro/Bridge/CallCRM/Migrations/Data/ORM/CrmRoles/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CallCRM/Migrations/Data/ORM/CrmRoles/roles.yml -------------------------------------------------------------------------------- /src/Oro/Bridge/CallCRM/Migrations/Data/ORM/UpdateCallAccessLevels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CallCRM/Migrations/Data/ORM/UpdateCallAccessLevels.php -------------------------------------------------------------------------------- /src/Oro/Bridge/CallCRM/OroCallCRMBridgeBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CallCRM/OroCallCRMBridgeBundle.php -------------------------------------------------------------------------------- /src/Oro/Bridge/CallCRM/Provider/CallDirectionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CallCRM/Provider/CallDirectionProvider.php -------------------------------------------------------------------------------- /src/Oro/Bridge/CallCRM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CallCRM/README.md -------------------------------------------------------------------------------- /src/Oro/Bridge/CallCRM/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CallCRM/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bridge/CallCRM/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CallCRM/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bridge/CustomerPortalCRM/OroCustomerPortalCRMBridgeBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CustomerPortalCRM/OroCustomerPortalCRMBridgeBundle.php -------------------------------------------------------------------------------- /src/Oro/Bridge/CustomerPortalCRM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CustomerPortalCRM/README.md -------------------------------------------------------------------------------- /src/Oro/Bridge/CustomerPortalCRM/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/CustomerPortalCRM/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bridge/TaskCRM/Migrations/Data/Demo/ORM/LoadTaskData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/TaskCRM/Migrations/Data/Demo/ORM/LoadTaskData.php -------------------------------------------------------------------------------- /src/Oro/Bridge/TaskCRM/Migrations/Data/ORM/CrmRoles/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/TaskCRM/Migrations/Data/ORM/CrmRoles/workflows.yml -------------------------------------------------------------------------------- /src/Oro/Bridge/TaskCRM/Migrations/Data/ORM/LoadWorkflowAclData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/TaskCRM/Migrations/Data/ORM/LoadWorkflowAclData.php -------------------------------------------------------------------------------- /src/Oro/Bridge/TaskCRM/Migrations/Schema/OroTaskCRMBundleInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/TaskCRM/Migrations/Schema/OroTaskCRMBundleInstaller.php -------------------------------------------------------------------------------- /src/Oro/Bridge/TaskCRM/OroTaskCRMBridgeBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/TaskCRM/OroTaskCRMBridgeBundle.php -------------------------------------------------------------------------------- /src/Oro/Bridge/TaskCRM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/TaskCRM/README.md -------------------------------------------------------------------------------- /src/Oro/Bridge/TaskCRM/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bridge/TaskCRM/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Controller/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Controller/AccountController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Controller/Api/Rest/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Controller/Api/Rest/AccountController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Datagrid/AccountsViewList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Datagrid/AccountsViewList.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Entity/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Entity/Account.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Form/Handler/AccountHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Form/Handler/AccountHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Form/Type/AccountApiType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Form/Type/AccountApiType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Form/Type/AccountSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Form/Type/AccountSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Form/Type/AccountType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Form/Type/AccountType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Migrations/Data/ORM/LoadDashboardData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Migrations/Data/ORM/LoadDashboardData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Migrations/Schema/v1_11/AddCIIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Migrations/Schema/v1_11/AddCIIndex.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Migrations/Schema/v1_13/UpdateIndexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Migrations/Schema/v1_13/UpdateIndexes.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Migrations/Schema/v1_7/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Migrations/Schema/v1_7/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Migrations/Schema/v1_8/AddReferredBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Migrations/Schema/v1_8/AddReferredBy.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/OroAccountBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/OroAccountBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Provider/AccountAutocompleteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Provider/AccountAutocompleteProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Provider/AccountPhoneProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Provider/AccountPhoneProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/controllers_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/controllers_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/importexport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/importexport.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/dashboards.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/features.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/jsmodules.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/placeholders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/placeholders.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/sanitize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/sanitize.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/services_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/services_test.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/doc/api/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/doc/api/account.md -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/translations/jsmessages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/translations/jsmessages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/views/Account/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/views/Account/index.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/views/Account/update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/views/Account/update.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Resources/views/Account/view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Resources/views/Account/view.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Tests/Behat/Context/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Tests/Behat/Context/FeatureContext.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Tests/Behat/Features/Fixtures/Accounts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Tests/Behat/Features/Fixtures/Accounts.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Tests/Behat/Features/crud_account.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Tests/Behat/Features/crud_account.feature -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Tests/Behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Tests/Behat/behat.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Tests/Functional/ControllersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Tests/Functional/ControllersTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Tests/Unit/Entity/AccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Tests/Unit/Entity/AccountTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AccountBundle/Tests/Unit/Form/Type/AccountTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AccountBundle/Tests/Unit/Form/Type/AccountTypeTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/EntityConfig/ActivityScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/EntityConfig/ActivityScope.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/EventListener/ActivityListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/EventListener/ActivityListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Model/TargetExcludeList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Model/TargetExcludeList.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/OroActivityContactBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/OroActivityContactBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Placeholder/PlaceholderFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Placeholder/PlaceholderFilter.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Resources/config/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Resources/config/commands.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Resources/config/services_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Resources/config/services_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Tests/Unit/Fixture/TestTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Tests/Unit/Fixture/TestTarget.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Tests/Unit/Stub/AccountStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Tests/Unit/Stub/AccountStub.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Tests/Unit/Stub/EmailStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Tests/Unit/Stub/EmailStub.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ActivityContactBundle/Tests/trusted_data.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ActivityContactBundle/Tests/trusted_data.neon -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Builder/AnalyticsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Builder/AnalyticsBuilder.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Builder/AnalyticsBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Builder/AnalyticsBuilderInterface.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Builder/RFMBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Builder/RFMBuilder.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Builder/RFMProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Builder/RFMProviderInterface.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Command/CalculateAnalyticsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Command/CalculateAnalyticsCommand.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Controller/RFMCategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Controller/RFMCategoryController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Entity/RFMMetricCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Entity/RFMMetricCategory.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/EventListener/RFMCategoryListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/EventListener/RFMCategoryListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/EventListener/TimezoneChangeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/EventListener/TimezoneChangeListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Form/Extension/ChannelTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Form/Extension/ChannelTypeExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Form/Type/RFMCategorySettingsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Form/Type/RFMCategorySettingsType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Form/Type/RFMCategoryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Form/Type/RFMCategoryType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Model/AnalyticsAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Model/AnalyticsAwareInterface.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Model/RFMAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Model/RFMAwareInterface.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Model/RFMAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Model/RFMAwareTrait.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Model/RFMMetricStateManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Model/RFMMetricStateManager.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/OroAnalyticsBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/OroAnalyticsBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Placeholder/RFMAwareFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Placeholder/RFMAwareFilter.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/commands.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/mq_processors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/mq_processors.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/mq_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/mq_topics.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/jsmodules.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/placeholders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/placeholders.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/processes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/processes.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@OroAnalytics/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/public/css/scss/main.scss -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/translations/jsmessages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/translations/jsmessages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/translations/validators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/translations/validators.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/views/Form/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/views/Form/fields.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/views/Form/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/views/Form/form.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Resources/views/label.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Resources/views/label.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Service/CalculateAnalyticsScheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Service/CalculateAnalyticsScheduler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Tests/Unit/Builder/RFMBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Tests/Unit/Builder/RFMBuilderTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Tests/Unit/Model/Stub/RFMAwareStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Tests/Unit/Model/Stub/RFMAwareStub.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Tests/trusted_data.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Tests/trusted_data.neon -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Validator/CategoriesConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Validator/CategoriesConstraint.php -------------------------------------------------------------------------------- /src/Oro/Bundle/AnalyticsBundle/Validator/CategoriesValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/AnalyticsBundle/Validator/CategoriesValidator.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/CacheWarmer/ExtendEntityCacheWarmer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/CacheWarmer/ExtendEntityCacheWarmer.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/DependencyInjection/OroCRMExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/DependencyInjection/OroCRMExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Migrations/Schema/OroCRMBundleInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Migrations/Schema/OroCRMBundleInstaller.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_1/MigrateRelations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_1/MigrateRelations.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_2/MigrateGridViews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_2/MigrateGridViews.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_3/EmbededFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_3/EmbededFormType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_3/TaggingEntityName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_3/TaggingEntityName.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_6/ReminderEntityName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Migrations/Schema/v1_6/ReminderEntityName.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/OroCRMBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/OroCRMBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Resources/public/images/oro-crm-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Resources/public/images/oro-crm-logo.svg -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Resources/translations/messages.de_DE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Resources/translations/messages.de_DE.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Resources/translations/messages.fr_FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Resources/translations/messages.fr_FR.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Resources/views/Collector/crm.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Resources/views/Collector/crm.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/activities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/activities.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/cases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/cases.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/cat0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/cat0.jpg -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/contacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/contacts.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/mass_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Tests/Behat/Features/Fixtures/mass_action.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Tests/Behat/Features/activities.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Tests/Behat/Features/activities.feature -------------------------------------------------------------------------------- /src/Oro/Bundle/CRMBundle/Tests/Behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CRMBundle/Tests/Behat/behat.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Controller/Api/Rest/CaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Controller/Api/Rest/CaseController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Controller/Api/Rest/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Controller/Api/Rest/CommentController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Controller/CaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Controller/CaseController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Controller/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Controller/CommentController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/DependencyInjection/OroCaseExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/DependencyInjection/OroCaseExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CaseComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CaseComment.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CaseEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CaseEntity.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CaseMailboxProcessSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CaseMailboxProcessSettings.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CasePriority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CasePriority.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CasePriorityTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CasePriorityTranslation.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CaseSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CaseSource.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CaseSourceTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CaseSourceTranslation.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CaseStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CaseStatus.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Entity/CaseStatusTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Entity/CaseStatusTranslation.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Event/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Event/Events.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Event/FormHandlerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Event/FormHandlerEvent.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/EventListener/MailboxSavedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/EventListener/MailboxSavedListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/EventListener/SearchIndexDataListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/EventListener/SearchIndexDataListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Form/Handler/CaseEntityHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Form/Handler/CaseEntityHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Form/Type/CaseCommentApiType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Form/Type/CaseCommentApiType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Form/Type/CaseCommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Form/Type/CaseCommentType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Form/Type/CaseEntityApiType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Form/Type/CaseEntityApiType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Form/Type/CaseEntityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Form/Type/CaseEntityType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Form/Type/CaseMailboxProcessSettingsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Form/Type/CaseMailboxProcessSettingsType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Data/ORM/LoadPriorityData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Data/ORM/LoadPriorityData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Data/ORM/LoadSourceData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Data/ORM/LoadSourceData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Data/ORM/LoadStatusData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Data/ORM/LoadStatusData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/OroCaseBundleInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/OroCaseBundleInstaller.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_0/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_0/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_1/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_1/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_10/UpdateIndexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_10/UpdateIndexes.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_2/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_2/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_3/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_3/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_4/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_4/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_5/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_5/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_6/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_6/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_9/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Migrations/Schema/v1_9/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Model/CaseApiEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Model/CaseApiEntityManager.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Model/CaseEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Model/CaseEntityManager.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Model/CommentApiEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Model/CommentApiEntityManager.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Model/ViewFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Model/ViewFactory.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/OroCaseBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/OroCaseBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Provider/CaseMailboxProcessProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Provider/CaseMailboxProcessProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Provider/CasePhoneProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Provider/CasePhoneProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/controllers_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/controllers_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/features.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/jsmodules.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/placeholders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/placeholders.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/processes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/processes.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@OroCase/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/services_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/services_test.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/doc/api/case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/doc/api/case.md -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/doc/api/case_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/doc/api/case_comment.md -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/public/css/scss/comment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/public/css/scss/comment.scss -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- 1 | /* @theme: admin.oro; */ 2 | @import './comment'; 3 | -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/public/js/app/views/comment-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/public/js/app/views/comment-view.js -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/translations/entities.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/translations/entities.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/translations/jsmessages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/translations/jsmessages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Case/accountCases.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Case/accountCases.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Case/contactCases.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Case/contactCases.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Case/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Case/index.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Case/searchResult.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Case/searchResult.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Case/update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Case/update.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Case/userCases.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Case/userCases.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Case/view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Case/view.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Comment/js/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Comment/js/list.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Comment/js/view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Comment/js/view.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Resources/views/Form/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Resources/views/Form/fields.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Behat/Features/Fixtures/case_crud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Behat/Features/Fixtures/case_crud.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Behat/Features/activity_cases.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Behat/Features/activity_cases.feature -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Behat/behat.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CaseCommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CaseCommentTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CaseEntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CaseEntityTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CasePriorityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CasePriorityTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CaseSourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CaseSourceTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CaseStatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Unit/Entity/CaseStatusTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Unit/Form/Type/CaseEntityTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Unit/Form/Type/CaseEntityTypeTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/CaseBundle/Tests/Unit/Provider/CasePhoneProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/CaseBundle/Tests/Unit/Provider/CasePhoneProviderTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Acl/Voter/ChannelVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Acl/Voter/ChannelVoter.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Async/ChangeIntegrationStatusProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Async/ChangeIntegrationStatusProcessor.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Async/Topic/ChannelStatusChangedTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Async/Topic/ChannelStatusChangedTopic.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Autocomplete/ChannelLimitationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Autocomplete/ChannelLimitationHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Builder/BuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Builder/BuilderFactory.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Builder/ChannelObjectBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Builder/ChannelObjectBuilder.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Command/RecalculateLifetimeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Command/RecalculateLifetimeCommand.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Configuration/ChannelConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Configuration/ChannelConfiguration.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Controller/Api/Rest/ChannelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Controller/Api/Rest/ChannelController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Controller/ChannelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Controller/ChannelController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Datagrid/ChannelLimitationExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Datagrid/ChannelLimitationExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Entity/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Entity/Channel.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Entity/CustomerIdentity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Entity/CustomerIdentity.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Entity/EntityName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Entity/EntityName.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Entity/LifetimeValueAverageAggregation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Entity/LifetimeValueAverageAggregation.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Entity/LifetimeValueHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Entity/LifetimeValueHistory.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Entity/Manager/ChannelApiEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Entity/Manager/ChannelApiEntityManager.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Entity/Repository/ChannelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Entity/Repository/ChannelRepository.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Event/AbstractEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Event/AbstractEvent.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Event/ChannelBeforeDeleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Event/ChannelBeforeDeleteEvent.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Event/ChannelDeleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Event/ChannelDeleteEvent.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Event/ChannelSaveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Event/ChannelSaveEvent.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/EventListener/AccountLifetimeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/EventListener/AccountLifetimeListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/EventListener/ChannelDoctrineListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/EventListener/ChannelDoctrineListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/EventListener/EmbeddedFormListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/EventListener/EmbeddedFormListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/EventListener/JobExecutionSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/EventListener/JobExecutionSubscriber.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/EventListener/NavigationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/EventListener/NavigationListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/EventListener/TimezoneChangeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/EventListener/TimezoneChangeListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Form/Handler/ChannelHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Form/Handler/ChannelHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Form/Handler/ChannelIntegrationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Form/Handler/ChannelIntegrationHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Form/Type/AbstractChannelAwareType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Form/Type/AbstractChannelAwareType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Form/Type/ChannelDatasourceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Form/Type/ChannelDatasourceType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Form/Type/ChannelEntityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Form/Type/ChannelEntityType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Form/Type/ChannelSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Form/Type/ChannelSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Form/Type/ChannelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Form/Type/ChannelType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/ImportExport/Helper/ChannelHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/ImportExport/Helper/ChannelHelper.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Migrations/Data/ORM/DefaultChannelData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Migrations/Data/ORM/DefaultChannelData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Model/ChannelAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Model/ChannelAwareInterface.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Model/ChannelEntityTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Model/ChannelEntityTrait.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/OroChannelBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/OroChannelBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Provider/ChannelsByEntitiesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Provider/ChannelsByEntitiesProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Provider/Lifetime/AmountProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Provider/Lifetime/AmountProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Provider/MetadataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Provider/MetadataProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Provider/MetadataProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Provider/MetadataProviderInterface.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Provider/RequestChannelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Provider/RequestChannelProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Provider/SettingsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Provider/SettingsProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Provider/StateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Provider/StateProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Provider/Utility/EntityStateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Provider/Utility/EntityStateProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/commands.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/controllers_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/controllers_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/mq_processors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/mq_processors.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/mq_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/mq_topics.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/channels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/channels.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/charts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/charts.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/dashboards.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/features.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/jsmodules.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@OroChannel/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/services_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/services_test.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/doc/api/channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/doc/api/channel.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- 1 | /* @theme: admin.oro; */ 2 | 3 | @import './style'; 4 | -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/public/css/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/public/css/scss/style.scss -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/translations/jsmessages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/translations/jsmessages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/translations/validators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/translations/validators.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/views/Channel/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/views/Channel/index.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/views/Channel/update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/views/Channel/update.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/views/Channel/view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/views/Channel/view.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/views/Form/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/views/Form/fields.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Resources/views/macros.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Resources/views/macros.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Behat/Features/channel_crud.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Behat/Features/channel_crud.feature -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Behat/behat.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Functional/Fixture/LoadChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Functional/Fixture/LoadChannel.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Functional/Fixture/LoadChannels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Functional/Fixture/LoadChannels.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Acl/Voter/ChannelVoterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Acl/Voter/ChannelVoterTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Entity/ChannelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Entity/ChannelTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Entity/CustomerIdentityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Entity/CustomerIdentityTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Entity/EntityNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Entity/EntityNameTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Event/ChannelSaveEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Event/ChannelSaveEventTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Form/Type/ChannelTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Form/Type/ChannelTypeTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Form/Type/TestForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Form/Type/TestForm.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Provider/StateProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Provider/StateProviderTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Stubs/Entity/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Stubs/Entity/Channel.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Stubs/Entity/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Stubs/Entity/Customer.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Stubs/Entity/EntityName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Stubs/Entity/EntityName.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Stubs/Entity/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Stubs/Entity/Integration.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/Unit/Twig/ChannelExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/Unit/Twig/ChannelExtensionTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Tests/trusted_data.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Tests/trusted_data.neon -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Twig/ChannelExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Twig/ChannelExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ChannelBundle/Validator/ChannelIntegrationConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ChannelBundle/Validator/ChannelIntegrationConstraint.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Async/ContactPostImportProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Async/ContactPostImportProcessor.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Controller/Api/Rest/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Controller/Api/Rest/ContactController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Controller/ContactAddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Controller/ContactAddressController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Controller/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Controller/ContactController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Controller/GroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Controller/GroupController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Datagrid/ContactsViewList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Datagrid/ContactsViewList.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/Contact.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/ContactAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/ContactAddress.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/ContactEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/ContactEmail.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/ContactPhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/ContactPhone.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/Group.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/Manager/ContactApiEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/Manager/ContactApiEntityManager.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/Method.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/Provider/EmailOwnerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/Provider/EmailOwnerProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/Repository/ContactRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/Repository/ContactRepository.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Entity/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Entity/Source.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/EventListener/ContactListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/EventListener/ContactListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/EventListener/ImportEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/EventListener/ImportEventListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Handler/ContactEmailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Handler/ContactEmailHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Handler/ContactHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Handler/ContactHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Handler/ContactPhoneHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Handler/ContactPhoneHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Handler/GroupHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Handler/GroupHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Type/ContactApiType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Type/ContactApiType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Type/ContactEmailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Type/ContactEmailType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Type/ContactPhoneType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Type/ContactPhoneType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Type/ContactSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Type/ContactSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Type/ContactType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Type/ContactType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Type/GroupApiType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Type/GroupApiType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Form/Type/GroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Form/Type/GroupType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Formatter/SocialUrlFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Formatter/SocialUrlFormatter.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Handler/ContactEmailAddressHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Handler/ContactEmailAddressHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Handler/ContactEmailApiHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Handler/ContactEmailApiHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Handler/ContactPhoneApiHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Handler/ContactPhoneApiHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Migrations/Data/ORM/LoadDashboardData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Migrations/Data/ORM/LoadDashboardData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Migrations/Data/ORM/LoadGroupData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Migrations/Data/ORM/LoadGroupData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Migrations/Data/ORM/LoadMethodData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Migrations/Data/ORM/LoadMethodData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Migrations/Data/ORM/LoadSourceData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Migrations/Data/ORM/LoadSourceData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Migrations/Schema/v1_15/UpdateIndexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Migrations/Schema/v1_15/UpdateIndexes.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Model/Social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Model/Social.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/OroContactBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/OroContactBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Provider/ContactEntityNameProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Provider/ContactEntityNameProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Provider/ContactPhoneProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Provider/ContactPhoneProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Provider/EmailRecipientsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Provider/EmailRecipientsProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/controllers_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/controllers_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/importexport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/importexport.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/mq_processors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/mq_processors.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/mq_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/mq_topics.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/api_plain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/api_plain.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/dashboards.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/features.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/jsmodules.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/placeholders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/placeholders.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/sanitize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/sanitize.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/services_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/services_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/services_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/services_test.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/doc/api/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/doc/api/contact.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/doc/api/contact_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/doc/api/contact_address.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/doc/api/contact_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/doc/api/contact_group.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/public/css/scss/contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/public/css/scss/contact.scss -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/public/css/scss/main.scss -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/public/css/scss/mobile/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/public/css/scss/mobile/main.scss -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/public/css/scss/variables/variables.scss: -------------------------------------------------------------------------------- 1 | /* @theme: admin.oro; */ 2 | 3 | @import 'contact'; 4 | -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/translations/validators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/translations/validators.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/views/Contact/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/views/Contact/index.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/views/Contact/update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/views/Contact/update.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/views/Contact/view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/views/Contact/view.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/views/Group/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/views/Group/index.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/views/Group/update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/views/Group/update.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Resources/views/Include/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Resources/views/Include/fields.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Behat/Context/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Behat/Context/FeatureContext.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Behat/Element/Select2Share.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Behat/Element/Select2Share.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Behat/Features/Fixtures/contact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Behat/Features/Fixtures/contact.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Behat/Features/Fixtures/contacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Behat/Features/Fixtures/contacts.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Behat/Features/Fixtures/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Behat/Features/Fixtures/tags.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Behat/Features/contacts_crud.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Behat/Features/contacts_crud.feature -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Behat/Features/contacts_grid.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Behat/Features/contacts_grid.feature -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Behat/behat.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Functional/ContactPaginationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Functional/ContactPaginationTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Functional/DataFixtures/Data/update_name_prefix.csv: -------------------------------------------------------------------------------- 1 | "First name","Name prefix" 2 | Brenda,Ms. 3 | -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Functional/ImportExportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Functional/ImportExportTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/ContactAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/ContactAddressTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/ContactEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/ContactEmailTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/ContactPhoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/ContactPhoneTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/ContactTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/ContactTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/GroupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/GroupTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/MethodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/MethodTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/SourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Entity/SourceTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Form/Type/ContactTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Form/Type/ContactTypeTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/Unit/Twig/ContactExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/Unit/Twig/ContactExtensionTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Tests/trusted_data.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Tests/trusted_data.neon -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactBundle/Twig/ContactExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactBundle/Twig/ContactExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Controller/ContactReasonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Controller/ContactReasonController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Controller/ContactRequestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Controller/ContactRequestController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Entity/AbstractContactRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Entity/AbstractContactRequest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Entity/ContactReason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Entity/ContactReason.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Entity/ContactRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Entity/ContactRequest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Form/Handler/ContactRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Form/Handler/ContactRequestHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Form/Type/ContactReasonSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Form/Type/ContactReasonSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Form/Type/ContactReasonType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Form/Type/ContactReasonType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Form/Type/ContactRequestEditType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Form/Type/ContactRequestEditType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Form/Type/ContactRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Form/Type/ContactRequestType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Migrations/Data/ORM/LoadWorkflowData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Migrations/Data/ORM/LoadWorkflowData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Migrations/Data/ORM/data/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Migrations/Data/ORM/data/workflows.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/OroContactUsBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/OroContactUsBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/controllers_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/controllers_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/features.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/jsmodules.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/oro/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/oro/workflows.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/services_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/services_test.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/doc/api/contact_reason.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/doc/api/contact_reason.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/doc/api/contact_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/doc/api/contact_request.md -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/translations/workflows.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/translations/workflows.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Resources/views/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Resources/views/fields.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Tests/Behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Tests/Behat/behat.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Tests/Unit/Entity/ContactRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Tests/Unit/Entity/ContactRequestTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ContactUsBundle/Tests/Unit/Stub/ContactReasonStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ContactUsBundle/Tests/Unit/Stub/ContactReasonStub.php -------------------------------------------------------------------------------- /src/Oro/Bundle/DemoDataBundle/Migrations/Data/Demo/ORM/LoadTagsData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/DemoDataBundle/Migrations/Data/Demo/ORM/LoadTagsData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/DemoDataBundle/Migrations/Data/Demo/ORM/LoadUserData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/DemoDataBundle/Migrations/Data/Demo/ORM/LoadUserData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/DemoDataBundle/Migrations/Data/ORM/CrmRoles/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/DemoDataBundle/Migrations/Data/ORM/CrmRoles/roles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/DemoDataBundle/Migrations/Data/ORM/LoadRolesData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/DemoDataBundle/Migrations/Data/ORM/LoadRolesData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/DemoDataBundle/OroDemoDataBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/DemoDataBundle/OroDemoDataBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/DemoDataBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/DemoDataBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/DemoDataBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/DemoDataBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Controller/ReportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Controller/ReportController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/EventListener/ReportGridListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/EventListener/ReportGridListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Filter/PeriodFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Filter/PeriodFilter.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/OroReportCRMBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/OroReportCRMBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/features.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Tests/Behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Tests/Behat/behat.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Tests/Functional/ControllersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Tests/Functional/ControllersTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Tests/Functional/reports/report#1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Tests/Functional/reports/report#1.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Tests/Functional/reports/report#2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Tests/Functional/reports/report#2.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/Tests/trusted_data.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/Tests/trusted_data.neon -------------------------------------------------------------------------------- /src/Oro/Bundle/ReportCRMBundle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/ReportCRMBundle/readme.md -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Action/FindCustomerAssociation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Action/FindCustomerAssociation.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Autocomplete/CustomerSearchHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Autocomplete/CustomerSearchHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Builder/OpportunityRelationsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Builder/OpportunityRelationsBuilder.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Command/RecalculateLifetimeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Command/RecalculateLifetimeCommand.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Controller/Api/Rest/LeadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Controller/Api/Rest/LeadController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Controller/AutocompleteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Controller/AutocompleteController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Controller/B2bCustomerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Controller/B2bCustomerController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Controller/CustomerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Controller/CustomerController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Controller/LeadAddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Controller/LeadAddressController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Controller/LeadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Controller/LeadController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Controller/OpportunityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Controller/OpportunityController.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Datagrid/LeadViewList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Datagrid/LeadViewList.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Datagrid/OpportunityViewList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Datagrid/OpportunityViewList.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Datagrid/WidgetExcludedStatusListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Datagrid/WidgetExcludedStatusListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/DependencyInjection/OroSalesExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/DependencyInjection/OroSalesExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/B2bCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/B2bCustomer.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/B2bCustomerEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/B2bCustomerEmail.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/B2bCustomerPhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/B2bCustomerPhone.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/Customer.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/Lead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/Lead.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/LeadAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/LeadAddress.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/LeadEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/LeadEmail.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/LeadMailboxProcessSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/LeadMailboxProcessSettings.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/LeadPhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/LeadPhone.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/Manager/AccountCustomerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/Manager/AccountCustomerManager.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/Opportunity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/Opportunity.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/OpportunityCloseReason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/OpportunityCloseReason.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/Provider/EmailOwnerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/Provider/EmailOwnerProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/Repository/CustomerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/Repository/CustomerRepository.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Entity/Repository/LeadRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Entity/Repository/LeadRepository.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/EntityConfig/CustomerScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/EntityConfig/CustomerScope.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/EventListener/AccountViewListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/EventListener/AccountViewListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/EventListener/Customers/LeadsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/EventListener/Customers/LeadsListener.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Handler/B2bCustomerEmailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Handler/B2bCustomerEmailHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Handler/B2bCustomerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Handler/B2bCustomerHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Handler/B2bCustomerPhoneHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Handler/B2bCustomerPhoneHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Handler/LeadEmailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Handler/LeadEmailHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Handler/LeadHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Handler/LeadHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Handler/LeadPhoneHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Handler/LeadPhoneHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Handler/LeadToOpportunityHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Handler/LeadToOpportunityHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Handler/OpportunityHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Handler/OpportunityHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerApiType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerApiType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerEmailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerEmailType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerPhoneType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerPhoneType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/B2bCustomerType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/CustomerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/CustomerType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadAddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadAddressType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadApiType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadApiType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadEmailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadEmailType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadPhoneType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadPhoneType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadSourceSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadSourceSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadStatusSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadStatusSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadToOpportunityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadToOpportunityType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/LeadType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/LeadType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/OpportunityApiType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/OpportunityApiType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/OpportunityProbabilityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/OpportunityProbabilityType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/OpportunitySelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/OpportunitySelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/OpportunityStatusConfigType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/OpportunityStatusConfigType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/OpportunityStatusSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/OpportunityStatusSelectType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Form/Type/OpportunityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Form/Type/OpportunityType.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Handler/B2bCustomerEmailApiHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Handler/B2bCustomerEmailApiHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Handler/B2bCustomerPhoneApiHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Handler/B2bCustomerPhoneApiHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Handler/LeadPhoneApiHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Handler/LeadPhoneApiHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Handler/OpportunityApiHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Handler/OpportunityApiHandler.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migration/Extension/CustomerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migration/Extension/CustomerExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Data/ORM/LoadDashboardData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Data/ORM/LoadDashboardData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_0/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_0/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_1/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_1/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_10/AddFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_10/AddFields.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_10/DropFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_10/DropFields.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_2/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_2/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_22/UpdateReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_22/UpdateReport.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_24/AddLeadStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_24/AddLeadStatus.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_24/UpdateReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_24/UpdateReport.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_25/UpdateReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_25/UpdateReport.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_3/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_3/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_30/UpdateReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_30/UpdateReport.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_33/UpdateIndexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_33/UpdateIndexes.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_34/UpdateIndexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_34/UpdateIndexes.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_35/RemoveOldData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_35/RemoveOldData.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_38/UpdateIndexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_38/UpdateIndexes.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_4/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_4/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_5/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_5/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_6/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Migrations/Schema/v1_6/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Model/ChangeLeadStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Model/ChangeLeadStatus.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/OroSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/OroSalesBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/B2bCustomerPhoneProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/B2bCustomerPhoneProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/Customer/ConfigCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/Customer/ConfigCache.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/Customer/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/Customer/ConfigProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/EntityVariablesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/EntityVariablesProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/ForecastOfOpportunities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/ForecastOfOpportunities.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/LeadActionsAccessProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/LeadActionsAccessProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/LeadMailboxProcessProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/LeadMailboxProcessProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/LeadPhoneProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/LeadPhoneProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/LeadStatisticsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/LeadStatisticsProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/LeadToOpportunityProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/LeadToOpportunityProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/Opportunity/ForecastProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/Opportunity/ForecastProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/OpportunityPhoneProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/OpportunityPhoneProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Provider/ProbabilityProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Provider/ProbabilityProvider.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/QueryDesigner/WonRevenueSumFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/QueryDesigner/WonRevenueSumFunction.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/commands.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/controllers_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/controllers_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/importexport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/importexport.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/acl_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/acl_categories.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/api_plain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/api_plain.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/channels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/channels.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/dashboards.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/entity_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/entity_config.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/features.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/jsmodules.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/placeholders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/placeholders.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/processes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/processes.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/query_designer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/query_designer.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/sanitize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/sanitize.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/twig.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/oro/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/oro/workflows.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/services_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/services_api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/services_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/services_test.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/doc/api/account_association.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/doc/api/account_association.md -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/doc/api/b2b_customer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/doc/api/b2b_customer.md -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/doc/api/lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/doc/api/lead.md -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/doc/api/lead_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/doc/api/lead_address.md -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/doc/api/opportunity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/doc/api/opportunity.md -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/public/css/scss/main.scss -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/public/css/scss/oro-sales.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/public/css/scss/oro-sales.scss -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/public/img/icon-big_numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/public/img/icon-big_numbers.png -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/translations/jsmessages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/translations/jsmessages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/translations/validators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/translations/validators.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/translations/workflows.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/translations/workflows.en.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/views/Form/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/views/Form/fields.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/views/Lead/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/views/Lead/index.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/views/Lead/update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/views/Lead/update.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/views/Lead/view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/views/Lead/view.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/views/SalesFunnel/index.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Resources/views/macros.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Resources/views/macros.html.twig -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Context/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Context/FeatureContext.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Context/SalesContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Context/SalesContext.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Element/QuotesGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Element/QuotesGrid.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Features/Fixtures/lead.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Features/Fixtures/lead.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Page/LeadCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Page/LeadCreate.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Page/LeadIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Page/LeadIndex.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Page/LeadView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Page/LeadView.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Page/OpportunityCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Page/OpportunityCreate.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Page/OpportunityIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Page/OpportunityIndex.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/Page/OpportunityView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/Page/OpportunityView.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/behat.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Behat/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Behat/services.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Functional/ImportExportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Functional/ImportExportTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Functional/LeadImportExportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Functional/LeadImportExportTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Autocomplete/SearchElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Autocomplete/SearchElement.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Entity/B2bCustomerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Entity/B2bCustomerTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Entity/LeadAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Entity/LeadAddressTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Entity/LeadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Entity/LeadTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Entity/OpportunityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Entity/OpportunityTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Fixture/CustomerStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Fixture/CustomerStub.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Fixture/LeadStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Fixture/LeadStub.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Fixture/OpportunityStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Fixture/OpportunityStub.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Form/Type/LeadTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Form/Type/LeadTypeTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/Unit/Model/ChangeLeadStatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/Unit/Model/ChangeLeadStatusTest.php -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tests/trusted_data.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tests/trusted_data.neon -------------------------------------------------------------------------------- /src/Oro/Bundle/SalesBundle/Tools/CustomerConfigDumperExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/SalesBundle/Tools/CustomerConfigDumperExtension.php -------------------------------------------------------------------------------- /src/Oro/Bundle/TestFrameworkCRMBundle/Entity/TestCustomer1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/TestFrameworkCRMBundle/Entity/TestCustomer1.php -------------------------------------------------------------------------------- /src/Oro/Bundle/TestFrameworkCRMBundle/Entity/TestCustomer2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/TestFrameworkCRMBundle/Entity/TestCustomer2.php -------------------------------------------------------------------------------- /src/Oro/Bundle/TestFrameworkCRMBundle/OroTestFrameworkCRMBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/TestFrameworkCRMBundle/OroTestFrameworkCRMBundle.php -------------------------------------------------------------------------------- /src/Oro/Bundle/TestFrameworkCRMBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/TestFrameworkCRMBundle/README.md -------------------------------------------------------------------------------- /src/Oro/Bundle/TestFrameworkCRMBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/TestFrameworkCRMBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Oro/Bundle/TestFrameworkCRMBundle/Tests/Performance/LoadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oroinc/crm/HEAD/src/Oro/Bundle/TestFrameworkCRMBundle/Tests/Performance/LoadTest.php -------------------------------------------------------------------------------- /travis.php.ini: -------------------------------------------------------------------------------- 1 | memory_limit = -1 2 | --------------------------------------------------------------------------------