I think you are not binding the proper context to your function handleAdvancePrice.
If you are building your component using ES6 Class then, you can bind the context to all your functions in constructor like this:
constructor() {
this.handleAdvancePrice = this.handleAdvancePrice.bind(this);
}