|
@@ -61,6 +61,8 @@ public class WarehouseInOutInfoServiceImpl extends ServiceImpl<WarehouseInOutInf
|
|
@Autowired
|
|
@Autowired
|
|
private IWarehousePositionStorageInfoService warehousePositionStorageInfoService;
|
|
private IWarehousePositionStorageInfoService warehousePositionStorageInfoService;
|
|
@Autowired
|
|
@Autowired
|
|
|
|
+ private IIdentityAuthenticationInfoService identityAuthenticationInfoService;
|
|
|
|
+ @Autowired
|
|
private IWarehouseBaseInfoService warehouseBaseInfoService;
|
|
private IWarehouseBaseInfoService warehouseBaseInfoService;
|
|
@Autowired
|
|
@Autowired
|
|
private IWarehousePositionInfoService warehousePositionInfoService;
|
|
private IWarehousePositionInfoService warehousePositionInfoService;
|
|
@@ -3325,6 +3327,19 @@ public class WarehouseInOutInfoServiceImpl extends ServiceImpl<WarehouseInOutInf
|
|
paymentManagement1.setGrossWeight(weighingManagement1.getGrossWeight());
|
|
paymentManagement1.setGrossWeight(weighingManagement1.getGrossWeight());
|
|
paymentManagement1.setTare(weighingManagement.getTare());
|
|
paymentManagement1.setTare(weighingManagement.getTare());
|
|
paymentManagement1.setWarehouseName(weighingManagement1.getWarehouseName());
|
|
paymentManagement1.setWarehouseName(weighingManagement1.getWarehouseName());
|
|
|
|
+ //获取银行卡等相关信息
|
|
|
|
+ IdentityAuthenticationInfo identityAuthenticationInfo = identityAuthenticationInfoService.selectOne(new EntityWrapper<IdentityAuthenticationInfo>()
|
|
|
|
+ .eq("comp_id", weighingManagement1.getCompId())
|
|
|
|
+ .eq("customer_name",weighingManagement1.getCustomer())
|
|
|
|
+ .eq("customer_phone",weighingManagement1.getCustomerPhone())
|
|
|
|
+ .eq("delete_flag","0"));
|
|
|
|
+ if(identityAuthenticationInfo != null){
|
|
|
|
+ paymentManagement1.setBankCard(identityAuthenticationInfo.getBankCard());
|
|
|
|
+ paymentManagement1.setBankDeposit(identityAuthenticationInfo.getBankDeposit());
|
|
|
|
+ paymentManagement1.setBankDepositBranch(identityAuthenticationInfo.getBankDepositBranch());
|
|
|
|
+ paymentManagement1.setPayeeAddressUrl(identityAuthenticationInfo.getPayeeAddressUrl());
|
|
|
|
+ paymentManagement1.setIdentityId(identityAuthenticationInfo.getId());
|
|
|
|
+ }
|
|
//质检信息
|
|
//质检信息
|
|
QualityInspectionManagement qualityInspectionManagement = qualityInspectionManagementService.selectOne(new EntityWrapper<QualityInspectionManagement>()
|
|
QualityInspectionManagement qualityInspectionManagement = qualityInspectionManagementService.selectOne(new EntityWrapper<QualityInspectionManagement>()
|
|
.eq("relation_id", weighingManagement1.getRelationId())
|
|
.eq("relation_id", weighingManagement1.getRelationId())
|