Showing
1 changed file
with
8 additions
and
6 deletions
@@ -397,11 +397,11 @@ public class StoreSellerServiceImpl implements IStoredSellerService { | @@ -397,11 +397,11 @@ public class StoreSellerServiceImpl implements IStoredSellerService { | ||
397 | // 查询卖家正在上架中的商品 & 支付方式是11 & orderspay中没有记录 | 397 | // 查询卖家正在上架中的商品 & 支付方式是11 & orderspay中没有记录 |
398 | 398 | ||
399 | for (Integer uid : uids){ | 399 | for (Integer uid : uids){ |
400 | - scriptLogger.info("[] start orderPay....", uid); | 400 | + scriptLogger.info("{[]} start orderPay....", uid); |
401 | List<SellerOrderGoods> sellerOrderGoodsList = sellerOrderGoodsMapper.selectByUidAndStatus(uid, SkupStatus.CAN_SELL.getCode()); | 401 | List<SellerOrderGoods> sellerOrderGoodsList = sellerOrderGoodsMapper.selectByUidAndStatus(uid, SkupStatus.CAN_SELL.getCode()); |
402 | 402 | ||
403 | if (CollectionUtils.isEmpty(sellerOrderGoodsList)){ | 403 | if (CollectionUtils.isEmpty(sellerOrderGoodsList)){ |
404 | - scriptLogger.info("[] no need orderPay....can sell goods not exist", uid); | 404 | + scriptLogger.info("{[]} no need orderPay....can sell goods not exist", uid); |
405 | continue; | 405 | continue; |
406 | } | 406 | } |
407 | 407 | ||
@@ -410,7 +410,7 @@ public class StoreSellerServiceImpl implements IStoredSellerService { | @@ -410,7 +410,7 @@ public class StoreSellerServiceImpl implements IStoredSellerService { | ||
410 | List<SellerOrder> walletSellerOrders = sellerOrders.stream().filter(x->x.getPayment()==11).collect(Collectors.toList()); | 410 | List<SellerOrder> walletSellerOrders = sellerOrders.stream().filter(x->x.getPayment()==11).collect(Collectors.toList()); |
411 | 411 | ||
412 | if (CollectionUtils.isEmpty(walletSellerOrders)){ | 412 | if (CollectionUtils.isEmpty(walletSellerOrders)){ |
413 | - scriptLogger.info("[] no need orderPay....can sell goods not wallet", uid); | 413 | + scriptLogger.info("{[]} no need orderPay....can sell goods not wallet", uid); |
414 | continue; | 414 | continue; |
415 | } | 415 | } |
416 | 416 | ||
@@ -419,7 +419,7 @@ public class StoreSellerServiceImpl implements IStoredSellerService { | @@ -419,7 +419,7 @@ public class StoreSellerServiceImpl implements IStoredSellerService { | ||
419 | 419 | ||
420 | OrdersPay ordersPaydb = ordersPayMapper.selectOrdersPay(sellerOrder.getOrderCode(), uid); | 420 | OrdersPay ordersPaydb = ordersPayMapper.selectOrdersPay(sellerOrder.getOrderCode(), uid); |
421 | if (ordersPaydb != null){ | 421 | if (ordersPaydb != null){ |
422 | - scriptLogger.info("[] no need orderPay []", uid, sellerOrder.getOrderCode()); | 422 | + scriptLogger.info("{[]} no need orderPay {[]}", uid, sellerOrder.getOrderCode()); |
423 | continue; | 423 | continue; |
424 | } | 424 | } |
425 | OrdersPay ordersPay = new OrdersPay(); | 425 | OrdersPay ordersPay = new OrdersPay(); |
@@ -430,9 +430,11 @@ public class StoreSellerServiceImpl implements IStoredSellerService { | @@ -430,9 +430,11 @@ public class StoreSellerServiceImpl implements IStoredSellerService { | ||
430 | ordersPay.setPayment(11); | 430 | ordersPay.setPayment(11); |
431 | ordersPay.setSerialNo(String.valueOf(sellerOrder.getOrderCode())); | 431 | ordersPay.setSerialNo(String.valueOf(sellerOrder.getOrderCode())); |
432 | ordersPayMapper.insertSelective(ordersPay); | 432 | ordersPayMapper.insertSelective(ordersPay); |
433 | - scriptLogger.info("[] do orderPay []", uid, sellerOrder.getOrderCode()); | 433 | + scriptLogger.info("{[]} do orderPay {[]}", uid, sellerOrder.getOrderCode()); |
434 | } | 434 | } |
435 | - scriptLogger.info("[] end process orderPay....", uid); | 435 | + scriptLogger.info("{[]} end process orderPay....", uid); |
436 | + | ||
437 | + scriptLogger.info("=================================================="); | ||
436 | 438 | ||
437 | } | 439 | } |
438 | 440 |
-
Please register or login to post a comment