Remove underscores from platform order ID before creating requests

pull/8040/head
Qiuyi LI 2024-05-31 16:05:53 +02:00
parent 4acd7e9431
commit 6e69a8dbd0
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public class GetFulfillmentRequestBody extends ShopifyRequestBody {
public GetFulfillmentRequestBody(String sitePrefix, String platformOrderId, String shopToken) { public GetFulfillmentRequestBody(String sitePrefix, String platformOrderId, String shopToken) {
super(sitePrefix, shopToken); super(sitePrefix, shopToken);
this.platformOrderId = platformOrderId; this.platformOrderId = platformOrderId.split("_")[0];
} }
public GetFulfillmentRequestBody(PlatformOrderShopSync platformOrderShopSync) { public GetFulfillmentRequestBody(PlatformOrderShopSync platformOrderShopSync) {