|
|
|
@ -153,6 +153,8 @@ public class SupProductController {
|
|
|
|
|
|
|
|
|
|
UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectGroupById(Long.valueOf(selectProductBindRequest.getRelIdFk()));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SupProductEntity supProductEntity = new SupProductEntity();
|
|
|
|
|
BeanUtils.copyProperties(udiRelevanceResponse, supProductEntity);
|
|
|
|
|
supProductEntity.setProductId(selectProductBindRequest.getProductId());
|
|
|
|
@ -168,6 +170,7 @@ public class SupProductController {
|
|
|
|
|
supProductEntity.setManufacturerIdFk(selectProductBindRequest.getManufacturerId());
|
|
|
|
|
supProductEntity.setCustomerId(selectProductBindRequest.getCustomerId());
|
|
|
|
|
supProductEntity.setHchzsb(udiRelevanceResponse.getCplb());
|
|
|
|
|
supProductEntity.setCompanyName(selectProductBindRequest.getCompanyName());
|
|
|
|
|
supProductEntity.setAuditStatus(selectProductBindRequest.getAuditStatus());
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success(supProductEntity);
|
|
|
|
|