}
public void searchProduct(ActionEvent e){
ControlProduct ctrProd=new ControlProduct();
String name=textField_15.getText();
Product prod= ctrProd.findProduct(name, false);
textField_15.setText(prod.getName());
textField_16.setText(String.valueOf(prod.getPurchasePrice()));
textField_17.setText(String.valueOf(prod.getSalesPrice()));
textField_18.setText(String.valueOf(prod.getRentPrice()));
textField_19.setText(String.valueOf(prod.getMinStock()));
textField_20.setText(prod.getCountryOfOrigin());
textField_21.setText(prod.getSupplier().getName());
}