Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Revisions: Issue #27172 All Revisions ] Back to Issue ]
Summary 0027172: When the orderloader fails to save the order in the backend, and error message should be shown
Revision 2014-07-24 10:27 by Orekaria
Steps To Reproduce Up to rev. 724 of mobile.core; rev. 3738 of retail.posterminal

Create an order
add 3x harness four season
add 3x harness rock climbing

verify that the 6 x 5 Harness discount is applied

pay the order

verify that in the backend, in the tomcat trace the above error is shown
verify that no information is given to the user


For later revs:

In order.js, change:

    function (p) {
      qtyReserved = OB.DEC.add(qtyReserved, p.qtyOfferReserved || 0);
    });

with

    function (p) {
      if (p.qtyOfferReserved > 0) {
        qtyReserved = OB.DEC.add(qtyReserved, p.qtyOfferReserved);
      }
    }
       
Revision 2014-07-24 07:58 by Orekaria
Steps To Reproduce In rev. 724 of mobile.core; rev. 3738 of retail.posterminal

Create an order
add 3x harness four season
add 3x harness rock climbing

verify that the 6 x 5 Harness discount is applied

pay the order

verify that in the backend, in the tomcat trace the above error is shown
verify that no information is given to the user


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker