Bug 18639: (follow-up) Populate replacement price from list price during ordering
authorNick Clemens <nick@bywatersolutions.com>
Mon, 27 Aug 2018 13:33:50 +0000 (13:33 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 31 Aug 2018 12:46:51 +0000 (12:46 +0000)
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/js/acq.js

index 9d3983c..e12be33 100644 (file)
@@ -184,12 +184,14 @@ function updateCosts(){
     var gst_on=false;
 
     var rrp   = new Number(listprice*exchangerate);
+    var rep   = new Number(listprice*exchangerate);
     var ecost = rrp;
     if ( 100-discount != 100 ) { //Prevent rounding issues if no discount
         ecost = new Number(Math.floor(rrp * (100 - discount )) / 100);
     }
     var total =  new Number( ecost * quantity);
     $("#rrp").val(rrp.toFixed(2));
+    $("#replacementprice").val(rep.toFixed(2));
     $("#ecost").val(ecost.toFixed(2));
     $("#total").val(total.toFixed(2));
     $("listprice").val(listprice.toFixed(2));