...
|
...
|
@@ -902,11 +902,12 @@ public class InBoxFacade { |
|
|
try {
|
|
|
String prdName =sog.getProductName();
|
|
|
String sizeName=sog.getSizeName();
|
|
|
String skupTypeText=SkupType.getSkupType(sog.getAttributes()).attrName();
|
|
|
executorService.execute(() -> {
|
|
|
Product product = productMapper.selectByPrimaryKey(sog.getProductId());
|
|
|
String productCode = product.getProductCode();
|
|
|
InboxBusinessTypeEnum ibt = InboxBusinessTypeEnum.SALE_CLOSED_BUYER;
|
|
|
String params = buildParams(prdName,sizeName,productCode);
|
|
|
String params = buildParams(skupTypeText,prdName,sizeName,productCode);
|
|
|
InboxReqVO req = buildInboxReqVO(sellerUid, params, ibt);
|
|
|
|
|
|
InBoxResponse resp = inBoxSDK.addInbox(req);
|
...
|
...
|
|