filterAmountNumber(value){var value=Math.round(parseFloat(value)*100)/100var xsd=value.toString().split(".")
value = value.toString()if(xsd.length ==1){
value = value.toString()+".00"
value = value.replace(/\B(?=(\d{3})+(?!\d))/g,',')return value
}if(xsd.length >1){if(xsd[1].length <2){
value = value.toString()+"0"}
value = value.replace(/\B(?=(\d{3})+(?!\d))/g,',')return value
}
value = value.replace(/\B(?=(\d{3})+(?!\d))/g,',')return value
}