Horn flower disposable cup black plastic ice coffee cup PET cold drink Net red milk tea small black cup with lid

$4.90
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
1
Select product
Selected 0 item(s)
100 plastic cup sets: only 420ml cup
11.5cm round leak-proof paper pad 500 sheets
13cm round leak-proof paper pad 500 sheets
Adhesive-Stamp Style 100 sheets
19.5cm single pack of 100 black thin straws
25cm single Black thin straw 100 root
11 oz 330ml 100 set with flat lid
11 oz 330ml with ball cover 100 sets
11 oz 330ml with bayonet cover 100 sets
92-420ml with flat cover 100
92-420ml with ball cover 100
92-420ml with bayonet cover 100 pieces
98-16 oz 540ml low 100 set with flat lid
98-16 oz 540ml low ball cover 100 sets
98-16 oz 540ml low with bayonet cover 100 sets
90-360ml U-cup with flat lid 100 sets
90-360ml U-cup with ball cover 100 sets
90-360ml u-shaped cup with integrated lid 100 sets
90-400ml U-cup with flat lid 100 sets
90-400ml U-cup with ball cover 100 sets
90-400ml u-shaped cup with integrated lid 100 sets
90-500ml U-cup with flat lid 100 sets
90-500ml U Cup with ball cover 100 sets
90-500ml u-shaped cup with integrated lid 100 sets
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)