|
|
|
@@ -83,7 +83,9 @@ public abstract class BaseBatchOrderAdapterService implements OrderAdapterServic |
|
|
|
order.setOrderType(composeOrderType.getCode()); |
|
|
|
order.setCreateDate(new Date()); |
|
|
|
wxBatchOrderMapper.insert(order); |
|
|
|
return new WxComposeOrder(order.getId(),composeOrderType.getCode(),payment); |
|
|
|
WxComposeOrder composeOrder = new WxComposeOrder(order.getId(), composeOrderType.getCode(), payment); |
|
|
|
composeOrder.updateTenantInfo(tenantEntity); |
|
|
|
return composeOrder; |
|
|
|
} |
|
|
|
|
|
|
|
protected WxComposeOrder getComposeOrder(Long mainOrderId, String tenantId,EnumComposeOrder composeOrderType) { |
|
|
|
|