Bug 30598: remove all the console.log redundancies

Please test the patch. Thank you!

Signed-off-by: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com>
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Phan Tung Bui 2024-04-18 09:49:59 -04:00 committed by Katrin Fischer
parent bed0563e56
commit e0d38c77e6
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -179,7 +179,6 @@ function messenger(X,Y,etc){ // FIXME: unused?
// NEXT BLOCK IS USED BY NEWORDERBEMPTY // NEXT BLOCK IS USED BY NEWORDERBEMPTY
function updateCosts(){ function updateCosts(){
console.log("updateCosts");
var quantity = new Number($("#quantity").val()); var quantity = new Number($("#quantity").val());
var discount = new Number($("#discount").val()); var discount = new Number($("#discount").val());
var listprice = new Number($("#listprice").val()); var listprice = new Number($("#listprice").val());
@ -204,7 +203,6 @@ function updateCosts(){
} }
function syncReplacementPrice(sourceId, targetId) { function syncReplacementPrice(sourceId, targetId) {
console.log("updatePRice");
var priceValue = $("#" + sourceId).val(); var priceValue = $("#" + sourceId).val();
$("#" + targetId).val(priceValue); $("#" + targetId).val(priceValue);
} }