*
* @throws InterruptedException
*/
public void doSave() throws InterruptedException {
Order anOrder = getOrder();
Customer aCustomer = getCustomer();
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// force validation, if on, than execute by component.getValue()
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
if (!isValidationOn()) {
doSetValidation();
}
kunNr.getValue();
kunName1.getValue();
// bbox_Orders_CustomerSearch.getValue();
// fill the order object with the components data
anOrder.setCustomer(aCustomer);
anOrder.setAufNr(aufNr.getValue());
anOrder.setAufBezeichnung(aufBezeichnung.getValue());
// save it to database
try {
getOrderService().saveOrUpdate(anOrder);
} catch (DataAccessException e) {