forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
magento#20906: Magento backend catalog "Cost" without currency symbol
magento#20472: Special Price shown without currency symbol in magento backoffice
- Loading branch information
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
app/code/Magento/Catalog/Ui/Component/Listing/Columns/Cost.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
namespace Magento\Catalog\Ui\Component\Listing\Columns; | ||
|
||
/** | ||
* @api | ||
* @since 100.0.2 | ||
*/ | ||
class Cost extends Price | ||
{ | ||
/** | ||
* Column name | ||
*/ | ||
const NAME = 'column.cost'; | ||
} |
18 changes: 18 additions & 0 deletions
18
app/code/Magento/Catalog/Ui/Component/Listing/Columns/SpecialPrice.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
namespace Magento\Catalog\Ui\Component\Listing\Columns; | ||
|
||
/** | ||
* @api | ||
* @since 100.0.2 | ||
*/ | ||
class SpecialPrice extends Price | ||
{ | ||
/** | ||
* Column name | ||
*/ | ||
const NAME = 'column.special_price'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters