|
@@ -44,6 +44,8 @@ public class QualityInspectionManagementServiceImpl extends ServiceImpl<QualityI
|
|
|
@Autowired
|
|
|
private IWarehouseBaseInfoService warehouseBaseInfoService;
|
|
|
@Autowired
|
|
|
+ private IWarehouseInOutInfoService warehouseInOutInfoService;
|
|
|
+ @Autowired
|
|
|
private IPaymentManagementService paymentManagementService;
|
|
|
@Autowired
|
|
|
private IShippingInformationService shippingInformationService;
|
|
@@ -151,6 +153,10 @@ public class QualityInspectionManagementServiceImpl extends ServiceImpl<QualityI
|
|
|
qualityInspectionManagement.setPerson(warehouseBaseInfo.getPersonCharge());
|
|
|
qualityInspectionManagement.setPersonPhone(warehouseBaseInfo.getPersonPhone());
|
|
|
}
|
|
|
+ WarehouseInOutInfo warehouseInOutInfo=warehouseInOutInfoService.selectById(qualityInspectionManagement.getWarehouseInOutId());
|
|
|
+ if (warehouseInOutInfo!=null){
|
|
|
+ qualityInspectionManagement.setPositionId(warehouseInOutInfo.getPositionId());
|
|
|
+ }
|
|
|
//客户信息
|
|
|
IdentityAuthenticationInfo identityAuthenticationInfo = identityAuthenticationInfoService.selectOne(new EntityWrapper<IdentityAuthenticationInfo>()
|
|
|
.eq("comp_id", qualityInspectionManagement.getCompId())
|