├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpcs.xml ├── phpunit.xml.dist └── src └── Marello └── Bundle ├── AddressBundle ├── DependencyInjection │ └── MarelloAddressExtension.php ├── Entity │ ├── MarelloAddress.php │ └── Repository │ │ └── MarelloAddressRepository.php ├── Form │ └── Type │ │ └── AddressType.php ├── Formatter │ └── AddressFormatter.php ├── MarelloAddressBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ └── UpdateMarelloAddressEntityConfig.php │ └── Schema │ │ ├── MarelloAddressBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloAddressBundle.php │ │ └── v1_1 │ │ └── MarelloAddressBundle.php ├── Resources │ ├── config │ │ ├── form.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── api.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── entity.yml │ │ │ ├── placeholders.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── doc │ │ └── api │ │ │ └── address.md │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ └── main.scss │ │ └── js │ │ │ ├── address.js │ │ │ └── app │ │ │ └── components │ │ │ └── address-component.js │ ├── serializer │ │ └── Entity.Address.yml │ ├── translations │ │ └── messages.en.yml │ └── views │ │ ├── Address │ │ └── addressMap.html.twig │ │ ├── Form │ │ └── fields.html.twig │ │ └── macros.html.twig ├── Tests │ ├── Functional │ │ └── Api │ │ │ ├── DataFixtures │ │ │ └── LoadAddressData.php │ │ │ ├── MarelloAddressJsonApiTest.php │ │ │ └── requests │ │ │ ├── address_create.yml │ │ │ └── address_update.yml │ └── Stubs │ │ └── AddressStub.php └── Twig │ └── AddressExtension.php ├── BankTransferBundle ├── DependencyInjection │ └── MarelloBankTransferExtension.php ├── Entity │ ├── BankTransferSettings.php │ └── Repository │ │ └── BankTransferSettingsRepository.php ├── Form │ └── Type │ │ ├── BankTransferOptionsType.php │ │ └── BankTransferSettingsType.php ├── Integration │ ├── BankTransferChannelType.php │ └── BankTransferTransport.php ├── MarelloBankTransferBundle.php ├── Method │ ├── BankTransferMethod.php │ ├── Factory │ │ └── BankTransferMethodFromChannelFactory.php │ └── Provider │ │ └── BankTransferMethodProvider.php ├── Migrations │ └── Schema │ │ ├── MarelloBankTransferBundleInstaller.php │ │ └── v1_0 │ │ └── MarelloBankTransferBundle.php └── Resources │ ├── config │ ├── factory.yml │ ├── integration.yml │ ├── oro │ │ ├── actions.yml │ │ └── bundles.yml │ ├── payment.yml │ └── services.yml │ ├── public │ └── img │ │ └── bank-transfer-icon.png │ ├── translations │ └── messages.en.yml │ └── views │ └── method │ └── bankTransferMethodWithOptions.html.twig ├── CatalogBundle ├── Controller │ └── CategoryController.php ├── DependencyInjection │ └── MarelloCatalogExtension.php ├── Entity │ ├── Category.php │ └── Repository │ │ └── CategoryRepository.php ├── EventListener │ └── Datagrid │ │ └── CategoryProductsColumnListener.php ├── Form │ ├── Handler │ │ └── CategoryHandler.php │ └── Type │ │ └── CategoryType.php ├── Formatter │ └── CategoryCodeFormatter.php ├── MarelloCatalogBundle.php ├── Migrations │ └── Schema │ │ ├── MarelloCatalogBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloCatalogBundle.php │ │ ├── v1_1 │ │ └── MarelloCatalogBundle.php │ │ ├── v1_1_1 │ │ └── MarelloCatalogBundle.php │ │ └── v1_2 │ │ └── MarelloCatalogBundle.php ├── Provider │ ├── CategoriesChoicesProvider.php │ ├── CategoriesChoicesProviderInterface.php │ └── CategoriesIdsProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── api.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ └── routing.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── translations │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ └── Category │ │ ├── index.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── CategoryJsonApiTest.php │ │ │ ├── requests │ │ │ │ ├── category_create.yml │ │ │ │ └── category_update.yml │ │ │ └── responses │ │ │ │ ├── cget_categories_list.yml │ │ │ │ └── get_category_by_id.yml │ │ ├── Controller │ │ │ └── CategoryControllerTest.php │ │ └── DataFixtures │ │ │ └── LoadCategoryData.php │ └── Unit │ │ └── Formatter │ │ └── CategoryCodeFormatterTest.php └── Twig │ └── CategoryExtension.php ├── CoreBundle ├── DependencyInjection │ ├── CompilerPass │ │ ├── AdditionalPlaceholderProviderPass.php │ │ ├── OroEmailImagesExtractorOverrideServiceCompilerPass.php │ │ └── TwigSandboxConfigurationPass.php │ └── MarelloCoreExtension.php ├── DerivedProperty │ ├── DerivedPropertyAwareInterface.php │ ├── DerivedPropertySetEvent.php │ └── DerivedPropertySetter.php ├── EmbeddedImages │ └── EmbeddedImagesExtractor.php ├── EventListener │ ├── EmailAddressVisibilityListener.php │ └── RefreshContextListener.php ├── Form │ └── UrlGenerator.php ├── MarelloCoreBundle.php ├── Migration │ ├── UpdateEntityConfigTrait.php │ └── UpdateExtendRelationTrait.php ├── Model │ ├── AdditionalPlaceholderDataInterface.php │ ├── EntityCreatedUpdatedAtTrait.php │ ├── HashAwareInterface.php │ ├── HashAwareTrait.php │ └── JobIdGenerationTrait.php ├── Provider │ ├── AdditionalPlaceholderProvider.php │ └── AttachmentEntityConfigProviderDecorator.php ├── Resources │ ├── config │ │ ├── derived_property.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── app.yml │ │ │ ├── bundles.yml │ │ │ ├── placeholders.yml │ │ │ └── system_configuration.yml │ │ └── services.yml │ ├── public │ │ ├── img │ │ │ └── marello-logo.png │ │ ├── js │ │ │ └── app │ │ │ │ └── elements-helper.js │ │ └── sidebar_widgets │ │ │ └── sticky_note │ │ │ └── widget.yml │ ├── translations │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ └── call_on_me.html.twig ├── Serializer │ └── EntitySerializer.php ├── Tests │ ├── Functional │ │ └── RestJsonApiTestCase.php │ └── Unit │ │ ├── DependencyInjection │ │ └── CompilerPass │ │ │ └── AdditionalPlaceholderProviderPassTest.php │ │ ├── Provider │ │ └── AdditionalPlaceholderProviderTest.php │ │ ├── Twig │ │ └── CoreExtensionTest.php │ │ ├── Validator │ │ ├── Constraints │ │ │ └── GreaterThanOrEqualToValueTest.php │ │ └── GreaterThanOrEqualToValueValidatorTest.php │ │ └── WorkflowTransitActionTest.php ├── Tree │ ├── Entity │ │ ├── Repository │ │ │ └── NestedTreeRepository.php │ │ └── TreeTrait.php │ ├── Handler │ │ └── AbstractTreeHandler.php │ ├── Test │ │ └── AbstractTreeHandlerTestCase.php │ └── Tests │ │ └── Unit │ │ ├── Handler │ │ └── AbstractTreeHandlerTest.php │ │ └── Stubs │ │ ├── EntityStub.php │ │ └── Handler │ │ └── TreeHandlerStub.php ├── Twig │ ├── CoreExtension.php │ ├── FileExtension.php │ └── WorkflowExtension.php ├── Validator │ ├── CodeRegexValidator.php │ ├── Constraints │ │ ├── CodeRegex.php │ │ ├── GreaterThanDate.php │ │ ├── GreaterThanOrEqualToValue.php │ │ └── UniqueEntityCollection.php │ ├── Exception │ │ └── InvalidMethodException.php │ ├── GreaterThanDateValidator.php │ ├── GreaterThanOrEqualToValueValidator.php │ └── UniqueEntityCollectionValidator.php └── Workflow │ └── Action │ └── WorkflowTransitAction.php ├── CustomerBundle ├── Api │ └── Processor │ │ └── SetLowerCaseEmailId.php ├── Autocomplete │ ├── CompanyCustomerHandler.php │ └── ParentCompanySearchHandler.php ├── Controller │ ├── CompanyController.php │ ├── CustomerController.php │ └── CustomerGroupController.php ├── DependencyInjection │ └── MarelloCustomerExtension.php ├── Entity │ ├── Company.php │ ├── Customer.php │ ├── CustomerGroup.php │ ├── EmailAddressTrait.php │ ├── FullNameTrait.php │ └── Repository │ │ ├── CompanyRepository.php │ │ └── CustomerRepository.php ├── EventListener │ ├── Datagrid │ │ ├── CompanyCustomersColumnListener.php │ │ ├── CompanyCustomersSelectGridListener.php │ │ └── CustomerGroupCustomersColumnListener.php │ └── Entity │ │ └── CustomerEventListener.php ├── Form │ ├── Handler │ │ ├── CompanyHandler.php │ │ ├── CustomerGroupHandler.php │ │ └── CustomerHandler.php │ └── Type │ │ ├── CompanyAwareCustomerSelectType.php │ │ ├── CompanySelectType.php │ │ ├── CompanyType.php │ │ ├── CustomerGroupSelectType.php │ │ ├── CustomerGroupType.php │ │ ├── CustomerSelectType.php │ │ ├── CustomerType.php │ │ └── ParentCompanySelectType.php ├── JsTree │ └── CompanyTreeHandler.php ├── MarelloCustomerBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ └── MergeDuplicateCustomerData.php │ └── Schema │ │ ├── MarelloCustomerBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloCustomerBundle.php │ │ ├── v1_1 │ │ └── MarelloCustomerBundle.php │ │ ├── v1_2 │ │ ├── MigrateExtendedData.php │ │ ├── MigrateForeignKeys.php │ │ ├── MigrateTable.php │ │ └── UpdateEntityConfigExtendClassQuery.php │ │ ├── v1_3 │ │ └── MarelloCustomerBundle.php │ │ ├── v1_4 │ │ └── MarelloCustomerBundle.php │ │ ├── v1_4_1 │ │ └── MarelloCustomerBundle.php │ │ ├── v1_5 │ │ ├── MarelloCustomerBundlePart1.php │ │ └── MarelloCustomerBundlePart2.php │ │ ├── v1_5_1 │ │ └── MarelloCustomerBundle.php │ │ ├── v1_5_2 │ │ └── MarelloCustomerBundle.php │ │ ├── v1_5_3 │ │ └── MarelloCustomerBundle.php │ │ ├── v1_5_4 │ │ └── MarelloCustomerBundle.php │ │ └── v1_6 │ │ └── MarelloCustomerBundle.php ├── Provider │ ├── CustomerAddressProvider.php │ ├── CustomerEmailOwnerProvider.php │ └── CustomerMetricsProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── app.yml │ │ │ ├── bundles.yml │ │ │ ├── dashboards.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ ├── services_api.yml │ │ └── validation.yml │ ├── doc │ │ └── api │ │ │ └── customer.md │ ├── public │ │ └── js │ │ │ └── app │ │ │ └── components │ │ │ ├── company-customer-select-create-component-mixin.js │ │ │ ├── customer-company-select-component.js │ │ │ ├── customer-selection-component.js │ │ │ ├── select-create-company-customer-inline-type-async-component.js │ │ │ ├── select-create-company-customer-inline-type-component.js │ │ │ └── select2-autocomplete-company-customer-component.js │ ├── translations │ │ ├── messages.en.yml │ │ ├── pdf.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Company │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ ├── Customer │ │ ├── Autocomplete │ │ │ ├── result.html.twig │ │ │ └── selection.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ ├── CustomerGroup │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ ├── Dashboard │ │ └── businessMetrics.html.twig │ │ └── Form │ │ └── fields.html.twig ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── CompanyJsonApiTest.php │ │ │ ├── CustomerJsonApiTest.php │ │ │ ├── requests │ │ │ │ ├── company_create.yml │ │ │ │ ├── company_update.yml │ │ │ │ ├── customer_address_update.yml │ │ │ │ ├── customer_create_with_address.yml │ │ │ │ └── customer_create_without_address.yml │ │ │ └── responses │ │ │ │ ├── cget_companies_list.yml │ │ │ │ ├── cget_customer_list.yml │ │ │ │ ├── get_company_by_id.yml │ │ │ │ ├── get_customer_by_email.yml │ │ │ │ └── get_customer_by_id.yml │ │ ├── Controller │ │ │ ├── CompanyControllerTest.php │ │ │ └── CustomerControllerTest.php │ │ └── DataFixtures │ │ │ ├── LoadCompanyData.php │ │ │ ├── LoadCustomerData.php │ │ │ └── dictionaries │ │ │ └── customers.csv │ └── Unit │ │ ├── Autocomplete │ │ └── ParentCompanySearchHandlerTest.php │ │ ├── Form │ │ └── Type │ │ │ ├── CompanySelectTypeTest.php │ │ │ └── ParentCompanySelectTypeTest.php │ │ └── Provider │ │ └── CustomerAddressProviderTest.php ├── Twig │ └── CustomerExtension.php └── Validator │ ├── CompanyNumberValidator.php │ ├── Constraints │ ├── CompanyNumber.php │ └── UniqueCustomerEmail.php │ └── UniqueCustomerEmailValidator.php ├── DataGridBundle ├── Action │ └── ActionPermissionInterface.php ├── DependencyInjection │ └── MarelloDataGridExtension.php ├── EventListener │ └── Datagrid │ │ ├── RowSelectionSelectAllListener.php │ │ └── WorkflowGridListener.php ├── Grid │ └── FormatterContextResolver.php ├── Helper │ └── DatagridHelper.php ├── MarelloDataGridBundle.php └── Resources │ ├── config │ ├── jsmodules.yml │ ├── oro │ │ ├── assets.yml │ │ └── bundles.yml │ └── services.yml │ └── public │ ├── css │ └── scss │ │ └── main.scss │ └── js │ └── datagrid │ ├── cell │ └── boolean-select-row-cell.js │ ├── header-cell │ └── select-all-header-cell.js │ └── listener │ ├── column-form-listener.js │ └── select-all-listener.js ├── DemoDataBundle ├── MarelloDemoDataBundle.php ├── Migrations │ └── Data │ │ ├── Demo │ │ └── ORM │ │ │ ├── LoadCategoryData.php │ │ │ ├── LoadCustomerData.php │ │ │ ├── LoadDemoData.php │ │ │ ├── LoadOrderData.php │ │ │ ├── LoadPaymentRule.php │ │ │ ├── LoadPaymentRuleConfig.php │ │ │ ├── LoadPaymentTermData.php │ │ │ ├── LoadPdfConfiguration.php │ │ │ ├── LoadProductChannelPricingData.php │ │ │ ├── LoadProductData.php │ │ │ ├── LoadProductImageData.php │ │ │ ├── LoadProductInventoryData.php │ │ │ ├── LoadProductPriceData.php │ │ │ ├── LoadProductSalesChannelTaxCodeData.php │ │ │ ├── LoadProductSupplierData.php │ │ │ ├── LoadProductVariantData.php │ │ │ ├── LoadPurchaseOrderData.php │ │ │ ├── LoadRefundData.php │ │ │ ├── LoadReturnData.php │ │ │ ├── LoadSalesChannelGroupData.php │ │ │ ├── LoadSalesChannelTypesData.php │ │ │ ├── LoadSalesData.php │ │ │ ├── LoadShippingRule.php │ │ │ ├── LoadShippingRuleConfig.php │ │ │ ├── LoadSupplierData.php │ │ │ ├── LoadTaxCodeData.php │ │ │ ├── LoadTaxJurisdictionData.php │ │ │ ├── LoadTaxRateData.php │ │ │ ├── LoadTaxRuleData.php │ │ │ ├── data │ │ │ └── pdf_settings.yml │ │ │ ├── dictionaries │ │ │ ├── categories.csv │ │ │ ├── customers.csv │ │ │ ├── order_data.csv │ │ │ ├── order_items.csv │ │ │ ├── product_channel_prices.csv │ │ │ ├── product_inventory.csv │ │ │ ├── product_prices.csv │ │ │ ├── product_suppliers.csv │ │ │ ├── products.csv │ │ │ └── purchase_orders.csv │ │ │ └── images │ │ │ ├── 100909.jpg │ │ │ ├── 101074.jpg │ │ │ ├── 101075.jpg │ │ │ ├── 101076.jpg │ │ │ ├── 101077.jpg │ │ │ ├── 101078.jpg │ │ │ ├── 101079.jpg │ │ │ ├── 101435.jpg │ │ │ ├── 101692.jpg │ │ │ ├── 101693.jpg │ │ │ ├── 101694.jpg │ │ │ ├── 101696.jpg │ │ │ ├── 101697.jpg │ │ │ ├── 101698.jpg │ │ │ ├── 101699.jpg │ │ │ ├── 101700.jpg │ │ │ ├── 101701.jpg │ │ │ ├── 101764.jpg │ │ │ ├── 101793.jpg │ │ │ ├── eqmbs03006-blk.jpg │ │ │ ├── eqmbs03006-gqm0.jpg │ │ │ ├── eqmbs03009_primetime,v_sla0_frt1.jpg │ │ │ ├── eqmjv03006_balance6,v_blk_frt1.jpg │ │ │ ├── eqmjv03006_balance6,v_blm0_frt1.jpg │ │ │ ├── eqmjv03006_balance6,v_bnm0_frt1.jpg │ │ │ ├── eqmjv03006_balance6,v_gqm0_frt1.jpg │ │ │ ├── eqmjv03006_balance6,v_krd0_frt1.jpg │ │ │ ├── eqmjv03006_balance6,v_kvj0_frt1.jpg │ │ │ ├── eqmjv03006_balance6,v_rqs0_frt1.jpg │ │ │ ├── eqybs03487_manic22,v_byj0_frt1.jpg │ │ │ ├── eqybs03487_manic22,v_kvj0_frt1.jpg │ │ │ ├── eqybs03487_manic22,v_rqr0_frt1.jpg │ │ │ ├── eqybs03571_newwavehighline19,v_kvj0_frt1.jpg │ │ │ ├── eqybs03571_newwavehighline19,v_wbb0_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_bmm6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_bnf6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_bpb6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_bqk6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_bqs6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_bsg6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_bsg7_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_bsw6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_ggg6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_kta6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_kvj6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_kze6_frt1.jpg │ │ │ ├── eqybs03573_everydayblockedvee20,v_rqr6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_bek6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_bhf6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_bnf6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_bpb6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_bqs6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_brq6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_kta6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_kvj6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_mkm6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_nnj6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_rrd6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_szr6_frt1.jpg │ │ │ ├── eqybs03575_everydaystripevee21,v_yjd6_frt1.jpg │ │ │ ├── eqybs03578_maniccamo22,v_csn6_frt1.jpg │ │ │ ├── eqybs03592_everydaykaimana21,v_bms0_frt1.jpg │ │ │ ├── eqybs03592_everydaykaimana21,v_byj0_frt1.jpg │ │ │ ├── eqybs03592_everydaykaimana21,v_kvj0_frt1.jpg │ │ │ ├── eqybs03592_everydaykaimana21,v_rqr0_frt1.jpg │ │ │ ├── eqybs03595_cryptoscallop20,f_bqk0_frt1.jpg │ │ │ ├── eqybs03595_cryptoscallop20,f_byj6_frt1.jpg │ │ │ ├── eqybs03595_cryptoscallop20,v_bsg6_frt1.jpg │ │ │ ├── eqybs03595_cryptoscallop20,v_bsw6_frt1.jpg │ │ │ ├── eqybs03595_cryptoscallop20,v_kvj6_frt1.jpg │ │ │ ├── eqybs03600_cryptscallop20,v_byj6_frt1.jpg │ │ │ ├── eqybs03600_cryptscallop20,v_kvj6_frt1.jpg │ │ │ ├── eqybs03603_highlineblockedvee20,v_bqk6_frt1.jpg │ │ │ ├── eqybs03603_highlineblockedvee20,v_gph6_frt1.jpg │ │ │ ├── eqybs03603_highlineblockedvee20,v_kvj6_frt1.jpg │ │ │ ├── eqybs03603_highlineblockedvee20,v_rrd6_frt2.jpg │ │ │ ├── eqybs03740_newwave19,v_kta6_frt1.jpg │ │ │ ├── eqybs03740_newwave19,v_kvj6_frt1.jpg │ │ │ ├── eqybs03744_cryptscallop20,v_bsg6_frt1.jpg │ │ │ ├── eqybs03744_cryptscallop20,v_kvj6_frt1.jpg │ │ │ ├── eqybs03756_tijuanascallop20,v_bhf6_frt1.jpg │ │ │ ├── eqybs03756_tijuanascallop20,v_bsw6_frt1.jpg │ │ │ ├── eqybs03756_tijuanascallop20,v_rsr6_frt1.jpg │ │ │ ├── eqybs03761_checkerarch19,v_kvj0_frt1.jpg │ │ │ ├── eqybs03764_newwaveeveryday20,v_bla6_frt1.jpg │ │ │ ├── eqybs03764_newwaveeveryday20,v_bmm6_frt1.jpg │ │ │ ├── eqybs03764_newwaveeveryday20,v_byj6_frt1.jpg │ │ │ ├── eqybs03764_newwaveeveryday20,v_gsq6_frt1.jpg │ │ │ ├── eqybs03764_newwaveeveryday20,v_kvj6_frt1.jpg │ │ │ ├── eqybs03766_thescallop19,v_kvj0_frt1.jpg │ │ │ ├── eqybs03766_thescallop19,v_rsr0_frt1.jpg │ │ │ ├── eqybs03768_maniccamo22,v_kvj6_frt1.jpg │ │ │ ├── eqybs03774_swellvisionprintbeachshort20,v_kta6_frt1.jpg │ │ │ ├── eqybs03774_swellvisionprintbeachshort20,v_kvj6_frt1.jpg │ │ │ ├── eqybs03774_swellvisionprintbeachshort20,v_kze6_frt1.jpg │ │ │ ├── eqybs03777_neonsmogbeachshort18,v_kta6_frt1.jpg │ │ │ ├── eqybs03779_deserttripbeachshort19,v_bsw6_frt1.jpg │ │ │ ├── eqybs03779_deserttripbeachshort19,v_kze6_frt1.jpg │ │ │ ├── eqybs03782_swellvisionbeachshort20,f_bsw6_frt1.jpg │ │ │ ├── eqybs03782_swellvisionbeachshort20,v_bsg6_frt1.jpg │ │ │ ├── eqybs03783_resincamobeachshort19,v_bhf6_frt1.jpg │ │ │ ├── eqybs03783_resincamobeachshort19,v_kvj6_frt1.jpg │ │ │ ├── eqybs03785_alamoanaslash20,v_brc6_frt1.jpg │ │ │ ├── eqybs03811_divisionhawaiivee21,v_csn6_frt1.jpg │ │ │ ├── eqybs03835_heatwaveblockedbeachshort20,v_cph6_frt1.jpg │ │ │ ├── eqybs03835_heatwaveblockedbeachshort20,v_kze6_frt1.jpg │ │ │ ├── eqybs03838_variablebeachshort18,v_brq6_frt1.jpg │ │ │ ├── eqybs03838_variablebeachshort18,v_gnr6_frt1.jpg │ │ │ ├── eqybs03838_variablebeachshort18,v_szp6_frt1.jpg │ │ │ ├── eqyjv03183_rigbyvolley17nb,v_byj0_frt1.jpg │ │ │ ├── eqyjv03183_rigbyvolley17nb,v_gnr0_frt1.jpg │ │ │ ├── eqyjv03183_rigbyvolley17nb,v_kvj0_frt1.jpg │ │ │ └── goodwaves-invoice-logo.png │ │ └── ORM │ │ └── LoadDashboardData.php └── Resources │ └── config │ └── oro │ └── bundles.yml ├── FilterBundle ├── DependencyInjection │ ├── CompilerPass │ │ └── FilterCompilerPass.php │ └── MarelloFilterExtension.php ├── Filter │ └── ChoiceLikeFilter.php ├── Grid │ └── Extension │ │ └── OrmFilterExtension.php ├── MarelloFilterBundle.php └── Resources │ ├── config │ ├── oro │ │ └── bundles.yml │ └── services.yml │ └── public │ └── js │ └── filter │ └── select-filter.js ├── HealthCheckBundle ├── Controller │ └── IntegrationStatusController.php ├── DependencyInjection │ └── MarelloHealthCheckExtension.php ├── EventListener │ └── Datagrid │ │ └── LastIntegrationStatusesGridListener.php ├── MarelloHealthCheckBundle.php ├── Provider │ └── Datagrid │ │ └── LastIntegrationStatusesDataProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── oro │ │ │ ├── bundles.yml │ │ │ ├── dashboards.yml │ │ │ ├── datagrids.yml │ │ │ ├── navigation.yml │ │ │ └── routing.yml │ │ └── services.yml │ ├── translations │ │ └── messages.en.yml │ └── views │ │ ├── Dashboard │ │ └── lastIntegrationStatuses.html.twig │ │ └── IntegrationStatus │ │ ├── Datagrid │ │ ├── code.html.twig │ │ └── name.html.twig │ │ └── index.html.twig └── Tests │ └── Functional │ └── Controller │ └── IntegrationStatusControllerTest.php ├── ImportExportBundle ├── Controller │ └── ImportExportController.php ├── DependencyInjection │ └── MarelloImportExportExtension.php └── Resources │ ├── translations │ └── messages.en.yml │ └── views │ └── ImportExport │ └── widget │ └── importValidateExportTemplate.html.twig ├── InventoryBundle ├── Api │ └── Processor │ │ ├── ComputeSalesChannelsField.php │ │ └── CustomizeInventoryLevelFormData.php ├── Async │ ├── BalancedInventoryResetProcessor.php │ ├── InventoryRebalanceProductProcessor.php │ ├── InventoryRebalanceProductsProcessor.php │ └── Topic │ │ ├── BalancedInventoryResetTopic.php │ │ ├── ResolveRebalanceAllInventoryTopic.php │ │ └── ResolveRebalanceInventoryTopic.php ├── Command │ ├── InventoryBalanceCommand.php │ ├── InventoryReAllocateCronCommand.php │ └── InventorySellByDateRecalculateCronCommand.php ├── Controller │ ├── AllocationController.php │ ├── BalancedInventoryLevelController.php │ ├── ExpectedInventoryItemController.php │ ├── InventoryItemController.php │ ├── InventoryLevelController.php │ ├── ReshipmentController.php │ └── WarehouseController.php ├── DependencyInjection │ ├── CompilerPass │ │ ├── BalancerStrategiesCompilerPass.php │ │ ├── WFAStrategiesCompilerPass.php │ │ └── WarehouseNotifierRegistryCompilerPass.php │ ├── Configuration.php │ └── MarelloInventoryExtension.php ├── Entity │ ├── Allocation.php │ ├── AllocationItem.php │ ├── BalancedInventoryLevel.php │ ├── InventoryBatch.php │ ├── InventoryItem.php │ ├── InventoryLevel.php │ ├── InventoryLevelLogRecord.php │ ├── Repository │ │ ├── BalancedInventoryRepository.php │ │ ├── InventoryItemRepository.php │ │ ├── InventoryLevelLogRecordRepository.php │ │ ├── InventoryLevelRepository.php │ │ ├── WarehouseChannelGroupLinkRepository.php │ │ ├── WarehouseGroupRepository.php │ │ └── WarehouseRepository.php │ ├── Warehouse.php │ ├── WarehouseChannelGroupLink.php │ ├── WarehouseGroup.php │ └── WarehouseType.php ├── Event │ ├── BalancedInventoryUpdateEvent.php │ ├── InventoryLevelFinishFormViewEvent.php │ ├── InventoryUpdateEvent.php │ └── InventoryUpdateWebhookEvent.php ├── EventListener │ ├── Action │ │ └── Condition │ │ │ └── ReshipmentActionListener.php │ ├── BalancedInventoryUpdateAfterEventListener.php │ ├── Datagrid │ │ ├── ExpectedInventoryForAllocationItemsGridListener.php │ │ ├── ExpectedInventoryItemGridListener.php │ │ ├── InventoryLevelGridListener.php │ │ └── InventoryLevelLogGridListener.php │ ├── Doctrine │ │ ├── InventoryBatchEventListener.php │ │ ├── InventoryBatchInventoryRebalanceListener.php │ │ ├── InventoryLevelRebalanceEventListener.php │ │ ├── SetsPropertyValue.php │ │ ├── StockLevelAuthorFillSubscriber.php │ │ ├── StockLevelSubjectAssignSubscriber.php │ │ ├── StockLevelSubjectHydrationSubscriber.php │ │ └── WarehouseGroupLinkRebalanceListener.php │ ├── ExternalWarehouseEventListener.php │ ├── InventoryLevelFormViewEventListener.php │ ├── InventoryLevelUpdateAfterEventListener.php │ ├── InventoryUpdateEventListener.php │ ├── OnProductCreateEventListener.php │ ├── OnProductDeleteEventListener.php │ └── Workflow │ │ ├── AllocationCompleteListener.php │ │ ├── AllocationWorkflowStartListener.php │ │ ├── SendToWarehouseListener.php │ │ └── TransitionEventListener.php ├── Factory │ ├── AllocationShippingContextFactory.php │ └── InventoryBatchFromInventoryLevelFactory.php ├── Form │ ├── EventListener │ │ ├── InventoryBatchSubscriber.php │ │ ├── InventoryItemSubscriber.php │ │ └── InventoryLevelSubscriber.php │ ├── Handler │ │ └── ReshipmentHandler.php │ └── Type │ │ ├── BalancerStrategyChoiceType.php │ │ ├── InventoryAllocationPriorityChoiceType.php │ │ ├── InventoryBatchCollectionType.php │ │ ├── InventoryBatchType.php │ │ ├── InventoryItemType.php │ │ ├── InventoryLevelCollectionType.php │ │ ├── InventoryLevelManageBatchesType.php │ │ ├── InventoryLevelType.php │ │ ├── NotifierChoiceType.php │ │ ├── ReshipmentItemCollectionType.php │ │ ├── ReshipmentItemType.php │ │ ├── ReshipmentReasonSelectType.php │ │ ├── ReshipmentType.php │ │ ├── VariantInventoryType.php │ │ └── WarehouseType.php ├── ImportExport │ ├── DataConverter │ │ └── InventoryLevelImportDataConverter.php │ ├── Reader │ │ ├── AbstractInventoryLevelReader.php │ │ ├── InventoryLevelReader.php │ │ └── InventoryLevelTemplateReader.php │ ├── Strategy │ │ └── InventoryLevelUpdateStrategy.php │ └── TemplateFixture │ │ ├── InventoryLevelFixture.php │ │ └── WarehouseFixture.php ├── ImportExportBundle │ ├── MarelloImportExportBundle.php │ └── Resources │ │ ├── config │ │ ├── controllers.yml │ │ ├── oro │ │ │ ├── bundles.yml │ │ │ └── entity_config.yml │ │ └── services.yml │ │ └── views │ │ └── ImportExport │ │ └── buttons.html.twig ├── Logging │ └── ChartBuilder.php ├── Manager │ ├── BalancedInventoryManager.php │ ├── InventoryItemManager.php │ ├── InventoryItemManagerInterface.php │ ├── InventoryManager.php │ └── InventoryManagerInterface.php ├── MarelloInventoryBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── AddExternalWarehouseType.php │ │ │ ├── AddInventoryRebalanceJob.php │ │ │ ├── CreateDefaultWarehouseChannelGroupLink.php │ │ │ ├── LoadAllocationContextData.php │ │ │ ├── LoadAllocationReshipmentReasonData.php │ │ │ ├── LoadAllocationStatusData.php │ │ │ ├── LoadEmailTemplatesData.php │ │ │ ├── LoadReplenishmentData.php │ │ │ ├── LoadWarehouseData.php │ │ │ ├── LoadWarehouseGroupData.php │ │ │ ├── LoadWarehouseTypeData.php │ │ │ ├── ModifyReplenishmentData.php │ │ │ ├── UpdateCurrentInventoryItemsWithOrganization.php │ │ │ ├── UpdateCurrentInventoryLevelsWithOrganization.php │ │ │ ├── UpdateCurrentWarehouseWithGroup.php │ │ │ ├── UpdateCurrentWarehouseWithType.php │ │ │ ├── UpdateInventoryLevelLogWithWarehouseName.php │ │ │ ├── UpdateIsManagedInventory.php │ │ │ └── data │ │ │ └── emails │ │ │ ├── marello_order_shipped_allocation_confirmation.html.twig │ │ │ └── marello_warehouse_allocation.html.twig │ └── Schema │ │ ├── MarelloInventoryBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloInventoryBundle.php │ │ ├── v1_1 │ │ └── MarelloInventoryBundle.php │ │ ├── v1_2_1 │ │ └── RemoveOldInventoryItemColumns.php │ │ ├── v1_2_2 │ │ ├── AddColumnsToInventoryItem.php │ │ ├── AddColumnsToInventoryLevel.php │ │ └── AddWarehouseCode.php │ │ ├── v1_2_3 │ │ └── MarelloInventoryBundle.php │ │ ├── v1_2_4 │ │ └── MarelloInventoryBundle.php │ │ ├── v1_3_1 │ │ └── MarelloInventoryBundle.php │ │ ├── v2_0 │ │ └── MarelloInventoryBundle.php │ │ ├── v2_1 │ │ └── MarelloInventoryBundle.php │ │ ├── v2_1_1 │ │ └── UpdateInventoryEntitiesConfig.php │ │ ├── v2_2 │ │ └── MarelloInventoryBundle.php │ │ ├── v2_3 │ │ ├── MarelloInventoryBundleAddIsSystemColumn.php │ │ ├── MarelloInventoryBundleDropSystemColumn.php │ │ └── MarelloInventoryBundleInventoryBatch.php │ │ ├── v2_4 │ │ ├── CreateAndUpdateInventoryLevelLog.php │ │ └── UpdateInventoryLevelLogForeignKey.php │ │ ├── v2_5 │ │ └── UpdateInventoryLevelLogForeignKey.php │ │ ├── v2_5_1 │ │ └── UpdateInventoryItemTable.php │ │ ├── v2_6 │ │ └── AddAllocationAndItemTable.php │ │ ├── v2_6_1 │ │ └── UpdateAllocationTable.php │ │ ├── v2_6_10 │ │ └── MarelloInventoryBundle.php │ │ ├── v2_6_11 │ │ └── MarelloInventoryBundle.php │ │ ├── v2_6_12 │ │ ├── UpdateAllocationItemTable.php │ │ └── UpdateVariantHashColumnTable.php │ │ ├── v2_6_2 │ │ └── UpdateWarehouseTable.php │ │ ├── v2_6_3 │ │ └── AddContextDatagridForAllocation.php │ │ ├── v2_6_4 │ │ └── UpdateLogRecordTable.php │ │ ├── v2_6_5 │ │ └── UpdateAllocationTable.php │ │ ├── v2_6_6 │ │ ├── UpdateAllocationItemTable.php │ │ └── UpdateAllocationTable.php │ │ ├── v2_6_7 │ │ └── UpdateAllocationTable.php │ │ ├── v2_6_8 │ │ └── UpdateBalancedInventoryTable.php │ │ └── v2_6_9 │ │ └── UpdateAllocationItemTable.php ├── Model │ ├── Allocation │ │ ├── Notifier │ │ │ ├── WarehouseEmailNotifier.php │ │ │ └── WarehouseManualNotifier.php │ │ ├── WarehouseNotifierInterface.php │ │ └── WarehouseNotifierRegistry.php │ ├── BalancedInventory │ │ ├── BalancedInventoryFactory.php │ │ └── BalancedInventoryHandler.php │ ├── BalancedInventoryLevelInterface.php │ ├── InventoryBalancer │ │ ├── BalancedResultObject.php │ │ ├── InventoryBalancer.php │ │ └── InventoryBalancerTriggerCalculator.php │ ├── InventoryItemAwareInterface.php │ ├── InventoryLevelCalculator.php │ ├── InventoryQtyAwareInterface.php │ ├── InventoryTotalCalculator.php │ ├── InventoryUpdateContext.php │ ├── InventoryUpdateContextFactory.php │ ├── InventoryUpdateContextValidator.php │ └── OrderWarehouseResult.php ├── Provider │ ├── Allocation │ │ ├── AllocationItemFilterInterface.php │ │ └── AllocationItemFilterProvider.php │ ├── AllocationContextInterface.php │ ├── AllocationExclusionInterface.php │ ├── AllocationExclusionProvider.php │ ├── AllocationReshipmentReasonInterface.php │ ├── AllocationStateStatusInterface.php │ ├── AvailableInventoryFormProvider.php │ ├── AvailableInventoryProvider.php │ ├── BalancingStrategyChoicesProvider.php │ ├── InventoryAllocationProvider.php │ ├── OrderWarehousesProvider.php │ ├── OrderWarehousesProviderInterface.php │ ├── WarehouseNotifierChoicesProvider.php │ └── WarehouseTypeProviderInterface.php ├── Resources │ ├── config │ │ ├── batch_jobs.yml │ │ ├── controllers.yml │ │ ├── eventlisteners.yml │ │ ├── form.yml │ │ ├── importexport.yml │ │ ├── jsmodules.yml │ │ ├── mq_topics.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── charts.yml │ │ │ ├── dashboards.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── features.yml │ │ │ ├── navigation.yml │ │ │ ├── placeholders.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ ├── system_configuration.yml │ │ │ ├── twig.yml │ │ │ └── workflows.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── doc │ │ ├── api │ │ │ ├── balancedinventorylevel.md │ │ │ ├── inventorybatch.md │ │ │ ├── inventoryitem.md │ │ │ └── inventorylevel.md │ │ ├── diagram │ │ │ └── inventory_balancedinventory_connections.png │ │ └── diagrams │ │ │ └── Inventory-And-BalancedInventory.png │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ └── main.scss │ │ └── js │ │ │ └── app │ │ │ ├── components │ │ │ └── marelloinventory-chart-component.js │ │ │ └── views │ │ │ └── inventorylevel-item-view.js │ ├── translations │ │ ├── MarelloInventoryChangeDirection.en.yml │ │ ├── MarelloInventoryLevelChangeTrigger.en.yml │ │ ├── MarelloNotification.en.yml │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ ├── validators.en.yml │ │ └── workflows.en.yml │ └── views │ │ ├── Allocation │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── view.html.twig │ │ └── widget │ │ │ └── orderAllocations.html.twig │ │ ├── BalancedInventoryLevel │ │ └── index.html.twig │ │ ├── Chart │ │ └── inventory.html.twig │ │ ├── Datagrid │ │ ├── Column │ │ │ └── expectedInventory.html.twig │ │ ├── InventoryLevel │ │ │ ├── diff.html.twig │ │ │ └── subject.html.twig │ │ └── Property │ │ │ └── total_allocated.html.twig │ │ ├── ExpectedInventoryItem │ │ └── view.html.twig │ │ ├── Form │ │ └── fields.html.twig │ │ ├── Inventory │ │ ├── Datagrid │ │ │ └── manageBatches.html.twig │ │ ├── index.html.twig │ │ ├── update.html.twig │ │ ├── view.html.twig │ │ └── widget │ │ │ ├── datagrid.html.twig │ │ │ └── info.html.twig │ │ ├── InventoryItem │ │ └── inventoryLevelsTotals.html.twig │ │ ├── InventoryLevel │ │ ├── batchesView.html.twig │ │ ├── chart.html.twig │ │ ├── index.html.twig │ │ └── manageBatches.html.twig │ │ ├── Reshipment │ │ └── create.html.twig │ │ ├── Warehouse │ │ └── updateDefault.html.twig │ │ └── macros.html.twig ├── Strategy │ ├── AbstractBalancerStrategy.php │ ├── BalancerStrategiesRegistry.php │ ├── BalancerStrategyInterface.php │ ├── EqualDivision │ │ └── EqualDivisionBalancerStrategy.php │ └── WFA │ │ ├── Quantity │ │ ├── Calculator │ │ │ ├── AbstractWHCalculator.php │ │ │ ├── MultiWHCalculator.php │ │ │ ├── QtyWHCalculatorInterface.php │ │ │ └── SingleWHCalculator.php │ │ └── QuantityWFAStrategy.php │ │ ├── WFAStrategiesRegistry.php │ │ └── WFAStrategyInterface.php ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── BalancedInventoryJsonApiTest.php │ │ │ ├── InventoryItemJsonApiTest.php │ │ │ ├── requests │ │ │ │ ├── balancedinventorylevel_create.yml │ │ │ │ └── inventoryitem_create.yml │ │ │ └── responses │ │ │ │ ├── cget_balancedinventory_list.yml │ │ │ │ ├── cget_inventoryitem_list.yml │ │ │ │ ├── get_balancedinventory_by_product_sku.yml │ │ │ │ ├── get_balancedinventory_by_saleschannel.yml │ │ │ │ └── get_inventoryitem_by_product_sku.yml │ │ ├── Controller │ │ │ ├── ExpectedInventoryItemControllerTest.php │ │ │ ├── InventoryControllerTest.php │ │ │ ├── InventoryLogLevelControllerTest.php │ │ │ └── WarehouseControllerTest.php │ │ ├── DataFixtures │ │ │ ├── LoadAllocationData.php │ │ │ ├── LoadInventoryData.php │ │ │ ├── LoadWarehouseChannelLinkData.php │ │ │ └── dictionaries │ │ │ │ └── product_inventory.csv │ │ ├── Entity │ │ │ ├── InventoryItemTest.php │ │ │ └── Repository │ │ │ │ └── WarehouseRepositoryTest.php │ │ ├── Logging │ │ │ └── ChartBuilderTest.php │ │ └── Model │ │ │ └── InventoryBalancer.php │ └── Unit │ │ ├── DependencyInjection │ │ └── Compiler │ │ │ ├── BalancerStrategiesCompilerPassTest.php │ │ │ └── WFAStrategiesCompilerPassTest.php │ │ ├── Entity │ │ ├── InventoryItemTest.php │ │ ├── InventoryLevelTest.php │ │ ├── WarehouseChannelGroupLinkTest.php │ │ ├── WarehouseGroupTest.php │ │ ├── WarehouseTest.php │ │ └── WarehouseTypeTest.php │ │ ├── Event │ │ └── InventoryUpdateEventTest.php │ │ ├── EventListener │ │ ├── BalancedInventoryLevelUpdateAfterEventListenerTest.php │ │ ├── InventoryLevelRebalanceEventListenerTest.php │ │ ├── InventoryUpdateEventListenerTest.php │ │ ├── OnProductCreateEventListenerTest.php │ │ └── OnProductDeleteEventListenerTest.php │ │ ├── Model │ │ ├── InventoryBalancerTest.php │ │ ├── InventoryBalancerTriggerCalculatorTest.php │ │ └── InventoryUpdateContextTest.php │ │ ├── Provider │ │ ├── AvailableInventoryFormProviderTest.php │ │ └── OrderWarehousesProviderTest.php │ │ └── Strategy │ │ ├── BalancerStrategiesRegistryTest.php │ │ └── WFA │ │ ├── Quantity │ │ ├── Calculator │ │ │ ├── AbstractWHCalculatorTest.php │ │ │ └── SingleWHCalculatorTest.php │ │ └── QuantityWFAStrategyTest.php │ │ └── WFAStrategiesRegistryTest.php ├── Twig │ ├── InventoryTotalExtension.php │ └── WarehouseExtension.php └── Validator │ ├── Constraints │ └── InventoryOrderOnDemand.php │ └── InventoryOrderOnDemandValidator.php ├── InvoiceBundle ├── Controller │ └── InvoiceController.php ├── DependencyInjection │ └── MarelloInvoiceExtension.php ├── Entity │ ├── AbstractInvoice.php │ ├── AbstractInvoiceItem.php │ ├── Creditmemo.php │ ├── CreditmemoItem.php │ ├── Invoice.php │ ├── InvoiceItem.php │ └── Repository │ │ └── AbstractInvoiceRepository.php ├── EventListener │ ├── Datagrid │ │ └── InvoiceGridAddressFilterListener.php │ ├── ManualCreditmemoCreationListener.php │ └── ManualInvoiceCreationListener.php ├── Form │ └── Type │ │ └── InvoiceSelectType.php ├── Manager │ ├── CreditmemoManager.php │ └── InvoiceManager.php ├── Mapper │ ├── AbstractInvoiceMapper.php │ ├── MapperInterface.php │ ├── OrderToInvoiceMapper.php │ └── RefundToCreditmemoMapper.php ├── MarelloInvoiceBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── SendInvoiceEmailTemplate.php │ │ │ ├── UpdateCurrentInvoiceItemsWithOrganization.php │ │ │ ├── UpdateEmailTemplates.php │ │ │ └── data │ │ │ └── email_templates │ │ │ └── marello_send_invoice.html.twig │ └── Schema │ │ ├── MarelloInvoiceBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloInvoiceBundle.php │ │ ├── v1_0_1 │ │ └── MarelloInvoiceBundle.php │ │ ├── v1_1 │ │ └── MarelloInvoiceBundle.php │ │ ├── v1_2 │ │ └── MarelloInvoiceBundle.php │ │ ├── v2_0 │ │ ├── MarelloInvoiceBundleAddColumns.php │ │ ├── MarelloInvoiceBundleAddQuery.php │ │ ├── MarelloInvoiceBundleRemoveColumns.php │ │ └── PaymentsCreationQuery.php │ │ ├── v2_1 │ │ └── UpdateInvoiceItemTable.php │ │ ├── v3_0 │ │ ├── UpdateCreditmemoEntityConfig.php │ │ └── UpdateEntityConfigExtendClassQuery.php │ │ └── v3_1 │ │ └── UpdateInvoiceTable.php ├── Pdf │ ├── Request │ │ ├── CreditmemoPdfRequestHandler.php │ │ └── InvoicePdfRequestHandler.php │ └── Table │ │ ├── CreditmemoTableProvider.php │ │ └── InvoiceTableProvider.php ├── Provider │ ├── InvoicePaidAmountProvider.php │ └── InvoiceTypeChoicesProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ └── routing.yml │ │ └── services.yml │ ├── doc │ │ └── api │ │ │ ├── creditmemo.md │ │ │ └── invoice.md │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── pdf.en.yml │ └── views │ │ ├── Datagrid │ │ └── totalDue.html.twig │ │ ├── Invoice │ │ ├── index.html.twig │ │ └── view.html.twig │ │ └── Pdf │ │ ├── creditmemo.html.twig │ │ └── invoice.html.twig ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── CreditmemoJsonApiTest.php │ │ │ ├── InvoiceJsonApiTest.php │ │ │ └── responses │ │ │ │ ├── cget_creditmemo_list.yml │ │ │ │ ├── cget_creditmemo_list_by_order.yml │ │ │ │ ├── cget_invoice_list.yml │ │ │ │ ├── cget_invoice_list_by_order.yml │ │ │ │ ├── get_creditmemo_by_id.yml │ │ │ │ ├── get_creditmemo_by_invoiceNumber.yml │ │ │ │ ├── get_invoice_by_id.yml │ │ │ │ └── get_invoice_by_invoiceNumber.yml │ │ ├── Controller │ │ │ ├── InvoiceControllerTest.php │ │ │ └── InvoiceDownloadPdfControllerTest.php │ │ ├── DataFixtures │ │ │ ├── LoadCreditmemoData.php │ │ │ └── LoadInvoiceData.php │ │ └── Provider │ │ │ └── InvoicePaidAmountProviderTest.php │ └── Unit │ │ └── Pdf │ │ └── Table │ │ └── InvoiceTableProviderTest.php └── Twig │ └── InvoiceExtension.php ├── LayoutBundle ├── Context │ ├── FormChangeContext.php │ └── FormChangeContextInterface.php ├── DependencyInjection │ ├── Compiler │ │ └── FormChangesProviderPass.php │ └── MarelloLayoutExtension.php ├── MarelloLayoutBundle.php ├── Provider │ ├── CompositeFormChangesProvider.php │ └── FormChangesProviderInterface.php ├── Resources │ ├── config │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── assets.yml │ │ │ └── bundles.yml │ │ └── services.yml │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ └── main.scss │ │ ├── images │ │ │ ├── marello.ico │ │ │ └── marello.svg │ │ └── js │ │ │ └── app │ │ │ ├── components │ │ │ └── form-changes-component.js │ │ │ └── views │ │ │ ├── abstract-item-view.js │ │ │ └── abstract-items-view.js │ └── translations │ │ └── messages.en.yml └── Tests │ └── Unit │ ├── DependencyInjection │ └── Compiler │ │ └── FormChangesProviderPassTest.php │ └── Provider │ └── CompositeFormChangesProviderTest.php ├── LocaleBundle ├── DependencyInjection │ ├── CompilerPass │ │ └── EntityLocalizationProvidersCompilerPass.php │ └── MarelloLocaleExtension.php ├── Manager │ └── EmailTemplateManager.php ├── MarelloLocaleBundle.php ├── Model │ ├── LocalizationAwareInterface.php │ └── LocalizationTrait.php ├── Provider │ ├── ChainEntityLocalizationProvider.php │ ├── DefaultEntityLocalizationProvider.php │ └── EntityLocalizationProviderInterface.php ├── Resources │ └── config │ │ ├── oro │ │ └── bundles.yml │ │ └── services.yml └── Tests │ ├── Functional │ └── Provider │ │ └── ChainEntityLocalizationProviderTest.php │ └── Unit │ └── Provider │ └── DefaultEntityLocalizationProviderTest.php ├── ManualShippingBundle ├── DependencyInjection │ └── MarelloManualShippingExtension.php ├── Entity │ └── ManualShippingSettings.php ├── EventListener │ └── ShippingMethodDisableIntegrationListener.php ├── Factory │ └── ManualShippingMethodFromChannelFactory.php ├── Form │ └── Type │ │ ├── ManualShippingOptionsType.php │ │ └── ManualShippingSettingsType.php ├── Integration │ ├── ManualShippingChannelType.php │ └── ManualShippingTransport.php ├── MarelloManualShippingBundle.php ├── Method │ ├── ManualShippingMethod.php │ ├── ManualShippingMethodProvider.php │ └── ManualShippingMethodType.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ └── LoadManualShippingIntegration.php │ └── Schema │ │ ├── MarelloManualShippingBundleInstaller.php │ │ └── v1_0 │ │ └── MarelloManualShippingBundle.php ├── Resources │ ├── config │ │ ├── event_listeners.yml │ │ ├── factories.yml │ │ ├── form_types.yml │ │ ├── oro │ │ │ ├── actions.yml │ │ │ └── bundles.yml │ │ └── services.yml │ ├── public │ │ └── img │ │ │ └── manual-shipping-logo.jpg │ ├── translations │ │ └── messages.en.yml │ └── views │ │ └── method │ │ └── manualShippingMethodWithOptions.html.twig └── Tests │ └── Functional │ └── DataFixtures │ └── LoadManualShippingIntegration.php ├── NotificationBundle ├── Controller │ └── NotificationController.php ├── DependencyInjection │ ├── Compiler │ │ └── EntityNotificationConfigurationProvidersPass.php │ └── MarelloNotificationExtension.php ├── Entity │ └── Notification.php ├── Exception │ └── MarelloNotificationException.php ├── MarelloNotificationBundle.php ├── Migrations │ └── Schema │ │ ├── MarelloNotificationBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloNotificationBundle.php │ │ ├── v1_1 │ │ └── MarelloNotificationBundle.php │ │ └── v1_2 │ │ └── MarelloNotificationBundle.php ├── Model │ ├── AttachmentInterface.php │ └── StringAttachment.php ├── Provider │ ├── EmailSendProcessor.php │ ├── EntityNotificationConfigurationProvider.php │ ├── EntityNotificationConfigurationProviderInterface.php │ ├── NotificationActivityListProvider.php │ └── NotificationAttachmentProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── routing.yml │ │ │ └── system_configuration.yml │ │ └── services.yml │ ├── public │ │ └── css │ │ │ └── scss │ │ │ └── main.scss │ ├── translations │ │ └── messages.en.yml │ └── views │ │ └── Notification │ │ ├── Thread │ │ └── notificationItem.html.twig │ │ └── js │ │ └── activityItemTemplate.js.twig ├── Tests │ └── Functional │ │ └── Email │ │ └── SendProcessorTest.php └── Workflow │ └── SendNotificationAction.php ├── NotificationMessageBundle ├── Async │ ├── ProcessNotificationMessageProcessor.php │ └── Topic │ │ └── ProcessNotificationMessageTopic.php ├── Controller │ ├── AjaxNotificationMessageController.php │ └── NotificationMessageController.php ├── Cron │ └── NotificationMessageCleanupCommand.php ├── Datagrid │ ├── ActionPermissionProvider.php │ └── Extension │ │ └── MassAction │ │ ├── ResolveMassAction.php │ │ └── ResolveMassActionHandler.php ├── DependencyInjection │ ├── Configuration.php │ └── MarelloNotificationMessageExtension.php ├── Entity │ ├── NotificationMessage.php │ └── Repository │ │ └── NotificationMessageRepository.php ├── Event │ ├── CreateNotificationMessageEvent.php │ └── ResolveNotificationMessageEvent.php ├── EventListener │ └── NotificationMessageEventListener.php ├── Factory │ ├── NotificationMessageContextFactory.php │ └── NotificationMessageFactory.php ├── Form │ └── Type │ │ └── NotificationMessageGroupConfigType.php ├── MarelloNotificationMessageBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── LoadNotificationMessageResolvedData.php │ │ │ ├── LoadNotificationMessageSourceData.php │ │ │ └── LoadNotificationMessageTypeData.php │ └── Schema │ │ ├── MarelloNotificationMessageBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloNotificationMessageBundle.php │ │ └── v1_1 │ │ └── MarelloNotificationMessageBundle.php ├── Model │ └── NotificationMessageContext.php ├── Provider │ ├── NotificationMessageEntityNameProvider.php │ ├── NotificationMessageResolvedInterface.php │ ├── NotificationMessageSourceInterface.php │ └── NotificationMessageTypeInterface.php ├── README.md ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── eventlisteners.yml │ │ ├── jsmodules.yml │ │ ├── mq_topics.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ ├── system_configuration.yml │ │ │ └── twig.yml │ │ └── services.yml │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ └── main.scss │ │ ├── js │ │ │ └── app │ │ │ │ └── views │ │ │ │ └── sidebar-widget │ │ │ │ └── notification-messages │ │ │ │ ├── notification-messages-content-view.js │ │ │ │ └── notification-messages-setup-view.js │ │ ├── sidebar_widgets │ │ │ └── notification_messages │ │ │ │ ├── css │ │ │ │ └── styles.scss │ │ │ │ ├── img │ │ │ │ ├── icon-notification-message.png │ │ │ │ └── icon.ico │ │ │ │ ├── js │ │ │ │ └── widget.js │ │ │ │ └── widget.yml │ │ └── templates │ │ │ └── sidebar-widget │ │ │ └── notification-messages │ │ │ ├── notification-messages-content-view.html │ │ │ └── notification-messages-setup-view.html │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── notificationMessage.en.yml │ └── views │ │ ├── Form │ │ └── fields.html.twig │ │ └── NotificationMessage │ │ ├── Datagrid │ │ └── Property │ │ │ └── alertType.html.twig │ │ ├── index.html.twig │ │ ├── view.html.twig │ │ └── widget │ │ └── notificationMessagesWidget.html.twig └── Tests │ ├── Functional │ ├── Controller │ │ └── NotificationMessageControllerTest.php │ └── DataFixtures │ │ └── LoadNotificationMessagesData.php │ └── Unit │ ├── Datagrid │ ├── ActionPermissionProviderTest.php │ └── Extension │ │ └── MassAction │ │ └── ResolveMassActionHandlerTest.php │ └── EventListener │ └── NotificationMessageEventListenerTest.php ├── OrderBundle ├── Controller │ ├── OrderAjaxController.php │ ├── OrderController.php │ ├── OrderDashboardController.php │ └── OrderShipmentLabelController.php ├── Converter │ ├── BasicOrderPaymentLineItemConverter.php │ ├── BasicOrderShippingLineItemConverter.php │ ├── OrderPaymentLineItemConverterInterface.php │ ├── OrderShippingLineItemConverterInterface.php │ └── ShippingPricesConverter.php ├── Datagrid │ └── OrderActionPermissionProvider.php ├── DependencyInjection │ ├── Compiler │ │ ├── EmailTwigSandboxConfigurationPass.php │ │ └── OrderItemDataProvidersPass.php │ ├── Configuration.php │ └── MarelloOrderExtension.php ├── Entity │ ├── Order.php │ ├── OrderAwareInterface.php │ ├── OrderItem.php │ └── Repository │ │ ├── OrderItemRepository.php │ │ └── OrderRepository.php ├── Event │ ├── OrderItemStatusUpdateEvent.php │ ├── OrderItemsForNotificationEvent.php │ ├── OrderPaymentContextBuildingEvent.php │ ├── OrderShippingContextBuildingEvent.php │ └── ProductAvailableInventoryValidationEvent.php ├── EventListener │ ├── Datagrid │ │ └── OrderGridAddressFilterListener.php │ ├── Doctrine │ │ ├── OrderInventoryAllocationListener.php │ │ ├── OrderItemOriginalPriceListener.php │ │ ├── OrderItemProductUnitListener.php │ │ ├── OrderItemStatusListener.php │ │ ├── OrderItemsDiscountListener.php │ │ ├── OrderOrganizationListener.php │ │ ├── OrderWorkflowStartListener.php │ │ └── PendingOrderStatusListener.php │ ├── OrderCreatedNotificationSender.php │ ├── OrderViewListener.php │ └── Workflow │ │ └── PurchaseOrderWorkflowCompletedListener.php ├── Factory │ ├── OrderPaymentContextFactory.php │ └── OrderShippingContextFactory.php ├── Form │ ├── DataTransformer │ │ ├── ProductToSkuTransformer.php │ │ └── TaxCodeToCodeTransformer.php │ ├── EventListener │ │ ├── CurrencySubscriber.php │ │ ├── OrderItemPurchasePriceSubscriber.php │ │ └── OrderTotalsSubscriber.php │ └── Type │ │ ├── AbstractOrderAddressType.php │ │ ├── OrderBillingAddressType.php │ │ ├── OrderItemCollectionType.php │ │ ├── OrderItemType.php │ │ ├── OrderShippingAddressType.php │ │ ├── OrderTotalPaidType.php │ │ ├── OrderType.php │ │ ├── OrderUpdateType.php │ │ └── WidgetOrderItemStatusesSelectType.php ├── MarelloOrderBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── AddOrderPaidTemplate.php │ │ │ ├── LoadDashboardData.php │ │ │ ├── LoadEmailTemplatesData.php │ │ │ ├── LoadOrderItemStatusData.php │ │ │ ├── LoadOrderStatusData.php │ │ │ ├── UpdateCurrentOrderItemsWithOrganization.php │ │ │ ├── UpdateCustomerWithShippingAddress.php │ │ │ ├── UpdateEmailTemplatesHtmlEscapeTags.php │ │ │ ├── UpdateEmailTemplatesProductUnit.php │ │ │ ├── UpdateOrderEmailTemplatesWithDiscountAmount.php │ │ │ ├── UpdateOrderEmailTemplatesWithShippingMethodAndType.php │ │ │ ├── UpdateOrderTemplatesForWaitingForSupplyNeeds.php │ │ │ ├── UpdateSystemConfigValues.php │ │ │ └── data │ │ │ ├── .DS_Store │ │ │ └── emails │ │ │ ├── marello_order_accepted_confirmation.html.twig │ │ │ ├── marello_order_cancelled.html.twig │ │ │ ├── marello_order_credited.html.twig │ │ │ ├── marello_order_invoiced.html.twig │ │ │ ├── marello_order_paid.html.twig │ │ │ ├── marello_order_payment_reminder.html.twig │ │ │ ├── marello_order_shipped_confirmation.html.twig │ │ │ ├── marello_order_shipping_prepared.html.twig │ │ │ └── marello_order_shipping_prepared_warehouse.html.twig │ └── Schema │ │ ├── MarelloOrderBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloOrderBundle.php │ │ ├── v1_1 │ │ └── MarelloOrderBundle.php │ │ ├── v1_10 │ │ └── MarelloOrderBundle.php │ │ ├── v1_11 │ │ └── MarelloOrderBundle.php │ │ ├── v1_12 │ │ └── MarelloOrderBundle.php │ │ ├── v1_13 │ │ └── MarelloOrderBundle.php │ │ ├── v1_13_2 │ │ └── MarelloOrderBundle.php │ │ ├── v1_2 │ │ └── MarelloOrderBundle.php │ │ ├── v1_3 │ │ └── MarelloOrderBundle.php │ │ ├── v1_4 │ │ └── MarelloOrderBundle.php │ │ ├── v1_5 │ │ └── MarelloOrderBundle.php │ │ ├── v1_6 │ │ └── MarelloOrderBundle.php │ │ ├── v1_7 │ │ └── MarelloOrderBundle.php │ │ ├── v1_8 │ │ └── MarelloOrderBundle.php │ │ ├── v1_8_1 │ │ └── MarelloOrderBundle.php │ │ ├── v1_8_2 │ │ └── MarelloOrderBundle.php │ │ ├── v1_9 │ │ └── MarelloOrderBundle.php │ │ ├── v3_1 │ │ └── MarelloOrderBundle.php │ │ ├── v3_1_1 │ │ └── MarelloOrderBundle.php │ │ ├── v3_1_2 │ │ └── MarelloOrderBundle.php │ │ ├── v3_1_3 │ │ └── MarelloOrderBundle.php │ │ ├── v3_1_4 │ │ └── MarelloOrderBundle.php │ │ ├── v3_1_5 │ │ └── MarelloOrderBundle.php │ │ ├── v3_1_6 │ │ ├── MarelloOrderBundle.php │ │ └── UpdateEntityConfigExtendClassQuery.php │ │ ├── v3_1_7 │ │ └── MarelloOrderBundle.php │ │ ├── v3_1_8 │ │ └── MarelloOrderBundle.php │ │ └── v3_1_9 │ │ ├── UpdateOrderItemTable.php │ │ └── UpdateVariantHashColumnTable.php ├── Model │ ├── DiscountAwareInterface.php │ ├── OrderItemStatusesInterface.php │ ├── OrderItemTypeInterface.php │ ├── OrderStatusesInterface.php │ ├── QuantityAwareInterface.php │ └── WorkflowNameProviderInterface.php ├── Provider │ ├── Dashboard │ │ ├── OrderDashboardOrderItemsByStatusProvider.php │ │ ├── OrderDashboardStatisticProvider.php │ │ ├── OrderStatisticsCurrencyNumberFormatter.php │ │ └── OrderStatisticsCurrencyNumberProcessor.php │ ├── OrderAddressFormChangesProvider.php │ ├── OrderCompanyCustomerFormChangesProvider.php │ ├── OrderEntityNameProvider.php │ ├── OrderItem │ │ ├── AbstractOrderItemFormChangesProvider.php │ │ ├── OrderItemDashboardStatisticProvider.php │ │ ├── OrderItemFormChangesProvider.php │ │ ├── OrderItemFormChangesProviderInterface.php │ │ ├── OrderItemsSubtotalProvider.php │ │ └── ShippingPreparedOrderItemsForNotificationProvider.php │ ├── OrderItemStatusesChoicesProvider.php │ ├── OrderLocalizationProvider.php │ ├── OrderNotificationConfigurationProvider.php │ ├── OrderShippingServiceDataProvider.php │ ├── PossiblePaymentMethodsProvider.php │ ├── PossibleShippingMethodsProvider.php │ └── Totals │ │ ├── DiscountSubtotalProvider.php │ │ ├── OrderTotalsProvider.php │ │ └── ShippingCostSubtotalProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── eventlisteners.yml │ │ ├── form.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── dashboards.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── placeholders.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ ├── system_configuration.yml │ │ │ ├── twig.yml │ │ │ ├── workflows.yml │ │ │ └── workflows │ │ │ │ ├── order_b2c_workflow_1.yml │ │ │ │ ├── order_b2c_workflow_1 │ │ │ │ ├── attributes.yml │ │ │ │ ├── steps.yml │ │ │ │ ├── transition_definitions.yml │ │ │ │ └── transitions.yml │ │ │ │ ├── order_b2c_workflow_2.yml │ │ │ │ └── order_b2c_workflow_2 │ │ │ │ ├── attributes.yml │ │ │ │ ├── steps.yml │ │ │ │ ├── transition_definitions.yml │ │ │ │ └── transitions.yml │ │ ├── services.yml │ │ ├── shipping.yml │ │ ├── validation.yml │ │ └── workflow_actions.yml │ ├── doc │ │ └── api │ │ │ ├── customer.md │ │ │ └── order.md │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ ├── main.scss │ │ │ │ ├── map.scss │ │ │ │ └── style.scss │ │ ├── img │ │ │ ├── first.svg │ │ │ ├── second.svg │ │ │ ├── third.svg │ │ │ └── tracking_id_ph.png │ │ ├── js │ │ │ └── app │ │ │ │ ├── components │ │ │ │ ├── order-item-comment-component.js │ │ │ │ └── order-product-component.js │ │ │ │ ├── templates │ │ │ │ ├── no-payment-methods-available.html │ │ │ │ ├── no-shipping-methods-available.html │ │ │ │ ├── possible-payment-methods-template.html │ │ │ │ ├── possible-shipping-methods-template.html │ │ │ │ ├── selected-payment-method-template.html │ │ │ │ └── selected-shipping-method-template.html │ │ │ │ └── views │ │ │ │ ├── order-address-view.js │ │ │ │ ├── order-billing-address-view.js │ │ │ │ ├── order-company-view.js │ │ │ │ ├── order-discount-view.js │ │ │ │ ├── order-item-view.js │ │ │ │ ├── order-items-view.js │ │ │ │ ├── order-totals-view.js │ │ │ │ ├── possible-payment-methods-view.js │ │ │ │ ├── possible-shipping-methods-view.js │ │ │ │ └── shipping-cost-view.js │ │ └── templates │ │ │ └── order │ │ │ ├── totals-no-data.html │ │ │ └── totals.html │ ├── translations │ │ ├── MarelloNotification.en.yml │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ ├── validators.en.yml │ │ └── workflows.en.yml │ └── views │ │ ├── Dashboard │ │ ├── heroProducts.html.twig │ │ ├── latestOrders.html.twig │ │ ├── orderStatistics.html.twig │ │ ├── orderitemsByStatus.html.twig │ │ ├── topProductsByItemsSold.html.twig │ │ ├── topProductsByRevenue.html.twig │ │ └── topRevenueChannels.html.twig │ │ ├── Form │ │ ├── companySelector.html.twig │ │ ├── customerAddressSelector.html.twig │ │ └── fields.html.twig │ │ ├── Js │ │ └── order_item_templates.js.twig │ │ └── Order │ │ ├── Datagrid │ │ └── Property │ │ │ ├── orderNumber.html.twig │ │ │ └── shippingMethod.html.twig │ │ ├── allocationsGrid.html.twig │ │ ├── create.html.twig │ │ ├── index.html.twig │ │ ├── macros.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ ├── view.html.twig │ │ └── widget │ │ ├── address.html.twig │ │ ├── productsByChannel.html.twig │ │ └── updateAddress.html.twig ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── OrderJsonApiTest.php │ │ │ ├── requests │ │ │ │ ├── order_create_with_existing_customer.yml │ │ │ │ └── order_create_with_new_customer.yml │ │ │ └── responses │ │ │ │ ├── cget_order_list.yml │ │ │ │ ├── get_order_by_id.yml │ │ │ │ └── get_order_by_orderNumber.yml │ │ ├── Controller │ │ │ ├── OrderAjaxControllerTest.php │ │ │ ├── OrderControllerTest.php │ │ │ └── OrderOnDemandWorkflowTest.php │ │ ├── DataFixtures │ │ │ ├── LoadOrderData.php │ │ │ ├── LoadOrderWorkflowData.php │ │ │ └── dictionaries │ │ │ │ ├── order_data.csv │ │ │ │ └── order_items.csv │ │ ├── EventListener │ │ │ └── Doctrine │ │ │ │ └── OrderWorkflowStartListenerTest.php │ │ └── Form │ │ │ └── DataTransformer │ │ │ ├── ProductToSkuTransformerTest.php │ │ │ └── TaxCodeToCodeTransformerTest.php │ └── Unit │ │ ├── DependencyInjection │ │ └── Compiler │ │ │ └── OrderItemDataProvidersPassTest.php │ │ ├── Entity │ │ ├── OrderItemTest.php │ │ └── OrderTest.php │ │ ├── EventListener │ │ └── Doctrine │ │ │ └── OrderWorkflowStartListenerTest.php │ │ ├── Provider │ │ ├── DiscountSubtotalProviderTest.php │ │ ├── OrderAddressFormChangesProviderTest.php │ │ ├── OrderCompanyCustomerFormChangesProviderTest.php │ │ ├── OrderDashboardOrderItemsByStatusProviderTest.php │ │ ├── OrderItem │ │ │ └── OrderItemFormChangesProviderTest.php │ │ ├── OrderItemsSubtotalProviderTest.php │ │ └── OrderLocalizationProviderTest.php │ │ ├── Stub │ │ └── StatusEnumClassStub.php │ │ ├── Twig │ │ └── OrderExtensionTest.php │ │ └── Validator │ │ ├── AvailableInventoryValidatorTest.php │ │ └── Constraints │ │ └── AvailableInventoryConstraintTest.php ├── Twig │ └── OrderExtension.php ├── Validator │ ├── AvailableInventoryValidator.php │ └── Constraints │ │ └── AvailableInventoryConstraint.php └── Workflow │ ├── OrderCancelAction.php │ ├── OrderShipAction.php │ └── OrderTransitionAction.php ├── POSBundle ├── Api │ ├── Model │ │ └── Login.php │ └── Processor │ │ └── HandleLogin.php ├── DependencyInjection │ └── MarelloPOSExtension.php ├── EventListener │ ├── Doctrine │ │ └── OnPOSOrderCreateListener.php │ └── Workflow │ │ ├── PosOrderAllocationWorkflowListener.php │ │ └── PosOrderWorkflowListener.php ├── MarelloPOSBundle.php ├── Migrations │ └── Data │ │ └── ORM │ │ ├── LoadPOSRolesData.php │ │ └── LoadSalesChannelPOSTypeData.php ├── Resources │ ├── config │ │ ├── eventlisteners.yml │ │ ├── oro │ │ │ ├── api.yml │ │ │ ├── bundles.yml │ │ │ ├── workflows.yml │ │ │ └── workflows │ │ │ │ ├── order_pos.yml │ │ │ │ └── order_pos │ │ │ │ ├── attributes.yml │ │ │ │ ├── steps.yml │ │ │ │ ├── transition_definitions.yml │ │ │ │ └── transitions.yml │ │ └── services.yml │ ├── doc │ │ └── api │ │ │ └── pos_user_api.md │ └── translations │ │ └── workflows.en.yml └── Tests │ └── Functional │ ├── Api │ ├── POSUserApiTest.php │ └── requests │ │ ├── pos_userapi_login.yml │ │ └── pos_userapi_login_fail.yml │ └── DataFixtures │ └── LoadUserData.php ├── PackingBundle ├── Controller │ └── PackingSlipController.php ├── DependencyInjection │ └── MarelloPackingExtension.php ├── Entity │ ├── PackingSlip.php │ └── PackingSlipItem.php ├── Event │ ├── AfterPackingSlipCreationEvent.php │ └── BeforePackingSlipCreationEvent.php ├── EventListener │ ├── CreatePackingSlipEventListener.php │ ├── Datagrid │ │ ├── GridAddressFilterListener.php │ │ └── PackingslipItemsBatchNumbersColumnListener.php │ └── Doctrine │ │ └── PackingSlipItemStatusListener.php ├── Mapper │ ├── AbstractPackingSlipMapper.php │ ├── MapperInterface.php │ └── OrderToPackingSlipMapper.php ├── MarelloPackingBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── SendPackingSlipEmailTemplate.php │ │ │ ├── UpdateCurrentPackingSlipItemsWithOrganization.php │ │ │ └── data │ │ │ └── email_templates │ │ │ └── marello_send_packing_slip.html.twig │ └── Schema │ │ ├── MarelloPackingBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloPackingBundle.php │ │ ├── v1_1 │ │ └── MarelloPackingBundle.php │ │ ├── v1_2 │ │ └── MarelloPackingBundle.php │ │ ├── v1_3 │ │ └── MarelloPackingBundle.php │ │ ├── v1_4 │ │ └── UpdatePackingSlipItemTable.php │ │ ├── v1_4_1 │ │ └── UpdatePackingSlipTable.php │ │ ├── v1_4_2 │ │ └── UpdatePackingSlipTable.php │ │ ├── v1_4_3 │ │ └── UpdatePackingSlipAndItemTable.php │ │ └── v1_4_4 │ │ └── UpdatePackingSlipItemTable.php ├── Pdf │ ├── Request │ │ └── PackingSlipPdfRequestHandler.php │ └── Table │ │ └── PackingSlipTableProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── app.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ └── routing.yml │ │ └── services.yml │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── pdf.en.yml │ └── views │ │ ├── PackingSlip │ │ ├── Datagrid │ │ │ └── inventoryBatches.html.twig │ │ ├── index.html.twig │ │ └── view.html.twig │ │ └── Pdf │ │ └── packingSlip.html.twig └── Tests │ ├── Functional │ ├── Controller │ │ └── PackingSlipControllerTest.php │ └── DataFixtures │ │ ├── LoadPackingSlipData.php │ │ └── dictionaries │ │ ├── order_data.csv │ │ └── order_items.csv │ └── Unit │ ├── Entity │ ├── PackingSlipItemTest.php │ └── PackingSlipTest.php │ ├── EventListener │ └── CreatePackingSlipEventListenerTest.php │ └── Mapper │ └── OrderToPackingSlipMapperTest.php ├── PaymentBundle ├── Action │ └── Handler │ │ ├── AddPaymentActionHandler.php │ │ └── PaymentMethodsConfigsRuleToggleStatusActionHandler.php ├── Checker │ ├── PaymentMethodEnabledByIdentifierChecker.php │ ├── PaymentMethodEnabledByIdentifierCheckerInterface.php │ ├── PaymentRuleEnabledChecker.php │ └── PaymentRuleEnabledCheckerInterface.php ├── Condition │ ├── AbstractPaymentMethodHasPaymentRules.php │ ├── HasApplicablePaymentMethods.php │ ├── PaymentMethodHasEnabledPaymentRules.php │ └── PaymentMethodHasPaymentRules.php ├── Context │ ├── Builder │ │ ├── Basic │ │ │ ├── BasicPaymentContextBuilder.php │ │ │ └── Factory │ │ │ │ └── BasicPaymentContextBuilderFactory.php │ │ ├── Factory │ │ │ └── PaymentContextBuilderFactoryInterface.php │ │ └── PaymentContextBuilderInterface.php │ ├── Converter │ │ ├── Basic │ │ │ └── BasicPaymentContextToRulesValueConverter.php │ │ └── PaymentContextToRulesValueConverterInterface.php │ ├── Factory │ │ ├── CompositeSupportsEntityPaymentContextFactory.php │ │ ├── Exception │ │ │ └── UnsupportedEntityException.php │ │ └── SupportsEntityPaymentContextFactoryInterface.php │ ├── LineItem │ │ ├── Builder │ │ │ ├── Basic │ │ │ │ ├── BasicPaymentLineItemBuilder.php │ │ │ │ └── Factory │ │ │ │ │ └── BasicPaymentLineItemBuilderFactory.php │ │ │ ├── Factory │ │ │ │ └── PaymentLineItemBuilderFactoryInterface.php │ │ │ └── PaymentLineItemBuilderInterface.php │ │ └── Collection │ │ │ ├── Doctrine │ │ │ ├── DoctrinePaymentLineItemCollection.php │ │ │ └── Factory │ │ │ │ └── DoctrinePaymentLineItemCollectionFactory.php │ │ │ ├── Factory │ │ │ └── PaymentLineItemCollectionFactoryInterface.php │ │ │ └── PaymentLineItemCollectionInterface.php │ ├── PaymentContext.php │ ├── PaymentContextFactoryInterface.php │ ├── PaymentContextInterface.php │ ├── PaymentLineItem.php │ └── PaymentLineItemInterface.php ├── Controller │ ├── PaymentAjaxController.php │ ├── PaymentController.php │ └── PaymentMethodsConfigsRuleController.php ├── DependencyInjection │ ├── Compiler │ │ ├── CompositePaymentMethodProviderCompilerPass.php │ │ └── TwigSandboxConfigurationPass.php │ ├── Configuration.php │ └── MarelloPaymentExtension.php ├── Entity │ ├── Payment.php │ ├── PaymentMethodAwareInterface.php │ ├── PaymentMethodConfig.php │ ├── PaymentMethodsConfigsRule.php │ ├── PaymentMethodsConfigsRuleDestination.php │ ├── PaymentMethodsConfigsRuleDestinationPostalCode.php │ └── Repository │ │ ├── PaymentMethodConfigRepository.php │ │ └── PaymentMethodsConfigsRuleRepository.php ├── Event │ ├── ApplicablePaymentMethodViewEvent.php │ └── PaymentMethodConfigDataEvent.php ├── EventListener │ ├── PaymentCreationListener.php │ └── PaymentRuleViewMethodTemplateListener.php ├── ExpressionLanguage │ └── DecoratedProductLineItemFactory.php ├── Form │ ├── DataTransformer │ │ └── DestinationPostalCodeTransformer.php │ ├── EventSubscriber │ │ ├── DestinationCollectionTypeSubscriber.php │ │ ├── MethodConfigCollectionSubscriber.php │ │ └── MethodConfigSubscriber.php │ ├── Handler │ │ ├── PaymentCreateHandler.php │ │ ├── PaymentMethodsConfigsRuleHandler.php │ │ └── PaymentUpdateHandler.php │ └── Type │ │ ├── PaymentCreateType.php │ │ ├── PaymentMethodConfigCollectionType.php │ │ ├── PaymentMethodConfigType.php │ │ ├── PaymentMethodSelectType.php │ │ ├── PaymentMethodsConfigsRuleDestinationType.php │ │ ├── PaymentMethodsConfigsRuleType.php │ │ └── PaymentUpdateType.php ├── Formatter │ └── PaymentMethodLabelFormatter.php ├── MarelloPaymentBundle.php ├── Method │ ├── Config │ │ ├── ParameterBag │ │ │ └── AbstractParameterBagPaymentConfig.php │ │ └── PaymentConfigInterface.php │ ├── Event │ │ ├── BasicMethodRemovalEventDispatcher.php │ │ ├── BasicMethodRenamingEventDispatcher.php │ │ ├── MethodRemovalEvent.php │ │ ├── MethodRemovalEventDispatcherInterface.php │ │ ├── MethodRenamingEvent.php │ │ └── MethodRenamingEventDispatcherInterface.php │ ├── EventListener │ │ ├── IntegrationRemovalListener.php │ │ ├── MethodRemovalListener.php │ │ ├── MethodRenamingListener.php │ │ └── PaymentMethodDisableIntegrationListener.php │ ├── Factory │ │ └── IntegrationPaymentMethodFactoryInterface.php │ ├── Handler │ │ ├── BasicPaymentMethodDisableHandler.php │ │ ├── PaymentMethodDisableHandlerInterface.php │ │ └── RulesPaymentMethodDisableHandlerDecorator.php │ ├── PaymentMethodIconAwareInterface.php │ ├── PaymentMethodInterface.php │ ├── PaymentMethodViewCollection.php │ ├── PaymentMethodViewFactory.php │ ├── Provider │ │ ├── AbstractPaymentMethodProvider.php │ │ ├── CompositePaymentMethodProvider.php │ │ ├── Integration │ │ │ └── ChannelPaymentMethodProvider.php │ │ ├── PaymentMethodProvider.php │ │ └── PaymentMethodProviderInterface.php │ └── RemotePaymentMethod.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ └── LoadPaymentStatusData.php │ └── Schema │ │ ├── MarelloPaymentBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloPaymentBundle.php │ │ └── v2_0 │ │ └── MarelloPaymentBundle.php ├── Model │ ├── LineItemOptionModel.php │ └── Surcharge.php ├── Provider │ ├── BasicPaymentMethodChoicesProvider.php │ ├── BasicPaymentMethodsViewsProvider.php │ ├── EnabledPaymentMethodChoicesProviderDecorator.php │ ├── FormChanges │ │ ├── AvailableCurrenciesFormChangesProvider.php │ │ └── AvailablePaymentMethodsFormChangesProvider.php │ ├── MethodsConfigsRule │ │ └── Context │ │ │ ├── Basic │ │ │ └── BasicMethodsConfigsRulesByContextProvider.php │ │ │ ├── MethodsConfigsRulesByContextProviderInterface.php │ │ │ └── RegardlessDestination │ │ │ └── RegardlessDestinationMethodsConfigsRulesByContextProvider.php │ ├── PaymentMethodChoicesProviderInterface.php │ └── PaymentMethodsViewsProviderInterface.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form_types.yml │ │ ├── jsmodules.yml │ │ ├── mass_action.yml │ │ ├── oro │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ ├── main.scss │ │ │ │ ├── payment-methods-grid.scss │ │ │ │ └── style.scss │ │ └── js │ │ │ └── app │ │ │ └── views │ │ │ ├── payment-method-view.js │ │ │ ├── payment-rule-method-view.js │ │ │ ├── payment-source-view.js │ │ │ └── total-paid-view.js │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Action │ │ └── payment_popup.html.twig │ │ ├── Form │ │ ├── fields.html.twig │ │ └── paymentMethodSelector.html.twig │ │ ├── Payment │ │ ├── Datagrid │ │ │ ├── paymentMethodWithOptions.html.twig │ │ │ └── paymentMethodWithoutOptions.html.twig │ │ ├── create.html.twig │ │ ├── index.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ └── PaymentMethodsConfigsRule │ │ ├── Datagrid │ │ ├── configurations.html.twig │ │ └── destinations.html.twig │ │ ├── index.html.twig │ │ ├── macros.html.twig │ │ ├── paymentMethodWithOptions.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig ├── RuleFiltration │ ├── Basic │ │ └── BasicMethodsConfigsRulesFiltrationService.php │ └── MethodsConfigsRulesFiltrationServiceInterface.php ├── Tests │ ├── Functional │ │ ├── Controller │ │ │ └── PaymentMethodsConfigsRuleControllerTest.php │ │ ├── DataFixtures │ │ │ ├── LoadPaymentMethodConfigsWithFakeMethods.php │ │ │ ├── LoadPaymentMethodsConfigsRules.php │ │ │ ├── LoadPaymentMethodsConfigsRulesWithConfigs.php │ │ │ ├── LoadUserData.php │ │ │ └── data │ │ │ │ ├── payment_method_configs_with_fake_methods.yml │ │ │ │ ├── payment_methods_configs_rules.yml │ │ │ │ └── payment_methods_configs_rules_with_configs.yml │ │ ├── Entity │ │ │ └── Repository │ │ │ │ ├── PaymentMethodConfigRepositoryTest.php │ │ │ │ └── PaymentMethodsConfigsRuleRepositoryTest.php │ │ └── Helper │ │ │ └── PaymentTermIntegrationTrait.php │ └── Unit │ │ ├── Checker │ │ ├── PaymentMethodEnabledByIdentifierCheckerTest.php │ │ └── PaymentRuleEnabledCheckerTest.php │ │ ├── Condition │ │ ├── HasApplicablePaymentMethodsTest.php │ │ ├── PaymentMethodHasPaymentRulesTest.php │ │ └── ToStringStub.php │ │ ├── Context │ │ ├── AbstractPaymentLineItemTest.php │ │ ├── Builder │ │ │ └── Basic │ │ │ │ ├── BasicPaymentContextBuilderTest.php │ │ │ │ └── Factory │ │ │ │ └── BasicPaymentContextBuilderFactoryTest.php │ │ ├── LineItem │ │ │ ├── Builder │ │ │ │ └── Basic │ │ │ │ │ ├── BasicPaymentLineItemBuilderTest.php │ │ │ │ │ └── Factory │ │ │ │ │ └── BasicPaymentLineItemBuilderFactoryTest.php │ │ │ └── Collection │ │ │ │ └── ArrayCollectionDoctrine │ │ │ │ ├── DoctrinePaymentLineItemCollectionFactoryTest.php │ │ │ │ └── DoctrinePaymentLineItemCollectionTest.php │ │ ├── PaymentContextMockTrait.php │ │ ├── PaymentContextTest.php │ │ └── PaymentLineItemTest.php │ │ ├── Converter │ │ └── Basic │ │ │ └── PaymentContextToRuleValuesConverterTest.php │ │ ├── Entity │ │ ├── PaymentMethodConfigTest.php │ │ ├── PaymentMethodsConfigsRuleDestinationPostalCodeTest.php │ │ ├── PaymentMethodsConfigsRuleDestinationTest.php │ │ ├── PaymentMethodsConfigsRuleMockTrait.php │ │ └── PaymentMethodsConfigsRuleTest.php │ │ ├── Method │ │ ├── CompositePaymentMethodProviderTest.php │ │ ├── Event │ │ │ ├── BasicMethodRemovalEventDispatcherTest.php │ │ │ ├── BasicMethodRenamingEventDispatcherTest.php │ │ │ ├── MethodRemovalEventTest.php │ │ │ └── MethodRenamingEventTest.php │ │ ├── EventListener │ │ │ ├── IntegrationRemovalListenerTest.php │ │ │ ├── MethodRenamingListenerTest.php │ │ │ └── PaymentMethodDisableIntegrationListenerTest.php │ │ ├── Handler │ │ │ └── RulesPaymentMethodDisableHandlerDecoratorTest.php │ │ ├── PaymentMethodViewCollectionTest.php │ │ ├── PaymentMethodViewFactoryTest.php │ │ └── Provider │ │ │ └── ChannelPaymentMethodProviderTest.php │ │ ├── Provider │ │ ├── BasicPaymentMethodChoicesProviderTest.php │ │ ├── EnabledPaymentMethodChoicesProviderDecoratorTest.php │ │ ├── MethodsConfigsRule │ │ │ └── Context │ │ │ │ ├── Basic │ │ │ │ └── BasicMethodsConfigsRulesByContextProviderTest.php │ │ │ │ └── RegardlessDestination │ │ │ │ └── RegardlessDestinationMethodsConfigsRulesByContextProviderTest.php │ │ └── Stub │ │ │ ├── PaymentMethodProviderStub.php │ │ │ └── PaymentMethodStub.php │ │ └── RuleFiltration │ │ └── Basic │ │ └── BasicMethodsConfigsRulesFiltrationServiceTest.php ├── Twig │ └── PaymentMethodExtension.php └── Validator │ ├── Constraints │ ├── PaymentStatus.php │ └── TotalPaid.php │ ├── PaymentStatusValidator.php │ └── TotalPaidValidator.php ├── PaymentTermBundle ├── Controller │ └── PaymentTermController.php ├── Datagrid │ └── PaymentTermActionPermissionProvider.php ├── DependencyInjection │ ├── Configuration.php │ └── MarelloPaymentTermExtension.php ├── Entity │ ├── MarelloPaymentTermSettings.php │ ├── PaymentTerm.php │ └── Repository │ │ ├── MarelloPaymentTermSettingsRepository.php │ │ └── PaymentTermRepository.php ├── EventListener │ └── PaymentTermMethodViewListener.php ├── Form │ ├── Handler │ │ └── PaymentTermFormHandler.php │ └── Type │ │ ├── PaymentTermChoiceType.php │ │ ├── PaymentTermSelectType.php │ │ ├── PaymentTermSettingsType.php │ │ └── PaymentTermType.php ├── Integration │ ├── PaymentTermChannelType.php │ └── PaymentTermTransport.php ├── MarelloPaymentTermBundle.php ├── Method │ ├── Factory │ │ └── PaymentTermMethodFromChannelFactory.php │ ├── PaymentTermMethod.php │ └── Provider │ │ └── PaymentTermMethodProvider.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ └── LoadPaymentTermIntegration.php │ └── Schema │ │ ├── MarelloPaymentTermBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloPaymentTermBundle.php │ │ └── v1_1 │ │ └── MarelloPaymentTermBundle.php ├── Provider │ ├── PaymentTermDeletePermissionProvider.php │ └── PaymentTermProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ └── system_configuration.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── public │ │ └── img │ │ │ └── payment-term-logo.png │ ├── translations │ │ └── messages.en.yml │ └── views │ │ └── PaymentTerm │ │ ├── Datagrid │ │ ├── label.html.twig │ │ └── term.html.twig │ │ ├── index.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── PaymentTermJsonApiTest.php │ │ │ ├── requests │ │ │ │ ├── payment_term_create.yml │ │ │ │ └── payment_term_update.yml │ │ │ └── responses │ │ │ │ ├── cget_payment_terms_list.yml │ │ │ │ └── get_payment_term_by_id.yml │ │ ├── Controller │ │ │ ├── PaymentTermControllerTest.php │ │ │ └── SystemConfigurationControllerTest.php │ │ └── DataFixtures │ │ │ ├── LoadPaymentTermIntegration.php │ │ │ └── LoadPaymentTermsData.php │ └── Unit │ │ ├── DependencyInjection │ │ └── MarelloPaymentTermExtensionTest.php │ │ ├── Entity │ │ └── PaymentTermTest.php │ │ ├── Form │ │ └── Type │ │ │ ├── PaymentTermChoiceTypeTest.php │ │ │ ├── PaymentTermSelectTypeTest.php │ │ │ └── PaymentTermTypeTest.php │ │ └── Provider │ │ ├── PaymentTermDeletePermissionProviderTest.php │ │ └── PaymentTermProviderTest.php └── Twig │ └── PaymentTermExtension.php ├── PdfBundle ├── Controller │ └── DownloadController.php ├── DependencyInjection │ ├── CompilerPass │ │ ├── DocumentTableProviderPass.php │ │ ├── RenderParameterProviderPass.php │ │ └── RequestHandlersPass.php │ ├── Configuration.php │ └── MarelloPdfExtension.php ├── Exception │ └── PaperSizeNotSetException.php ├── Factory │ └── PdfWriterFactory.php ├── Form │ ├── Configurator │ │ └── DocumentConfigurator.php │ └── Type │ │ └── WorkflowTransitionSelectType.php ├── Lib │ └── View │ │ ├── EmptyDisplayLine.php │ │ ├── EmptyLine.php │ │ ├── Line.php │ │ └── Table.php ├── MarelloPdfBundle.php ├── Provider │ ├── DocumentTableProvider.php │ ├── LogoPathProvider.php │ ├── Render │ │ ├── ConfigValuesProvider.php │ │ ├── EntityProvider.php │ │ ├── LocalizationProvider.php │ │ └── LogoRenderParameterProvider.php │ ├── RenderParameterProviderInterface.php │ ├── RenderParametersProvider.php │ ├── TableProviderInterface.php │ └── TableSizeProvider.php ├── Renderer │ ├── HtmlRenderer.php │ └── TwigRenderer.php ├── Request │ ├── CompositePdfRequestHandler.php │ └── PdfRequestHandlerInterface.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── oro │ │ │ ├── bundles.yml │ │ │ ├── routing.yml │ │ │ └── system_configuration.yml │ │ └── services.yml │ ├── translations │ │ ├── messages.en.yml │ │ └── pdf.en.yml │ └── views │ │ └── Download │ │ └── util.html.twig ├── Tests │ └── Unit │ │ ├── DependencyInjection │ │ ├── CompilerPass │ │ │ ├── DocumentTableProviderPassTest.php │ │ │ └── RenderParameterProviderPassTest.php │ │ └── MarelloPdfExtensionTest.php │ │ ├── Factory │ │ └── PdfWriterFactoryTest.php │ │ ├── Lib │ │ └── View │ │ │ ├── EmptyDisplayLineTest.php │ │ │ ├── EmptyLineTest.php │ │ │ ├── LineTest.php │ │ │ └── TableTest.php │ │ ├── Mock │ │ └── SalesChannelAwareModel.php │ │ ├── Provider │ │ ├── DocumentTableProviderTest.php │ │ ├── Logo │ │ │ ├── LogoPathProviderTest.php │ │ │ ├── LogoRenderParameterProviderTest.php │ │ │ └── data │ │ │ │ └── public │ │ │ │ └── resized_image │ │ │ │ └── logoprovider_resized.txt │ │ ├── Render │ │ │ ├── ConfigValuesProviderTest.php │ │ │ └── EntityProviderTest.php │ │ ├── RenderParametersProviderTest.php │ │ └── TableSizeProviderTest.php │ │ ├── Renderer │ │ ├── HtmlRendererTest.php │ │ └── data │ │ │ ├── multiple.txt │ │ │ └── single.txt │ │ ├── Twig │ │ └── Extension │ │ │ └── DocumentTableExtensionTest.php │ │ └── Workflow │ │ ├── Action │ │ └── SendEmailTemplateAttachmentActionTest.php │ │ └── Condition │ │ └── IsSendEmailTransitionTest.php ├── Twig │ └── Extension │ │ └── DocumentTableExtension.php └── Workflow │ ├── Action │ └── SendEmailTemplateAttachmentAction.php │ └── Condition │ └── IsSendEmailTransition.php ├── PricingBundle ├── Controller │ └── PricingController.php ├── DependencyInjection │ ├── Compiler │ │ └── SubtotalProviderPass.php │ ├── Configuration.php │ └── MarelloPricingExtension.php ├── Entity │ ├── AssembledChannelPriceList.php │ ├── AssembledPriceList.php │ ├── BasePrice.php │ ├── PriceDatesTrait.php │ ├── PriceListInterface.php │ ├── PriceType.php │ ├── ProductChannelPrice.php │ ├── ProductPrice.php │ └── Repository │ │ └── ProductChannelPriceRepository.php ├── EventListener │ └── Datagrid │ │ ├── ChannelPricesDatagridListener.php │ │ ├── PriceVATLabelAwareGridListener.php │ │ └── PricesDatagridListener.php ├── Form │ ├── EventListener │ │ ├── ChannelPricingSubscriber.php │ │ ├── CurrencySubscriber.php │ │ └── PricingSubscriber.php │ └── Type │ │ ├── AssembledChannelPriceListCollectionType.php │ │ ├── AssembledChannelPriceListType.php │ │ ├── AssembledPriceListCollectionType.php │ │ ├── AssembledPriceListType.php │ │ ├── ProductChannelPriceCollectionType.php │ │ ├── ProductChannelPriceType.php │ │ ├── ProductPriceCollectionType.php │ │ └── ProductPriceType.php ├── Formatter │ └── LabelVATAwareFormatter.php ├── MarelloPricingBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── CopyExistingPricesToPriceLists.php │ │ │ └── LoadPriceTypes.php │ └── Schema │ │ ├── MarelloPricingBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloPricingBundle.php │ │ ├── v1_1 │ │ ├── MarelloPricingAssembledPriceListsTables.php │ │ ├── MarelloPricingPriceTypeTable.php │ │ ├── MarelloPricingUpdateTablesWithDefaultPriceType.php │ │ └── MarelloPricingUpdateTablesWithForeignKeys.php │ │ └── v1_2 │ │ └── MarelloPricingStartEndSpecialPrice.php ├── Model │ ├── CurrencyAwareInterface.php │ ├── PriceTypeInterface.php │ └── PricingAwareInterface.php ├── Provider │ ├── ChannelPriceProvider.php │ └── CurrencyProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── api.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── routing.yml │ │ │ ├── system_configuration.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── doc │ │ └── api │ │ │ ├── assembledpricelist.md │ │ │ ├── pricetype.md │ │ │ └── productprice.md │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ └── main.scss │ │ └── js │ │ │ └── app │ │ │ └── views │ │ │ ├── channel-pricing-item-view.js │ │ │ └── channel-pricing-items-view.js │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Datagrid │ │ └── Property │ │ │ ├── defaultChannelPrices.html.twig │ │ │ ├── defaultPrices.html.twig │ │ │ ├── msrpPrices.html.twig │ │ │ ├── specialChannelPriceTiming.html.twig │ │ │ ├── specialChannelPrices.html.twig │ │ │ ├── specialPriceTiming.html.twig │ │ │ └── specialPrices.html.twig │ │ └── Form │ │ └── fields.html.twig ├── Subtotal │ ├── Model │ │ ├── LineItemsAwareInterface.php │ │ ├── Subtotal.php │ │ └── SubtotalAwareInterface.php │ └── Provider │ │ ├── AbstractSubtotalProvider.php │ │ ├── CompositeSubtotalProvider.php │ │ ├── SubtotalProviderInterface.php │ │ └── TotalAwareSubtotalProviderInterface.php ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── AssembledChannelPriceListJsonApiTest.php │ │ │ ├── AssembledPriceListJsonApiTest.php │ │ │ ├── ProductPriceJsonApiTest.php │ │ │ ├── requests │ │ │ │ ├── assembledchannelpricelist_create.yml │ │ │ │ ├── assembledpricelist_create.yml │ │ │ │ ├── assembledpricelist_without_price_create.yml │ │ │ │ └── product_without_prices.yml │ │ │ └── responses │ │ │ │ ├── cget_assembled_channel_price_list.yml │ │ │ │ ├── cget_assembled_price_list.yml │ │ │ │ ├── cget_channel_pricelist_by_channel.yml │ │ │ │ ├── cget_channel_pricelist_by_sku.yml │ │ │ │ ├── cget_prices.yml │ │ │ │ ├── get_pricelist_by_product_sku.yml │ │ │ │ └── get_prices_by_price_type_default.yml │ │ ├── Controller │ │ │ └── PricingControllerTest.php │ │ └── DataFixtures │ │ │ ├── LoadProductChannelPricingData.php │ │ │ └── dictionaries │ │ │ └── product_channel_prices.csv │ └── Unit │ │ ├── DependencyInjection │ │ └── Compiler │ │ │ └── SubtotalProviderPassTest.php │ │ ├── EventListener │ │ └── Datagrid │ │ │ └── PriceVATLabelAwareGridListenerTest.php │ │ ├── Formatter │ │ └── LabelVATAwareFormatterTest.php │ │ ├── Provider │ │ └── ChannelPriceProviderTest.php │ │ ├── Subtotal │ │ ├── Model │ │ │ └── SubtotalTest.php │ │ └── Provider │ │ │ └── CompositeSubtotalProviderTest.php │ │ └── Twig │ │ └── PricingExtensionTest.php └── Twig │ └── PricingExtension.php ├── ProductBundle ├── Api │ └── Processor │ │ ├── HandleLabelForFieldConfig.php │ │ ├── HandleMediaUrl.php │ │ └── HandlePropertyLabels.php ├── Async │ ├── ProductFilesUpdateProcessor.php │ ├── ProductsAssignSalesChannelsProcessor.php │ └── Topic │ │ ├── ProductFilesUpdateTopic.php │ │ ├── ProductImageUpdateTopic.php │ │ └── ProductsAssignSalesChannelsTopic.php ├── Autocomplete │ └── SalesChannelProductHandler.php ├── Controller │ ├── ProductController.php │ └── VariantController.php ├── Datagrid │ ├── Extension │ │ └── MassAction │ │ │ └── SalesChannelsAssignMassAction.php │ └── ORM │ │ └── Query │ │ └── ProductsGridSqlWalker.php ├── DependencyInjection │ ├── Compiler │ │ ├── EmailTwigSandboxConfigurationPass.php │ │ └── ProductTypesPass.php │ ├── Configuration.php │ └── MarelloProductExtension.php ├── Duplicator │ ├── ProductDuplicator.php │ ├── SkuIncrementor.php │ └── SkuIncrementorInterface.php ├── Entity │ ├── Builder │ │ └── ProductFamilyBuilder.php │ ├── Manager │ │ └── ProductApiEntityManager.php │ ├── Product.php │ ├── ProductChannelTaxRelation.php │ ├── ProductInterface.php │ ├── ProductStatus.php │ ├── ProductSupplierRelation.php │ ├── Repository │ │ ├── ProductChannelTaxRelationRepository.php │ │ ├── ProductRepository.php │ │ └── ProductSupplierRelationRepository.php │ └── Variant.php ├── Event │ ├── AbstractProductDuplicateEvent.php │ ├── ProductDropshipEvent.php │ └── ProductDuplicateAfterEvent.php ├── EventListener │ ├── AttributeFormViewListener.php │ ├── CreateNotificationMessageAfterImportListener.php │ ├── Datagrid │ │ ├── AbstractProductsGridListener.php │ │ ├── ProductCategoriesColumnListener.php │ │ ├── ProductGridListener.php │ │ ├── ProductSalesChannelColumnListener.php │ │ └── ProductSupplierGridListener.php │ ├── Doctrine │ │ ├── ProductDropshipEventListener.php │ │ └── ProductUpdateInventoryRebalanceListener.php │ ├── ProductFilesUrlListener.php │ └── ProductSearchListener.php ├── Form │ ├── EventListener │ │ └── VariantSubscriber.php │ ├── Handler │ │ ├── ProductCreateStepOneHandler.php │ │ ├── ProductHandler.php │ │ ├── ProductVariantHandler.php │ │ └── ProductsSalesChannelsAssignHandler.php │ └── Type │ │ ├── ProductChannelTaxRelationCollectionType.php │ │ ├── ProductChannelTaxRelationType.php │ │ ├── ProductCollectionType.php │ │ ├── ProductSalesChannelAwareSelectType.php │ │ ├── ProductSelectCollectionType.php │ │ ├── ProductSelectType.php │ │ ├── ProductStepOneType.php │ │ ├── ProductSupplierRelationCollectionType.php │ │ ├── ProductSupplierRelationType.php │ │ ├── ProductSupplierSelectType.php │ │ ├── ProductType.php │ │ ├── ProductTypeSelectType.php │ │ ├── ProductVariantType.php │ │ └── ProductsAssignSalesChannelsType.php ├── ImportExport │ ├── Configuration │ │ ├── AssembledChannelPriceListConfiguration.php │ │ ├── AssembledPriceListConfiguration.php │ │ └── ProductConfiguration.php │ ├── DataConverter │ │ ├── AssembledChannelPriceListDataConverter.php │ │ ├── AssembledPriceListDataConverter.php │ │ └── ProductDataConverter.php │ ├── EventListener │ │ └── ProductImportExportSubscriber.php │ ├── Helper │ │ └── ProductAttributesHelper.php │ ├── Serializer │ │ ├── ProductImageNormalizer.php │ │ └── ProductNormalizer.php │ ├── Strategy │ │ ├── AbstractAssembledPriceListStrategy.php │ │ ├── AssembledChannelPriceListStrategy.php │ │ ├── AssembledPriceListStrategy.php │ │ └── ProductStrategy.php │ └── TemplateFixture │ │ ├── AssembledChannelPriceListFixture.php │ │ ├── AssembledPriceListFixture.php │ │ ├── AttributeFamilyFixture.php │ │ └── ProductFixture.php ├── Manager │ └── ProductFileManager.php ├── MarelloProductBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── AddARFileToDefaultFamily.php │ │ │ ├── AddAttributesToDefaultFamily.php │ │ │ ├── LoadDefaultProductFamilyData.php │ │ │ ├── LoadProductStatusData.php │ │ │ ├── LoadProductUnitData.php │ │ │ ├── MakeProductAttributesTrait.php │ │ │ ├── UpdateExistingAttributesConfig.php │ │ │ ├── UpdateExistingProductsWithAttributeFamily.php │ │ │ ├── UpdateExistingProductsWithCategoriesCodes.php │ │ │ ├── UpdateExistingProductsWithChannelsCodes.php │ │ │ ├── UpdateExistingProductsWithDefaultProductType.php │ │ │ ├── UpdateExistingProductsWithDefaultWeight.php │ │ │ ├── UpdateExistingProductsWithLocalizedName.php │ │ │ └── UpdateProductDatagridAttributeConfig.php │ └── Schema │ │ ├── MarelloProductBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloProductBundle.php │ │ ├── v1_1 │ │ └── MarelloProductBundle.php │ │ ├── v1_10 │ │ └── UpdateProductConfigWithTagsEnabled.php │ │ ├── v1_11 │ │ └── MarelloProductBundle.php │ │ ├── v1_12 │ │ └── MarelloProductBundle.php │ │ ├── v1_13 │ │ └── MarelloProductBundle.php │ │ ├── v1_14 │ │ └── UpdateAttachmentFileTable.php │ │ ├── v1_15 │ │ ├── MarelloProductBundle.php │ │ └── UpdateImportExportConfigs.php │ │ ├── v1_15_1 │ │ └── AddARFileField.php │ │ ├── v1_2 │ │ └── MarelloProductBundle.php │ │ ├── v1_3 │ │ └── MarelloProductBundle.php │ │ ├── v1_4 │ │ └── MarelloProductBundle.php │ │ ├── v1_5 │ │ └── MarelloProductBundle.php │ │ ├── v1_6 │ │ ├── MarelloProductBundle.php │ │ └── UpdateEntityConfigQuery.php │ │ ├── v1_7 │ │ └── UpdateAttachmentFieldConfigForProductImage.php │ │ ├── v1_8 │ │ └── RemovePriceAndCostColumns.php │ │ └── v1_9 │ │ ├── AddLocalizedNamesToProduct.php │ │ └── UpdateAttachmentFieldConfigForProductImage.php ├── Model │ ├── ProductAwareInterface.php │ ├── ProductHolderInterface.php │ ├── ProductType.php │ └── ProductTypeInterface.php ├── Provider │ ├── ActionGroupRegistryProvider.php │ ├── OrderItemProductUnitProvider.php │ ├── ProductTaxCodeProvider.php │ └── ProductTypesProvider.php ├── Resources │ ├── config │ │ ├── batch_jobs.yml │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── importexport.yml │ │ ├── jsmodules.yml │ │ ├── mq_topics.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── app.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── dashboards.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── placeholders.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ ├── system_configuration.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ ├── services_api.yml │ │ └── validation.yml │ ├── doc │ │ ├── api │ │ │ ├── product.md │ │ │ └── variant.md │ │ └── registering_product_type.md │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ └── main.scss │ │ ├── img │ │ │ └── no_image_available.jpg │ │ └── js │ │ │ └── app │ │ │ ├── components │ │ │ ├── channel-aware-select-create-component-mixin.js │ │ │ ├── select-create-inline-type-async-component.js │ │ │ ├── select-create-inline-type-component.js │ │ │ └── select2-autocomplete-sales-channel-aware-component.js │ │ │ └── views │ │ │ ├── product-channel-taxcode-view.js │ │ │ └── product-channel-taxcodes-view.js │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Form │ │ └── fields.html.twig │ │ ├── Product │ │ ├── Autocomplete │ │ │ ├── result.html.twig │ │ │ └── selection.html.twig │ │ ├── Datagrid │ │ │ ├── Property │ │ │ │ ├── categories.html.twig │ │ │ │ ├── channels.html.twig │ │ │ │ ├── image.html.twig │ │ │ │ └── suppliers.html.twig │ │ │ └── productSku.html.twig │ │ ├── assignSalesChannels.html.twig │ │ ├── createStepOne.html.twig │ │ ├── createStepTwo.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ ├── view.html.twig │ │ └── widget │ │ │ ├── image.html.twig │ │ │ ├── info.html.twig │ │ │ └── price.html.twig │ │ ├── Variant │ │ ├── Form │ │ │ └── fields.html.twig │ │ ├── addVariantButton.html.twig │ │ ├── addVariantLink.html.twig │ │ ├── update.html.twig │ │ └── widget │ │ │ └── info.html.twig │ │ └── macros.html.twig ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── ProductJsonApiTest.php │ │ │ ├── requests │ │ │ │ ├── product_create.yml │ │ │ │ └── product_update.yml │ │ │ └── responses │ │ │ │ ├── cget_product_list.yml │ │ │ │ ├── get_product_by_id.yml │ │ │ │ └── get_product_by_sku.yml │ │ ├── Controller │ │ │ ├── ProductAttributeControllerTest.php │ │ │ ├── ProductAttributeFamilyControllerTest.php │ │ │ ├── ProductControllerTest.php │ │ │ └── VariantControllerTest.php │ │ ├── DataFixtures │ │ │ └── LoadProductData.php │ │ └── Entity │ │ │ ├── ProductTest.php │ │ │ └── Repository │ │ │ └── ProductRepositoryTest.php │ └── Unit │ │ ├── Entity │ │ ├── ProductChannelTaxRelationTest.php │ │ ├── ProductStatusTest.php │ │ ├── ProductSupplierRelationTest.php │ │ └── ProductTest.php │ │ ├── Provider │ │ ├── ProductTaxCodeProviderTest.php │ │ └── ProductTypesProviderTest.php │ │ └── Twig │ │ ├── ProductExtensionTest.php │ │ └── ProductUnitExtensionTest.php ├── Twig │ ├── DynamicFieldsExtension.php │ ├── ProductExtension.php │ ├── ProductUnitExtension.php │ └── Provider │ │ └── ProductUnitVariablesProvider.php ├── Validator │ ├── Constraints │ │ └── ProductSupplierRelationsDropship.php │ └── ProductSupplierRelationsDropshipValidator.php └── VirtualFields │ ├── QueryDesigner │ ├── VirtualFieldsProductQueryDesigner.php │ └── VirtualFieldsSelectQueryConverter.php │ ├── VirtualFieldsProductDecorator.php │ └── VirtualFieldsProductDecoratorFactory.php ├── PurchaseOrderBundle ├── Controller │ └── PurchaseOrderController.php ├── Cron │ ├── PurchaseOrderAdviceCommand.php │ └── SendPurchaseOrderCommand.php ├── DependencyInjection │ ├── Configuration.php │ └── MarelloPurchaseOrderExtension.php ├── Entity │ ├── PurchaseOrder.php │ ├── PurchaseOrderItem.php │ └── Repository │ │ └── PurchaseOrderItemRepository.php ├── EventListener │ ├── Datagrid │ │ ├── PurchaseOrderGridListener.php │ │ └── PurchaseOrderItemCandidatesGridListener.php │ ├── Doctrine │ │ ├── ApplicableWorkflowsTrait.php │ │ ├── PurchaseOrderOnOrderOnDemandCreationListener.php │ │ ├── PurchaseOrderWarehouseListener.php │ │ └── PurchaseOrderWorkflowTransitListener.php │ └── SendScheduleChangeListener.php ├── Exception │ └── LogicException.php ├── Form │ ├── EventListener │ │ └── PurchaseOrderItemSubscriber.php │ ├── Handler │ │ ├── PurchaseOrderCreateHandler.php │ │ ├── PurchaseOrderCreateStepOneHandler.php │ │ └── PurchaseOrderUpdateHandler.php │ └── Type │ │ ├── PartialReceiveType.php │ │ ├── PurchaseOrderAdvisedItemCollectionType.php │ │ ├── PurchaseOrderCreateStepOneType.php │ │ ├── PurchaseOrderCreateStepTwoType.php │ │ ├── PurchaseOrderItemCollectionType.php │ │ ├── PurchaseOrderItemReceiveCollectionType.php │ │ ├── PurchaseOrderItemReceiveType.php │ │ ├── PurchaseOrderItemType.php │ │ ├── PurchaseOrderReceiveType.php │ │ └── PurchaseOrderType.php ├── MarelloPurchaseOrderBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── UpdateCurrentPurchaseOrderItemsWithOrganization.php │ │ │ ├── UpdateEmailTemplatesHtmlEscapeTags.php │ │ │ ├── UpdatePurchaseOrderSupplierEmailTemplates.php │ │ │ └── data │ │ │ └── emails │ │ │ ├── marello_purchase_order_advice.html.twig │ │ │ └── marello_purchase_order_supplier.html.twig │ └── Schema │ │ ├── MarelloPurchaseOrderBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_1 │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_2_1 │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_2_2 │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_2_3 │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_3 │ │ ├── AddColumns.php │ │ ├── AddForeignKeyForWarehouseIdColumn.php │ │ ├── FillDefaultWarehouseForExistingPurchaseOrders.php │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_3_1 │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_3_2 │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_3_3 │ │ └── MarelloPurchaseOrderBundle.php │ │ ├── v1_3_4 │ │ └── MarelloPurchaseOrderBundle.php │ │ └── v1_3_5 │ │ └── MarelloPurchaseOrderBundle.php ├── Processor │ └── NoteActivityProcessor.php ├── Provider │ └── PurchaseOrderCandidatesProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── eventlisteners.yml │ │ ├── form.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── api.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ ├── system_configuration.yml │ │ │ ├── twig.yml │ │ │ └── workflows.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── doc │ │ └── api │ │ │ └── purchaseorder.md │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ └── main.scss │ │ ├── js │ │ │ ├── app │ │ │ │ ├── components │ │ │ │ │ └── purchaseorder-product-component.js │ │ │ │ └── views │ │ │ │ │ ├── purchaseorder-item-view.js │ │ │ │ │ ├── purchaseorder-items-view.js │ │ │ │ │ └── purchaseorder-totals-view.js │ │ │ ├── datagrid │ │ │ │ └── marello-purchase-order-item-candidates-builder.js │ │ │ ├── multiple-entity.js │ │ │ └── multiple-entity │ │ │ │ ├── collection.js │ │ │ │ ├── model.js │ │ │ │ ├── templates │ │ │ │ ├── multiple-entities.html │ │ │ │ └── multiple-entity.html │ │ │ │ └── view.js │ │ └── templates │ │ │ └── purchaseorder │ │ │ └── totals.html │ ├── translations │ │ ├── MarelloNotification.en.yml │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ ├── notificationMessage.en.yml │ │ ├── validators.en.yml │ │ └── workflows.en.yml │ └── views │ │ ├── Datagrid │ │ ├── Column │ │ │ └── dueDate.html.twig │ │ └── macros.html.twig │ │ ├── Form │ │ └── fields.html.twig │ │ └── PurchaseOrder │ │ ├── create.html.twig │ │ ├── createStepOne.html.twig │ │ ├── createStepTwo.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── selectProducts.html.twig │ │ ├── update.html.twig │ │ ├── view.html.twig │ │ └── widget │ │ ├── productsBySupplier.html.twig │ │ └── purchaseOrderCandidatesGrid.html.twig ├── Tests │ ├── Functional │ │ ├── Controller │ │ │ └── PurchaseOrderControllerTest.php │ │ ├── Cron │ │ │ └── PurchaseOrderAdviceCronTest.php │ │ ├── DataFixtures │ │ │ └── LoadPurchaseOrderData.php │ │ └── Entity │ │ │ └── Repository │ │ │ └── PurchaseOrderItemRepositoryTest.php │ └── Unit │ │ ├── EventListener │ │ └── Doctrine │ │ │ └── PurchaseOrderOnOrderOnDemandCreationListenerTest.php │ │ ├── Form │ │ └── Type │ │ │ └── PurchaseOrderItemTypeTest.php │ │ ├── Processor │ │ └── NoteActivityProcessorTest.php │ │ └── Workflow │ │ └── Action │ │ ├── ReceivePurchaseOrderActionTest.php │ │ └── TransitCompleteActionTest.php ├── Twig │ └── PurchaseOrderExtension.php ├── Validator │ ├── Constraints │ │ ├── PurchaseOrderConstraint.php │ │ └── PurchaseOrderItemConstraint.php │ ├── PurchaseOrderItemValidator.php │ └── PurchaseOrderValidator.php └── Workflow │ └── Action │ ├── ReceivePurchaseOrderAction.php │ ├── SendPurchaseOrderAction.php │ └── TransitCompleteAction.php ├── RefundBundle ├── Calculator │ └── RefundBalanceCalculator.php ├── Controller │ ├── RefundAjaxController.php │ └── RefundController.php ├── Datagrid │ └── RefundActionPermissionProvider.php ├── DependencyInjection │ ├── Compiler │ │ └── RefundItemDataProvidersPass.php │ └── MarelloRefundExtension.php ├── Entity │ ├── Refund.php │ └── RefundItem.php ├── Form │ ├── DataTransformer │ │ └── TaxCodeToIdTransformer.php │ ├── EventListener │ │ ├── CurrencySubscriber.php │ │ └── RefundTotalsSubscriber.php │ └── Type │ │ ├── AdditionalRefundCollectionType.php │ │ ├── AdditionalRefundType.php │ │ ├── OrderItemRefundCollectionType.php │ │ ├── OrderItemRefundType.php │ │ └── RefundType.php ├── MarelloRefundBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── LoadEmailTemplatesData.php │ │ │ ├── UpdateCurrentRefundItemsWithOrganization.php │ │ │ ├── UpdateEmailTemplates.php │ │ │ └── data │ │ │ └── emails │ │ │ └── marello_refund_credited.html.twig │ └── Schema │ │ ├── MarelloRefundBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloRefundBundle.php │ │ ├── v1_1 │ │ └── MarelloRefundBundle.php │ │ ├── v1_2 │ │ └── MarelloRefundBundle.php │ │ ├── v1_3 │ │ └── MarelloRefundBundle.php │ │ ├── v1_4 │ │ └── MarelloRefundBundle.php │ │ ├── v1_4_1 │ │ └── MarelloRefundBundle.php │ │ └── v1_4_2 │ │ └── MarelloRefundBundle.php ├── Provider │ ├── RefundBalanceTotalsProvider.php │ └── RefundTotalsProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ ├── twig.yml │ │ │ └── workflows.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── doc │ │ └── api │ │ │ └── refund.md │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ ├── main.scss │ │ │ │ └── style.scss │ │ ├── js │ │ │ └── app │ │ │ │ └── views │ │ │ │ ├── refund-balance-view.js │ │ │ │ ├── refund-totals-view.js │ │ │ │ └── refund-view.js │ │ └── templates │ │ │ └── refund │ │ │ ├── balance.html │ │ │ └── totals.html │ ├── translations │ │ ├── MarelloNotification.en.yml │ │ ├── messages.en.yml │ │ ├── validators.en.yml │ │ └── workflows.en.yml │ └── views │ │ ├── Form │ │ └── fields.html.twig │ │ └── Refund │ │ ├── create.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig ├── Tests │ ├── Functional │ │ ├── Controller │ │ │ └── RefundControllerTest.php │ │ └── DataFixtures │ │ │ └── LoadRefundData.php │ └── Unit │ │ └── Twig │ │ └── RefundExtensionTest.php ├── Twig │ └── RefundExtension.php ├── Validator │ ├── Constraints │ │ └── RefundBalanceConstraint.php │ └── RefundBalanceValidator.php └── Workflow │ └── Actions │ └── CreateRefundAction.php ├── ReportBundle ├── Controller │ └── ReportController.php ├── DependencyInjection │ ├── Configuration.php │ └── MarelloReportExtension.php ├── EventListener │ └── Datagrid │ │ └── ReturnsReturnedByReasonReportListener.php ├── MarelloReportBundle.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── oro │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── navigation.yml │ │ │ └── routing.yml │ │ └── services.yml │ ├── translations │ │ └── messages.en.yml │ └── views │ │ └── Report │ │ └── index.html.twig └── Tests │ └── Functional │ └── Controller │ └── ReportControllerTest.php ├── ReturnBundle ├── Controller │ └── ReturnController.php ├── DependencyInjection │ ├── CompilerPass │ │ └── ReturnBusinessRuleRegistryCompilerPass.php │ ├── Configuration.php │ └── MarelloReturnExtension.php ├── Entity │ ├── Repository │ │ ├── ReturnEntityRepository.php │ │ └── ReturnItemRepository.php │ ├── ReturnEntity.php │ └── ReturnItem.php ├── EventListener │ ├── Action │ │ └── Condition │ │ │ └── ReturnAllowedActionListener.php │ └── ReturnCreatedNotificationSender.php ├── Factory │ └── ReturnShippingContextFactory.php ├── Form │ ├── DataTransformer │ │ └── OrderToOrderNumberTransformer.php │ ├── EventListener │ │ ├── ReturnItemTypeSubscriber.php │ │ └── ReturnTypeSubscriber.php │ └── Type │ │ ├── ReturnItemCollectionType.php │ │ ├── ReturnItemType.php │ │ ├── ReturnType.php │ │ └── ReturnUpdateType.php ├── Manager │ ├── BusinessRuleInterface.php │ ├── BusinessRuleManager.php │ ├── ReturnBusinessRuleRegistry.php │ └── Rules │ │ ├── MarelloProductWarranty.php │ │ └── MarelloRorWarranty.php ├── MarelloReturnBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── LoadEmailTemplatesData.php │ │ │ ├── LoadReceivedWrongProductData.php │ │ │ ├── LoadReturnItemStatusData.php │ │ │ ├── LoadReturnReasonsData.php │ │ │ ├── UpdateCurrentReturnItemsWithOrganization.php │ │ │ ├── UpdateEmailTemplatesHtmlEscapeTags.php │ │ │ ├── UpdateEmailTemplatesProductUnit.php │ │ │ └── data │ │ │ └── emails │ │ │ ├── marello_return_created.html.twig │ │ │ ├── marello_return_inspection_not_ok.html.twig │ │ │ ├── marello_return_not_verified.html.twig │ │ │ ├── marello_return_received.html.twig │ │ │ ├── marello_return_reminder.html.twig │ │ │ └── marello_return_shipping_label_warehouse.html.twig │ └── Schema │ │ ├── MarelloReturnBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloReturnBundle.php │ │ ├── v1_1 │ │ └── MarelloReturnBundle.php │ │ ├── v1_2 │ │ └── MarelloReturnBundle.php │ │ ├── v1_3 │ │ └── MarelloReturnBundle.php │ │ ├── v1_4 │ │ └── MarelloReturnBundle.php │ │ └── v1_5 │ │ └── MarelloReturnBundle.php ├── Provider │ ├── ReturnNotificationConfigurationProvider.php │ └── ReturnShippingServiceDataProvider.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── bundles.yml │ │ │ ├── dashboards.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── processes.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ ├── system_configuration.yml │ │ │ ├── twig.yml │ │ │ └── workflows.yml │ │ ├── services.yml │ │ ├── shipping.yml │ │ ├── validation.yml │ │ └── workflow_actions.yml │ ├── doc │ │ └── api │ │ │ ├── return.md │ │ │ └── return_item.md │ ├── translations │ │ ├── MarelloNotification.en.yml │ │ ├── messages.en.yml │ │ └── workflows.en.yml │ └── views │ │ ├── Form │ │ └── fields.html.twig │ │ └── Return │ │ ├── create.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig ├── Tests │ ├── Functional │ │ ├── Api │ │ │ ├── ReturnJsonApiTest.php │ │ │ ├── requests │ │ │ │ └── return_create.yml │ │ │ └── responses │ │ │ │ ├── cget_return_list.yml │ │ │ │ └── get_return_by_id.yml │ │ ├── Controller │ │ │ └── ReturnControllerTest.php │ │ └── DataFixtures │ │ │ ├── LoadReturnData.php │ │ │ └── LoadReturnWorkflowData.php │ └── Unit │ │ ├── Twig │ │ └── ReturnExtensionTest.php │ │ └── Validator │ │ └── ReturnItemValidatorTest.php ├── Twig │ └── ReturnExtension.php ├── Util │ └── ReturnHelper.php ├── Validator │ ├── Constraints │ │ ├── ReturnEntityConstraint.php │ │ └── ReturnItemConstraint.php │ ├── ReturnEntityValidator.php │ └── ReturnItemValidator.php └── Workflow │ └── InspectionAction.php ├── RuleBundle ├── Datagrid │ ├── Extension │ │ └── MassAction │ │ │ ├── Actions │ │ │ └── StatusEnableMassAction.php │ │ │ └── StatusMassActionHandler.php │ └── RuleActionsVisibilityProvider.php ├── DependencyInjection │ └── MarelloRuleExtension.php ├── Entity │ ├── Rule.php │ ├── RuleInterface.php │ └── RuleOwnerInterface.php ├── ExpressionLanguage │ └── CountExpressionLanguageFunction.php ├── Form │ └── Type │ │ └── RuleType.php ├── MarelloRuleBundle.php ├── Migrations │ └── Schema │ │ ├── MarelloRuleBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloRuleBundle.php │ │ ├── v1_1 │ │ └── MarelloRuleBundle.php │ │ └── v1_2 │ │ ├── MarelloRuleBundleAddIsSystemColumn.php │ │ └── MarelloRuleBundleDropSystemColumn.php ├── Resources │ ├── config │ │ ├── oro │ │ │ ├── bundles.yml │ │ │ └── entity.yml │ │ ├── services.yml │ │ └── validation.yml │ └── translations │ │ └── messages.en.yml ├── RuleFiltration │ ├── BasicRuleFiltrationService.php │ ├── EnabledRuleFiltrationServiceDecorator.php │ ├── ExpressionLanguageRuleFiltrationServiceDecorator.php │ ├── RuleFiltrationServiceInterface.php │ └── StopProcessingRuleFiltrationServiceDecorator.php ├── Tests │ ├── Functional │ │ └── DataFixtures │ │ │ ├── LoadRulesDataFixture.php │ │ │ └── data │ │ │ └── basic_rule.yml │ └── Unit │ │ ├── Datagrid │ │ └── RuleActionsVisibilityProviderTest.php │ │ ├── Entity │ │ └── RuleTest.php │ │ ├── Form │ │ └── Type │ │ │ └── RuleTypeTest.php │ │ └── RuleFiltration │ │ ├── BasicRuleFiltrationServiceTest.php │ │ ├── EnabledRuleFiltrationServiceTest.php │ │ └── StopProcessingRuleFiltrationServiceTest.php └── Validator │ └── Constraints │ ├── ExpressionLanguageSyntax.php │ └── ExpressionLanguageSyntaxValidator.php ├── SalesBundle ├── Acl │ └── Voter │ │ └── SalesChannelGroupVoter.php ├── Api │ └── Processor │ │ └── ComputeSalesChannelAddressField.php ├── Async │ ├── RebalanceSalesChannelGroupProcessor.php │ └── Topic │ │ └── RebalanceSalesChannelGroupTopic.php ├── Autocomplete │ ├── AbstractMultiConditionSalesChannelHandler.php │ ├── ActiveSalesChannelHandler.php │ ├── CurrencySalesChannelHandler.php │ ├── GroupSalesChannelHandler.php │ ├── SalesChannelForPosHandler.php │ ├── StoreSalesChannelHandler.php │ └── SystemGroupSalesChannelHandler.php ├── Condition │ └── HasValidIntegration.php ├── Config │ └── SalesChannelScopeManager.php ├── Controller │ ├── ConfigController.php │ ├── SalesChannelController.php │ ├── SalesChannelGroupController.php │ └── SalesChannelTypeController.php ├── Datagrid │ └── SalesChannelGroupActionPermissionProvider.php ├── DependencyInjection │ └── MarelloSalesExtension.php ├── Entity │ ├── Repository │ │ ├── SalesChannelGroupRepository.php │ │ ├── SalesChannelRepository.php │ │ └── SalesChannelTypeRepository.php │ ├── SalesChannel.php │ ├── SalesChannelGroup.php │ └── SalesChannelType.php ├── EventListener │ ├── Datagrid │ │ ├── SalesChannelGridListener.php │ │ └── SalesChannelGroupDatagridListener.php │ └── Doctrine │ │ ├── SalesChannelGroupInventoryRebalanceListener.php │ │ ├── SalesChannelGroupListener.php │ │ └── SalesChannelListener.php ├── Form │ ├── Converter │ │ └── SalesChannelTypeConverter.php │ ├── DataTransformer │ │ └── SalesChannelToCodeTransformer.php │ ├── EventListener │ │ ├── DefaultSalesChannelSubscriber.php │ │ └── SalesChannelFormSubscriber.php │ ├── Handler │ │ ├── SalesChannelGroupHandler.php │ │ └── SalesChannelHandler.php │ └── Type │ │ ├── AbstractSalesChannelMultiSelectType.php │ │ ├── SalesChannelCurrencyAwareSelectType.php │ │ ├── SalesChannelGroupSelectType.php │ │ ├── SalesChannelGroupType.php │ │ ├── SalesChannelMultiSelectType.php │ │ ├── SalesChannelSelectApiType.php │ │ ├── SalesChannelSelectType.php │ │ ├── SalesChannelType.php │ │ ├── SalesChannelTypeSelectType.php │ │ ├── SalesChannelTypeType.php │ │ ├── SystemGroupSalesChannelMultiselectType.php │ │ └── WidgetCurrencySelectType.php ├── MarelloSalesBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── AssignDefaultGroupForSalesChannels.php │ │ │ ├── LoadSalesChannelData.php │ │ │ ├── LoadSalesChannelGroupData.php │ │ │ └── LoadSalesChannelTypesData.php │ └── Schema │ │ ├── MarelloSalesBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloSalesBundle.php │ │ ├── v1_1 │ │ └── MarelloSalesBundle.php │ │ ├── v1_2 │ │ ├── MarelloSalesBundle.php │ │ ├── MarelloSalesBundleAddIsSystemColumn.php │ │ └── MarelloSalesBundleDropSystemColumn.php │ │ ├── v1_3 │ │ └── MarelloSalesBundle.php │ │ ├── v1_3_1 │ │ └── MarelloSalesBundle.php │ │ ├── v1_4 │ │ ├── AddChannelTypeTable.php │ │ └── AddForeignKey.php │ │ ├── v1_4_1 │ │ └── UpdateChannelTypeColumn.php │ │ └── v1_5 │ │ └── AddAssociatedSalesChannelRelation.php ├── Model │ ├── SalesChannelAwareInterface.php │ └── SalesChannelsAwareInterface.php ├── Placeholder │ └── PlaceholderFilter.php ├── Provider │ ├── BasicSalesChannelsChoicesProvider.php │ ├── ChannelProvider.php │ ├── EnabledSalesChannelsChoicesProviderDecorator.php │ ├── SalesChannelConfigurationFormProvider.php │ ├── SalesChannelLocalizationProvider.php │ └── SalesChannelsChoicesProviderInterface.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── jsmodules.yml │ │ ├── mq_topics.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── api.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── placeholders.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── doc │ │ └── api │ │ │ └── saleschannel.md │ ├── public │ │ └── js │ │ │ └── app │ │ │ └── components │ │ │ ├── currency-select-component.js │ │ │ ├── sales-channel-component.js │ │ │ ├── sales-channel-select-component.js │ │ │ ├── select2-autocomplete-currency-aware-component.js │ │ │ └── select2-autocomplete-system-group-sales-channels-component.js │ ├── translations │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Config │ │ ├── button.html.twig │ │ └── salesChannel.html.twig │ │ ├── Form │ │ └── fields.html.twig │ │ ├── SalesChannel │ │ ├── Autocomplete │ │ │ ├── result.html.twig │ │ │ └── selection.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ ├── SalesChannelGroup │ │ ├── Datagrid │ │ │ └── salesChannels.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ └── SalesChannelType │ │ ├── Autocomplete │ │ ├── result.html.twig │ │ └── selection.html.twig │ │ └── create.html.twig ├── Tests │ ├── Functional │ │ ├── Controller │ │ │ └── SalesChannelControllerTest.php │ │ ├── DataFixtures │ │ │ ├── LoadSalesChannelGroupData.php │ │ │ └── LoadSalesData.php │ │ ├── Entity │ │ │ └── Repository │ │ │ │ └── SalesChannelRepositoryTest.php │ │ └── Provider │ │ │ └── ChannelProviderTest.php │ └── Unit │ │ ├── Datagrid │ │ └── SalesChannelGroupActionPermissionProviderTest.php │ │ ├── Entity │ │ ├── SalesChannelGroupTest.php │ │ └── SalesChannelTest.php │ │ ├── EventListener │ │ ├── Datagrid │ │ │ └── SalesChannelGroupDatagridListenerTest.php │ │ └── Doctrine │ │ │ ├── SalesChannelGroupListenerTest.php │ │ │ └── SalesChannelListenerTest.php │ │ ├── Form │ │ └── Handler │ │ │ └── SalesChannelGroupHandlerTest.php │ │ ├── Provider │ │ └── SalesChannelLocalizationProviderTest.php │ │ └── Twig │ │ └── SalesExtensionTest.php └── Twig │ └── SalesExtension.php ├── ShippingBundle ├── Action │ └── Handler │ │ └── ShippingMethodsConfigsRuleToggleStatusActionHandler.php ├── Checker │ ├── ShippingMethodEnabledByIdentifierChecker.php │ ├── ShippingMethodEnabledByIdentifierCheckerInterface.php │ ├── ShippingRuleEnabledChecker.php │ └── ShippingRuleEnabledCheckerInterface.php ├── Condition │ ├── AbstractShippingMethodHasShippingRules.php │ ├── HasApplicableShippingMethods.php │ ├── ShippingMethodHasEnabledShippingRules.php │ └── ShippingMethodHasShippingRules.php ├── Context │ ├── Builder │ │ ├── Basic │ │ │ ├── BasicShippingContextBuilder.php │ │ │ └── Factory │ │ │ │ └── BasicShippingContextBuilderFactory.php │ │ ├── Factory │ │ │ └── ShippingContextBuilderFactoryInterface.php │ │ └── ShippingContextBuilderInterface.php │ ├── LineItem │ │ ├── Builder │ │ │ ├── Basic │ │ │ │ ├── BasicShippingLineItemBuilder.php │ │ │ │ └── Factory │ │ │ │ │ ├── BasicLineItemBuilderByLineItemFactory.php │ │ │ │ │ └── BasicShippingLineItemBuilderFactory.php │ │ │ ├── Factory │ │ │ │ ├── LineItemBuilderByLineItemFactoryInterface.php │ │ │ │ └── ShippingLineItemBuilderFactoryInterface.php │ │ │ └── ShippingLineItemBuilderInterface.php │ │ └── Collection │ │ │ ├── Doctrine │ │ │ ├── DoctrineShippingLineItemCollection.php │ │ │ └── Factory │ │ │ │ └── DoctrineShippingLineItemCollectionFactory.php │ │ │ ├── Factory │ │ │ └── ShippingLineItemCollectionFactoryInterface.php │ │ │ └── ShippingLineItemCollectionInterface.php │ ├── ShippingContext.php │ ├── ShippingContextCacheKeyGenerator.php │ ├── ShippingContextFactoryInterface.php │ ├── ShippingContextInterface.php │ ├── ShippingLineItem.php │ └── ShippingLineItemInterface.php ├── Controller │ └── ShippingMethodsConfigsRuleController.php ├── Converter │ ├── Basic │ │ └── ShippingContextToRulesValuesConverter.php │ └── ShippingContextToRulesValuesConverterInterface.php ├── DependencyInjection │ ├── CompilerPass │ │ ├── ShippingMethodsCompilerPass.php │ │ ├── ShippingServiceRegistryCompilerPass.php │ │ └── TwigSandboxConfigurationPass.php │ └── MarelloShippingExtension.php ├── Entity │ ├── HasShipmentTrait.php │ ├── Repository │ │ ├── ShippingMethodConfigRepository.php │ │ ├── ShippingMethodTypeConfigRepository.php │ │ └── ShippingMethodsConfigsRuleRepository.php │ ├── Shipment.php │ ├── ShippingMethodConfig.php │ ├── ShippingMethodTypeConfig.php │ ├── ShippingMethodsConfigsRule.php │ ├── ShippingMethodsConfigsRuleDestination.php │ ├── ShippingMethodsConfigsRuleDestinationPostalCode.php │ └── TrackingInfo.php ├── Event │ ├── ApplicableMethodsEvent.php │ └── ShippingMethodConfigDataEvent.php ├── EventListener │ ├── Cache │ │ └── ShippingRuleChangeListener.php │ ├── EntityDataAwareEventInterface.php │ └── ShippingRuleViewMethodTemplateListener.php ├── ExpressionLanguage │ └── DecoratedProductLineItemFactory.php ├── Form │ ├── DataTransformer │ │ └── DestinationPostalCodeTransformer.php │ ├── EventSubscriber │ │ ├── MethodConfigCollectionSubscriber.php │ │ ├── MethodConfigSubscriber.php │ │ └── MethodTypeConfigCollectionSubscriber.php │ ├── Handler │ │ └── ShippingMethodsConfigsRuleHandler.php │ └── Type │ │ ├── ShippingMethodConfigCollectionType.php │ │ ├── ShippingMethodConfigType.php │ │ ├── ShippingMethodSelectType.php │ │ ├── ShippingMethodTypeConfigCollectionType.php │ │ ├── ShippingMethodTypeConfigType.php │ │ ├── ShippingMethodsConfigsRuleDestinationType.php │ │ └── ShippingMethodsConfigsRuleType.php ├── Formatter │ └── ShippingMethodLabelFormatter.php ├── Integration │ ├── Manual │ │ ├── ManualIntegrationException.php │ │ ├── ManualShippingServiceDataFactory.php │ │ └── ManualShippingServiceIntegration.php │ ├── ShippingAwareInterface.php │ ├── ShippingServiceDataFactoryInterface.php │ ├── ShippingServiceDataProviderInterface.php │ ├── ShippingServiceIntegrationInterface.php │ ├── ShippingServiceRegistry.php │ └── UPS │ │ ├── Model │ │ ├── AccessRequest.php │ │ ├── Address.php │ │ ├── Package.php │ │ ├── Package │ │ │ ├── PackageWeight.php │ │ │ ├── PackagingType.php │ │ │ ├── ReferenceNumber.php │ │ │ └── UnitOfMeasurement.php │ │ ├── PaymentInformation.php │ │ ├── PaymentInformation │ │ │ ├── BillShipper.php │ │ │ └── Prepaid.php │ │ ├── RateInformation.php │ │ ├── Service.php │ │ ├── ShipFrom.php │ │ ├── ShipTo.php │ │ ├── Shipment.php │ │ ├── Shipper.php │ │ ├── XMLSerializable.php │ │ └── XmlSerializedModel.php │ │ ├── RequestBuilder │ │ ├── RequestBuilder.php │ │ ├── ShipmentAcceptRequestBuilder.php │ │ └── ShipmentConfirmRequestBuilder.php │ │ ├── UPSApi.php │ │ ├── UPSIntegrationException.php │ │ ├── UPSShippingServiceDataFactory.php │ │ └── UPSShippingServiceIntegration.php ├── MarelloShippingBundle.php ├── Method │ ├── CompositeShippingMethodProvider.php │ ├── Event │ │ ├── BasicMethodRemovalEventDispatcher.php │ │ ├── BasicMethodRenamingEventDispatcher.php │ │ ├── BasicMethodTypeRemovalEventDispatcher.php │ │ ├── MethodRemovalEvent.php │ │ ├── MethodRemovalEventDispatcherInterface.php │ │ ├── MethodRenamingEvent.php │ │ ├── MethodRenamingEventDispatcherInterface.php │ │ ├── MethodTypeRemovalEvent.php │ │ └── MethodTypeRemovalEventDispatcherInterface.php │ ├── EventListener │ │ ├── IntegrationRemovalListener.php │ │ ├── MethodAndTypeRemovalListener.php │ │ ├── MethodRenamingListener.php │ │ └── ShippingMethodDisableIntegrationListener.php │ ├── Exception │ │ └── InvalidArgumentException.php │ ├── Factory │ │ └── IntegrationShippingMethodFactoryInterface.php │ ├── Handler │ │ ├── BasicShippingMethodDisableHandler.php │ │ ├── RulesShippingMethodDisableHandlerDecorator.php │ │ └── ShippingMethodDisableHandlerInterface.php │ ├── PricesAwareShippingMethodInterface.php │ ├── Provider │ │ ├── Integration │ │ │ └── ChannelShippingMethodProvider.php │ │ ├── Label │ │ │ └── Type │ │ │ │ ├── BasicMethodTypeLabelsProvider.php │ │ │ │ └── MethodTypeLabelsProviderInterface.php │ │ └── Type │ │ │ └── NonDeletable │ │ │ ├── NonDeletableMethodTypeIdentifiersProviderInterface.php │ │ │ └── ShippingRulesNonDeletableMethodTypeIdentifiersProvider.php │ ├── ShippingMethodIconAwareInterface.php │ ├── ShippingMethodInterface.php │ ├── ShippingMethodProviderInterface.php │ ├── ShippingMethodTypeInterface.php │ ├── ShippingMethodViewCollection.php │ ├── ShippingMethodViewFactory.php │ ├── ShippingTrackingAwareInterface.php │ ├── TrackingAwareShippingMethodsProvider.php │ ├── TrackingAwareShippingMethodsProviderInterface.php │ └── Validator │ │ ├── Basic │ │ └── BasicShippingMethodValidator.php │ │ ├── EnabledShippingMethodsByRules │ │ └── EnabledShippingMethodsByRulesShippingMethodValidatorDecorator.php │ │ ├── Result │ │ ├── Error │ │ │ ├── Collection │ │ │ │ ├── Builder │ │ │ │ │ └── Common │ │ │ │ │ │ ├── CommonShippingMethodValidatorResultErrorCollectionBuilderInterface.php │ │ │ │ │ │ └── Doctrine │ │ │ │ │ │ └── DoctrineCommonShippingMethodValidatorResultErrorCollectionBuilder.php │ │ │ │ ├── Doctrine │ │ │ │ │ └── DoctrineShippingMethodValidatorResultErrorCollection.php │ │ │ │ └── ShippingMethodValidatorResultErrorCollectionInterface.php │ │ │ ├── Factory │ │ │ │ └── Common │ │ │ │ │ ├── CommonShippingMethodValidatorResultErrorFactoryInterface.php │ │ │ │ │ └── ParameterBag │ │ │ │ │ └── ParameterBagCommonShippingMethodValidatorResultErrorFactory.php │ │ │ ├── ParameterBag │ │ │ │ └── ParameterBagShippingMethodValidatorResultError.php │ │ │ └── ShippingMethodValidatorResultErrorInterface.php │ │ ├── Factory │ │ │ └── Common │ │ │ │ ├── CommonShippingMethodValidatorResultFactoryInterface.php │ │ │ │ └── ParameterBag │ │ │ │ └── ParameterBagCommonShippingMethodValidatorResultFactory.php │ │ ├── ParameterBag │ │ │ └── ParameterBagShippingMethodValidatorResult.php │ │ └── ShippingMethodValidatorResultInterface.php │ │ └── ShippingMethodValidatorInterface.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── AbstractMoveConfigValuesToSettings.php │ │ │ └── UpdateCurrentShipmentsWithOrganization.php │ └── Schema │ │ ├── MarelloShippingBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloShippingBundle.php │ │ ├── v1_1 │ │ └── MarelloShippingBundle.php │ │ ├── v1_2 │ │ └── MarelloShippingBundle.php │ │ ├── v1_3 │ │ └── MarelloShippingBundle.php │ │ ├── v1_3_1 │ │ └── UpdateMarelloTrackingInfoTable.php │ │ └── v1_3_2 │ │ └── UpdateMarelloShipmentTable.php ├── Provider │ ├── BasicShippingMethodChoicesProvider.php │ ├── Cache │ │ └── ShippingPriceCache.php │ ├── EnabledShippingMethodChoicesProviderDecorator.php │ ├── MethodsConfigsRule │ │ └── Context │ │ │ ├── Basic │ │ │ └── BasicMethodsConfigsRulesByContextProvider.php │ │ │ ├── MethodsConfigsRulesByContextProviderInterface.php │ │ │ └── RegardlessDestination │ │ │ └── RegardlessDestinationMethodsConfigsRulesByContextProvider.php │ ├── Price │ │ ├── EnabledMethodsShippingPriceProviderDecorator.php │ │ ├── ShippingPriceProvider.php │ │ └── ShippingPriceProviderInterface.php │ └── ShippingMethodChoicesProviderInterface.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── jsmodules.yml │ │ ├── mass_action.yml │ │ ├── method_event_listeners.yml │ │ ├── oro │ │ │ ├── actions.yml │ │ │ ├── api.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ ├── shipping_methods.yml │ │ └── validation.yml │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ ├── main.scss │ │ │ │ ├── shipping-methods-grid.scss │ │ │ │ └── style.scss │ │ └── js │ │ │ └── app │ │ │ └── views │ │ │ └── shipping-rule-method-view.js │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Form │ │ └── fields.html.twig │ │ └── ShippingMethodsConfigsRule │ │ ├── Datagrid │ │ ├── configurations.html.twig │ │ └── destinations.html.twig │ │ ├── index.html.twig │ │ ├── macros.html.twig │ │ ├── shippingMethodWithOptions.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig ├── RuleFiltration │ ├── Basic │ │ └── BasicMethodsConfigsRulesFiltrationService.php │ └── MethodsConfigsRulesFiltrationServiceInterface.php ├── Tests │ ├── Functional │ │ ├── Controller │ │ │ └── ShippingMethodsConfigsRuleControllerTest.php │ │ ├── DataFixtures │ │ │ ├── LoadShippingMethodConfigsWithFakeMethods.php │ │ │ ├── LoadShippingMethodTypeConfigsWithFakeTypes.php │ │ │ ├── LoadShippingMethodsConfigsRules.php │ │ │ ├── LoadShippingMethodsConfigsRulesWithConfigs.php │ │ │ ├── LoadUserData.php │ │ │ └── data │ │ │ │ ├── shipping_method_configs_with_fake_methods.yml │ │ │ │ ├── shipping_method_type_configs_with_fake_types.yml │ │ │ │ ├── shipping_methods_configs_rules.yml │ │ │ │ └── shipping_methods_configs_rules_with_configs.yml │ │ ├── Entity │ │ │ └── Repository │ │ │ │ ├── ShippingMethodConfigRepositoryTest.php │ │ │ │ ├── ShippingMethodTypeConfigRepositoryTest.php │ │ │ │ └── ShippingMethodsConfigsRuleRepositoryTest.php │ │ ├── Helper │ │ │ └── ManualShippingIntegrationTrait.php │ │ └── Integration │ │ │ ├── Manual │ │ │ ├── ManualShippingServiceDataFactoryTest.php │ │ │ └── ManualShippingServiceIntegrationTest.php │ │ │ └── UPS │ │ │ ├── RequestBuilder │ │ │ └── ShipmentConfirmRequestBuilderTest.php │ │ │ └── UPSShippingServiceDataFactoryTest.php │ └── Unit │ │ ├── Checker │ │ ├── ShippingMethodEnabledByIdentifierCheckerTest.php │ │ └── ShippingRuleEnabledCheckerTest.php │ │ ├── Condition │ │ ├── HasApplicableShippingMethodsTest.php │ │ ├── ShippingMethodHasShippingRulesTest.php │ │ └── ToStringStub.php │ │ ├── Context │ │ ├── AbstractShippingLineItemTest.php │ │ ├── Builder │ │ │ └── Basic │ │ │ │ ├── BasicShippingContextBuilderTest.php │ │ │ │ └── Factory │ │ │ │ └── BasicShippingContextBuilderFactoryTest.php │ │ ├── LineItem │ │ │ ├── Builder │ │ │ │ └── Basic │ │ │ │ │ ├── BasicShippingLineItemBuilderTest.php │ │ │ │ │ └── Factory │ │ │ │ │ ├── BasicLineItemBuilderByLineItemFactoryTest.php │ │ │ │ │ └── BasicShippingLineItemBuilderFactoryTest.php │ │ │ └── Collection │ │ │ │ └── ArrayCollectionDoctrine │ │ │ │ ├── DoctrineShippingLineItemCollectionFactoryTest.php │ │ │ │ └── DoctrineShippingLineItemCollectionTest.php │ │ ├── ShippingContextCacheKeyGeneratorTest.php │ │ ├── ShippingContextMockTrait.php │ │ ├── ShippingContextTest.php │ │ └── ShippingLineItemTest.php │ │ ├── Converter │ │ └── Basic │ │ │ └── ShippingContextToRuleValuesConverterTest.php │ │ ├── DependencyInjection │ │ └── CompilerPass │ │ │ └── ShippingServiceRegistryCompilerPassTest.php │ │ ├── Entity │ │ ├── ShippingMethodConfigTest.php │ │ ├── ShippingMethodTypeConfigTest.php │ │ ├── ShippingMethodsConfigsRuleDestinationPostalCodeTest.php │ │ ├── ShippingMethodsConfigsRuleDestinationTest.php │ │ ├── ShippingMethodsConfigsRuleMockTrait.php │ │ └── ShippingMethodsConfigsRuleTest.php │ │ ├── Integration │ │ └── ShippingServiceRegistryTest.php │ │ ├── Method │ │ ├── CompositeShippingMethodProviderTest.php │ │ ├── Event │ │ │ ├── BasicMethodRemovalEventDispatcherTest.php │ │ │ ├── BasicMethodRenamingEventDispatcherTest.php │ │ │ ├── BasicMethodTypeRemovalEventDispatcherTest.php │ │ │ ├── MethodRemovalEventTest.php │ │ │ ├── MethodRenamingEventTest.php │ │ │ └── MethodTypeRemovalEventTest.php │ │ ├── EventListener │ │ │ ├── IntegrationRemovalListenerTest.php │ │ │ ├── MethodRenamingListenerTest.php │ │ │ └── ShippingMethodDisableIntegrationListenerTest.php │ │ ├── Handler │ │ │ └── RulesShippingMethodDisableHandlerDecoratorTest.php │ │ ├── Provider │ │ │ ├── Integration │ │ │ │ └── ChannelShippingMethodProviderTest.php │ │ │ ├── Label │ │ │ │ └── Type │ │ │ │ │ └── BasicMethodTypeLabelsProviderTest.php │ │ │ └── Type │ │ │ │ └── NonDeletable │ │ │ │ └── ShippingRulesNonDeletableMethodTypeIdentifiersProviderTest.php │ │ ├── ShippingMethodViewCollectionTest.php │ │ ├── ShippingMethodViewFactoryTest.php │ │ ├── Stub │ │ │ └── TrackingAwareShippingMethodStub.php │ │ ├── TrackingAwareShippingMethodsProviderTest.php │ │ └── Validator │ │ │ ├── Basic │ │ │ └── BasicShippingMethodValidatorTest.php │ │ │ ├── EnabledShippingMethodsByRules │ │ │ └── EnabledShippingMethodsByRulesShippingMethodValidatorDecoratorTest.php │ │ │ └── Result │ │ │ ├── Error │ │ │ ├── Collection │ │ │ │ ├── Builder │ │ │ │ │ └── Common │ │ │ │ │ │ └── Doctrine │ │ │ │ │ │ └── DoctrineCommonShippingMethodValidatorResultErrorCollectionBuilderTest.php │ │ │ │ └── Doctrine │ │ │ │ │ └── DoctrineShippingMethodValidatorResultErrorCollectionTest.php │ │ │ ├── Factory │ │ │ │ └── Common │ │ │ │ │ └── ParameterBag │ │ │ │ │ └── ParameterBagCommonShippingMethodValidatorResultErrorFactoryTest.php │ │ │ └── ParameterBag │ │ │ │ └── ParameterBagShippingMethodValidatorResultErrorTest.php │ │ │ ├── Factory │ │ │ └── Common │ │ │ │ └── ParameterBag │ │ │ │ └── ParameterBagCommonShippingMethodValidatorResultFactoryTest.php │ │ │ └── ParameterBag │ │ │ └── ParameterBagShippingMethodValidatorResultTest.php │ │ ├── Provider │ │ ├── BasicShippingMethodChoicesProviderTest.php │ │ ├── Cache │ │ │ └── ShippingPriceCacheTest.php │ │ ├── EnabledMethodsShippingPriceProviderDecoratorTest.php │ │ ├── EnabledShippingMethodChoicesProviderDecoratorTest.php │ │ ├── MethodsConfigsRule │ │ │ └── Context │ │ │ │ ├── Basic │ │ │ │ └── BasicMethodsConfigsRulesByContextProviderTest.php │ │ │ │ └── RegardlessDestination │ │ │ │ └── RegardlessDestinationMethodsConfigsRulesByContextProviderTest.php │ │ ├── Stub │ │ │ ├── PriceAwareShippingMethodStub.php │ │ │ ├── ShippingAddressStub.php │ │ │ ├── ShippingMethodProviderStub.php │ │ │ ├── ShippingMethodStub.php │ │ │ ├── ShippingMethodTypeConfigTypeOptionsStub.php │ │ │ └── ShippingMethodTypeStub.php │ │ └── test │ │ │ └── ShippingPriceProviderTest.php │ │ ├── RuleFiltration │ │ └── Basic │ │ │ └── BasicMethodsConfigsRulesFiltrationServiceTest.php │ │ ├── Tools │ │ └── FilteredDatagridRouteHelperTest.php │ │ └── Workflow │ │ └── ShipmentCreateActionTest.php ├── Tools │ ├── DatagridAwareRouteHelperInterface.php │ └── FilteredDatagridRouteHelper.php ├── Translator │ └── ShippingMethodLabelTranslator.php ├── Twig │ └── ShippingMethodExtension.php ├── Validator │ └── Constraints │ │ ├── EnabledTypeConfigsValidationGroup.php │ │ ├── EnabledTypeConfigsValidationGroupValidator.php │ │ ├── ShippingRuleEnable.php │ │ └── ShippingRuleEnableValidator.php └── Workflow │ └── ShipmentCreateAction.php ├── SupplierBundle ├── Controller │ └── SupplierController.php ├── DependencyInjection │ └── MarelloSupplierExtension.php ├── Entity │ ├── Repository │ │ └── SupplierRepository.php │ └── Supplier.php ├── Event │ └── SupplierDropshipEvent.php ├── EventListener │ └── Doctrine │ │ └── SupplierDropshipEventListener.php ├── Form │ └── Type │ │ ├── SupplierSelectType.php │ │ └── SupplierType.php ├── MarelloSupplierBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── UpdateCurrentSupplierWithCurrency.php │ │ │ ├── UpdateCurrentSupplierWithOrganization.php │ │ │ ├── UpdateCurrentSuppliersWithCode.php │ │ │ └── UpdateCurrentSuppliersWithWarehouseAndInvLevels.php │ └── Schema │ │ ├── MarelloSupplierBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloSupplierBundle.php │ │ ├── v1_1 │ │ └── MarelloSupplierBundle.php │ │ ├── v1_2 │ │ └── MarelloSupplierBundle.php │ │ ├── v1_3 │ │ └── UpdateSupplierWithOrganization.php │ │ ├── v1_4 │ │ └── MarelloSupplierBundle.php │ │ ├── v1_5 │ │ └── MarelloSupplierBundle.php │ │ ├── v1_5_1 │ │ └── MarelloSupplierBundle.php │ │ └── v1_5_2 │ │ └── MarelloSupplierBundle.php ├── Provider │ ├── SupplierProvider.php │ ├── SuppliersChoicesProvider.php │ └── SuppliersChoicesProviderInterface.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── api.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── public │ │ └── js │ │ │ └── app │ │ │ ├── components │ │ │ └── supplier-component.js │ │ │ └── views │ │ │ ├── product-supplier-view.js │ │ │ └── product-suppliers-view.js │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Form │ │ └── fields.html.twig │ │ └── Supplier │ │ ├── Autocomplete │ │ ├── result.html.twig │ │ └── selection.html.twig │ │ ├── create.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ ├── view.html.twig │ │ └── widget │ │ ├── address.html.twig │ │ └── updateAddress.html.twig ├── Tests │ ├── Functional │ │ ├── Controller │ │ │ └── SupplierControllerTest.php │ │ ├── DataFixtures │ │ │ └── LoadSupplierData.php │ │ └── Entity │ │ │ └── SupplierOwnerIsSetTest.php │ └── Unit │ │ ├── Twig │ │ └── SupplierExtensionTest.php │ │ └── Validator │ │ └── Constraints │ │ └── SupplierEmailValidatorTest.php ├── Twig │ └── SupplierExtension.php └── Validator │ └── Constraints │ ├── SupplierEmail.php │ └── SupplierEmailValidator.php ├── TaxBundle ├── Calculator │ ├── ExcludedTaxCalculator.php │ ├── IncludedTaxCalculator.php │ ├── TaxCalculator.php │ └── TaxCalculatorInterface.php ├── Controller │ ├── TaxCodeController.php │ ├── TaxJurisdictionController.php │ ├── TaxRateController.php │ └── TaxRuleController.php ├── DependencyInjection │ ├── Compiler │ │ ├── ResolverEventConnectorPass.php │ │ ├── TaxMapperPass.php │ │ └── TaxRuleMatcherPass.php │ ├── Configuration.php │ └── MarelloTaxExtension.php ├── Entity │ ├── Repository │ │ ├── TaxCodeRepository.php │ │ ├── TaxJurisdictionRepository.php │ │ ├── TaxRateRepository.php │ │ └── TaxRuleRepository.php │ ├── TaxCode.php │ ├── TaxJurisdiction.php │ ├── TaxRate.php │ ├── TaxRule.php │ └── ZipCode.php ├── Event │ ├── ResolveTaxEvent.php │ ├── ResolverEventConnector.php │ └── TaxEventDispatcher.php ├── EventListener │ └── Datagrid │ │ └── TaxCodeDatagridListener.php ├── Factory │ └── TaxFactory.php ├── Form │ ├── DataTransformer │ │ └── ZipCodeTransformer.php │ ├── Handler │ │ ├── TaxCodeHandler.php │ │ ├── TaxRateHandler.php │ │ └── TaxRuleHandler.php │ └── Type │ │ ├── TaxCodeSelectType.php │ │ ├── TaxCodeType.php │ │ ├── TaxJurisdictionSelectType.php │ │ ├── TaxJurisdictionType.php │ │ ├── TaxRateSelectType.php │ │ ├── TaxRateType.php │ │ ├── TaxRuleType.php │ │ ├── ZipCodeCollectionType.php │ │ └── ZipCodeType.php ├── Mapper │ ├── TaxMapperInterface.php │ └── UnmappableArgumentException.php ├── MarelloTaxBundle.php ├── Matcher │ ├── AbstractTaxRuleMatcher.php │ ├── CompositeTaxRuleMatcher.php │ ├── CountryTaxRuleMatcher.php │ ├── RegionTaxRuleMatcher.php │ ├── TaxRuleMatcherInterface.php │ └── ZipCodeTaxRuleMatcher.php ├── Migrations │ └── Schema │ │ ├── MarelloTaxBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloTaxBundle.php │ │ ├── v1_1 │ │ └── MarelloTaxBundle.php │ │ ├── v1_2 │ │ └── DropIncludesVatColumn.php │ │ ├── v1_3 │ │ └── MarelloTaxBundle.php │ │ ├── v1_3_1 │ │ └── MarelloTaxBundle.php │ │ └── v1_4 │ │ └── MarelloTaxBundle.php ├── Model │ ├── AbstractResult.php │ ├── AbstractResultElement.php │ ├── Result.php │ ├── ResultElement.php │ ├── TaxAwareInterface.php │ └── Taxable.php ├── OrderTax │ └── Mapper │ │ ├── AbstractOrderMapper.php │ │ ├── OrderItemMapper.php │ │ └── OrderMapper.php ├── Provider │ ├── CompanyReverseTaxProvider.php │ ├── OrderItemRowTotalsProvider.php │ ├── TaxCode │ │ ├── TaxCodesChoicesProvider.php │ │ └── TaxCodesChoicesProviderInterface.php │ ├── TaxSubtotalOperationProvider.php │ └── TaxSubtotalProvider.php ├── Resolver │ ├── AbstractItemResolver.php │ ├── CurrencyResolver.php │ ├── CustomerAddressItemResolver.php │ ├── CustomerAddressResolver.php │ ├── ResolverInterface.php │ ├── RowTotalResolver.php │ └── TotalResolver.php ├── Resources │ ├── config │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── oro │ │ │ ├── api.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── entity.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ ├── search.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── doc │ │ └── api │ │ │ └── taxcode.md │ ├── translations │ │ ├── jsmessages.en.yml │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Form │ │ └── fields.html.twig │ │ ├── TaxCode │ │ ├── Autocomplete │ │ │ ├── result.html.twig │ │ │ └── selection.html.twig │ │ ├── create.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ ├── TaxJurisdiction │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ ├── TaxRate │ │ ├── DataGrid │ │ │ └── rate.html.twig │ │ ├── create.html.twig │ │ ├── index.html.twig │ │ ├── searchResult.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig │ │ └── TaxRule │ │ ├── create.html.twig │ │ ├── index.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig └── Tests │ ├── Functional │ ├── Controller │ │ ├── TaxCodeControllerTest.php │ │ ├── TaxJurisdictionControllerTest.php │ │ ├── TaxRateControllerTest.php │ │ └── TaxRuleControllerTest.php │ ├── DataFixtures │ │ ├── LoadTaxCodeData.php │ │ ├── LoadTaxJurisdictionData.php │ │ ├── LoadTaxRateData.php │ │ └── LoadTaxRuleData.php │ ├── Helper │ │ └── ZipCodeTestHelper.php │ └── Operation │ │ ├── TaxCodeDeleteOperationTest.php │ │ ├── TaxJurisdictionDeleteOperationTest.php │ │ ├── TaxRateDeleteOperationTest.php │ │ └── TaxRuleDeleteOperationTest.php │ ├── ResultComparatorTrait.php │ └── Unit │ ├── Calculator │ ├── AbstractTaxCalculatorTest.php │ ├── ExcludedTaxCalculatorTest.php │ ├── IncludedTaxCalculatorTest.php │ └── TaxCalculatorTest.php │ ├── DependencyInjection │ └── Compiler │ │ ├── ResolverEventConnectorPassTest.php │ │ ├── TaxMapperPassTest.php │ │ └── TaxRuleMatcherPassTest.php │ ├── Entity │ ├── TaxJurisdictionTest.php │ ├── TaxRateTest.php │ ├── TaxRuleTest.php │ └── ZipCodeTest.php │ ├── Event │ └── TaxEventDispatcherTest.php │ ├── Factory │ └── TaxFactoryTest.php │ ├── Matcher │ ├── AbstractTaxRuleMatcherTest.php │ ├── CompositeTaxRuleMatcherTest.php │ ├── CountryTaxRuleMatcherTest.php │ ├── RegionTaxRuleMatcherTest.php │ └── ZipCodeTaxRuleMatcherTest.php │ ├── Model │ ├── ResultElementTest.php │ ├── ResultTest.php │ └── TaxableTest.php │ ├── OrderTax │ └── Mapper │ │ ├── OrderItemMapperTest.php │ │ └── OrderMapperTest.php │ ├── Provider │ ├── OrderItemRowTotalsProviderTest.php │ ├── TaxSubtotalOperationProviderTest.php │ └── TaxSubtotalProviderTest.php │ └── Resolver │ ├── AbstractItemResolverTestCase.php │ ├── CurrencyResolverTest.php │ ├── CustomerAddressItemResolverTest.php │ ├── CustomerAddressResolverTest.php │ ├── RowTotalResolverTest.php │ └── TotalResolverTest.php ├── TicketBundle ├── Controller │ ├── TicketCategoryController.php │ └── TicketController.php ├── DependencyInjection │ └── MarelloTicketExtension.php ├── Entity │ ├── Ticket.php │ └── TicketCategory.php ├── EventListener │ └── OnTicketCreateEventListener.php ├── Form │ └── Type │ │ ├── TicketCategorySelectType.php │ │ ├── TicketCategoryType.php │ │ └── TicketType.php ├── MarelloTicketBundle.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── LoadTicketPriorities.php │ │ │ ├── LoadTicketSources.php │ │ │ └── LoadTicketStatuses.php │ └── Schema │ │ ├── MarelloTicketBundleInstaller.php │ │ └── v1_0 │ │ └── MarelloTicketBundle.php ├── Provider │ ├── TicketPriorityInterface.php │ ├── TicketSourceInterface.php │ └── TicketStatusInterface.php └── Resources │ ├── config │ ├── controllers.yml │ ├── oro │ │ ├── api.yml │ │ ├── bundles.yml │ │ ├── datagrids.yml │ │ ├── navigation.yml │ │ ├── routing.yml │ │ └── search.yml │ ├── services.yml │ └── validation.yml │ ├── translations │ └── messages.en.yml │ └── views │ ├── Ticket │ ├── index.html.twig │ ├── update.html.twig │ └── view.html.twig │ └── TicketCategory │ ├── index.html.twig │ ├── searchResult.html.twig │ ├── update.html.twig │ └── view.html.twig ├── UPSBundle ├── Cache │ ├── Lifetime │ │ ├── LifetimeProviderInterface.php │ │ └── UPSSettings │ │ │ └── LifetimeByInvalidateCacheAtFieldProvider.php │ ├── ShippingPriceCache.php │ └── ShippingPriceCacheKey.php ├── Client │ ├── Factory │ │ ├── Basic │ │ │ └── BasicUpsClientFactory.php │ │ └── UpsClientFactoryInterface.php │ ├── Request │ │ ├── UpsClientRequest.php │ │ └── UpsClientRequestInterface.php │ ├── Result │ │ └── UpsErrorResultTrait.php │ └── Url │ │ └── Provider │ │ ├── Basic │ │ └── BasicUpsClientUrlProvider.php │ │ └── UpsClientUrlProviderInterface.php ├── Connection │ └── Validator │ │ ├── Request │ │ └── Factory │ │ │ ├── RateUpsConnectionValidatorRequestFactory.php │ │ │ └── UpsConnectionValidatorRequestFactoryInterface.php │ │ ├── Result │ │ ├── Factory │ │ │ ├── UpsConnectionValidatorResultFactory.php │ │ │ └── UpsConnectionValidatorResultFactoryInterface.php │ │ ├── UpsConnectionValidatorResult.php │ │ └── UpsConnectionValidatorResultInterface.php │ │ ├── UpsConnectionValidator.php │ │ └── UpsConnectionValidatorInterface.php ├── Controller │ └── AjaxUPSController.php ├── DependencyInjection │ ├── CompilerPass │ │ └── UPSRequestFactoriesCompilerPass.php │ └── MarelloUPSExtension.php ├── Entity │ ├── Repository │ │ └── ShippingServiceRepository.php │ ├── ShippingService.php │ └── UPSSettings.php ├── Event │ └── MethodTypesBeforeCreateEvent.php ├── EventListener │ ├── BeforePackingSlipCreationListener.php │ └── UPSTransportEntityListener.php ├── Factory │ ├── AbstractUPSRequestFactory.php │ ├── CompositeUPSRequestFactory.php │ ├── PriceRequestFactory.php │ ├── ShipmentAcceptRequestFactory.php │ ├── ShipmentConfirmRequestFactory.php │ └── UPSRequestFactoryInterface.php ├── Form │ └── Type │ │ ├── UPSShippingMethodOptionsType.php │ │ └── UPSTransportSettingsType.php ├── Handler │ └── InvalidateCacheActionHandler.php ├── MarelloUPSBundle.php ├── Method │ ├── Factory │ │ ├── UPSShippingMethodFactory.php │ │ ├── UPSShippingMethodTypeFactory.php │ │ └── UPSShippingMethodTypeFactoryInterface.php │ ├── Identifier │ │ ├── UPSMethodTypeIdentifierGenerator.php │ │ └── UPSMethodTypeIdentifierGeneratorInterface.php │ ├── UPSShippingMethod.php │ ├── UPSShippingMethodProvider.php │ └── UPSShippingMethodType.php ├── Migrations │ ├── Data │ │ └── ORM │ │ │ ├── Config │ │ │ ├── ChannelByTypeFactory.php │ │ │ ├── UPSConfig.php │ │ │ ├── UPSConfigFactory.php │ │ │ ├── UPSConfigKeysProvider.php │ │ │ ├── UPSConfigKeysProviderFactory.php │ │ │ └── UPSConfigToSettingsConverter.php │ │ │ ├── LoadShippingServicesData.php │ │ │ ├── MoveConfigValuesToSettings.php │ │ │ └── data │ │ │ ├── eu_countries_services.csv │ │ │ ├── specified_country_services.csv │ │ │ └── unspecified_country_services.csv │ └── Schema │ │ ├── MarelloUPSBundleInstaller.php │ │ └── v1_0 │ │ └── MarelloUPSBundle.php ├── Model │ ├── Package.php │ ├── Request │ │ ├── AbstractUPSRequest.php │ │ ├── PriceRequest.php │ │ ├── ShipmentAcceptRequest.php │ │ ├── ShipmentConfirmRequest.php │ │ └── UPSRequestInterface.php │ └── Response │ │ ├── AbstractUPSXMLResponse.php │ │ ├── PriceResponse.php │ │ ├── ShipmentAcceptResponse.php │ │ ├── ShipmentConfirmResponse.php │ │ └── UPSResponseInterface.php ├── Provider │ ├── ChannelType.php │ └── UPSTransport.php ├── README.md ├── Resources │ ├── config │ │ ├── connection.yml │ │ ├── controllers.yml │ │ ├── form_types.yml │ │ ├── jsmodules.yml │ │ ├── oro │ │ │ ├── actions.yml │ │ │ ├── assets.yml │ │ │ ├── bundles.yml │ │ │ ├── routing.yml │ │ │ └── twig.yml │ │ ├── services.yml │ │ ├── validation.yml │ │ └── validators.yml │ ├── doc │ │ ├── credentials-validation.md │ │ ├── general-information.md │ │ └── time_in_transit.md │ ├── public │ │ ├── css │ │ │ └── scss │ │ │ │ └── main.scss │ │ ├── img │ │ │ └── ups-logo.gif │ │ └── js │ │ │ └── app │ │ │ └── components │ │ │ └── ups-transport-settings-component.js │ ├── translations │ │ ├── messages.en.yml │ │ └── validators.en.yml │ └── views │ │ ├── Form │ │ └── fields.html.twig │ │ └── UPSMethodWithOptions.html.twig ├── Tests │ ├── Functional │ │ ├── Controller │ │ │ └── AjaxUPSControllerTest.php │ │ ├── DataFixtures │ │ │ ├── LoadChannelData.php │ │ │ ├── LoadShippingCountries.php │ │ │ ├── LoadShippingMethodsConfigsRules.php │ │ │ ├── LoadShippingServices.php │ │ │ ├── LoadTransportData.php │ │ │ └── data │ │ │ │ ├── shipping_countries.yml │ │ │ │ ├── shipping_methods_configs_rules.yml │ │ │ │ └── shipping_services.yml │ │ ├── Entity │ │ │ └── Repository │ │ │ │ └── ShippingServiceRepositoryTest.php │ │ └── EventListener │ │ │ └── UPSTransportEntityListenerTest.php │ └── Unit │ │ ├── Cache │ │ ├── Lifetime │ │ │ └── UPSSettings │ │ │ │ └── LifetimeByInvalidateCacheAtFieldProviderTest.php │ │ ├── ShippingPriceCacheKeyTest.php │ │ ├── ShippingPriceCacheTest.php │ │ └── Stub │ │ │ └── PriceRequestAddressStub.php │ │ ├── Client │ │ ├── Factory │ │ │ └── Basic │ │ │ │ └── BasicUpsClientFactoryTest.php │ │ ├── Request │ │ │ └── UpsClientRequestTest.php │ │ └── Url │ │ │ └── Provider │ │ │ └── Basic │ │ │ └── BasicUpsClientUrlProviderTest.php │ │ ├── Connection │ │ └── Validator │ │ │ ├── Request │ │ │ └── Factory │ │ │ │ └── RateUpsConnectionValidatorRequestFactoryTest.php │ │ │ ├── Result │ │ │ ├── Factory │ │ │ │ └── UpsConnectionValidatorResultFactoryTest.php │ │ │ └── UpsConnectionValidatorResultTest.php │ │ │ └── UpsConnectionValidatorTest.php │ │ ├── DependencyInjection │ │ └── OroUPSExtensionTest.php │ │ ├── Entity │ │ ├── ShippingServiceTest.php │ │ └── UPSTransportTest.php │ │ ├── Factory │ │ └── PriceRequestFactoryTest.php │ │ ├── Form │ │ └── Type │ │ │ ├── UPSShippingMethodOptionsTypeTest.php │ │ │ └── UPSTransportSettingsTypeTest.php │ │ ├── Handler │ │ └── InvalidateCacheActionHandlerTest.php │ │ ├── Method │ │ ├── Factory │ │ │ ├── UPSShippingMethodFactoryTest.php │ │ │ └── UPSShippingMethodTypeFactoryTest.php │ │ ├── Identifier │ │ │ └── UPSMethodTypeIdentifierGeneratorTest.php │ │ ├── UPSShippingMethodTest.php │ │ └── UPSShippingMethodTypeTest.php │ │ ├── Model │ │ ├── PackageTest.php │ │ ├── PriceRequestTest.php │ │ └── PriceResponseTest.php │ │ ├── Provider │ │ ├── ChannelTypeTest.php │ │ └── UPSTransportTest.php │ │ └── Validator │ │ └── Constraints │ │ ├── CountryShippingServicesConstraintTest.php │ │ ├── CountryShippingServicesValidatorTest.php │ │ ├── RemoveUsedShippingServiceConstraintTest.php │ │ └── RemoveUsedShippingServiceValidatorTest.php └── Validator │ └── Constraints │ ├── CountryShippingServicesConstraint.php │ ├── CountryShippingServicesValidator.php │ ├── RemoveUsedShippingServiceConstraint.php │ └── RemoveUsedShippingServiceValidator.php ├── WebhookBundle ├── Async │ ├── Topic │ │ └── WebhookSyncTopic.php │ └── WebhookSyncProcessor.php ├── Controller │ └── WebhookController.php ├── DependencyInjection │ ├── Configuration.php │ └── MarelloWebhookExtension.php ├── Entity │ ├── Repository │ │ └── WebhookRepository.php │ ├── Webhook.php │ └── WebhookNotificationSettings.php ├── Event │ ├── AbstractWebhookEvent.php │ ├── Provider │ │ └── WebhookEventProvider.php │ └── WebhookEventInterface.php ├── Form │ └── Type │ │ ├── EventSelectType.php │ │ ├── WebhookSettingsType.php │ │ └── WebhookType.php ├── ImportExport │ ├── Processor │ │ └── AsyncProcessor.php │ └── Writer │ │ └── WebhookExportWriter.php ├── Integration │ ├── Connector │ │ └── WebhookNotificationConnector.php │ ├── Transport │ │ └── WebhookTransport.php │ └── WebhookChannel.php ├── Manager │ ├── WebhookProducer.php │ └── WebhookProvider.php ├── MarelloWebhookBundle.php ├── Migrations │ └── Schema │ │ ├── MarelloWebhookBundleInstaller.php │ │ ├── v1_0 │ │ └── MarelloWebhookBundle.php │ │ └── v1_1 │ │ └── MarelloWebhookBundle.php ├── Model │ ├── IntegrationTokenAwareTrait.php │ └── WebhookContext.php ├── README.md ├── Resources │ ├── config │ │ ├── batch_jobs.yml │ │ ├── controllers.yml │ │ ├── form.yml │ │ ├── integration.yml │ │ ├── mq_topics.yml │ │ ├── oro │ │ │ ├── acls.yml │ │ │ ├── bundles.yml │ │ │ ├── datagrids.yml │ │ │ ├── navigation.yml │ │ │ ├── routing.yml │ │ │ └── system_configuration.yml │ │ ├── services.yml │ │ └── validation.yml │ ├── translations │ │ └── messages.en.yml │ └── views │ │ └── Webhook │ │ ├── index.html.twig │ │ ├── update.html.twig │ │ └── view.html.twig ├── Tests │ ├── Functional │ │ └── Controller │ │ │ └── WebhookControllerTest.php │ └── Unit │ │ └── Entity │ │ └── WebhookTest.php └── Twig │ └── WebhookExtension.php └── WorkflowBundle ├── Api ├── Model │ └── WorkflowTransit.php └── Processor │ ├── HandleWorkflowTransit.php │ ├── ProcessWorkflowItem.php │ ├── ProcessWorkflowItemConfig.php │ ├── ProcessWorkflowStep.php │ └── ProcessWorkflowStepConfig.php ├── Async ├── Topic │ ├── WorkflowTransitMassTopic.php │ └── WorkflowTransitTopic.php ├── WorkflowTransitMassProcessor.php └── WorkflowTransitProcessor.php ├── Controller └── WorkflowController.php ├── Datagrid └── Extension │ └── MassAction │ ├── WorkflowTransitMassAction.php │ ├── WorkflowTransitMassActionExtension.php │ └── WorkflowTransitMassActionHandler.php ├── DependencyInjection └── MarelloWorkflowExtension.php ├── Manager └── WorkflowTransitMassManager.php ├── MarelloWorkflowBundle.php ├── Migrations └── Data │ └── ORM │ ├── LoadEmailTemplates.php │ └── emails │ └── workflow_transit_report.html.twig ├── README.md ├── Resources ├── config │ ├── controllers.yml │ ├── mq_topics.yml │ ├── oro │ │ ├── api.yml │ │ ├── bundles.yml │ │ └── routing.yml │ └── services.yml ├── doc │ └── api │ │ └── workflow_api.md └── translations │ └── messages.en.yml └── Tests └── Unit ├── Async └── WorkflowTransitMassProcessorTest.php └── Datagrid └── Extension └── MassAction └── WorkflowTransitMassActionExtensionTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Entity/MarelloAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Entity/MarelloAddress.php -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Form/Type/AddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Form/Type/AddressType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Formatter/AddressFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Formatter/AddressFormatter.php -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/MarelloAddressBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/MarelloAddressBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloAddress/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/doc/api/address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/doc/api/address.md -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/public/js/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/public/js/address.js -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Resources/views/macros.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Resources/views/macros.html.twig -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Tests/Stubs/AddressStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Tests/Stubs/AddressStub.php -------------------------------------------------------------------------------- /src/Marello/Bundle/AddressBundle/Twig/AddressExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/AddressBundle/Twig/AddressExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/BankTransferBundle/MarelloBankTransferBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/BankTransferBundle/MarelloBankTransferBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/BankTransferBundle/Method/BankTransferMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/BankTransferBundle/Method/BankTransferMethod.php -------------------------------------------------------------------------------- /src/Marello/Bundle/BankTransferBundle/Resources/config/factory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/BankTransferBundle/Resources/config/factory.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/BankTransferBundle/Resources/config/payment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/BankTransferBundle/Resources/config/payment.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/BankTransferBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/BankTransferBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Controller/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Controller/CategoryController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Entity/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Entity/Category.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Form/Handler/CategoryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Form/Handler/CategoryHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Form/Type/CategoryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Form/Type/CategoryType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/MarelloCatalogBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/MarelloCatalogBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Provider/CategoriesIdsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Provider/CategoriesIdsProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CatalogBundle/Twig/CategoryExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CatalogBundle/Twig/CategoryExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Form/UrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Form/UrlGenerator.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/MarelloCoreBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/MarelloCoreBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Migration/UpdateEntityConfigTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Migration/UpdateEntityConfigTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Model/EntityCreatedUpdatedAtTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Model/EntityCreatedUpdatedAtTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Model/HashAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Model/HashAwareInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Model/HashAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Model/HashAwareTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Model/JobIdGenerationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Model/JobIdGenerationTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Resources/config/derived_property.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Resources/config/derived_property.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Resources/config/oro/placeholders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Resources/config/oro/placeholders.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Resources/public/img/marello-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Resources/public/img/marello-logo.png -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Resources/views/call_on_me.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Resources/views/call_on_me.html.twig -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Serializer/EntitySerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Serializer/EntitySerializer.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Tests/Unit/Twig/CoreExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Tests/Unit/Twig/CoreExtensionTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Tree/Entity/TreeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Tree/Entity/TreeTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Tree/Handler/AbstractTreeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Tree/Handler/AbstractTreeHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Tree/Tests/Unit/Stubs/EntityStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Tree/Tests/Unit/Stubs/EntityStub.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Twig/CoreExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Twig/CoreExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Twig/FileExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Twig/FileExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Twig/WorkflowExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Twig/WorkflowExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Validator/CodeRegexValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Validator/CodeRegexValidator.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CoreBundle/Validator/Constraints/CodeRegex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CoreBundle/Validator/Constraints/CodeRegex.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Controller/CompanyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Controller/CompanyController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Controller/CustomerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Controller/CustomerController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Entity/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Entity/Company.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Entity/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Entity/Customer.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Entity/CustomerGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Entity/CustomerGroup.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Entity/EmailAddressTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Entity/EmailAddressTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Entity/FullNameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Entity/FullNameTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Form/Handler/CompanyHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Form/Handler/CompanyHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Form/Handler/CustomerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Form/Handler/CustomerHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Form/Type/CompanySelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Form/Type/CompanySelectType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Form/Type/CompanyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Form/Type/CompanyType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Form/Type/CustomerGroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Form/Type/CustomerGroupType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Form/Type/CustomerSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Form/Type/CustomerSelectType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Form/Type/CustomerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Form/Type/CustomerType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/JsTree/CompanyTreeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/JsTree/CompanyTreeHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/MarelloCustomerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/MarelloCustomerBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloCustomer/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/services_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/services_api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/doc/api/customer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/doc/api/customer.md -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Resources/translations/pdf.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Resources/translations/pdf.en.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/CustomerBundle/Twig/CustomerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/CustomerBundle/Twig/CustomerExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/DataGridBundle/Grid/FormatterContextResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DataGridBundle/Grid/FormatterContextResolver.php -------------------------------------------------------------------------------- /src/Marello/Bundle/DataGridBundle/Helper/DatagridHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DataGridBundle/Helper/DatagridHelper.php -------------------------------------------------------------------------------- /src/Marello/Bundle/DataGridBundle/MarelloDataGridBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DataGridBundle/MarelloDataGridBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/DataGridBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DataGridBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/DataGridBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DataGridBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/DataGridBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DataGridBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/DataGridBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DataGridBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/DemoDataBundle/MarelloDemoDataBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DemoDataBundle/MarelloDemoDataBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/DemoDataBundle/Migrations/Data/Demo/ORM/dictionaries/purchase_orders.csv: -------------------------------------------------------------------------------- 1 | po,product,ordered_amount 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/DemoDataBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/DemoDataBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/FilterBundle/Filter/ChoiceLikeFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/FilterBundle/Filter/ChoiceLikeFilter.php -------------------------------------------------------------------------------- /src/Marello/Bundle/FilterBundle/MarelloFilterBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/FilterBundle/MarelloFilterBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/FilterBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/FilterBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/FilterBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/FilterBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/HealthCheckBundle/MarelloHealthCheckBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/HealthCheckBundle/MarelloHealthCheckBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/HealthCheckBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/HealthCheckBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Entity/Allocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Entity/Allocation.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Entity/AllocationItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Entity/AllocationItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Entity/InventoryBatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Entity/InventoryBatch.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Entity/InventoryItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Entity/InventoryItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Entity/InventoryLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Entity/InventoryLevel.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Entity/Warehouse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Entity/Warehouse.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Entity/WarehouseGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Entity/WarehouseGroup.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Entity/WarehouseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Entity/WarehouseType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Event/InventoryUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Event/InventoryUpdateEvent.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Form/Type/InventoryBatchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Form/Type/InventoryBatchType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Form/Type/InventoryItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Form/Type/InventoryItemType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Form/Type/InventoryLevelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Form/Type/InventoryLevelType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Form/Type/NotifierChoiceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Form/Type/NotifierChoiceType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Form/Type/ReshipmentItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Form/Type/ReshipmentItemType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Form/Type/ReshipmentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Form/Type/ReshipmentType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Form/Type/WarehouseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Form/Type/WarehouseType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/ImportExportBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: controllers.yml } 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Logging/ChartBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Logging/ChartBuilder.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Manager/InventoryItemManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Manager/InventoryItemManager.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Manager/InventoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Manager/InventoryManager.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/MarelloInventoryBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/MarelloInventoryBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Model/InventoryUpdateContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Model/InventoryUpdateContext.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Model/OrderWarehouseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Model/OrderWarehouseResult.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/batch_jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/batch_jobs.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/mq_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/mq_topics.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/charts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/charts.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloInventory/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Resources/views/macros.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Resources/views/macros.html.twig -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Twig/InventoryTotalExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Twig/InventoryTotalExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InventoryBundle/Twig/WarehouseExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InventoryBundle/Twig/WarehouseExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Controller/InvoiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Controller/InvoiceController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Entity/AbstractInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Entity/AbstractInvoice.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Entity/AbstractInvoiceItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Entity/AbstractInvoiceItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Entity/Creditmemo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Entity/Creditmemo.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Entity/CreditmemoItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Entity/CreditmemoItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Entity/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Entity/Invoice.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Entity/InvoiceItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Entity/InvoiceItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Form/Type/InvoiceSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Form/Type/InvoiceSelectType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Manager/CreditmemoManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Manager/CreditmemoManager.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Manager/InvoiceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Manager/InvoiceManager.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Mapper/AbstractInvoiceMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Mapper/AbstractInvoiceMapper.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Mapper/MapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Mapper/MapperInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Mapper/OrderToInvoiceMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Mapper/OrderToInvoiceMapper.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/MarelloInvoiceBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/MarelloInvoiceBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Pdf/Table/InvoiceTableProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Pdf/Table/InvoiceTableProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/doc/api/creditmemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/doc/api/creditmemo.md -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/doc/api/invoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/doc/api/invoice.md -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Resources/translations/pdf.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Resources/translations/pdf.en.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/InvoiceBundle/Twig/InvoiceExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/InvoiceBundle/Twig/InvoiceExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/Context/FormChangeContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/Context/FormChangeContext.php -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/MarelloLayoutBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/MarelloLayoutBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/Resources/public/css/scss/main.scss -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/Resources/public/images/marello.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/Resources/public/images/marello.ico -------------------------------------------------------------------------------- /src/Marello/Bundle/LayoutBundle/Resources/public/images/marello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LayoutBundle/Resources/public/images/marello.svg -------------------------------------------------------------------------------- /src/Marello/Bundle/LocaleBundle/Manager/EmailTemplateManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LocaleBundle/Manager/EmailTemplateManager.php -------------------------------------------------------------------------------- /src/Marello/Bundle/LocaleBundle/MarelloLocaleBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LocaleBundle/MarelloLocaleBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/LocaleBundle/Model/LocalizationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LocaleBundle/Model/LocalizationTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/LocaleBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LocaleBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/LocaleBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/LocaleBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationBundle/Entity/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/NotificationBundle/Entity/Notification.php -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationBundle/MarelloNotificationBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/NotificationBundle/MarelloNotificationBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationBundle/Model/AttachmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/NotificationBundle/Model/AttachmentInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationBundle/Model/StringAttachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/NotificationBundle/Model/StringAttachment.php -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/NotificationBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/NotificationBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- 1 | .marello-notification-activity-body { 2 | padding: 5px 10px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationMessageBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/NotificationMessageBundle/README.md -------------------------------------------------------------------------------- /src/Marello/Bundle/NotificationMessageBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloNotificationMessage/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Controller/OrderAjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Controller/OrderAjaxController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Controller/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Controller/OrderController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Entity/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Entity/Order.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Entity/OrderAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Entity/OrderAwareInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Entity/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Entity/OrderItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Event/OrderItemStatusUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Event/OrderItemStatusUpdateEvent.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/EventListener/OrderViewListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/EventListener/OrderViewListener.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Form/Type/OrderItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Form/Type/OrderItemType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Form/Type/OrderTotalPaidType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Form/Type/OrderTotalPaidType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Form/Type/OrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Form/Type/OrderType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Form/Type/OrderUpdateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Form/Type/OrderUpdateType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/MarelloOrderBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/MarelloOrderBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Migrations/Data/ORM/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Migrations/Data/ORM/data/.DS_Store -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Model/DiscountAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Model/DiscountAwareInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Model/OrderItemStatusesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Model/OrderItemStatusesInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Model/OrderItemTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Model/OrderItemTypeInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Model/OrderStatusesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Model/OrderStatusesInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Model/QuantityAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Model/QuantityAwareInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Provider/OrderEntityNameProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Provider/OrderEntityNameProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/eventlisteners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/eventlisteners.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/dashboards.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloOrder/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/oro/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/oro/workflows.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/shipping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/shipping.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/doc/api/customer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/doc/api/customer.md -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/doc/api/order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/doc/api/order.md -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/public/css/scss/main.scss -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/public/css/scss/map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/public/css/scss/map.scss -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/public/css/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/public/css/scss/style.scss -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/public/img/first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/public/img/first.svg -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/public/img/second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/public/img/second.svg -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/public/img/third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/public/img/third.svg -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Resources/views/Order/view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Resources/views/Order/view.html.twig -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Tests/Unit/Entity/OrderItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Tests/Unit/Entity/OrderItemTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Tests/Unit/Entity/OrderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Tests/Unit/Entity/OrderTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Twig/OrderExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Twig/OrderExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Workflow/OrderCancelAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Workflow/OrderCancelAction.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Workflow/OrderShipAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Workflow/OrderShipAction.php -------------------------------------------------------------------------------- /src/Marello/Bundle/OrderBundle/Workflow/OrderTransitionAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/OrderBundle/Workflow/OrderTransitionAction.php -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/Api/Model/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/Api/Model/Login.php -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/Api/Processor/HandleLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/Api/Processor/HandleLogin.php -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/MarelloPOSBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/MarelloPOSBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/Resources/config/eventlisteners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/Resources/config/eventlisteners.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/Resources/config/oro/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/Resources/config/oro/workflows.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/POSBundle/Resources/doc/api/pos_user_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/POSBundle/Resources/doc/api/pos_user_api.md -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Entity/PackingSlip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Entity/PackingSlip.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Entity/PackingSlipItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Entity/PackingSlipItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Mapper/MapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Mapper/MapperInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/MarelloPackingBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/MarelloPackingBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PackingBundle/Resources/translations/pdf.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PackingBundle/Resources/translations/pdf.en.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Context/PaymentContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Context/PaymentContext.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Context/PaymentLineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Context/PaymentLineItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Controller/PaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Controller/PaymentController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Entity/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Entity/Payment.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Entity/PaymentMethodConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Entity/PaymentMethodConfig.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Form/Type/PaymentCreateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Form/Type/PaymentCreateType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Form/Type/PaymentUpdateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Form/Type/PaymentUpdateType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/MarelloPaymentBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/MarelloPaymentBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Method/PaymentMethodInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Method/PaymentMethodInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Method/RemotePaymentMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Method/RemotePaymentMethod.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Model/LineItemOptionModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Model/LineItemOptionModel.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Model/Surcharge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Model/Surcharge.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/form_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/form_types.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/mass_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/mass_action.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloPayment/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Twig/PaymentMethodExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Twig/PaymentMethodExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentBundle/Validator/TotalPaidValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentBundle/Validator/TotalPaidValidator.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Entity/PaymentTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/Entity/PaymentTerm.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Form/Type/PaymentTermType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/Form/Type/PaymentTermType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/MarelloPaymentTermBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/MarelloPaymentTermBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Method/PaymentTermMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/Method/PaymentTermMethod.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Resources/views/PaymentTerm/Datagrid/label.html.twig: -------------------------------------------------------------------------------- 1 | {{ record.getValue('label_localized')|default('N/A'|trans) }} 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/PaymentTermBundle/Twig/PaymentTermExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PaymentTermBundle/Twig/PaymentTermExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Controller/DownloadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Controller/DownloadController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Exception/PaperSizeNotSetException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Exception/PaperSizeNotSetException.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Factory/PdfWriterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Factory/PdfWriterFactory.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Lib/View/EmptyDisplayLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Lib/View/EmptyDisplayLine.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Lib/View/EmptyLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Lib/View/EmptyLine.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Lib/View/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Lib/View/Line.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Lib/View/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Lib/View/Table.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/MarelloPdfBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/MarelloPdfBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Provider/DocumentTableProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Provider/DocumentTableProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Provider/LogoPathProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Provider/LogoPathProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Provider/Render/EntityProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Provider/Render/EntityProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Provider/RenderParametersProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Provider/RenderParametersProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Provider/TableProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Provider/TableProviderInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Provider/TableSizeProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Provider/TableSizeProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Renderer/HtmlRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Renderer/HtmlRenderer.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Renderer/TwigRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Renderer/TwigRenderer.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Request/CompositePdfRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Request/CompositePdfRequestHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Request/PdfRequestHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Request/PdfRequestHandlerInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Resources/translations/pdf.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Resources/translations/pdf.en.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Tests/Unit/Lib/View/EmptyLineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Tests/Unit/Lib/View/EmptyLineTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Tests/Unit/Lib/View/LineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Tests/Unit/Lib/View/LineTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Tests/Unit/Lib/View/TableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Tests/Unit/Lib/View/TableTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Tests/Unit/Provider/Logo/data/public/resized_image/logoprovider_resized.txt: -------------------------------------------------------------------------------- 1 | Resized image data -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Tests/Unit/Renderer/data/multiple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Tests/Unit/Renderer/data/multiple.txt -------------------------------------------------------------------------------- /src/Marello/Bundle/PdfBundle/Tests/Unit/Renderer/data/single.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PdfBundle/Tests/Unit/Renderer/data/single.txt -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Controller/PricingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Controller/PricingController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Entity/AssembledPriceList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Entity/AssembledPriceList.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Entity/BasePrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Entity/BasePrice.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Entity/PriceDatesTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Entity/PriceDatesTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Entity/PriceListInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Entity/PriceListInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Entity/PriceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Entity/PriceType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Entity/ProductChannelPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Entity/ProductChannelPrice.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Entity/ProductPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Entity/ProductPrice.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Form/Type/ProductPriceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Form/Type/ProductPriceType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/MarelloPricingBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/MarelloPricingBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Model/CurrencyAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Model/CurrencyAwareInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Model/PriceTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Model/PriceTypeInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Model/PricingAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Model/PricingAwareInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Provider/ChannelPriceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Provider/ChannelPriceProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Provider/CurrencyProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Provider/CurrencyProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloPricing/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/doc/api/pricetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/doc/api/pricetype.md -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Resources/doc/api/productprice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Resources/doc/api/productprice.md -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Subtotal/Model/Subtotal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Subtotal/Model/Subtotal.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PricingBundle/Twig/PricingExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PricingBundle/Twig/PricingExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Api/Processor/HandleMediaUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Api/Processor/HandleMediaUrl.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Controller/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Controller/ProductController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Controller/VariantController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Controller/VariantController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Duplicator/ProductDuplicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Duplicator/ProductDuplicator.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Duplicator/SkuIncrementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Duplicator/SkuIncrementor.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Entity/Product.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Entity/ProductInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Entity/ProductInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Entity/ProductStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Entity/ProductStatus.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Entity/ProductSupplierRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Entity/ProductSupplierRelation.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Entity/Variant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Entity/Variant.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Event/ProductDropshipEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Event/ProductDropshipEvent.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Form/Handler/ProductHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Form/Handler/ProductHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Form/Type/ProductSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Form/Type/ProductSelectType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Form/Type/ProductStepOneType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Form/Type/ProductStepOneType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Form/Type/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Form/Type/ProductType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Form/Type/ProductVariantType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Form/Type/ProductVariantType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Manager/ProductFileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Manager/ProductFileManager.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/MarelloProductBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/MarelloProductBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Model/ProductAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Model/ProductAwareInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Model/ProductHolderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Model/ProductHolderInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Model/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Model/ProductType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Model/ProductTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Model/ProductTypeInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Provider/ProductTypesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Provider/ProductTypesProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/batch_jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/batch_jobs.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/importexport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/importexport.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/mq_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/mq_topics.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/app.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloProduct/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/services_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/services_api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/doc/api/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/doc/api/product.md -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/doc/api/variant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/doc/api/variant.md -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Resources/views/macros.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Resources/views/macros.html.twig -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Tests/Unit/Entity/ProductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Tests/Unit/Entity/ProductTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Twig/DynamicFieldsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Twig/DynamicFieldsExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Twig/ProductExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Twig/ProductExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ProductBundle/Twig/ProductUnitExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ProductBundle/Twig/ProductUnitExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PurchaseOrderBundle/Entity/PurchaseOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PurchaseOrderBundle/Entity/PurchaseOrder.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PurchaseOrderBundle/Entity/PurchaseOrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PurchaseOrderBundle/Entity/PurchaseOrderItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PurchaseOrderBundle/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PurchaseOrderBundle/Exception/LogicException.php -------------------------------------------------------------------------------- /src/Marello/Bundle/PurchaseOrderBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PurchaseOrderBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PurchaseOrderBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/PurchaseOrderBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/PurchaseOrderBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloPurchaseOrder/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Controller/RefundAjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Controller/RefundAjaxController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Controller/RefundController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Controller/RefundController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Entity/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Entity/Refund.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Entity/RefundItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Entity/RefundItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Form/Type/AdditionalRefundType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Form/Type/AdditionalRefundType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Form/Type/OrderItemRefundType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Form/Type/OrderItemRefundType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Form/Type/RefundType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Form/Type/RefundType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/MarelloRefundBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/MarelloRefundBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Provider/RefundTotalsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Provider/RefundTotalsProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/twig.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/oro/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/oro/workflows.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/doc/api/refund.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Resources/doc/api/refund.md -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- 1 | /* @theme: admin.oro; */ 2 | 3 | @import "./style"; 4 | -------------------------------------------------------------------------------- /src/Marello/Bundle/RefundBundle/Twig/RefundExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RefundBundle/Twig/RefundExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReportBundle/Controller/ReportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReportBundle/Controller/ReportController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReportBundle/MarelloReportBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReportBundle/MarelloReportBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReportBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReportBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReportBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReportBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReportBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReportBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReportBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReportBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReportBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReportBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReportBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReportBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Controller/ReturnController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Controller/ReturnController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Entity/ReturnEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Entity/ReturnEntity.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Entity/ReturnItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Entity/ReturnItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Form/Type/ReturnItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Form/Type/ReturnItemType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Form/Type/ReturnType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Form/Type/ReturnType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Form/Type/ReturnUpdateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Form/Type/ReturnUpdateType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Manager/BusinessRuleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Manager/BusinessRuleManager.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/MarelloReturnBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/MarelloReturnBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloReturn/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/shipping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/shipping.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/doc/api/return.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/doc/api/return.md -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Resources/doc/api/return_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Resources/doc/api/return_item.md -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Twig/ReturnExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Twig/ReturnExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Util/ReturnHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Util/ReturnHelper.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ReturnBundle/Workflow/InspectionAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ReturnBundle/Workflow/InspectionAction.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Entity/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Entity/Rule.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Entity/RuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Entity/RuleInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Entity/RuleOwnerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Entity/RuleOwnerInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Form/Type/RuleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Form/Type/RuleType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/MarelloRuleBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/MarelloRuleBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/RuleBundle/Tests/Unit/Entity/RuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/RuleBundle/Tests/Unit/Entity/RuleTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Condition/HasValidIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Condition/HasValidIntegration.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Controller/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Controller/ConfigController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Entity/SalesChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Entity/SalesChannel.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Entity/SalesChannelGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Entity/SalesChannelGroup.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Entity/SalesChannelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Entity/SalesChannelType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Form/Type/SalesChannelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Form/Type/SalesChannelType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/MarelloSalesBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/MarelloSalesBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Placeholder/PlaceholderFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Placeholder/PlaceholderFilter.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Provider/ChannelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Provider/ChannelProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/mq_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/mq_topics.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/oro/twig.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/doc/api/saleschannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Resources/doc/api/saleschannel.md -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/views/SalesChannel/Autocomplete/result.html.twig: -------------------------------------------------------------------------------- 1 | <%= highlight(_.escape(name)) %> 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/views/SalesChannel/Autocomplete/selection.html.twig: -------------------------------------------------------------------------------- 1 | <%= highlight(_.escape(name)) %> 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/views/SalesChannelType/Autocomplete/result.html.twig: -------------------------------------------------------------------------------- 1 | <%= highlight(_.escape(label)) %> 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Resources/views/SalesChannelType/Autocomplete/selection.html.twig: -------------------------------------------------------------------------------- 1 | <%= highlight(_.escape(label)) %> 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/SalesBundle/Twig/SalesExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SalesBundle/Twig/SalesExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Context/ShippingContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Context/ShippingContext.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Context/ShippingLineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Context/ShippingLineItem.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Entity/HasShipmentTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Entity/HasShipmentTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Entity/Shipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Entity/Shipment.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Entity/TrackingInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Entity/TrackingInfo.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Integration/UPS/UPSApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Integration/UPS/UPSApi.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/MarelloShippingBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/MarelloShippingBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloShipping/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/ShippingBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/ShippingBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Entity/Supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Entity/Supplier.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Form/Type/SupplierType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Form/Type/SupplierType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/MarelloSupplierBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/MarelloSupplierBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Provider/SupplierProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Provider/SupplierProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloSupplier/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/views/Form/fields.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/views/Supplier/Autocomplete/result.html.twig: -------------------------------------------------------------------------------- 1 | <%= highlight(_.escape(name)) %> 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Resources/views/Supplier/Autocomplete/selection.html.twig: -------------------------------------------------------------------------------- 1 | <%= highlight(_.escape(name)) %> 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/SupplierBundle/Twig/SupplierExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/SupplierBundle/Twig/SupplierExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Calculator/TaxCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Calculator/TaxCalculator.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Controller/TaxCodeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Controller/TaxCodeController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Controller/TaxRateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Controller/TaxRateController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Controller/TaxRuleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Controller/TaxRuleController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Entity/TaxCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Entity/TaxCode.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Entity/TaxJurisdiction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Entity/TaxJurisdiction.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Entity/TaxRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Entity/TaxRate.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Entity/TaxRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Entity/TaxRule.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Entity/ZipCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Entity/ZipCode.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Event/ResolveTaxEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Event/ResolveTaxEvent.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Event/ResolverEventConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Event/ResolverEventConnector.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Event/TaxEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Event/TaxEventDispatcher.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Factory/TaxFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Factory/TaxFactory.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Handler/TaxCodeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Handler/TaxCodeHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Handler/TaxRateHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Handler/TaxRateHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Handler/TaxRuleHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Handler/TaxRuleHandler.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Type/TaxCodeSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Type/TaxCodeSelectType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Type/TaxCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Type/TaxCodeType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Type/TaxJurisdictionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Type/TaxJurisdictionType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Type/TaxRateSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Type/TaxRateSelectType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Type/TaxRateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Type/TaxRateType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Type/TaxRuleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Type/TaxRuleType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Type/ZipCodeCollectionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Type/ZipCodeCollectionType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Form/Type/ZipCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Form/Type/ZipCodeType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Mapper/TaxMapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Mapper/TaxMapperInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/MarelloTaxBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/MarelloTaxBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Matcher/AbstractTaxRuleMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Matcher/AbstractTaxRuleMatcher.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Matcher/CompositeTaxRuleMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Matcher/CompositeTaxRuleMatcher.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Matcher/CountryTaxRuleMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Matcher/CountryTaxRuleMatcher.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Matcher/RegionTaxRuleMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Matcher/RegionTaxRuleMatcher.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Matcher/TaxRuleMatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Matcher/TaxRuleMatcherInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Matcher/ZipCodeTaxRuleMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Matcher/ZipCodeTaxRuleMatcher.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Model/AbstractResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Model/AbstractResult.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Model/AbstractResultElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Model/AbstractResultElement.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Model/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Model/Result.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Model/ResultElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Model/ResultElement.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Model/TaxAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Model/TaxAwareInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Model/Taxable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Model/Taxable.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/OrderTax/Mapper/OrderItemMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/OrderTax/Mapper/OrderItemMapper.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/OrderTax/Mapper/OrderMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/OrderTax/Mapper/OrderMapper.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Provider/TaxSubtotalProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Provider/TaxSubtotalProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resolver/AbstractItemResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resolver/AbstractItemResolver.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resolver/CurrencyResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resolver/CurrencyResolver.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resolver/ResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resolver/ResolverInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resolver/RowTotalResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resolver/RowTotalResolver.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resolver/TotalResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resolver/TotalResolver.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/oro/datagrids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/oro/datagrids.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/oro/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/oro/entity.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/oro/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/oro/navigation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloTax/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/doc/api/taxcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Resources/doc/api/taxcode.md -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/views/TaxCode/Autocomplete/result.html.twig: -------------------------------------------------------------------------------- 1 | <%= highlight(_.escape(code)) %> 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/views/TaxCode/Autocomplete/selection.html.twig: -------------------------------------------------------------------------------- 1 | <%= highlight(_.escape(code)) %> 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Resources/views/TaxRate/DataGrid/rate.html.twig: -------------------------------------------------------------------------------- 1 | {{ record.getValue('rate')|oro_format_percent }} 2 | -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Tests/ResultComparatorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Tests/ResultComparatorTrait.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Tests/Unit/Entity/TaxRateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Tests/Unit/Entity/TaxRateTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Tests/Unit/Entity/TaxRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Tests/Unit/Entity/TaxRuleTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Tests/Unit/Entity/ZipCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Tests/Unit/Entity/ZipCodeTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Tests/Unit/Model/ResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Tests/Unit/Model/ResultTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TaxBundle/Tests/Unit/Model/TaxableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TaxBundle/Tests/Unit/Model/TaxableTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Controller/TicketController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Controller/TicketController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Entity/Ticket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Entity/Ticket.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Entity/TicketCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Entity/TicketCategory.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Form/Type/TicketCategoryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Form/Type/TicketCategoryType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Form/Type/TicketType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Form/Type/TicketType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/MarelloTicketBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/MarelloTicketBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Resources/config/oro/search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Resources/config/oro/search.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/TicketBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/TicketBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Cache/ShippingPriceCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Cache/ShippingPriceCache.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Cache/ShippingPriceCacheKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Cache/ShippingPriceCacheKey.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Client/Request/UpsClientRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Client/Request/UpsClientRequest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Controller/AjaxUPSController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Controller/AjaxUPSController.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Entity/ShippingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Entity/ShippingService.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Entity/UPSSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Entity/UPSSettings.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Factory/PriceRequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Factory/PriceRequestFactory.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/MarelloUPSBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/MarelloUPSBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Method/UPSShippingMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Method/UPSShippingMethod.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Method/UPSShippingMethodType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Method/UPSShippingMethodType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Model/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Model/Package.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Model/Request/PriceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Model/Request/PriceRequest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Model/Response/PriceResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Model/Response/PriceResponse.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Provider/ChannelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Provider/ChannelType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Provider/UPSTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Provider/UPSTransport.php -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/README.md -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/connection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/connection.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/controllers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/controllers.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/form_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/form_types.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/jsmodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/jsmodules.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/oro/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/oro/actions.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/oro/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/oro/assets.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/oro/bundles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/oro/bundles.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/oro/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/oro/routing.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/oro/twig.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - '@MarelloUPS/Form/fields.html.twig' 3 | -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/config/validators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/config/validators.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/doc/time_in_transit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/doc/time_in_transit.md -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/public/css/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/public/css/scss/main.scss -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Resources/public/img/ups-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Resources/public/img/ups-logo.gif -------------------------------------------------------------------------------- /src/Marello/Bundle/UPSBundle/Tests/Unit/Model/PackageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/UPSBundle/Tests/Unit/Model/PackageTest.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Async/WebhookSyncProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Async/WebhookSyncProcessor.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Entity/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Entity/Webhook.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Event/AbstractWebhookEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Event/AbstractWebhookEvent.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Event/WebhookEventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Event/WebhookEventInterface.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Form/Type/EventSelectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Form/Type/EventSelectType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Form/Type/WebhookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Form/Type/WebhookType.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Integration/WebhookChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Integration/WebhookChannel.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Manager/WebhookProducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Manager/WebhookProducer.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Manager/WebhookProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Manager/WebhookProvider.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/MarelloWebhookBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/MarelloWebhookBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Model/WebhookContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Model/WebhookContext.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/README.md -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Resources/config/batch_jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Resources/config/batch_jobs.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Resources/config/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Resources/config/form.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Resources/config/mq_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Resources/config/mq_topics.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Resources/config/oro/acls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Resources/config/oro/acls.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/WebhookBundle/Twig/WebhookExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WebhookBundle/Twig/WebhookExtension.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WorkflowBundle/Api/Model/WorkflowTransit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WorkflowBundle/Api/Model/WorkflowTransit.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WorkflowBundle/MarelloWorkflowBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WorkflowBundle/MarelloWorkflowBundle.php -------------------------------------------------------------------------------- /src/Marello/Bundle/WorkflowBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WorkflowBundle/README.md -------------------------------------------------------------------------------- /src/Marello/Bundle/WorkflowBundle/Resources/config/mq_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WorkflowBundle/Resources/config/mq_topics.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/WorkflowBundle/Resources/config/oro/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WorkflowBundle/Resources/config/oro/api.yml -------------------------------------------------------------------------------- /src/Marello/Bundle/WorkflowBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marellocommerce/marello/HEAD/src/Marello/Bundle/WorkflowBundle/Resources/config/services.yml --------------------------------------------------------------------------------