*/
@Override
protected void getControlData() {
super.getControlData();
if ((this.getTrPosition() != null) && (this.getTrPosition() instanceof NormalPosition)) {
NormalPosition normalPosition = (NormalPosition) this.getTrPosition();
normalPosition.setQuantity(this.txQuantity.getValue());
normalPosition.setPieceCostPrice(this.txPieceCostPrice.getValue());
normalPosition.setPieceSalesPrice(this.txPieceSalesPrice.getValue());
normalPosition.setVat(this.sfVat.getSelectedVAT());
normalPosition.setQtyUnit(this.qtyUnit.getSelectedQtyUnit());
}
}