Skip to content

Commit

Permalink
Changed to use new orderType parameter for FindOrder screen
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesde committed Nov 5, 2016
1 parent 7829df2 commit d7fe8a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ moqui-elasticsearch (1.0.0), moqui-fop (1.0.0), and moqui-kie (1.0.0) tool
components.

This release includes various improvements from SimpleScreens and updates
for the various changes in Moqui Framework 2.0.0.
for the new features and improvements in Moqui Framework 2.0.0.

TODO

Expand Down
10 changes: 4 additions & 6 deletions screen/PopCommerceAdmin/dashboard.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,16 @@ along with this software (see the LICENSE.md file). If not, see
</actions>
<widgets>
<container-row>


<row-col md="2">
<label text="Operate" type="h3"/>
<container>
<link url="../Supplier" link-type="anchor"><image url="/popc/static/images/Supplier.png" url-type="screen" style="invertible"/></link>
<link text="Suppliers" url="../Supplier" link-type="anchor"/>
</container>
<container>
<link url="../Order" link-type="anchor" parameter-map="[customerRoleTypeId:'OrgInternal']">
<link url="../Order" link-type="anchor" parameter-map="[orderType:'Purchase']">
<image url="/popc/static/images/Purchasing.png" url-type="screen" style="invertible"/></link>
<link text="Purchasing" url="../Order" link-type="anchor" parameter-map="[customerRoleTypeId:'OrgInternal']"/>
<link text="Purchasing" url="../Order" link-type="anchor" parameter-map="[orderType:'Purchase']"/>
</container>
<container>
<link url="../Shipment" link-type="anchor" parameter-map="[parentShipmentType:'ShpTpIncoming']">
Expand All @@ -62,9 +60,9 @@ along with this software (see the LICENSE.md file). If not, see
<link text="Customers" url="../Customer" link-type="anchor"/>
</container>
<container>
<link url="../Order" link-type="anchor" parameter-map="[vendorRoleTypeId:'OrgInternal']">
<link url="../Order" link-type="anchor" parameter-map="[orderType:'Sales']">
<image url="/popc/static/images/Sales.png" url-type="screen" style="invertible"/></link>
<link text="Sales" url="../Order" link-type="anchor" parameter-map="[vendorRoleTypeId:'OrgInternal']"/>
<link text="Sales" url="../Order" link-type="anchor" parameter-map="[orderType:'Sales']"/>
</container>
<container>
<link url="../Picking" link-type="anchor">
Expand Down

0 comments on commit d7fe8a6

Please sign in to comment.