Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Magento backend catalog MSRP without currency symbol #21911

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,13 @@
<label translate="true">Websites</label>
</settings>
</column>
<column name="special_price" class="Magento\Catalog\Ui\Component\Listing\Columns\Price" sortOrder="110">
<settings>
<addField>true</addField>
<filter>textRange</filter>
<label translate="true">Special Price</label>
</settings>
</column>
<column name="cost" class="Magento\Catalog\Ui\Component\Listing\Columns\Price" sortOrder="120">
<settings>
<addField>true</addField>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="product_columns" class="Magento\Catalog\Ui\Component\Listing\Columns">
<column name="msrp" class="Magento\Catalog\Ui\Component\Listing\Columns\Price" sortOrder="130">
<settings>
<addField>true</addField>
<filter>textRange</filter>
<label translate="true">Manufacturer's Suggested Retail Price</label>
</settings>
</column>
</columns>
</listing>