12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <entities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataProfileSchema.xsd">
- <entity name="CustomAttributeDynamicPrice" type="custom_attribute">
- <data key="attribute_code">price_type</data>
- <data key="value">0</data>
- </entity>
- <entity name="CustomAttributeFixPrice" type="custom_attribute">
- <data key="attribute_code">price_type</data>
- <data key="value">1</data>
- </entity>
- <entity name="CustomAttributePriceView" type="custom_attribute">
- <data key="attribute_code">price_view</data>
- <data key="value">1</data>
- </entity>
- <entity name="CustomAttributePriceViewRange" type="custom_attribute">
- <data key="attribute_code">price_view</data>
- <data key="value">0</data>
- </entity>
- <entity name="CustomAttributeFixWeight" type="custom_attribute">
- <data key="attribute_code">weight_type</data>
- <data key="value">1</data>
- </entity>
- <entity name="CustomAttributeFixSku" type="custom_attribute">
- <data key="attribute_code">sku_type</data>
- <data key="value">1</data>
- </entity>
- </entities>
|