├── .gitignore ├── LICENSE.txt ├── README.md ├── app ├── Controllers │ ├── AbstractController.php │ ├── AbstractProductTypeController.php │ ├── AssociatedProduct.php │ ├── Association.php │ ├── Attribute.php │ ├── AttributeGroup.php │ ├── Brand.php │ ├── Catalog.php │ ├── Category.php │ ├── Channel.php │ ├── Country.php │ ├── MeasuringUnit.php │ ├── Packaging.php │ ├── Product.php │ ├── ProductAttributeValue.php │ ├── ProductFamily.php │ ├── ProductFamilyAttribute.php │ ├── ProductSerie.php │ └── Tax.php ├── Core │ ├── Loaders │ │ └── EntityManager.php │ ├── ORM │ │ └── EntityManager.php │ └── SelectManagers │ │ └── AbstractSelectManager.php ├── Entities │ ├── AssociatedProduct.php │ ├── Association.php │ ├── Attribute.php │ ├── AttributeGroup.php │ ├── Brand.php │ ├── Catalog.php │ ├── Category.php │ ├── Channel.php │ ├── Country.php │ ├── MeasuringUnit.php │ ├── Packaging.php │ ├── Product.php │ ├── ProductAttributeValue.php │ ├── ProductFamily.php │ ├── ProductFamilyAttribute.php │ ├── ProductSerie.php │ └── Tax.php ├── EntryPoints │ └── Image.php ├── Event.php ├── Import │ └── Types │ │ └── Simple │ │ ├── FieldConverters │ │ └── Unit.php │ │ └── Handlers │ │ └── ProductHandler.php ├── Listeners │ ├── AbstractEntityListener.php │ ├── AssetEntity.php │ ├── AssetRelationEntity.php │ ├── AssociatedProductController.php │ ├── AssociationEntity.php │ ├── AttachmentController.php │ ├── AttributeController.php │ ├── AttributeEntity.php │ ├── AttributeGroupEntity.php │ ├── BrandController.php │ ├── BrandEntity.php │ ├── CatalogEntity.php │ ├── CategoryController.php │ ├── CategoryEntity.php │ ├── ChannelEntity.php │ ├── ExportProfileEntity.php │ ├── ImportFeedEntity.php │ ├── LayoutController.php │ ├── ProductAttributeValueController.php │ ├── ProductAttributeValueEntity.php │ ├── ProductController.php │ ├── ProductEntity.php │ ├── ProductFamilyController.php │ ├── ProductFamilyEntity.php │ ├── SettingsController.php │ ├── StreamController.php │ └── TreoCleanupJob.php ├── Migrations │ ├── V1Dot5Dot5.php │ ├── V1Dot6Dot1.php │ ├── V1Dot7Dot5.php │ ├── V1Dot9Dot1.php │ ├── V2Dot0Dot1.php │ ├── V2Dot12Dot0.php │ ├── V2Dot12Dot1.php │ ├── V2Dot14Dot7.php │ ├── V2Dot2Dot4.php │ ├── V2Dot3Dot0.php │ ├── V2Dot5Dot4.php │ ├── V2Dot6Dot0.php │ ├── V2Dot9Dot1.php │ ├── V2Dot9Dot4.php │ ├── V2Dot9Dot8.php │ ├── V3Dot0Dot1.php │ ├── V3Dot10Dot0.php │ ├── V3Dot10Dot1.php │ ├── V3Dot10Dot2.php │ ├── V3Dot11Dot13.php │ ├── V3Dot11Dot20.php │ ├── V3Dot11Dot23.php │ ├── V3Dot12Dot0.php │ ├── V3Dot12Dot3.php │ ├── V3Dot13Dot0.php │ ├── V3Dot13Dot1.php │ ├── V3Dot1Dot0.php │ └── V3Dot6Dot0.php ├── Module.php ├── ORM │ └── DB │ │ └── Query │ │ └── Mysql.php ├── Repositories │ ├── AssociatedProduct.php │ ├── Association.php │ ├── Attribute.php │ ├── AttributeGroup.php │ ├── Brand.php │ ├── Catalog.php │ ├── Category.php │ ├── Channel.php │ ├── Country.php │ ├── MeasuringUnit.php │ ├── Packaging.php │ ├── Product.php │ ├── ProductAttributeValue.php │ ├── ProductFamily.php │ ├── ProductFamilyAttribute.php │ ├── ProductSerie.php │ └── Tax.php ├── Resources │ ├── i18n │ │ ├── de_DE │ │ │ ├── AbstractTechnical.json │ │ │ ├── Account.json │ │ │ ├── Admin.json │ │ │ ├── Asset.json │ │ │ ├── AssetRelation.json │ │ │ ├── AssociatedProduct.json │ │ │ ├── Association.json │ │ │ ├── Attribute.json │ │ │ ├── AttributeGroup.json │ │ │ ├── Brand.json │ │ │ ├── Catalog.json │ │ │ ├── Category.json │ │ │ ├── Channel.json │ │ │ ├── ChannelsDashlet.json │ │ │ ├── Country.json │ │ │ ├── GeneralStatisticsDashlet.json │ │ │ ├── Global.json │ │ │ ├── MeasuringUnit.json │ │ │ ├── ModuleManager.json │ │ │ ├── Packaging.json │ │ │ ├── Product.json │ │ │ ├── ProductAttribute.json │ │ │ ├── ProductAttributeValue.json │ │ │ ├── ProductFamily.json │ │ │ ├── ProductFamilyAttribute.json │ │ │ ├── ProductSerie.json │ │ │ ├── ProductTypeConfigurable.json │ │ │ ├── ProductTypesDashlet.json │ │ │ ├── ProductsByStatusDashlet.json │ │ │ ├── ProductsByTagDashlet.json │ │ │ └── Tax.json │ │ └── en_US │ │ │ ├── AbstractTechnical.json │ │ │ ├── Account.json │ │ │ ├── Admin.json │ │ │ ├── Asset.json │ │ │ ├── AssetRelation.json │ │ │ ├── AssociatedProduct.json │ │ │ ├── Association.json │ │ │ ├── Attribute.json │ │ │ ├── AttributeGroup.json │ │ │ ├── Brand.json │ │ │ ├── Catalog.json │ │ │ ├── Category.json │ │ │ ├── Channel.json │ │ │ ├── ChannelsDashlet.json │ │ │ ├── Country.json │ │ │ ├── GeneralStatisticsDashlet.json │ │ │ ├── Global.json │ │ │ ├── MeasuringUnit.json │ │ │ ├── ModuleManager.json │ │ │ ├── Packaging.json │ │ │ ├── Product.json │ │ │ ├── ProductAttributeValue.json │ │ │ ├── ProductFamily.json │ │ │ ├── ProductFamilyAttribute.json │ │ │ ├── ProductSerie.json │ │ │ ├── ProductTypeConfigurable.json │ │ │ ├── ProductTypesDashlet.json │ │ │ ├── ProductsByStatusDashlet.json │ │ │ ├── ProductsByTagDashlet.json │ │ │ └── Tax.json │ ├── layouts │ │ ├── AssetRelation │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── AssociatedProduct │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── Association │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ └── massUpdate.json │ │ ├── Attribute │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── filters.json │ │ │ ├── list.json │ │ │ ├── listAttributesInAttrGroup.json │ │ │ └── listSmall.json │ │ ├── AttributeGroup │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ ├── massUpdate.json │ │ │ └── relationships.json │ │ ├── AttributeSet │ │ │ └── relationships.json │ │ ├── Brand │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ ├── massUpdate.json │ │ │ └── relationships.json │ │ ├── Catalog │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ └── relationships.json │ │ ├── Category │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ ├── massUpdate.json │ │ │ ├── relationships.json │ │ │ ├── sidePanelsDetail.json │ │ │ ├── sidePanelsDetailSmall.json │ │ │ └── sidePanelsEdit.json │ │ ├── Channel │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listForChannelsInPricing.json │ │ │ ├── listForChannelsInProduct.json │ │ │ ├── listSmall.json │ │ │ ├── massUpdate.json │ │ │ └── relationships.json │ │ ├── Country │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── MeasuringUnit │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── Packaging │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ ├── massUpdate.json │ │ │ └── relationships.json │ │ ├── Product │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── filters.json │ │ │ ├── list.json │ │ │ ├── listForItemInProducts.json │ │ │ ├── listForProductsInCategory.json │ │ │ ├── listForProductsInSupplier.json │ │ │ ├── listSmall.json │ │ │ ├── relationships.json │ │ │ ├── sidePanelsDetail.json │ │ │ ├── sidePanelsDetailSmall.json │ │ │ └── sidePanelsEdit.json │ │ ├── ProductAttributeValue │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── ProductBundle │ │ │ └── detail.json │ │ ├── ProductCategory │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listForProductCategoriesInCategory.json │ │ │ ├── listForProductCategoriesInProduct.json │ │ │ └── listSmall.json │ │ ├── ProductFamily │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ ├── massUpdate.json │ │ │ └── relationships.json │ │ ├── ProductFamilyAttribute │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ └── listSmall.json │ │ ├── ProductSerie │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ └── relationships.json │ │ ├── ProductStatus │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ ├── massUpdate.json │ │ │ └── relationships.json │ │ ├── ProductTypeBundle │ │ │ └── detailSmall.json │ │ └── Tax │ │ │ ├── detail.json │ │ │ ├── detailSmall.json │ │ │ ├── list.json │ │ │ ├── listSmall.json │ │ │ └── massUpdate.json │ ├── metadata │ │ ├── app │ │ │ ├── clientClassReplaceMap.json │ │ │ ├── jsLibs.json │ │ │ ├── loaders.json │ │ │ └── services.json │ │ ├── clientDefs │ │ │ ├── AssociatedProduct.json │ │ │ ├── Association.json │ │ │ ├── Attribute.json │ │ │ ├── AttributeGroup.json │ │ │ ├── Brand.json │ │ │ ├── Catalog.json │ │ │ ├── Category.json │ │ │ ├── Channel.json │ │ │ ├── Country.json │ │ │ ├── MeasuringUnit.json │ │ │ ├── Packaging.json │ │ │ ├── Product.json │ │ │ ├── ProductAttributeValue.json │ │ │ ├── ProductFamily.json │ │ │ ├── ProductFamilyAttribute.json │ │ │ ├── ProductSerie.json │ │ │ ├── PurchasePrice.json │ │ │ └── Tax.json │ │ ├── completeness │ │ │ ├── ChannelCompleteness.json │ │ │ ├── CompletenessOverview.json │ │ │ └── LocaleCompleteness.json │ │ ├── dashlets │ │ │ ├── Channels.json │ │ │ ├── GeneralStatistics.json │ │ │ ├── ProductStatusOverview.json │ │ │ ├── ProductTypes.json │ │ │ ├── ProductsByStatus.json │ │ │ └── ProductsByTag.json │ │ ├── entityDefs │ │ │ ├── AssociatedProduct.json │ │ │ ├── Association.json │ │ │ ├── Attribute.json │ │ │ ├── AttributeGroup.json │ │ │ ├── Brand.json │ │ │ ├── Call.json │ │ │ ├── Catalog.json │ │ │ ├── Category.json │ │ │ ├── Channel.json │ │ │ ├── Country.json │ │ │ ├── MeasuringUnit.json │ │ │ ├── Note.json │ │ │ ├── Packaging.json │ │ │ ├── Product.json │ │ │ ├── ProductAttributeValue.json │ │ │ ├── ProductFamily.json │ │ │ ├── ProductFamilyAttribute.json │ │ │ ├── ProductSerie.json │ │ │ ├── ScheduledJob.json │ │ │ └── Tax.json │ │ ├── fields │ │ │ └── available-currency.json │ │ ├── import │ │ │ └── simple.json │ │ ├── pim │ │ │ └── productType.json │ │ ├── scopes │ │ │ ├── AssociatedProduct.json │ │ │ ├── Association.json │ │ │ ├── Attribute.json │ │ │ ├── AttributeGroup.json │ │ │ ├── Brand.json │ │ │ ├── Catalog.json │ │ │ ├── Category.json │ │ │ ├── Channel.json │ │ │ ├── ChannelPricing.json │ │ │ ├── Country.json │ │ │ ├── MeasuringUnit.json │ │ │ ├── Packaging.json │ │ │ ├── Product.json │ │ │ ├── ProductAttributeValue.json │ │ │ ├── ProductFamily.json │ │ │ ├── ProductFamilyAttribute.json │ │ │ ├── ProductSerie.json │ │ │ └── Tax.json │ │ └── themes │ │ │ └── TreoDarkTheme.json │ └── routes.json ├── SelectManagers │ ├── Association.php │ ├── Attribute.php │ ├── AttributeGroup.php │ ├── Brand.php │ ├── Catalog.php │ ├── Category.php │ ├── Channel.php │ ├── Packaging.php │ ├── Product.php │ ├── ProductAttributeValue.php │ ├── ProductFamily.php │ ├── ProductFamilyAttribute.php │ └── Tax.php └── Services │ ├── AbstractDashletService.php │ ├── AbstractProductDashletService.php │ ├── AbstractService.php │ ├── AbstractTechnicalService.php │ ├── AssociatedProduct.php │ ├── Association.php │ ├── Attribute.php │ ├── AttributeGroup.php │ ├── Brand.php │ ├── Catalog.php │ ├── Category.php │ ├── Channel.php │ ├── ChannelsDashlet.php │ ├── Country.php │ ├── GeneralStatisticsDashlet.php │ ├── MeasuringUnit.php │ ├── Packaging.php │ ├── Product.php │ ├── ProductAttributeValue.php │ ├── ProductFamily.php │ ├── ProductFamilyAttribute.php │ ├── ProductSerie.php │ ├── ProductTypesDashlet.php │ ├── ProductsByStatusDashlet.php │ ├── ProductsByTagDashlet.php │ ├── QueueManagerCreateLocaleAttribute.php │ ├── QueueManagerDuplicateProduct.php │ ├── RevisionField.php │ └── Tax.php ├── client └── modules │ └── pim │ ├── img │ └── treo_pim_logo_white.svg │ ├── lib │ └── tree.jquery.js │ ├── res │ └── templates │ │ ├── attribute │ │ └── fields │ │ │ └── type-value │ │ │ └── edit.tpl │ │ ├── dashlets │ │ └── fields │ │ │ ├── colored-varchar-with-url │ │ │ └── list.tpl │ │ │ ├── list-link-extended │ │ │ └── list-link.tpl │ │ │ ├── percent-varchar │ │ │ └── list.tpl │ │ │ ├── percent │ │ │ └── list.tpl │ │ │ └── varchar-with-url │ │ │ └── list.tpl │ │ ├── product-attribute-value │ │ └── fields │ │ │ └── base.tpl │ │ ├── product-family │ │ └── record │ │ │ └── panels │ │ │ └── product-family-attributes.tpl │ │ ├── product-type-package │ │ └── grid.tpl │ │ └── product │ │ ├── list.tpl │ │ ├── modals │ │ ├── add-channel-attribute.tpl │ │ ├── empty-data.tpl │ │ ├── select-channel-attributes.tpl │ │ └── select-entity-and-records.tpl │ │ ├── record │ │ ├── catalog-tree-panel.tpl │ │ ├── catalog-tree-panel │ │ │ ├── category-search.tpl │ │ │ └── category-tree.tpl │ │ ├── detail.tpl │ │ ├── panels │ │ │ └── product-attribute-values.tpl │ │ ├── plate-item.tpl │ │ ├── plate.tpl │ │ └── search.tpl │ │ └── search │ │ └── filter.tpl │ └── src │ ├── controllers │ ├── product.js │ └── record-tree.js │ └── views │ ├── asset-relation │ └── fields │ │ └── channels.js │ ├── associated-product │ ├── fields │ │ ├── association.js │ │ ├── backward-association.js │ │ ├── both-directions.js │ │ ├── related-association.js │ │ └── related-product.js │ ├── modals │ │ └── create-associated-product.js │ └── record │ │ ├── edit-small.js │ │ └── row-actions │ │ └── edit-and-remove-in-product.js │ ├── association │ └── fields │ │ └── backward-association.js │ ├── attribute-group │ └── record │ │ └── panels │ │ └── attributes.js │ ├── attribute │ ├── detail.js │ ├── fields │ │ ├── attribute-group.js │ │ ├── type-value.js │ │ └── type.js │ ├── modals │ │ ├── select-records-in-attribute-group.js │ │ └── select-records.js │ └── record │ │ ├── detail.js │ │ ├── list.js │ │ └── row-actions │ │ └── default.js │ ├── brand │ └── record │ │ ├── detail.js │ │ ├── list.js │ │ └── panels │ │ └── products.js │ ├── catalog │ └── record │ │ ├── detail.js │ │ ├── edit.js │ │ ├── list.js │ │ └── panels │ │ └── categories.js │ ├── category │ ├── detail.js │ ├── fields │ │ ├── category-parent.js │ │ └── category-root.js │ ├── list.js │ ├── modals │ │ └── edit-in-product.js │ └── record │ │ ├── detail.js │ │ ├── edit-small-in-product.js │ │ ├── list-tree.js │ │ ├── list.js │ │ └── panels │ │ ├── catalogs.js │ │ └── category-products.js │ ├── channel │ └── record │ │ └── list-in-product.js │ ├── dashlets │ ├── channels.js │ ├── fields │ │ ├── colored-varchar-with-url.js │ │ ├── list-link-extended.js │ │ ├── percent-varchar.js │ │ ├── percent.js │ │ └── varchar-with-url.js │ ├── general-statistics.js │ ├── product-status-overview.js │ ├── product-types.js │ ├── products-by-status.js │ └── products-by-tag.js │ ├── detail.js │ ├── fields │ ├── available-currency.js │ ├── bool-required.js │ ├── code-from-name.js │ ├── currencies.js │ ├── full-width-list-image.js │ ├── overview-channels-filter.js │ └── varchar-with-pattern.js │ ├── header.js │ ├── list.js │ ├── login.js │ ├── modals │ ├── detail-full-form-disabled.js │ ├── edit-without-side.js │ └── remote-image-preview.js │ ├── packaging │ └── record │ │ └── panels │ │ └── products.js │ ├── product-attribute-value │ ├── fields │ │ ├── attribute-with-required-sign.js │ │ ├── attribute.js │ │ ├── channels.js │ │ └── value-container.js │ ├── modals │ │ ├── detail.js │ │ └── edit.js │ └── record │ │ ├── detail-small.js │ │ ├── detail.js │ │ ├── edit-small.js │ │ ├── edit.js │ │ ├── list-in-product.js │ │ ├── list.js │ │ └── row-actions │ │ └── relationship-no-unlink-in-product.js │ ├── product-family-attribute │ └── fields │ │ ├── attribute.js │ │ └── channels.js │ ├── product-family │ ├── fields │ │ └── product-family-template.js │ └── record │ │ ├── detail.js │ │ ├── list.js │ │ ├── panels │ │ ├── product-family-attributes.js │ │ └── products.js │ │ └── row-actions │ │ ├── optioned-remove.js │ │ └── product-family-attributes.js │ ├── product-serie │ └── record │ │ └── panels │ │ └── products.js │ ├── product-type-package │ └── grid.js │ ├── product │ ├── detail.js │ ├── fields │ │ ├── brand.js │ │ ├── catalog.js │ │ ├── image.js │ │ ├── packaging.js │ │ ├── price.js │ │ ├── product-family.js │ │ ├── tax.js │ │ └── type.js │ ├── list.js │ ├── modals │ │ ├── add-channel-attribute.js │ │ ├── select-channel-attributes.js │ │ └── select-entity-and-records.js │ ├── plate.js │ ├── record │ │ ├── catalog-tree-panel.js │ │ ├── catalog-tree-panel │ │ │ ├── category-search.js │ │ │ └── category-tree.js │ │ ├── detail.js │ │ ├── list.js │ │ ├── panels │ │ │ ├── asset-relation-bottom-panel.js │ │ │ ├── asset-type-block.js │ │ │ ├── associated-main-product.js │ │ │ ├── product-attribute-values.js │ │ │ └── product-channels.js │ │ ├── plate-item.js │ │ ├── plate.js │ │ ├── row-actions │ │ │ └── custom-edit-and-unlink.js │ │ └── search.js │ └── search │ │ └── filter.js │ └── record │ ├── detail.js │ ├── list-with-model-edit-check.js │ ├── list.js │ ├── panels │ └── refresh-after-update-related.js │ └── row-actions │ ├── relationship-custom-edit-and-unlink.js │ ├── relationship-custom-unlink-and-remove.js │ └── relationship-unlink-and-remove.js ├── composer.json └── docs ├── README.md ├── _assets ├── .gitkeep ├── associated-products │ ├── ap-actions-menu.jpg │ ├── ap-create-popup.jpg │ ├── ap-create.jpg │ ├── ap-edit.jpg │ ├── ap-list-view-dam.jpg │ ├── ap-list-view.jpg │ ├── ap-mass-actions.jpg │ ├── ap-remove-confirm.jpg │ ├── ap-remove-list.jpg │ ├── ap-remove-panel.jpg │ └── ap-single-record-actions.jpg ├── associations │ ├── associated-products-panel.jpg │ ├── association-editing-popup.jpg │ ├── association-remove-confirm.jpg │ ├── associations-create.jpg │ ├── associations-edit.jpg │ ├── associations-list-view.jpg │ ├── associations-mass-actions.jpg │ ├── associations-single-actions.jpg │ ├── creation-popup.jpg │ ├── edit-option.jpg │ ├── error-msg.jpg │ ├── remove-details.jpg │ └── remove-list.jpg ├── attribute-groups │ ├── ag-create-attribute.jpg │ ├── ag-create.jpg │ ├── ag-editing-popup.jpg │ ├── ag-editing.jpg │ ├── ag-list-view.jpg │ ├── ag-mass-actions.jpg │ ├── ag-remove-confirm.jpg │ ├── ag-remove.jpg │ ├── ag-single-actions.jpg │ ├── attributes-full-list.jpg │ ├── attributes-menu.jpg │ ├── attributes-order-change.jpg │ ├── attributes-panel.jpg │ ├── attributes-select.jpg │ ├── creation-popup.jpg │ ├── remove-details.jpg │ ├── remove-list.jpg │ └── show-full-option.jpg ├── attributes │ ├── attribute-editing-popup.jpg │ ├── attribute-types-list.jpg │ ├── attributes-create.jpg │ ├── attributes-edit.jpg │ ├── attributes-list-view.jpg │ ├── attributes-mass-actions.jpg │ ├── attributes-single-record-actions.jpg │ ├── creation-popup.jpg │ ├── enum-values-list.jpg │ ├── ml-attributes.jpg │ ├── remove-attribute.jpg │ ├── remove-details.jpg │ └── remove-list.jpg ├── brands │ ├── brand-editing-popup.jpg │ ├── brand-products.jpg │ ├── brand-remove-confirm.jpg │ ├── brands-create-product.jpg │ ├── brands-create.jpg │ ├── brands-edit.jpg │ ├── brands-list-view.jpg │ ├── brands-mass-actions.jpg │ ├── brands-products-full-list.jpg │ ├── brands-single-actions.jpg │ ├── creation-popup.jpg │ ├── edit-option.jpg │ ├── products-view.jpg │ ├── remove-details.jpg │ ├── remove-list.jpg │ └── unlink-confirmation.jpg ├── catalogs │ ├── catalog-edit.jpg │ ├── catalog-editing-popup.jpg │ ├── catalog-products.jpg │ ├── catalogs-create-category.jpg │ ├── catalogs-create.jpg │ ├── catalogs-list-view.jpg │ ├── catalogs-mass-actions.jpg │ ├── catalogs-single-actions.jpg │ ├── categories-actions-menu.jpg │ ├── categories-panel.jpg │ ├── categories-select.jpg │ ├── creation-popup.jpg │ ├── products-full-list.jpg │ ├── remove-confirm.jpg │ ├── remove-details.jpg │ ├── remove-list.jpg │ └── show-full-option.jpg ├── categories │ ├── asset-channel.jpg │ ├── asset-creation-popup.jpg │ ├── asset-details.jpg │ ├── asset-relations-panel-categories.jpg │ ├── asset-role.jpg │ ├── assets-actions-menu.jpg │ ├── assets-order.jpg │ ├── assets-select.jpg │ ├── catalogs-actions-menu.jpg │ ├── catalogs-panel.jpg │ ├── catalogs-select.jpg │ ├── categories-create.jpg │ ├── categories-edit.jpg │ ├── categories-editing-popup.jpg │ ├── categories-list-dam.jpg │ ├── categories-list-view.jpg │ ├── categories-mass-actions.jpg │ ├── categories-single-actions.jpg │ ├── category-catalog-create.jpg │ ├── category-main-image.jpg │ ├── category-products-panel.jpg │ ├── category-products-scope.jpg │ ├── category-remove-confirm.jpg │ ├── create-category-product.jpg │ ├── create-product-category.jpg │ ├── creation-popup.jpg │ ├── product-channel.jpg │ ├── products-actions-menu.jpg │ ├── products-order.jpg │ ├── remove-details.jpg │ ├── remove-list.jpg │ ├── tree-view-button.jpg │ └── tree-view.jpg ├── channels │ ├── channel-edit.jpg │ ├── channel-editing-popup.jpg │ ├── channel-products.jpg │ ├── channel-remove-confirm.jpg │ ├── channel-select-products.jpg │ ├── channels-create-locales.jpg │ ├── channels-create-product.jpg │ ├── channels-create.jpg │ ├── channels-list-view.jpg │ ├── channels-mass-actions.jpg │ ├── channels-single-actions.jpg │ ├── creation-popup.jpg │ ├── products-full-list.jpg │ ├── products-view.jpg │ ├── remove-details.jpg │ ├── remove-list.jpg │ ├── show-full-option.jpg │ └── unlink-confirmation.jpg ├── dashboards-and-dashlets │ ├── custom-board.jpg │ ├── custom-dashlets.jpg │ ├── dashboard-editing.jpg │ ├── dashboard-interface.jpg │ ├── dashboard-new.jpg │ ├── dashboard-removing.jpg │ ├── dashlet-options-popup.jpg │ ├── dashlet-options.jpg │ ├── dashlet-refresh.jpg │ ├── dashlet-remove.jpg │ ├── dashlet-resizing.jpg │ └── dashlet.jpg ├── how_it_works_scheme_en.png ├── product-families │ ├── ag-unlink.jpg │ ├── attribute-remove-confirmation.jpg │ ├── attributes-actions-menu.jpg │ ├── attributes-select.jpg │ ├── creation-popup.jpg │ ├── pf-attribute-channel.jpg │ ├── pf-attribute-create.jpg │ ├── pf-attribute-scope.jpg │ ├── pf-attributes-panel.jpg │ ├── pf-attributes-popup.jpg │ ├── pf-create-product.jpg │ ├── pf-create.jpg │ ├── pf-edit.jpg │ ├── pf-editing-popup.jpg │ ├── pf-list-view.jpg │ ├── pf-mass-actions.jpg │ ├── pf-product-attributes.jpg │ ├── pf-products.jpg │ ├── pf-single-actions.jpg │ ├── products-actions-menu.jpg │ ├── products-full-list.jpg │ ├── remove-details.jpg │ ├── remove-list.jpg │ └── show-full-option.jpg ├── products │ ├── active-for-channel.jpg │ ├── ap-actions-menu.jpg │ ├── ap-creating.jpg │ ├── ap-panel-with-dam.jpg │ ├── ap-panel.jpg │ ├── asset-actions-menu.jpg │ ├── asset-channel.jpg │ ├── asset-creation-popup.jpg │ ├── asset-details.jpg │ ├── asset-order.jpg │ ├── asset-relations-panel.jpg │ ├── asset-role.jpg │ ├── assets-select.jpg │ ├── attribute-channel.jpg │ ├── attribute-create.jpg │ ├── attribute-filters.jpg │ ├── attribute-remove-confirmation.jpg │ ├── attribute-scope.jpg │ ├── attributes-actions-menu.jpg │ ├── attributes-select.jpg │ ├── categories-actions-menu.jpg │ ├── categories-select.jpg │ ├── category-channel.jpg │ ├── category-filter-detail-view.jpg │ ├── channel-filter.jpg │ ├── channels-actions-menu.jpg │ ├── channels-panel.jpg │ ├── channels-select.jpg │ ├── create-channel.jpg │ ├── create-product-category.jpg │ ├── creation-popup.jpg │ ├── images-order.jpg │ ├── plate-view.jpg │ ├── product-attributes-panel.jpg │ ├── product-categories-panel.jpg │ ├── product-create.jpg │ ├── product-editing-popup.jpg │ ├── product-main-image.jpg │ ├── product-remove-confirm.jpg │ ├── products-edit.jpg │ ├── products-list-view.jpg │ ├── products-mass-actions.jpg │ ├── products-single-actions.jpg │ ├── remove-details.jpg │ ├── remove-list.jpg │ ├── search-by-category.jpg │ └── without-any-category.jpg ├── search-and-filtering │ ├── attribute-filters.jpg │ ├── filter-added.jpg │ ├── filter-list.jpg │ ├── filter-saved.jpg │ ├── filters-list.jpg │ ├── product-filters.jpg │ ├── remove-filter-option.jpg │ ├── save-filter-option.jpg │ ├── search-and-filtering-panel.jpg │ └── search-filter.jpg ├── system_magento1.png ├── system_magento2.png ├── system_oxid.png ├── system_shopware.png ├── technologie_scheme_eng.png ├── treopim_h80.png ├── user-interface │ ├── activity-stream-actions.jpg │ ├── clear-local-cache-option.jpg │ ├── dashboard.jpg │ ├── dashlet.jpg │ ├── dashlets-order.jpg │ ├── default-list-view.jpg │ ├── desktop-notifications.jpg │ ├── detail-view-page.jpg │ ├── detail-view.jpg │ ├── email-accounts.jpg │ ├── email-actions.jpg │ ├── entry-navigation-buttons.jpg │ ├── filter-added.jpg │ ├── filter-list.jpg │ ├── filter-saved.jpg │ ├── global-actions-for-related-entity.jpg │ ├── global-search.jpg │ ├── last-viewed.jpg │ ├── mass-actions-expanded.jpg │ ├── mass-actions.jpg │ ├── navigation-cfg.jpg │ ├── navigation-menu.jpg │ ├── navigation-user-cfg.jpg │ ├── new-dashboard-create .jpg │ ├── personal-email-accounts-create.jpg │ ├── pim-dashboard-edit.jpg │ ├── queue-manager.jpg │ ├── quick-create.jpg │ ├── related-entity-actions-global.jpg │ ├── related-entity-actions-single.jpg │ ├── related-entity-panel.jpg │ ├── remove-filter-option.jpg │ ├── save-filter-option.jpg │ ├── search-and-filtering-panel.jpg │ ├── search-filter.jpg │ ├── search-filters-list.jpg │ ├── side-view.jpg │ ├── single-record-actions-for-related-entity.jpg │ ├── single-record-actions.jpg │ ├── stream-post-menu.jpg │ ├── stream-post.jpg │ ├── taskbar.jpg │ ├── ui-dashboard-edit.jpg │ ├── ui-dashboard.jpg │ ├── user-access-window.jpg │ ├── user-actions-menu.jpg │ ├── user-change-paswd.jpg │ ├── user-interface-settings.jpg │ ├── user-menu.jpg │ ├── user-preferences.jpg │ ├── user-profile-editing.jpg │ ├── user-profile-stream-menu.jpg │ ├── user-profile-stream.jpg │ └── user-profile.jpg ├── views-and-panels │ ├── create-view.jpg │ ├── default-list-view.jpg │ ├── detail-view-panels.jpg │ ├── detail-view.jpg │ ├── edit-view.jpg │ ├── inline-editing.jpg │ ├── main-actions.jpg │ ├── mass-actions.jpg │ ├── plate-view-cfg.jpg │ ├── plate-view.jpg │ ├── product-filters.jpg │ ├── quick-create-view.jpg │ ├── quick-detail-view.jpg │ ├── quick-edit-view.jpg │ ├── record-navigation-buttons.jpg │ ├── related-entity-actions-global.jpg │ ├── related-entity-actions-single.jpg │ ├── related-entity-panels.jpg │ ├── select-all-option.jpg │ ├── side-view-stream.jpg │ ├── side-view.jpg │ ├── single-record-actions.jpg │ └── total-number.jpg └── zs_ft_19_01_2018_employee_eng2.png ├── de ├── .gitkeep └── faq │ ├── administration.md │ ├── allgemein.md │ ├── beratung-einfuehrung-und-support.md │ ├── infrastruktur.md │ ├── konnektivitaet-datenimport-und-export.md │ ├── kosten.md │ ├── portale.md │ ├── produkt-assets.md │ ├── produktvermarktung.md │ └── produktverwaltung.md └── en ├── .gitkeep ├── administration ├── apache-server-configuration.md ├── nginx-server-configuration.md └── server-configuration.md ├── faq ├── administration.md ├── connectivity-data-import-and-export.md ├── consulting-implementation-and-support.md ├── costs.md ├── general.md ├── infrastructure.md ├── portals.md ├── product-assets.md ├── product-management.md └── product-marketing.md └── user-guide ├── .gitkeep ├── associated-products.md ├── associations.md ├── attribute-groups.md ├── attributes.md ├── brands.md ├── catalogs.md ├── categories.md ├── channels.md ├── dashboards-and-dashlets.md ├── product-families.md ├── products.md ├── search-and-filtering.md ├── user-interface.md ├── views-and-panels.md └── what-is-treopim.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vs/ 3 | 4 | -------------------------------------------------------------------------------- /app/Controllers/Association.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Controllers; 22 | 23 | class Association extends \Espo\Core\Templates\Controllers\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /app/Controllers/Country.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Controllers; 22 | 23 | class Country extends \Espo\Core\Templates\Controllers\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /app/Controllers/Tax.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Controllers; 22 | 23 | class Tax extends \Espo\Core\Templates\Controllers\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /app/Repositories/Brand.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Repositories; 22 | 23 | class Brand extends \Espo\Core\Templates\Repositories\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /app/Repositories/Country.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Repositories; 22 | 23 | class Country extends \Espo\Core\Templates\Repositories\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /app/Repositories/Tax.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Repositories; 22 | 23 | class Tax extends \Espo\Core\Templates\Repositories\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/AbstractTechnical.json: -------------------------------------------------------------------------------- 1 | { 2 | "exceptions": { 3 | "notValid": "Daten sind nicht gültig" 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/Account.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "channel": "Kanal" 4 | }, 5 | "links": { 6 | "channel": "Kanal" 7 | } 8 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/Admin.json: -------------------------------------------------------------------------------- 1 | { 2 | "fieldTypes": { 3 | "available-currency": "Verfügbare Währung" 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/Asset.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "categories": "Kategorien", 4 | "products": "Produkte" 5 | }, 6 | "links": { 7 | "categories": "Kategorien", 8 | "products": "Produkte" 9 | } 10 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/AssetRelation.json: -------------------------------------------------------------------------------- 1 | { 2 | "exceptions": { 3 | "assetMainRole": "Das Asset der Hauptrolle ist bereits für die ausgewählten Kanäle (alle oder einige von ihnen) definiert." 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/AssociatedProduct.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "association": "Assoziation", 4 | "relatedProduct": "Assoziiertes Produkt", 5 | "bothDirections": "Beide Richtungen", 6 | "backwardAssociation": "Umgekehrte Assoziation", 7 | "relatedProductImage": "Assoziiertes Produktbild", 8 | "mainProduct": "Hauptprodukt", 9 | "mainProductImage": "Hauptproduktbild" 10 | }, 11 | "links": { 12 | "association": "Assoziation", 13 | "mainProduct": "Hauptprodukt", 14 | "mainProductImage": "Hauptproduktbild", 15 | "relatedProduct": "Assoziiertes Produkt", 16 | "relatedProductImage": "Assoziiertes Produktbild" 17 | }, 18 | "labels": { 19 | "Create AssociatedProduct": "Zugehöriges Produkt erstellen" 20 | }, 21 | "exceptions": { 22 | "isExistsAssociation": "Die Assoziation existiert bereits" 23 | } 24 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/Catalog.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "isActive": "Aktiv", 4 | "products": "Produkte", 5 | "categories": "Kategorien", 6 | "code": "Code" 7 | }, 8 | "links": { 9 | "channels": "Kanäle", 10 | "products": "Produkte", 11 | "categories": "Kategorien" 12 | }, 13 | "labels": { 14 | "Create Catalog": "Katalog erstellen" 15 | }, 16 | "queueManager": { 17 | "Create product '%s' for catalog '%s'": "Produkt '%s' für den Katalog '%s'" 18 | }, 19 | "exceptions": { 20 | "Catalog cannot be deleted": "Katalog kann nicht gelöscht werden. Es gibt wenige Kanäle, die den aktuellen Katalog verwenden." 21 | } 22 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ChannelsDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "products": "Produkte", 4 | "active": "Aktiv", 5 | "notActive": "Nicht aktiv", 6 | "category": "Kategorie", 7 | "name": "Name" 8 | } 9 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/Country.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "isActive": "Aktiv", 4 | "nameDeDe": "Name (DeDe)", 5 | "nameEnUs": "Name (EnUs)", 6 | "nameEsEs": "Name (EsEs)", 7 | "nameFrFr": "Name (FrFr)" 8 | }, 9 | "links": [], 10 | "labels": { 11 | "Create Country": "Land anlegen" 12 | } 13 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/GeneralStatisticsDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "listFields": { 3 | "generalStatistics": { 4 | "product": "Produkt", 5 | "category": "Kategorie", 6 | "productFamily": "Produktfamilie", 7 | "attribute": "Attribute", 8 | "productWithoutAssociatedProduct": "Produkt ohne zugehöriges Produkt", 9 | "productWithoutCategory": "Produkt ohne Kategorie", 10 | "productWithoutAttribute": "Produkt ohne Attribut", 11 | "productWithoutImage": "Produkt ohne Bild" 12 | } 13 | }, 14 | "fields": { 15 | "amount": "Menge" 16 | } 17 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/MeasuringUnit.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "value": "Wert", 4 | "unit": "Einheit", 5 | "products": "Produkte" 6 | }, 7 | "links": { 8 | "products": "Produkte" 9 | }, 10 | "labels": { 11 | "Create MeasuringUnit": "Messeinheit erstellen" 12 | } 13 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ModuleManager.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleNames": { 3 | "Pim": "PIM" 4 | }, 5 | "moduleDescriptions": { 6 | "Pim": "Modul für Produkt- und abhängige Entities-Verwaltung" 7 | } 8 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/Packaging.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "description": "Beschreibung", 4 | "price": "Preis", 5 | "products": "Produkte", 6 | "teams": "Gruppen", 7 | "createdAt": "erstellt am", 8 | "createdBy": "erstellt von", 9 | "isActive": "Aktiv", 10 | "modifiedAt": "geändert am", 11 | "modifiedBy": "geändert von" 12 | }, 13 | "labels": { 14 | "Create Packaging": "Verpackung anlegen" 15 | }, 16 | "links": { 17 | "products": "Produkte", 18 | "teams": "Gruppen", 19 | "createdBy": "erstellt von", 20 | "modifiedBy": "geändert von" 21 | } 22 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ProductAttribute.json: -------------------------------------------------------------------------------- 1 | { 2 | "labels": { 3 | "Create ProductAttribute": "Produktattribute anlegen" 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ProductFamily.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "code": "Code", 4 | "description": "BeschreibungDeDe", 5 | "isActive": "Aktiv", 6 | "productFamilies": "Produktfamilien", 7 | "products": "Produkte", 8 | "productFamilyAttributes": "Produktfamilie Attribute" 9 | }, 10 | "links": { 11 | "productFamilies": "Produktfamilien", 12 | "products": "Produkte", 13 | "attributes": "Attribute", 14 | "productFamilyAttributes": "Produktfamilie Attribute" 15 | }, 16 | "labels": { 17 | "Create ProductFamily": "Produktfamilie erstellen", 18 | "Select Attribute Group": "Wählen Sie die Attributgruppe aus" 19 | }, 20 | "messages": { 21 | "Can't remove system Product Family": "Das System Produktfamilie kann nicht entfernt werden" 22 | }, 23 | "exceptions": { 24 | "Product Family is used in products": "Die Produktfamilie wird in den Produkten verwendet" 25 | } 26 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ProductFamilyAttribute.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "productFamily": "Produktfamilie", 4 | "attribute": "Attribute", 5 | "isRequired": "Ist Erforderlich", 6 | "channels": "Kanale", 7 | "scope": "Umfang" 8 | }, 9 | "links": { 10 | "productFamily": "Produktfamilie", 11 | "attribute": "Attribute", 12 | "channels": "Kanale" 13 | }, 14 | "labels": { 15 | "Create ProductFamilyAttribute": "Produktfamilie Attribute erstellen" 16 | }, 17 | "options": { 18 | "scope": { 19 | "Global": "Global", 20 | "Channel": "Kanal" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ProductSerie.json: -------------------------------------------------------------------------------- 1 | { 2 | "labels": { 3 | "Create ProductSerie": "Product Serie erstellen" 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ProductTypeConfigurable.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "configurableProduct": "konfigurierbares Produkt", 4 | "product": "Produkt" 5 | }, 6 | "links": { 7 | "configurableProduct": "konfigurierbares Produkt", 8 | "product": "Produkt" 9 | }, 10 | "labels": { 11 | "Create ProductTypeConfigurable": "konfigurierbaren Produkttyp erstellen" 12 | } 13 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ProductTypesDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "total": "Produkte insgesamt", 4 | "notActive": "Nicht Aktiv", 5 | "active": "Aktiv" 6 | } 7 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ProductsByStatusDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "amount": "Menge", 4 | "percent": "Prozent" 5 | } 6 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/ProductsByTagDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "amount": "Menge", 4 | "percent": "Prozent" 5 | } 6 | } -------------------------------------------------------------------------------- /app/Resources/i18n/de_DE/Tax.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "value": "Wert", 4 | "createdAt": "erstellt am", 5 | "createdBy": "erstellt von", 6 | "isActive": "Aktiv", 7 | "modifiedAt": "geändert am", 8 | "modifiedBy": "geändert von", 9 | "nameDeDe": "Name DeDe", 10 | "nameEnUs": "Name EnUs", 11 | "nameEsEs": "Name EsEs", 12 | "nameFrFr": "Name FrFr", 13 | "products": "Produkte", 14 | "teams": "Teams" 15 | }, 16 | "labels": { 17 | "Create Tax": "MwSt. erstellen" 18 | }, 19 | "links": { 20 | "products": "Produkte", 21 | "createdBy": "erstellt von", 22 | "modifiedBy": "geändert von", 23 | "teams": "Teams" 24 | } 25 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/AbstractTechnical.json: -------------------------------------------------------------------------------- 1 | { 2 | "exceptions": { 3 | "notValid": "Data is not valid" 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Account.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "channel": "Channel" 4 | }, 5 | "links": { 6 | "channel": "Channel" 7 | } 8 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Admin.json: -------------------------------------------------------------------------------- 1 | { 2 | "fieldTypes": { 3 | "available-currency": "Available Currency" 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Asset.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "categories": "Categories", 4 | "products": "Products" 5 | }, 6 | "links": { 7 | "categories": "Categories", 8 | "products": "Products" 9 | } 10 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/AssetRelation.json: -------------------------------------------------------------------------------- 1 | { 2 | "exceptions": { 3 | "assetMainRole": "The asset of the main role is already defined for the selected channels (all or several of them)" 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/AssociatedProduct.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "association": "Association", 4 | "bothDirections": "Both Directions", 5 | "backwardAssociation": "Backward Association", 6 | "mainProduct": "Main Product", 7 | "mainProductImage": "Main Product Image", 8 | "relatedProduct": "Related Product", 9 | "relatedProductImage": "Related Product Image" 10 | }, 11 | "links": { 12 | "association": "Association", 13 | "mainProduct": "Main Product", 14 | "mainProductImage": "Main Product Image", 15 | "relatedProduct": "Related Product", 16 | "relatedProductImage": "Related Product Image" 17 | }, 18 | "labels": { 19 | "Create AssociatedProduct": "Create Associated Product" 20 | }, 21 | "exceptions": { 22 | "isExistsAssociation": "This association already exists" 23 | } 24 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Association.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "associatedProducts": "Associated products", 4 | "description": "Description", 5 | "isActive": "Active", 6 | "backwardAssociation": "Backward Association" 7 | }, 8 | "links": { 9 | "associatedProducts": "Associated products", 10 | "backwardAssociation": "Backward Association" 11 | }, 12 | "labels": { 13 | "Create Association": "Create Association" 14 | }, 15 | "exceptions": { 16 | "Association is linked with product(s). Please, unlink product(s) first": "Association is linked with product(s). Please, unlink product(s) first", 17 | "You can not deactivate association with active product(s)": "You can not deactivate association with active product(s)" 18 | } 19 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/AttributeGroup.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "name": "Group Name", 4 | "description": "Description", 5 | "code": "Code", 6 | "isActive": "Active", 7 | "attributes": "Attributes", 8 | "sortOrder": "Sort Order" 9 | }, 10 | "links": { 11 | "attributes": "Attributes" 12 | }, 13 | "labels": { 14 | "Create AttributeGroup": "Create Attribute Group" 15 | }, 16 | "messages": { 17 | "unlinkAttributeGroupConfirmation": "Are you sure you want to unlink all Attribute Group's Attributes?" 18 | }, 19 | "exceptions": { 20 | "Attribute group is linked with attribute(s). Please, unlink attribute(s) first": "Attribute group is linked with attribute(s). Please, unlink attribute(s) first" 21 | } 22 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Brand.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "products": "Products", 4 | "description": "Description", 5 | "isActive": "Active", 6 | "code": "Code" 7 | }, 8 | "links": { 9 | "products": "Products" 10 | }, 11 | "labels": { 12 | "Create Brand": "Create Brand" 13 | }, 14 | "exceptions": { 15 | "Brand with such CODE already exist": "Brand with such CODE already exist", 16 | "Brand is used in products. Please, update products first": "Brand is used in products. Please, update products first" 17 | } 18 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Catalog.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "isActive": "Active", 4 | "products": "Products", 5 | "categories": "Categories", 6 | "code": "Code" 7 | }, 8 | "links": { 9 | "channels": "Channels", 10 | "products": "Products", 11 | "categories": "Categories" 12 | }, 13 | "labels": { 14 | "Create Catalog": "Create Catalog" 15 | }, 16 | "queueManager": { 17 | "Create product '%s' for catalog '%s'": "Create product '%s' for catalog '%s'" 18 | }, 19 | "exceptions": { 20 | "Catalog cannot be deleted": "Catalog cannot be deleted. There are few channels that use current catalog." 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ChannelsDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "name": "Channel", 4 | "products": "Products", 5 | "active": "Active", 6 | "notActive": "Not Active" 7 | } 8 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Country.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "isActive": "Is Active" 4 | }, 5 | "links": [], 6 | "labels": { 7 | "Create Country": "Create Country" 8 | } 9 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/GeneralStatisticsDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "listFields": { 3 | "generalStatistics": { 4 | "product": "Products", 5 | "category": "Categories", 6 | "productFamily": "Product Families", 7 | "attribute": "Attributes", 8 | "productWithoutAssociatedProduct": "Products without Associated Products", 9 | "productWithoutCategory": "Products without any Category", 10 | "productWithoutAttribute": "Products without Product Attributes", 11 | "productWithoutImage": "Products without Image Assets" 12 | } 13 | }, 14 | "fields": { 15 | "amount": "Amount" 16 | } 17 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/MeasuringUnit.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "value": "Value", 4 | "unit": "Unit", 5 | "products": "Products" 6 | }, 7 | "links": { 8 | "products": "Products" 9 | }, 10 | "labels": { 11 | "Create MeasuringUnit": "Create Measuring Unit" 12 | } 13 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ModuleManager.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleNames": { 3 | "Pim": "PIM" 4 | }, 5 | "moduleDescriptions": { 6 | "Pim": "Management of products and its depending entities module" 7 | } 8 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Packaging.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "name": "Name", 4 | "price": "Price", 5 | "description": "Description", 6 | "isActive": "Active" 7 | }, 8 | "links": { 9 | "products": "Products" 10 | }, 11 | "labels": { 12 | "Create Packaging": "Create Packaging" 13 | } 14 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ProductFamily.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "products": "Products", 4 | "description": "Description", 5 | "code": "Code", 6 | "isActive": "Active", 7 | "productFamilies": "Product Families", 8 | "productFamilyAttributes": "Product Family Attributes" 9 | }, 10 | "links": { 11 | "products": "Products", 12 | "productFamilies": "Product Families", 13 | "productFamilyAttributes": "Product Family Attributes" 14 | }, 15 | "labels": { 16 | "Create ProductFamily": "Create Product family", 17 | "Select Attribute Group": "Select Attribute Group" 18 | }, 19 | "messages": { 20 | "Can't remove system Product Family": "Can't remove system Product Family" 21 | }, 22 | "exceptions": { 23 | "Product Family is used in products": "Product Family is used in products" 24 | } 25 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ProductFamilyAttribute.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "productFamily": "Product Family", 4 | "attribute": "Attribute", 5 | "isRequired": "Is required", 6 | "channels": "Channels", 7 | "scope": "Scope" 8 | }, 9 | "links": { 10 | "productFamily": "Product Family", 11 | "attribute": "Attribute", 12 | "channels": "Channels" 13 | }, 14 | "labels": { 15 | "Create ProductFamilyAttribute": "Create Product Family Attribute" 16 | }, 17 | "options": { 18 | "scope": { 19 | "Global": "Global", 20 | "Channel": "Channel" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ProductSerie.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "products": "Products" 4 | }, 5 | "links": { 6 | "products": "Products" 7 | }, 8 | "labels": { 9 | "Create ProductSerie": "Create Product Serie" 10 | } 11 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ProductTypeConfigurable.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "product": "Product", 4 | "configurableProduct": "Configurable Product" 5 | }, 6 | "links": { 7 | "product": "Product", 8 | "configurableProduct": "Configurable Product" 9 | }, 10 | "labels": { 11 | "Create ProductTypeConfigurable": "Create Product Type Configurable" 12 | } 13 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ProductTypesDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "total": "Products Total", 4 | "active": "Active", 5 | "notActive": "Not Active" 6 | } 7 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ProductsByStatusDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "amount": "Amount", 4 | "percent": "Percent" 5 | } 6 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/ProductsByTagDashlet.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "amount": "Amount", 4 | "percent": "Percent" 5 | } 6 | } -------------------------------------------------------------------------------- /app/Resources/i18n/en_US/Tax.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "value": "Value", 4 | "isActive": "Active", 5 | "products": "Products" 6 | }, 7 | "links": { 8 | "products": "Products" 9 | }, 10 | "labels": { 11 | "Create Tax": "Create Tax" 12 | } 13 | } -------------------------------------------------------------------------------- /app/Resources/layouts/AssetRelation/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "rows": [ 4 | [ 5 | { 6 | "name": "role", 7 | "fullWidth": false 8 | } 9 | ], 10 | [ 11 | { 12 | "name": "scope" 13 | }, 14 | { 15 | "name": "channels" 16 | } 17 | ] 18 | ] 19 | } 20 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AssetRelation/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "role" 4 | }, 5 | { 6 | "name": "scope" 7 | }, 8 | { 9 | "name": "channels" 10 | } 11 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AssetRelation/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "role" 4 | }, 5 | { 6 | "name": "scope" 7 | }, 8 | { 9 | "name": "channels" 10 | } 11 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AssociatedProduct/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "association" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "bothDirections" 15 | }, 16 | { 17 | "name": "backwardAssociation" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "mainProduct" 23 | }, 24 | { 25 | "name": "relatedProduct" 26 | } 27 | ] 28 | ] 29 | } 30 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AssociatedProduct/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "association" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "bothDirections" 15 | }, 16 | { 17 | "name": "backwardAssociation" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "mainProduct" 23 | }, 24 | { 25 | "name": "relatedProduct" 26 | } 27 | ] 28 | ] 29 | } 30 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AssociatedProduct/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "association" 4 | }, 5 | { 6 | "name": "mainProduct" 7 | }, 8 | { 9 | "name": "relatedProduct" 10 | } 11 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AssociatedProduct/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "relatedProduct" 4 | }, 5 | { 6 | "name": "association" 7 | } 8 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Association/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "backwardAssociation" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Association/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "backwardAssociation" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Association/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "backwardAssociation" 8 | }, 9 | { 10 | "name": "isActive" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Association/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "backwardAssociation" 8 | }, 9 | { 10 | "name": "isActive" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Association/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "assignedUser", 4 | "teams" 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Attribute/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "type" 9 | }, 10 | { 11 | "name": "code" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "name" 17 | }, 18 | { 19 | "name": "typeValue" 20 | } 21 | ], 22 | [ 23 | { 24 | "name": "attributeGroup" 25 | }, 26 | false 27 | ], 28 | [ 29 | { 30 | "name": "isMultilang" 31 | }, 32 | false 33 | ] 34 | ] 35 | } 36 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Attribute/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "type" 9 | }, 10 | { 11 | "name": "code" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "name" 17 | }, 18 | { 19 | "name": "typeValue" 20 | } 21 | ], 22 | [ 23 | { 24 | "name": "attributeGroup" 25 | }, 26 | false 27 | ], 28 | [ 29 | { 30 | "name": "isMultilang" 31 | }, 32 | false 33 | ] 34 | ] 35 | } 36 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Attribute/filters.json: -------------------------------------------------------------------------------- 1 | [ 2 | "code", 3 | "attributeGroup" 4 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Attribute/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "attributeGroup" 11 | }, 12 | { 13 | "name": "type" 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Attribute/listAttributesInAttrGroup.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true, 5 | "notSortable": true 6 | }, 7 | { 8 | "name": "code", 9 | "notSortable": true 10 | }, 11 | { 12 | "name": "type", 13 | "notSortable": true 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Attribute/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "attributeGroup" 11 | }, 12 | { 13 | "name": "type" 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AttributeGroup/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | { 11 | "name": "code" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "sortOrder" 17 | }, 18 | { 19 | 20 | } 21 | ], 22 | [ 23 | { 24 | "name": "description", 25 | "fullWidth": true 26 | } 27 | ] 28 | ] 29 | } 30 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AttributeGroup/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | { 11 | "name": "code" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "sortOrder" 17 | }, 18 | { 19 | 20 | } 21 | ], 22 | [ 23 | { 24 | "name": "description", 25 | "fullWidth": true 26 | } 27 | ] 28 | ] 29 | } 30 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AttributeGroup/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "sortOrder" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AttributeGroup/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "sortOrder" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AttributeGroup/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "assignedUser", 3 | "teams" 4 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AttributeGroup/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "attributes" 4 | } 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/AttributeSet/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "attributes" 4 | } 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Brand/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | { 11 | "name": "code" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "name" 17 | } 18 | ], 19 | [ 20 | { 21 | "name": "description", 22 | "fullWidth": true 23 | } 24 | ] 25 | ] 26 | } 27 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Brand/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | { 11 | "name": "code" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "name" 17 | } 18 | ], 19 | [ 20 | { 21 | "name": "description", 22 | "fullWidth": true 23 | } 24 | ] 25 | ] 26 | } 27 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Brand/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | }, 9 | { 10 | "name": "code" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Brand/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Brand/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "assignedUser", 4 | "teams" 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Brand/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "products" 4 | } 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Catalog/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "code" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Catalog/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "code" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Catalog/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "categories" 11 | }, 12 | { 13 | "name": "isActive" 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Catalog/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "categories" 11 | }, 12 | { 13 | "name": "isActive" 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Catalog/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "categories" 4 | }, 5 | { 6 | "name": "products" 7 | } 8 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Category/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "categoryParent" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description" 23 | }, 24 | { 25 | "name": "code" 26 | } 27 | ] 28 | ] 29 | } 30 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Category/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "categoryParent" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description" 23 | }, 24 | { 25 | "name": "code" 26 | } 27 | ] 28 | ] 29 | } 30 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Category/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "image" 8 | }, 9 | { 10 | "name": "code" 11 | }, 12 | { 13 | "name": "categoryRouteName" 14 | }, 15 | { 16 | "name": "isActive" 17 | } 18 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Category/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "categoryRouteName" 11 | }, 12 | { 13 | "name": "isActive" 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Category/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "assignedUser", 4 | "teams" 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Category/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "catalogs" 4 | }, 5 | { 6 | "name": "products" 7 | }, 8 | { 9 | "name": "asset_relations" 10 | } 11 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Category/sidePanelsDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": { 3 | "style": null, 4 | "sticked": null, 5 | "index": 0 6 | }, 7 | "default": { 8 | "style": null, 9 | "sticked": null, 10 | "index": 1 11 | } 12 | } -------------------------------------------------------------------------------- /app/Resources/layouts/Category/sidePanelsDetailSmall.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": { 3 | "style": null, 4 | "sticked": null, 5 | "index": 0 6 | }, 7 | "default": { 8 | "style": null, 9 | "sticked": null, 10 | "index": 1 11 | } 12 | } -------------------------------------------------------------------------------- /app/Resources/layouts/Category/sidePanelsEdit.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": { 3 | "style": null, 4 | "sticked": null, 5 | "index": 0 6 | }, 7 | "default": { 8 | "style": null, 9 | "sticked": null, 10 | "index": 1 11 | } 12 | } -------------------------------------------------------------------------------- /app/Resources/layouts/Channel/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | { 11 | "name": "code" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "name" 17 | }, 18 | false 19 | ], 20 | [ 21 | { 22 | "name": "currencies" 23 | }, 24 | { 25 | "name": "locales" 26 | } 27 | ], 28 | [ 29 | { 30 | "name": "description", 31 | "fullWidth": true 32 | } 33 | ] 34 | ] 35 | } 36 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Channel/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | { 11 | "name": "code" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "name" 17 | }, 18 | false 19 | ], 20 | [ 21 | { 22 | "name": "currencies" 23 | }, 24 | { 25 | "name": "locales" 26 | } 27 | ], 28 | [ 29 | { 30 | "name": "description", 31 | "fullWidth": true 32 | } 33 | ] 34 | ] 35 | } 36 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Channel/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "locales" 11 | }, 12 | { 13 | "name": "isActive" 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Channel/listForChannelsInPricing.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true, 5 | "customLabel": "Channel" 6 | }, 7 | { 8 | "name": "code" 9 | }, 10 | { 11 | "name": "isActive", 12 | "customLabel": "Channel Is Active" 13 | } 14 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Channel/listForChannelsInProduct.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | }, 9 | { 10 | "name": "isActiveEntity", 11 | "customLabel": "Active for Channel", 12 | "notSortable": true 13 | } 14 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Channel/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "locales" 11 | }, 12 | { 13 | "name": "isActive" 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Channel/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "assignedUser", 4 | "teams" 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Channel/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "products" 4 | } 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Country/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | { 11 | "name": "isActive" 12 | } 13 | ] 14 | ] 15 | } 16 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Country/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | { 11 | "name": "isActive" 12 | } 13 | ] 14 | ] 15 | } 16 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Country/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Country/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/MeasuringUnit/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | { 11 | "name": "unit" 12 | } 13 | ] 14 | ] 15 | } 16 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/MeasuringUnit/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | { 11 | "name": "unit" 12 | } 13 | ] 14 | ] 15 | } 16 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/MeasuringUnit/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "unit" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/MeasuringUnit/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "unit" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Packaging/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "price" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Packaging/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "price" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Packaging/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "price" 8 | }, 9 | { 10 | "name": "isActive" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Packaging/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "price" 8 | }, 9 | { 10 | "name": "isActive" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Packaging/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "assignedUser", 4 | "teams" 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Packaging/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "products" 4 | } 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "sku" 15 | }, 16 | { 17 | "name": "type" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "catalog" 23 | }, 24 | { 25 | "name": "productFamily" 26 | } 27 | ] 28 | ] 29 | } 30 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/filters.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "type", 4 | "catalog", 5 | "brand", 6 | "productStatus", 7 | "productFamily", 8 | "sku" 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "image" 8 | }, 9 | { 10 | "name": "catalog" 11 | }, 12 | { 13 | "name": "sku" 14 | }, 15 | { 16 | "name": "type" 17 | }, 18 | { 19 | "name": "isActive" 20 | } 21 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/listForItemInProducts.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "type" 4 | }, 5 | { 6 | "name": "name", 7 | "link": true 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/listForProductsInCategory.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "sku" 8 | }, 9 | { 10 | "name": "type" 11 | }, 12 | { 13 | "name": "categories", 14 | "type": "array", 15 | "notSortable": true 16 | }, 17 | { 18 | "name": "isActive" 19 | } 20 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/listForProductsInSupplier.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true, 5 | "notSortable": true 6 | }, 7 | { 8 | "name": "sku", 9 | "notSortable": true 10 | }, 11 | { 12 | "name": "isActive", 13 | "notSortable": true 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "sku" 8 | }, 9 | { 10 | "name": "type" 11 | }, 12 | { 13 | "name": "isActive" 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "productAttributeValues" 4 | }, 5 | { 6 | "name": "categories" 7 | }, 8 | { 9 | "name": "channels" 10 | }, 11 | { 12 | "name": "associatedMainProducts" 13 | }, 14 | { 15 | "name": "asset_relations" 16 | } 17 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Product/sidePanelsDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": { 3 | "style": null, 4 | "sticked": null, 5 | "index": 0 6 | }, 7 | "default": { 8 | "style": null, 9 | "sticked": null, 10 | "index": 1 11 | } 12 | } -------------------------------------------------------------------------------- /app/Resources/layouts/Product/sidePanelsDetailSmall.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": { 3 | "style": null, 4 | "sticked": null, 5 | "index": 0 6 | }, 7 | "default": { 8 | "style": null, 9 | "sticked": null, 10 | "index": 1 11 | } 12 | } -------------------------------------------------------------------------------- /app/Resources/layouts/Product/sidePanelsEdit.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": { 3 | "style": null, 4 | "sticked": null, 5 | "index": 0 6 | }, 7 | "default": { 8 | "style": null, 9 | "sticked": null, 10 | "index": 1 11 | } 12 | } -------------------------------------------------------------------------------- /app/Resources/layouts/ProductAttributeValue/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "scope" 9 | }, 10 | { 11 | "name": "channels" 12 | } 13 | ], 14 | [ 15 | { 16 | "name": "product" 17 | }, 18 | false 19 | ], 20 | [ 21 | { 22 | "name": "attribute" 23 | }, 24 | false 25 | ], 26 | [ 27 | { 28 | "name": "value" 29 | }, 30 | false 31 | ] 32 | ] 33 | } 34 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductAttributeValue/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "attribute" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "scope" 15 | }, 16 | { 17 | "name": "channels" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "value" 23 | }, 24 | false 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductAttributeValue/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "product" 4 | }, 5 | { 6 | "name": "attribute" 7 | }, 8 | { 9 | "name": "isRequired" 10 | }, 11 | { 12 | "name": "value" 13 | }, 14 | { 15 | "name": "scope" 16 | } 17 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductAttributeValue/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "attribute", 4 | "notSortable": true, 5 | "width": "25", 6 | "view": "pim:views/product-attribute-value/fields/attribute-with-required-sign" 7 | }, 8 | { 9 | "name": "value", 10 | "notSortable": true, 11 | "width": "44" 12 | }, 13 | { 14 | "name": "scope", 15 | "notSortable": true, 16 | "width": "14" 17 | }, 18 | { 19 | "name": "channels", 20 | "notSortable": true, 21 | "width": "17" 22 | } 23 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductBundle/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "product" 9 | }, 10 | false 11 | ] 12 | ] 13 | } 14 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductCategory/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "rows": [ 4 | [ 5 | { 6 | "name": "product" 7 | }, 8 | false 9 | ], 10 | [ 11 | { 12 | "name": "category" 13 | }, 14 | false 15 | ], 16 | [ 17 | { 18 | "name": "scope" 19 | }, 20 | { 21 | "name": "channels" 22 | } 23 | ] 24 | ], 25 | "style": "default", 26 | "label": "Overview" 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductCategory/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "rows": [ 4 | [ 5 | { 6 | "name": "product" 7 | }, 8 | false 9 | ], 10 | [ 11 | { 12 | "name": "category" 13 | }, 14 | false 15 | ], 16 | [ 17 | { 18 | "name": "scope" 19 | }, 20 | { 21 | "name": "channels" 22 | } 23 | ], 24 | [ 25 | { 26 | "name": "sorting" 27 | }, 28 | false 29 | ] 30 | ], 31 | "style": "default", 32 | "label": "" 33 | } 34 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductCategory/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "product" 4 | }, 5 | { 6 | "name": "category" 7 | }, 8 | { 9 | "name": "scope" 10 | } 11 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductCategory/listForProductCategoriesInCategory.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "product" 4 | }, 5 | { 6 | "name": "scope" 7 | }, 8 | { 9 | "name": "channels", 10 | "notSortable": true 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductCategory/listForProductCategoriesInProduct.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "category" 4 | }, 5 | { 6 | "name": "scope" 7 | }, 8 | { 9 | "name": "channels", 10 | "notSortable": true 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductCategory/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "category", 4 | "link": true 5 | }, 6 | { 7 | "name": "scope" 8 | }, 9 | { 10 | "name": "channels", 11 | "notSortable": true 12 | } 13 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamily/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "code" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamily/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "code" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamily/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "isActive" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamily/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "code" 8 | }, 9 | { 10 | "name": "isActive" 11 | } 12 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamily/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "assignedUser", 4 | "teams" 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamily/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "productFamilyAttributes" 4 | }, 5 | { 6 | "name": "products" 7 | } 8 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamilyAttribute/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "rows": [ 4 | [ 5 | { 6 | "name": "productFamily" 7 | }, 8 | false 9 | ], 10 | [ 11 | { 12 | "name": "scope" 13 | }, 14 | { 15 | "name": "channels" 16 | } 17 | ], 18 | [ 19 | { 20 | "name": "isRequired" 21 | }, 22 | false 23 | ], 24 | [ 25 | { 26 | "name": "attribute" 27 | }, 28 | false 29 | ] 30 | ], 31 | "style": "default", 32 | "label": "Overview" 33 | } 34 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamilyAttribute/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "rows": [ 4 | [ 5 | { 6 | "name": "attribute" 7 | }, 8 | false 9 | ], 10 | [ 11 | { 12 | "name": "scope" 13 | }, 14 | { 15 | "name": "channels" 16 | } 17 | ], 18 | [ 19 | { 20 | "name": "isRequired" 21 | }, 22 | false 23 | ] 24 | ], 25 | "style": "default", 26 | "label": "" 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamilyAttribute/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "productFamily" 4 | }, 5 | { 6 | "name": "attribute" 7 | }, 8 | { 9 | "name": "isRequired" 10 | }, 11 | { 12 | "name": "scope" 13 | } 14 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductFamilyAttribute/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "attribute" 4 | }, 5 | { 6 | "name": "isRequired" 7 | }, 8 | { 9 | "name": "scope" 10 | }, 11 | { 12 | "name": "channels", 13 | "notSortable": true 14 | } 15 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductSerie/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "description" 15 | }, 16 | false 17 | ] 18 | ] 19 | } 20 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductSerie/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "name" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "description" 15 | }, 16 | false 17 | ] 18 | ] 19 | } 20 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductSerie/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "products" 4 | } 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductStatus/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "color" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductStatus/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "color" 18 | } 19 | ], 20 | [ 21 | { 22 | "name": "description", 23 | "fullWidth": true 24 | } 25 | ] 26 | ] 27 | } 28 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductStatus/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductStatus/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductStatus/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "assignedUser", 4 | "teams" 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductStatus/relationships.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "products" 4 | } 5 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/ProductTypeBundle/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "amount" 9 | }, 10 | false 11 | ] 12 | ] 13 | } 14 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Tax/detail.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "Overview", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "value" 18 | } 19 | ] 20 | ] 21 | } 22 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Tax/detailSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "label": "", 4 | "style": "default", 5 | "rows": [ 6 | [ 7 | { 8 | "name": "isActive" 9 | }, 10 | false 11 | ], 12 | [ 13 | { 14 | "name": "name" 15 | }, 16 | { 17 | "name": "value" 18 | } 19 | ] 20 | ] 21 | } 22 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Tax/list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Tax/listSmall.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "name", 4 | "link": true 5 | }, 6 | { 7 | "name": "isActive" 8 | } 9 | ] -------------------------------------------------------------------------------- /app/Resources/layouts/Tax/massUpdate.json: -------------------------------------------------------------------------------- 1 | [ 2 | "isActive", 3 | "assignedUser", 4 | "teams" 5 | ] -------------------------------------------------------------------------------- /app/Resources/metadata/app/clientClassReplaceMap.json: -------------------------------------------------------------------------------- 1 | { 2 | "views/login": [ 3 | "__APPEND__", 4 | "pim" 5 | ], 6 | "views/header": [ 7 | "__APPEND__", 8 | "pim" 9 | ] 10 | } -------------------------------------------------------------------------------- /app/Resources/metadata/app/jsLibs.json: -------------------------------------------------------------------------------- 1 | { 2 | "JsTree": { 3 | "path": "client/modules/pim/lib/tree.jquery.js", 4 | "exportsTo": "$", 5 | "exportsAs": "jsTree" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /app/Resources/metadata/app/loaders.json: -------------------------------------------------------------------------------- 1 | { 2 | "EntityManager": "Pim\\Core\\Loaders\\EntityManager" 3 | } 4 | -------------------------------------------------------------------------------- /app/Resources/metadata/app/services.json: -------------------------------------------------------------------------------- 1 | { 2 | "ChannelsDashlet": "\\Pim\\Services\\ChannelsDashlet", 3 | "GeneralStatisticsDashlet": "\\Pim\\Services\\GeneralStatisticsDashlet", 4 | "ProductsByStatusDashlet": "\\Pim\\Services\\ProductsByStatusDashlet", 5 | "ProductsByTagDashlet": "\\Pim\\Services\\ProductsByTagDashlet", 6 | "ProductTypesDashlet": "\\Pim\\Services\\ProductTypesDashlet", 7 | "QueueManagerCreateLocaleAttribute": "\\Pim\\Services\\QueueManagerCreateLocaleAttribute", 8 | "QueueManagerDuplicateProduct": "\\Pim\\Services\\QueueManagerDuplicateProduct", 9 | "RevisionField": "\\Pim\\Services\\RevisionField" 10 | } -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Association.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "iconClass": "fas fa-exchange-alt", 4 | "boolFilterList": [ 5 | "onlyMy", 6 | "notUsedAssociations" 7 | ], 8 | "hiddenBoolFilterList": [ 9 | "notUsedAssociations" 10 | ], 11 | "disabledMassActions": [ 12 | "merge" 13 | ], 14 | "views": { 15 | "list": "pim:views/list" 16 | }, 17 | "recordViews": { 18 | "list": "pim:views/record/list" 19 | } 20 | } -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Brand.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "iconClass": "fas fa-tags", 4 | "boolFilterList": [ 5 | "onlyMy" 6 | ], 7 | "disabledMassActions": [ 8 | "merge" 9 | ], 10 | "views": { 11 | "list": "pim:views/list", 12 | "detail": "pim:views/detail" 13 | }, 14 | "recordViews": { 15 | "detail": "pim:views/brand/record/detail", 16 | "list": "pim:views/brand/record/list" 17 | }, 18 | "relationshipPanels": { 19 | "products": { 20 | "view": "pim:views/brand/record/panels/products", 21 | "selectBoolFilterList": ["notLinkedWithBrand"], 22 | "selectAction": "selectRelatedEntity", 23 | "createAction": "createRelatedConfigured" 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Catalog.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "iconClass": "far fa-window-restore", 4 | "boolFilterList": [ 5 | "onlyMy", 6 | "notEntity" 7 | ], 8 | "hiddenBoolFilterList": [ 9 | "notEntity" 10 | ], 11 | "recordViews": { 12 | "edit": "pim:views/catalog/record/edit", 13 | "detail": "pim:views/catalog/record/detail", 14 | "list": "pim:views/catalog/record/list" 15 | }, 16 | "relationshipPanels": { 17 | "categories": { 18 | "view": "pim:views/catalog/record/panels/categories", 19 | "selectAction": "selectRelatedEntity", 20 | "selectBoolFilterList": ["notEntity", "onlyRootCategory"] 21 | }, 22 | "products": { 23 | "select": false, 24 | "create": false, 25 | "rowActionsView": "views/record/row-actions/empty" 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Country.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "iconClass": "fas fa-map-marker-alt", 4 | "boolFilterList": [ 5 | "onlyMy" 6 | ] 7 | } -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/MeasuringUnit.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "iconClass": "fas fa-sign", 4 | "boolFilterList": [ 5 | "onlyMy", 6 | "notUsedAssociations" 7 | ], 8 | "hiddenBoolFilterList": [ 9 | "notUsedAssociations" 10 | ], 11 | "disabledMassActions": [ 12 | "merge" 13 | ], 14 | "views": { 15 | "list": "pim:views/list" 16 | }, 17 | "recordViews": { 18 | "list": "pim:views/record/list" 19 | } 20 | } -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Packaging.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "iconClass": "fas fa-box", 4 | "boolFilterList": [ 5 | "onlyMy", 6 | "notUsedAssociations" 7 | ], 8 | "hiddenBoolFilterList": [ 9 | "notUsedAssociations" 10 | ], 11 | "disabledMassActions": [ 12 | "merge" 13 | ], 14 | "views": { 15 | "list": "pim:views/list", 16 | "detail": "pim:views/detail" 17 | }, 18 | "recordViews": { 19 | "list": "pim:views/record/list" 20 | }, 21 | "relationshipPanels": { 22 | "products": { 23 | "view": "pim:views/packaging/record/panels/products", 24 | "selectAction": "selectRelatedEntity", 25 | "selectBoolFilterList": ["onlyActive", "notLinkedWithPackaging"] 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/ProductSerie.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "iconClass": "far fa-newspaper", 4 | "boolFilterList": [ 5 | "onlyMy" 6 | ], 7 | "views": { 8 | "detail": "pim:views/detail" 9 | }, 10 | "relationshipPanels": { 11 | "products": { 12 | "view": "pim:views/product-serie/record/panels/products", 13 | "createAction": "createRelatedEntity", 14 | "selectAction": "selectRelatedEntity", 15 | "selectBoolFilterList": ["onlyActive", "notLinkedWithProductSerie"] 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/PurchasePrice.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "boolFilterList": [ 4 | "onlyMy" 5 | ] 6 | } -------------------------------------------------------------------------------- /app/Resources/metadata/clientDefs/Tax.json: -------------------------------------------------------------------------------- 1 | { 2 | "controller": "controllers/record", 3 | "iconClass": "fas fa-percent", 4 | "boolFilterList": [ 5 | "onlyMy" 6 | ], 7 | "disabledMassActions": [ 8 | "merge" 9 | ], 10 | "views": { 11 | "list": "pim:views/list" 12 | }, 13 | "recordViews": { 14 | "list": "pim:views/record/list" 15 | } 16 | } -------------------------------------------------------------------------------- /app/Resources/metadata/dashlets/Channels.json: -------------------------------------------------------------------------------- 1 | { 2 | "view": "pim:views/dashlets/channels", 3 | "options": { 4 | "fields": { 5 | "title": { 6 | "type": "varchar", 7 | "required": true 8 | }, 9 | "autorefreshInterval": { 10 | "type": "enumFloat", 11 | "options": [0, 0.5, 1, 2, 5, 10] 12 | } 13 | }, 14 | "defaults": { 15 | "displayRecords": 200, 16 | "autorefreshInterval": 0.5 17 | }, 18 | "layout": [ 19 | { 20 | "rows": [ 21 | [ 22 | {"name": "title"} 23 | ], 24 | [ 25 | {"name": "autorefreshInterval"} 26 | ] 27 | ] 28 | } 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Resources/metadata/dashlets/ProductStatusOverview.json: -------------------------------------------------------------------------------- 1 | { 2 | "view": "pim:views/dashlets/product-status-overview", 3 | "options": { 4 | "fields": { 5 | "title": { 6 | "type": "varchar", 7 | "required": true 8 | }, 9 | "autorefreshInterval": { 10 | "type": "enumFloat", 11 | "options": [0, 0.5, 1, 2, 5, 10] 12 | } 13 | }, 14 | "defaults": { 15 | "displayRecords": 200, 16 | "autorefreshInterval": 0.5 17 | }, 18 | "layout": [ 19 | { 20 | "rows": [ 21 | [ 22 | {"name": "title"} 23 | ], 24 | [ 25 | {"name": "autorefreshInterval"} 26 | ] 27 | ] 28 | } 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Resources/metadata/dashlets/ProductTypes.json: -------------------------------------------------------------------------------- 1 | { 2 | "view": "pim:views/dashlets/product-types", 3 | "options": { 4 | "fields": { 5 | "title": { 6 | "type": "varchar", 7 | "required": true 8 | }, 9 | "autorefreshInterval": { 10 | "type": "enumFloat", 11 | "options": [0, 0.5, 1, 2, 5, 10] 12 | } 13 | }, 14 | "defaults": { 15 | "displayRecords": 200, 16 | "autorefreshInterval": 0.5 17 | }, 18 | "layout": [ 19 | { 20 | "rows": [ 21 | [ 22 | {"name": "title"} 23 | ], 24 | [ 25 | {"name": "autorefreshInterval"} 26 | ] 27 | ] 28 | } 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Resources/metadata/dashlets/ProductsByStatus.json: -------------------------------------------------------------------------------- 1 | { 2 | "view": "pim:views/dashlets/products-by-status", 3 | "options": { 4 | "fields": { 5 | "title": { 6 | "type": "varchar", 7 | "required": true 8 | }, 9 | "autorefreshInterval": { 10 | "type": "enumFloat", 11 | "options": [0, 0.5, 1, 2, 5, 10] 12 | } 13 | }, 14 | "defaults": { 15 | "displayRecords": 200, 16 | "autorefreshInterval": 0.5 17 | }, 18 | "layout": [ 19 | { 20 | "rows": [ 21 | [ 22 | {"name": "title"} 23 | ], 24 | [ 25 | {"name": "autorefreshInterval"} 26 | ] 27 | ] 28 | } 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Resources/metadata/dashlets/ProductsByTag.json: -------------------------------------------------------------------------------- 1 | { 2 | "view": "pim:views/dashlets/products-by-tag", 3 | "options": { 4 | "fields": { 5 | "title": { 6 | "type": "varchar", 7 | "required": true 8 | }, 9 | "autorefreshInterval": { 10 | "type": "enumFloat", 11 | "options": [0, 0.5, 1, 2, 5, 10] 12 | } 13 | }, 14 | "defaults": { 15 | "displayRecords": 200, 16 | "autorefreshInterval": 0.5 17 | }, 18 | "layout": [ 19 | { 20 | "rows": [ 21 | [ 22 | {"name": "title"} 23 | ], 24 | [ 25 | {"name": "autorefreshInterval"} 26 | ] 27 | ] 28 | } 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/Call.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "parent": { 4 | "type": "linkParent", 5 | "entityList": ["Account", "Lead", "Contact", "Opportunity", "Case", "Product"] 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/Note.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "attributeId": { 4 | "type": "varchar" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /app/Resources/metadata/entityDefs/ScheduledJob.json: -------------------------------------------------------------------------------- 1 | { 2 | "jobs": { 3 | "PimCleanup": { 4 | "isSystem": true, 5 | "scheduling": "0 0 * * SUN" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /app/Resources/metadata/fields/available-currency.json: -------------------------------------------------------------------------------- 1 | { 2 | "params":[ 3 | { 4 | "name":"required", 5 | "type":"bool", 6 | "default":false 7 | }, 8 | { 9 | "name":"isSorted", 10 | "type":"bool" 11 | }, 12 | { 13 | "name":"translation", 14 | "type":"varchar", 15 | "hidden": true 16 | }, 17 | { 18 | "name":"audited", 19 | "type":"bool" 20 | }, 21 | { 22 | "name":"readOnly", 23 | "type":"bool" 24 | } 25 | ], 26 | "filter": true, 27 | "fieldDefs":{ 28 | "type":"varchar" 29 | }, 30 | "translatedOptions": true, 31 | "view": "pim:views/fields/available-currency" 32 | } 33 | -------------------------------------------------------------------------------- /app/Resources/metadata/import/simple.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": { 3 | "unit": { 4 | "converter": "\\Pim\\Import\\Types\\Simple\\FieldConverters\\Unit" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /app/Resources/metadata/pim/productType.json: -------------------------------------------------------------------------------- 1 | { 2 | "simpleProduct": { 3 | "name": "Simple Product" 4 | } 5 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/AssociatedProduct.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "disabled": false, 7 | "customizable": true, 8 | "type": "Base", 9 | "module": "Pim", 10 | "importable": true 11 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Association.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true, 15 | "relationDisabled": true 16 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Attribute.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true, 15 | "hasOwner": true, 16 | "hasAssignedUser": true, 17 | "hasTeam": true 18 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/AttributeGroup.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true 15 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Brand.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true, 15 | "hasOwner": true, 16 | "hasAssignedUser": true, 17 | "hasTeam": true 18 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Catalog.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true, 15 | "hasAssignedUser": false, 16 | "hasTeam": false, 17 | "hasOwner": false, 18 | "hasActivities": false, 19 | "hasTasks": false 20 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Category.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true, 15 | "statusField": null 16 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Channel.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true 15 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/ChannelPricing.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": false, 3 | "layouts": false, 4 | "tab": false, 5 | "acl": false, 6 | "aclPortal": false, 7 | "customizable": false, 8 | "importable": false, 9 | "notifications": false, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true 15 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Country.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true, 15 | "isCustom": false 16 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/MeasuringUnit.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true, 15 | "isCustom": false, 16 | "hasOwner": false, 17 | "hasAssignedUser": false, 18 | "hasTeam": false 19 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Packaging.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true 15 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Product.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "aclPortalLevelList": [ 8 | "all", 9 | "own", 10 | "no" 11 | ], 12 | "customizable": true, 13 | "importable": true, 14 | "notifications": true, 15 | "stream": true, 16 | "disabled": false, 17 | "type": "Base", 18 | "module": "Pim", 19 | "object": true, 20 | "hasOwner": true, 21 | "hasAssignedUser": true, 22 | "hasTeam": true, 23 | "advancedFilters": true, 24 | "importTypeSimple": { 25 | "handler": "Pim\\Import\\Types\\Simple\\Handlers\\ProductHandler" 26 | }, 27 | "completeness": { 28 | "service": "Completeness\\Services\\ProductCompleteness" 29 | } 30 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/ProductAttributeValue.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": false, 3 | "layouts": false, 4 | "tab": false, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": false, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true, 15 | "hasOwner": true, 16 | "hasAssignedUser": true, 17 | "hasTeam": true, 18 | "completeness": { 19 | "replacement" : "Product", 20 | "service": "Completeness\\Services\\ProductCompleteness" 21 | } 22 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/ProductFamily.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": true, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": true 15 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/ProductFamilyAttribute.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": false, 3 | "layouts": false, 4 | "tab": false, 5 | "acl": true, 6 | "aclPortal": true, 7 | "customizable": false, 8 | "importable": true, 9 | "notifications": true, 10 | "stream": false, 11 | "disabled": false, 12 | "type": "Base", 13 | "module": "Pim", 14 | "object": false, 15 | "hasAssignedUser": true, 16 | "hasTeam": true, 17 | "hasOwner": true, 18 | "statusField": null 19 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/ProductSerie.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "aclPortalLevelList": [ 8 | "all", 9 | "own", 10 | "no" 11 | ], 12 | "customizable": true, 13 | "importable": true, 14 | "notifications": true, 15 | "stream": false, 16 | "disabled": false, 17 | "type": "Base", 18 | "module": "Pim", 19 | "object": true, 20 | "hasAssignedUser": true, 21 | "hasTeam": true, 22 | "hasOwner": true, 23 | "hasActivities": false, 24 | "hasTasks": false 25 | } -------------------------------------------------------------------------------- /app/Resources/metadata/scopes/Tax.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": true, 3 | "layouts": true, 4 | "tab": true, 5 | "acl": true, 6 | "aclPortal": true, 7 | "aclPortalLevelList": [ 8 | "all", 9 | "own", 10 | "no" 11 | ], 12 | "customizable": true, 13 | "importable": true, 14 | "notifications": true, 15 | "stream": false, 16 | "disabled": false, 17 | "type": "Base", 18 | "module": "Pim", 19 | "object": true, 20 | "isCustom": false 21 | } -------------------------------------------------------------------------------- /app/Resources/metadata/themes/TreoDarkTheme.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo": "client/modules/pim/img/treo_pim_logo_white.svg" 3 | } -------------------------------------------------------------------------------- /app/Services/Association.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Services; 22 | 23 | class Association extends \Espo\Core\Templates\Services\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /app/Services/Country.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Services; 22 | 23 | class Country extends \Espo\Core\Templates\Services\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /app/Services/Tax.php: -------------------------------------------------------------------------------- 1 | . 19 | */ 20 | 21 | namespace Pim\Services; 22 | 23 | class Tax extends \Espo\Core\Templates\Services\Base 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /client/modules/pim/res/templates/dashlets/fields/colored-varchar-with-url/list.tpl: -------------------------------------------------------------------------------- 1 | {{#if hasUrl}} 2 | {{label}} 3 | {{else}} 4 | {{label}} 5 | {{/if}} -------------------------------------------------------------------------------- /client/modules/pim/res/templates/dashlets/fields/list-link-extended/list-link.tpl: -------------------------------------------------------------------------------- 1 | {{#if value}}{{value}}{{else}}{{translate 'None'}}{{/if}} 2 | -------------------------------------------------------------------------------- /client/modules/pim/res/templates/dashlets/fields/percent-varchar/list.tpl: -------------------------------------------------------------------------------- 1 | {{#if isNotEmpty}}{{value}}{{else}}-{{/if}} 2 | -------------------------------------------------------------------------------- /client/modules/pim/res/templates/dashlets/fields/percent/list.tpl: -------------------------------------------------------------------------------- 1 | {{value}} -------------------------------------------------------------------------------- /client/modules/pim/res/templates/dashlets/fields/varchar-with-url/list.tpl: -------------------------------------------------------------------------------- 1 | {{#if hasUrl}} 2 | {{label}} 3 | {{else}} 4 | {{label}} 5 | {{/if}} -------------------------------------------------------------------------------- /client/modules/pim/res/templates/product-attribute-value/fields/base.tpl: -------------------------------------------------------------------------------- 1 |
{{{valueField}}}
-------------------------------------------------------------------------------- /client/modules/pim/res/templates/product-type-package/grid.tpl: -------------------------------------------------------------------------------- 1 | {{#each layoutFields}} 2 |
3 | 6 |
7 |
8 | {{/each}} -------------------------------------------------------------------------------- /client/modules/pim/res/templates/product/list.tpl: -------------------------------------------------------------------------------- 1 | 2 |
{{{search}}}
3 | {{#if isCatalogTreePanel}}
{{{catalogTreePanel}}}
{{/if}} 4 |
{{{list}}}
-------------------------------------------------------------------------------- /client/modules/pim/res/templates/product/modals/add-channel-attribute.tpl: -------------------------------------------------------------------------------- 1 |
{{{edit}}}
2 | -------------------------------------------------------------------------------- /client/modules/pim/res/templates/product/modals/empty-data.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
{{translate 'There is no valid attributes for channel' category='labels' scope='Product'}}
9 |
10 |
11 |
12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /client/modules/pim/res/templates/product/modals/select-channel-attributes.tpl: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /client/modules/pim/res/templates/product/record/catalog-tree-panel/category-search.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
-------------------------------------------------------------------------------- /client/modules/pim/res/templates/product/record/catalog-tree-panel/category-tree.tpl: -------------------------------------------------------------------------------- 1 | 5 |
6 | 11 |
12 | -------------------------------------------------------------------------------- /client/modules/pim/res/templates/product/search/filter.tpl: -------------------------------------------------------------------------------- 1 |
2 | {{#unless notRemovable}}{{/unless}} 3 | 4 |
{{{field}}}
5 |
-------------------------------------------------------------------------------- /client/modules/pim/src/views/product/record/panels/asset-relation-bottom-panel.js: -------------------------------------------------------------------------------- 1 | Espo.define('pim:views/product/record/panels/asset-relation-bottom-panel', 'dam:views/asset_relation/record/panels/bottom-panel', 2 | Dep => Dep.extend({ 3 | additionalData: {}, 4 | 5 | _createTypeBlock(model, show, callback) { 6 | let data = { 7 | entityName: this.defs.entityName, 8 | entityId : this.model.id, 9 | entityModel : this.model 10 | }; 11 | model.set({...data, ...this.additionalData}); 12 | this.createView(model.get('name'), "pim:views/product/record/panels/asset-type-block", { 13 | model: model, 14 | el : this.options.el + ' .group[data-name="' + model.get("name") + '"]', 15 | sort : this.sort, 16 | show : show 17 | }); 18 | } 19 | }) 20 | ); -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "treolabs/pim", 3 | "description": "TreoPIM. Open source PIM application.", 4 | "homepage": "https://treopim.com", 5 | "license": "GPL-3.0-only", 6 | "require": { 7 | "treolabs/treocore": "~3.25.15", 8 | "treolabs/colored-fields": "~1.7.13", 9 | "treolabs/multi-languages": "~1.14.0", 10 | "treolabs/import-feeds-common": "~1.4.0", 11 | "treolabs/treodam-common": "~1.0.0", 12 | "treolabs/completeness-common": "~1.1.0" 13 | }, 14 | "autoload": { 15 | "psr-4": { 16 | "Pim\\": "app/" 17 | } 18 | }, 19 | "extra": { 20 | "treoId": "Pim", 21 | "version": "3.13.x", 22 | "name": { 23 | "default": "PIM" 24 | }, 25 | "description": { 26 | "default": "PIM module for Treo Core." 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | Please note, Documentation is NOT licenced under GPLv3 and is property of TreoLabs GmbH. 2 | -------------------------------------------------------------------------------- /docs/_assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/.gitkeep -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-create-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-create-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-create.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-list-view-dam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-list-view-dam.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-remove-confirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-remove-confirm.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-remove-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-remove-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/associated-products/ap-single-record-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associated-products/ap-single-record-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/associated-products-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/associated-products-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/association-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/association-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/association-remove-confirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/association-remove-confirm.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/associations-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/associations-create.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/associations-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/associations-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/associations-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/associations-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/associations-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/associations-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/associations-single-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/associations-single-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/edit-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/edit-option.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/error-msg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/error-msg.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/associations/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/associations/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-create-attribute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-create-attribute.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-create.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-editing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-editing.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-remove-confirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-remove-confirm.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-remove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-remove.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/ag-single-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/ag-single-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/attributes-full-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/attributes-full-list.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/attributes-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/attributes-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/attributes-order-change.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/attributes-order-change.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/attributes-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/attributes-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/attributes-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/attributes-select.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/attribute-groups/show-full-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attribute-groups/show-full-option.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/attribute-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/attribute-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/attribute-types-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/attribute-types-list.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/attributes-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/attributes-create.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/attributes-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/attributes-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/attributes-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/attributes-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/attributes-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/attributes-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/attributes-single-record-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/attributes-single-record-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/enum-values-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/enum-values-list.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/ml-attributes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/ml-attributes.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/remove-attribute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/remove-attribute.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/attributes/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/attributes/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brand-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brand-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brand-products.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brand-products.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brand-remove-confirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brand-remove-confirm.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brands-create-product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brands-create-product.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brands-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brands-create.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brands-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brands-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brands-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brands-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brands-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brands-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brands-products-full-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brands-products-full-list.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/brands-single-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/brands-single-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/edit-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/edit-option.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/products-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/products-view.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/brands/unlink-confirmation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/brands/unlink-confirmation.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/catalog-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/catalog-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/catalog-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/catalog-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/catalog-products.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/catalog-products.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/catalogs-create-category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/catalogs-create-category.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/catalogs-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/catalogs-create.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/catalogs-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/catalogs-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/catalogs-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/catalogs-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/catalogs-single-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/catalogs-single-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/categories-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/categories-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/categories-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/categories-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/categories-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/categories-select.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/products-full-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/products-full-list.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/remove-confirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/remove-confirm.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/catalogs/show-full-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/catalogs/show-full-option.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/asset-channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/asset-channel.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/asset-creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/asset-creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/asset-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/asset-details.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/asset-relations-panel-categories.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/asset-relations-panel-categories.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/asset-role.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/asset-role.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/assets-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/assets-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/assets-order.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/assets-order.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/assets-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/assets-select.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/catalogs-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/catalogs-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/catalogs-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/catalogs-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/catalogs-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/catalogs-select.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/categories-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/categories-create.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/categories-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/categories-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/categories-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/categories-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/categories-list-dam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/categories-list-dam.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/categories-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/categories-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/categories-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/categories-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/categories-single-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/categories-single-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/category-catalog-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/category-catalog-create.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/category-main-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/category-main-image.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/category-products-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/category-products-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/category-products-scope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/category-products-scope.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/category-remove-confirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/category-remove-confirm.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/create-category-product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/create-category-product.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/create-product-category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/create-product-category.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/product-channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/product-channel.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/products-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/products-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/products-order.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/products-order.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/tree-view-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/tree-view-button.jpg -------------------------------------------------------------------------------- /docs/_assets/categories/tree-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/categories/tree-view.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channel-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channel-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channel-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channel-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channel-products.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channel-products.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channel-remove-confirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channel-remove-confirm.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channel-select-products.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channel-select-products.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channels-create-locales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channels-create-locales.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channels-create-product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channels-create-product.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channels-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channels-create.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channels-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channels-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channels-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channels-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/channels-single-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/channels-single-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/products-full-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/products-full-list.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/products-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/products-view.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/show-full-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/show-full-option.jpg -------------------------------------------------------------------------------- /docs/_assets/channels/unlink-confirmation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/channels/unlink-confirmation.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/custom-board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/custom-board.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/custom-dashlets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/custom-dashlets.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashboard-editing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashboard-editing.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashboard-interface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashboard-interface.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashboard-new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashboard-new.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashboard-removing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashboard-removing.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashlet-options-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashlet-options-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashlet-options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashlet-options.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashlet-refresh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashlet-refresh.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashlet-remove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashlet-remove.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashlet-resizing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashlet-resizing.jpg -------------------------------------------------------------------------------- /docs/_assets/dashboards-and-dashlets/dashlet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/dashboards-and-dashlets/dashlet.jpg -------------------------------------------------------------------------------- /docs/_assets/how_it_works_scheme_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/how_it_works_scheme_en.png -------------------------------------------------------------------------------- /docs/_assets/product-families/ag-unlink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/ag-unlink.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/attribute-remove-confirmation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/attribute-remove-confirmation.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/attributes-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/attributes-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/attributes-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/attributes-select.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-attribute-channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-attribute-channel.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-attribute-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-attribute-create.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-attribute-scope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-attribute-scope.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-attributes-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-attributes-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-attributes-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-attributes-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-create-product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-create-product.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-create.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-product-attributes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-product-attributes.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-products.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-products.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/pf-single-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/pf-single-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/products-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/products-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/products-full-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/products-full-list.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/product-families/show-full-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/product-families/show-full-option.jpg -------------------------------------------------------------------------------- /docs/_assets/products/active-for-channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/active-for-channel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/ap-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/ap-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/products/ap-creating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/ap-creating.jpg -------------------------------------------------------------------------------- /docs/_assets/products/ap-panel-with-dam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/ap-panel-with-dam.jpg -------------------------------------------------------------------------------- /docs/_assets/products/ap-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/ap-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/asset-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/asset-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/products/asset-channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/asset-channel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/asset-creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/asset-creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/products/asset-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/asset-details.jpg -------------------------------------------------------------------------------- /docs/_assets/products/asset-order.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/asset-order.jpg -------------------------------------------------------------------------------- /docs/_assets/products/asset-relations-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/asset-relations-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/asset-role.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/asset-role.jpg -------------------------------------------------------------------------------- /docs/_assets/products/assets-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/assets-select.jpg -------------------------------------------------------------------------------- /docs/_assets/products/attribute-channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/attribute-channel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/attribute-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/attribute-create.jpg -------------------------------------------------------------------------------- /docs/_assets/products/attribute-filters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/attribute-filters.jpg -------------------------------------------------------------------------------- /docs/_assets/products/attribute-remove-confirmation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/attribute-remove-confirmation.jpg -------------------------------------------------------------------------------- /docs/_assets/products/attribute-scope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/attribute-scope.jpg -------------------------------------------------------------------------------- /docs/_assets/products/attributes-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/attributes-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/products/attributes-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/attributes-select.jpg -------------------------------------------------------------------------------- /docs/_assets/products/categories-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/categories-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/products/categories-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/categories-select.jpg -------------------------------------------------------------------------------- /docs/_assets/products/category-channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/category-channel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/category-filter-detail-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/category-filter-detail-view.jpg -------------------------------------------------------------------------------- /docs/_assets/products/channel-filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/channel-filter.jpg -------------------------------------------------------------------------------- /docs/_assets/products/channels-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/channels-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/products/channels-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/channels-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/channels-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/channels-select.jpg -------------------------------------------------------------------------------- /docs/_assets/products/create-channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/create-channel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/create-product-category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/create-product-category.jpg -------------------------------------------------------------------------------- /docs/_assets/products/creation-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/creation-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/products/images-order.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/images-order.jpg -------------------------------------------------------------------------------- /docs/_assets/products/plate-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/plate-view.jpg -------------------------------------------------------------------------------- /docs/_assets/products/product-attributes-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/product-attributes-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/product-categories-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/product-categories-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/products/product-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/product-create.jpg -------------------------------------------------------------------------------- /docs/_assets/products/product-editing-popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/product-editing-popup.jpg -------------------------------------------------------------------------------- /docs/_assets/products/product-main-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/product-main-image.jpg -------------------------------------------------------------------------------- /docs/_assets/products/product-remove-confirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/product-remove-confirm.jpg -------------------------------------------------------------------------------- /docs/_assets/products/products-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/products-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/products/products-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/products-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/products/products-mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/products-mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/products/products-single-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/products-single-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/products/remove-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/remove-details.jpg -------------------------------------------------------------------------------- /docs/_assets/products/remove-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/remove-list.jpg -------------------------------------------------------------------------------- /docs/_assets/products/search-by-category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/search-by-category.jpg -------------------------------------------------------------------------------- /docs/_assets/products/without-any-category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/products/without-any-category.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/attribute-filters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/attribute-filters.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/filter-added.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/filter-added.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/filter-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/filter-list.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/filter-saved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/filter-saved.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/filters-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/filters-list.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/product-filters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/product-filters.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/remove-filter-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/remove-filter-option.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/save-filter-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/save-filter-option.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/search-and-filtering-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/search-and-filtering-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/search-and-filtering/search-filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/search-and-filtering/search-filter.jpg -------------------------------------------------------------------------------- /docs/_assets/system_magento1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/system_magento1.png -------------------------------------------------------------------------------- /docs/_assets/system_magento2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/system_magento2.png -------------------------------------------------------------------------------- /docs/_assets/system_oxid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/system_oxid.png -------------------------------------------------------------------------------- /docs/_assets/system_shopware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/system_shopware.png -------------------------------------------------------------------------------- /docs/_assets/technologie_scheme_eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/technologie_scheme_eng.png -------------------------------------------------------------------------------- /docs/_assets/treopim_h80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/treopim_h80.png -------------------------------------------------------------------------------- /docs/_assets/user-interface/activity-stream-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/activity-stream-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/clear-local-cache-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/clear-local-cache-option.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/dashboard.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/dashlet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/dashlet.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/dashlets-order.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/dashlets-order.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/default-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/default-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/desktop-notifications.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/desktop-notifications.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/detail-view-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/detail-view-page.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/detail-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/detail-view.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/email-accounts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/email-accounts.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/email-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/email-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/entry-navigation-buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/entry-navigation-buttons.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/filter-added.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/filter-added.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/filter-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/filter-list.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/filter-saved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/filter-saved.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/global-actions-for-related-entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/global-actions-for-related-entity.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/global-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/global-search.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/last-viewed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/last-viewed.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/mass-actions-expanded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/mass-actions-expanded.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/navigation-cfg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/navigation-cfg.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/navigation-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/navigation-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/navigation-user-cfg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/navigation-user-cfg.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/new-dashboard-create .jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/new-dashboard-create .jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/personal-email-accounts-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/personal-email-accounts-create.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/pim-dashboard-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/pim-dashboard-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/queue-manager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/queue-manager.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/quick-create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/quick-create.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/related-entity-actions-global.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/related-entity-actions-global.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/related-entity-actions-single.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/related-entity-actions-single.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/related-entity-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/related-entity-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/remove-filter-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/remove-filter-option.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/save-filter-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/save-filter-option.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/search-and-filtering-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/search-and-filtering-panel.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/search-filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/search-filter.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/search-filters-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/search-filters-list.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/side-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/side-view.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/single-record-actions-for-related-entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/single-record-actions-for-related-entity.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/single-record-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/single-record-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/stream-post-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/stream-post-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/stream-post.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/stream-post.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/taskbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/taskbar.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/ui-dashboard-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/ui-dashboard-edit.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/ui-dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/ui-dashboard.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-access-window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-access-window.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-actions-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-actions-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-change-paswd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-change-paswd.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-interface-settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-interface-settings.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-preferences.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-preferences.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-profile-editing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-profile-editing.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-profile-stream-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-profile-stream-menu.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-profile-stream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-profile-stream.jpg -------------------------------------------------------------------------------- /docs/_assets/user-interface/user-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/user-interface/user-profile.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/create-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/create-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/default-list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/default-list-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/detail-view-panels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/detail-view-panels.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/detail-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/detail-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/edit-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/edit-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/inline-editing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/inline-editing.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/main-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/main-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/mass-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/mass-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/plate-view-cfg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/plate-view-cfg.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/plate-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/plate-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/product-filters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/product-filters.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/quick-create-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/quick-create-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/quick-detail-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/quick-detail-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/quick-edit-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/quick-edit-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/record-navigation-buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/record-navigation-buttons.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/related-entity-actions-global.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/related-entity-actions-global.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/related-entity-actions-single.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/related-entity-actions-single.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/related-entity-panels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/related-entity-panels.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/select-all-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/select-all-option.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/side-view-stream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/side-view-stream.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/side-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/side-view.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/single-record-actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/single-record-actions.jpg -------------------------------------------------------------------------------- /docs/_assets/views-and-panels/total-number.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/views-and-panels/total-number.jpg -------------------------------------------------------------------------------- /docs/_assets/zs_ft_19_01_2018_employee_eng2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/_assets/zs_ft_19_01_2018_employee_eng2.png -------------------------------------------------------------------------------- /docs/de/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/de/.gitkeep -------------------------------------------------------------------------------- /docs/en/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/en/.gitkeep -------------------------------------------------------------------------------- /docs/en/administration/apache-server-configuration.md: -------------------------------------------------------------------------------- 1 | ## Apache server configuration 2 | These instructions are supplementary to the [Server Configuration](server-configuration.md) guideline. 3 | 4 | #### PHP Requirements 5 | To install all necessary libraries, run these commands in a terminal: 6 | ``` 7 | sudo apt-get update 8 | sudo apt-get install php-mysql php-json php-gd php-zip php-imap php-mbstring php-curl 9 | sudo phpenmod imap mbstring 10 | sudo service apache2 restart 11 | ``` 12 | -------------------------------------------------------------------------------- /docs/en/administration/nginx-server-configuration.md: -------------------------------------------------------------------------------- 1 | ## Nginx server configuration 2 | These instructions are supplementary to the [Server Configuration](server-configuration.md) guideline. 3 | 4 | #### PHP Requirements 5 | To install all necessary libraries, run these commands in a terminal: 6 | ``` 7 | sudo apt-get update 8 | sudo apt-get install php-mysql php-json php-gd php-zip php-imap php-mbstring php-curl 9 | sudo phpenmod imap mbstring 10 | sudo service nginx restart 11 | ``` 12 | -------------------------------------------------------------------------------- /docs/en/user-guide/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treolabs/treopim/a45f2e12c72a2b05f8740be43049c33aaf4b4377/docs/en/user-guide/.gitkeep --------------------------------------------------------------------------------