Skip to content

Commit

Permalink
Changed CmisRead url pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
Puja committed Mar 20, 2017
1 parent 784429f commit 8632c54
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion espm-cloud-web/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,6 @@
</servlet>
<servlet-mapping>
<servlet-name>CmisRead</servlet-name>
<url-pattern>/espm.svc/CmisRead</url-pattern>
<url-pattern>/CmisRead</url-pattern>
</servlet-mapping>
</web-app>
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ sap.ui.define([

handleListItemPress: function(event){

pdfURL = "/espm-cloud-web/espm.svc/CmisRead?objectId="+event.getSource().getBindingContext().getObject("InvoiceLink");
pdfURL = "/espm-cloud-web/CmisRead?objectId="+event.getSource().getBindingContext().getObject("InvoiceLink");

this.getView().byId("detailPageId").setVisible(true);

Expand Down
2 changes: 1 addition & 1 deletion espm-cloud-web/src/main/webapp/webshop/view/Home.view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Page id="productListPage" title="{i18n>home.Title}">
<headerContent>
<Button icon="sap-icon://my-sales-order" id="btnOrdersId" press="onOrdersButtonPressed" tooltip="{i18n>home.salesOrder}"/>
<Button binding="{/Cart}" icon="sap-icon://cart" id="btnProductListHeader" press="onShoppingCartPressed" text="{TotalQunatity}"
<Button icon="sap-icon://cart" id="btnProductListHeader" press="onShoppingCartPressed" text="{TotalQunatity}"
tooltip="{i18n>home.cart}"/>
</headerContent>
<content>
Expand Down

0 comments on commit 8632c54

Please sign in to comment.