|
|
|
@ -19,7 +19,7 @@ import au.com.royalpay.payment.manage.mappers.payment.RefundMapper;
|
|
|
|
|
import au.com.royalpay.payment.manage.mappers.payment.TransactionMapper;
|
|
|
|
|
import au.com.royalpay.payment.manage.mappers.system.ClientAccountMapper;
|
|
|
|
|
import au.com.royalpay.payment.manage.mappers.system.CustomerMapper;
|
|
|
|
|
import au.com.royalpay.payment.manage.mappers.system.CustomerRelationAlipayMapper;
|
|
|
|
|
import au.com.royalpay.payment.manage.mappers.system.ManagerCustomerRelationAlipayMapper;
|
|
|
|
|
import au.com.royalpay.payment.manage.merchants.core.ClientManager;
|
|
|
|
|
import au.com.royalpay.payment.manage.organizations.core.OrgManager;
|
|
|
|
|
import au.com.royalpay.payment.manage.tradelog.beans.PreRefundQueryBean;
|
|
|
|
@ -126,7 +126,7 @@ public class TradeLogServiceImpl implements TradeLogService {
|
|
|
|
|
@Resource
|
|
|
|
|
private CustomerMapper customerMapper;
|
|
|
|
|
@Resource
|
|
|
|
|
private CustomerRelationAlipayMapper customerRelationAlipayMapper;
|
|
|
|
|
private ManagerCustomerRelationAlipayMapper managerCustomerRelationAlipayMapper;
|
|
|
|
|
@Resource
|
|
|
|
|
private ClientCustomersMapper clientCustomersMapper;
|
|
|
|
|
|
|
|
|
@ -316,7 +316,7 @@ public class TradeLogServiceImpl implements TradeLogService {
|
|
|
|
|
order.put("nickname", customer.getString("nickname"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JSONObject customerAlipay = customerRelationAlipayMapper.findCustomerByUserId(order.getString("customer_id"));
|
|
|
|
|
JSONObject customerAlipay = managerCustomerRelationAlipayMapper.findCustomerByUserId(order.getString("customer_id"));
|
|
|
|
|
if (customerAlipay != null) {
|
|
|
|
|
order.put("headimg", customerAlipay.getString("headimg"));
|
|
|
|
|
order.put("nickname", customerAlipay.getString("nickname"));
|
|
|
|
@ -389,7 +389,7 @@ public class TradeLogServiceImpl implements TradeLogService {
|
|
|
|
|
order.put("nickname", customer.getString("nickname"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JSONObject customerAlipay = customerRelationAlipayMapper.findCustomerByUserId(order.getString("customer_id"));
|
|
|
|
|
JSONObject customerAlipay = managerCustomerRelationAlipayMapper.findCustomerByUserId(order.getString("customer_id"));
|
|
|
|
|
if (customerAlipay != null) {
|
|
|
|
|
order.put("headimg", customerAlipay.getString("headimg"));
|
|
|
|
|
order.put("nickname", customerAlipay.getString("nickname"));
|
|
|
|
|