File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
app/code/Magento/Bundle/Block
Adminhtml/Sales/Order/View/Items Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ public function getValueHtml($item)
211
211
if (!$ this ->isChildCalculated ($ item )) {
212
212
$ attributes = $ this ->getSelectionAttributes ($ item );
213
213
if ($ attributes ) {
214
- $ result .= " " . $ this ->getItem ()->getOrder ()->formatPrice ($ attributes ['price ' ]);
214
+ $ result .= " " . $ this ->getItem ()->getOrder ()->formatBasePrice ($ attributes ['price ' ]);
215
215
}
216
216
}
217
217
return $ result ;
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ public function getValueHtml($item)
141
141
{
142
142
if ($ attributes = $ this ->getSelectionAttributes ($ item )) {
143
143
return sprintf ('%d ' , $ attributes ['qty ' ]) . ' x ' . $ this ->escapeHtml ($ item ->getName ()) . " "
144
- . $ this ->getOrder ()->formatPrice ($ attributes ['price ' ]);
144
+ . $ this ->getOrder ()->formatBasePrice ($ attributes ['price ' ]);
145
145
}
146
146
return $ this ->escapeHtml ($ item ->getName ());
147
147
}
You can’t perform that action at this time.
0 commit comments