|
@@ -124,6 +124,14 @@ public class PaymentManagementServiceImpl extends ServiceImpl<PaymentManagementM
|
|
|
if (commonCompany!=null){
|
|
|
paymentManagement1.setCompName(commonCompany.getCompName());
|
|
|
}
|
|
|
+ IdentityAuthenticationInfo identityAuthenticationInfo=iIdentityAuthenticationInfoService.selectOne(new EntityWrapper<IdentityAuthenticationInfo>()
|
|
|
+ .eq("customer_name",paymentManagement1.getCustomerName())
|
|
|
+ .eq("customer_phone",paymentManagement1.getCustomerPhone())
|
|
|
+ .eq("cover","0")
|
|
|
+ .eq("customer_type_flag","1"));
|
|
|
+ if (identityAuthenticationInfo!=null){
|
|
|
+ paymentManagement1.setIdentityAuthenticationInfo(identityAuthenticationInfo);
|
|
|
+ }
|
|
|
WeighingManagement weighingManagement = weighingManagementService.selectOne(new EntityWrapper<WeighingManagement>()
|
|
|
.eq("relation_id", paymentManagement1.getRelationId()));
|
|
|
if (weighingManagement!=null){
|