Integer id = RequestUtil.getInteger(getRequestAttributes().get("id"));
if(request.getOperationType() == OPERATION_TYPE.UPDATE){
Float qty = RequestUtil.getFloat(request.getData().get("qty"));
TransferOrderDetail pod = coreManager.get(TransferOrderDetail.class, id);
pod.setQty(qty);
try {
TransferOrderDetail podResp = coreManager.save(TransferOrderDetail.class, pod);
podResp = coreManager.getTransferOrderDetail(pod.getId());
DisplayTransferOrderDetail det = mapper.map(podResp, DisplayTransferOrderDetail.class);
ProductMeasurement productMeasurement = null;
if(podResp.getProduct().getProductMeasurement() != null && !podResp.getProduct().getProductMeasurement().isEmpty()){
productMeasurement = podResp.getProduct().getProductMeasurement().iterator().next();
}
if(productMeasurement != null){
det.getProduct().setProductMeasurement(mapper.map(productMeasurement, DisplayProductMeasurement.class));
}
resp = det;
} catch (Exception e) {
SgwtRestErrorResponse resp1 = new SgwtRestErrorResponse(-1);
resp1.addError("exception", e.getMessage());
return resp1;
}
}else if(request.getOperationType() == OPERATION_TYPE.REMOVE){
TransferOrderDetail pod = coreManager.get(TransferOrderDetail.class, id);
coreManager.remove(pod);
return new SgwtRestDeleteResponse(id);
}
SgwtRestFetchResponseBase ret = new SgwtRestFetchResponseBase(resp);