Showing
1 changed file
with
3 additions
and
0 deletions
@@ -59,6 +59,7 @@ public class FastDeliveryProxyService { | @@ -59,6 +59,7 @@ public class FastDeliveryProxyService { | ||
59 | if (!isOnToThird()){ | 59 | if (!isOnToThird()){ |
60 | return new ApiResponse(); | 60 | return new ApiResponse(); |
61 | } | 61 | } |
62 | + logger.info("fast delivery lockSkup, skup {}", skup); | ||
62 | return baseServiceCaller.doPost("fast.delivery.lockSkup", LOCK_SKUP_FAST_DELIVERY_URL, getParam(skup, null)); | 63 | return baseServiceCaller.doPost("fast.delivery.lockSkup", LOCK_SKUP_FAST_DELIVERY_URL, getParam(skup, null)); |
63 | } | 64 | } |
64 | 65 | ||
@@ -72,6 +73,7 @@ public class FastDeliveryProxyService { | @@ -72,6 +73,7 @@ public class FastDeliveryProxyService { | ||
72 | if (!isOnToThird()){ | 73 | if (!isOnToThird()){ |
73 | return new ApiResponse(); | 74 | return new ApiResponse(); |
74 | } | 75 | } |
76 | + logger.info("fast delivery order, skup {}, waybillCode {}", skup, waybillCode); | ||
75 | return baseServiceCaller.doPost("fast.delivery.order", ORDER_FAST_DELIVERY_URL, getParam(skup, waybillCode)); | 77 | return baseServiceCaller.doPost("fast.delivery.order", ORDER_FAST_DELIVERY_URL, getParam(skup, waybillCode)); |
76 | } | 78 | } |
77 | 79 | ||
@@ -85,6 +87,7 @@ public class FastDeliveryProxyService { | @@ -85,6 +87,7 @@ public class FastDeliveryProxyService { | ||
85 | if (!isOnToThird()){ | 87 | if (!isOnToThird()){ |
86 | return new ApiResponse(); | 88 | return new ApiResponse(); |
87 | } | 89 | } |
90 | + logger.info("fast delivery cancel, skup {}", skup); | ||
88 | return baseServiceCaller.doPost("fast.delivery.cancel", CANCEL_FAST_DELIVERY_URL, getParam(skup, null)); | 91 | return baseServiceCaller.doPost("fast.delivery.cancel", CANCEL_FAST_DELIVERY_URL, getParam(skup, null)); |
89 | } | 92 | } |
90 | 93 |
-
Please register or login to post a comment