commit product manager produce ID display RFE
This commit is contained in:
parent
efea7c9685
commit
0155c43c6e
3 changed files with 11 additions and 1 deletions
|
|
@ -27,6 +27,10 @@
|
|||
Consulting, LLC)
|
||||
- fix: Order of content position loops in Page Layout (Yung Han Khoe, United Knowledge)
|
||||
http://www.plainblack.com/bugs/tracker/7.4-order-of-content-position-loops-in-page-layout
|
||||
- RFE: Product (operation based) (perlDreamer Consulting, LLC.)
|
||||
Display the productId in the product manager to make it easier to use
|
||||
with the product macro.
|
||||
http://www.plainblack.com/rfe/request-for-enhancement/product-operation-based#v43RzN_dmRPokd9SCRKWUw
|
||||
|
||||
|
||||
7.3.19
|
||||
|
|
|
|||
|
|
@ -164,7 +164,6 @@ sub www_editProduct {
|
|||
name => 'productId',
|
||||
value => $productId
|
||||
});
|
||||
|
||||
$f->getTab("properties")->text(
|
||||
-name => 'title',
|
||||
-label => $i18n->get('title'),
|
||||
|
|
@ -861,6 +860,7 @@ sub www_manageProduct {
|
|||
$output .= "<h1>".$product->get('title')."</h1>";
|
||||
$output .= "<h2>".$i18n->get('properties').$session->icon->edit('op=editProduct;productId='.$productId)."</h2>";
|
||||
$output .= "<table>";
|
||||
$output .= "<tr><td>".$i18n->get('productId')."</td><td>".$productId."</td></tr>";
|
||||
$output .= "<tr><td>".$i18n->get('price')."</td><td>".$product->get('price')."</td></tr>";
|
||||
my $useSalesTax = $product->get('useSalesTax')
|
||||
? $i18n->get(138, 'WebGUI')
|
||||
|
|
|
|||
|
|
@ -642,6 +642,12 @@ the form.<br />|,
|
|||
context => "A time period for group expires offset",
|
||||
},
|
||||
|
||||
'productId' => {
|
||||
message => "Product ID",
|
||||
lastUpdated => 0,
|
||||
context => "Unique identifier for a Product",
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue