Try this:
if (Biker.rawValue >= Sales.rawValue) { //this assumes that your field name is Biker and Sales
// you said greater than or equal to so us >=
this.rawValue = "Accept"; // I assume you mean if Biker is greater than or equal to then // the customer field is to say Accept otherwise reject.
}
else
this.rawValue = "Reject" ;
}