mirror of https://github.com/jeecgboot/jeecg-boot
Remove underscores from platform order ID before creating requests
parent
4acd7e9431
commit
6e69a8dbd0
|
@ -12,7 +12,7 @@ public class GetFulfillmentRequestBody extends ShopifyRequestBody {
|
|||
|
||||
public GetFulfillmentRequestBody(String sitePrefix, String platformOrderId, String shopToken) {
|
||||
super(sitePrefix, shopToken);
|
||||
this.platformOrderId = platformOrderId;
|
||||
this.platformOrderId = platformOrderId.split("_")[0];
|
||||
}
|
||||
|
||||
public GetFulfillmentRequestBody(PlatformOrderShopSync platformOrderShopSync) {
|
||||
|
|
Loading…
Reference in New Issue