Authored by Lixiaodi

bug修改

... ... @@ -411,7 +411,7 @@ public class MerchantOrderPaymentService extends AbstractOrderPaymentService {
// 支付保证金:明细
private SellerWalletDetail addUseEarnestDetail(SellerWallet sw, long orderCode, BigDecimal amount, Integer isBatch) {
Integer uid = sw.getId();
Integer uid = sw.getUid();
SellerWalletDetail swd = new SellerWalletDetail();
swd.setOrderCode(orderCode);
swd.setType(2);
... ... @@ -429,7 +429,7 @@ public class MerchantOrderPaymentService extends AbstractOrderPaymentService {
// 修改价格支付保证金:明细
private SellerWalletDetail addChangePriceWalletDetail(SellerWallet sw, long orderCode, BigDecimal amount, Integer isBatch) {
Integer uid = sw.getId();
Integer uid = sw.getUid();
SellerWalletDetail swd = new SellerWalletDetail();
swd.setOrderCode(orderCode);
swd.setType(4);
... ...