Petunia Disposable Plastic Cup Transparent Pet Cold Drink Cup Milk Tea Cup Popular Iced Coffee Cup Star Ice Cup

$6.90
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
1
Select product
Selected 0 item(s)
Plastic cup set 100: only 16 ounce cup
11.5cm round leak-proof paper pad 500 sheets
13cm round leak-proof paper pad 500 sheets
Adhesive-Stamp Style 100 sheets
8 oz 225ml 100 set with flat lid
8 oz 225ml with ball cover 100 sets
9 oz 260ml 100 set with flat lid
9 oz 260ml 100 sets with ball cover
9 oz 260ml with bayonet cover 100 sets
9 oz 260ml with straight drink lid 100 set
10 oz 300ml 100 set with flat lid
10 oz 300ml with ball cover 100 sets
11 oz 330ml 100 set with flat lid
11 oz 330ml with ball cover 100 sets
11 oz 330ml with bayonet cover 100 sets
11 oz 330ml with straight drink lid 100 set
98-12oz 360ml with flat cap 100 pieces
98-12oz 360ml with ball cap 100 pieces
98-12oz 360ml with snap cap 100 pieces
98-12oz 360ml with direct drinking cap 100 pieces
92-400ml with flat cover 100
92-400ml with ball cover 100
92-400ml with bayonet cover 100 pieces
92-400ml with straight drink cover 100
98-14oz-420ml with flat cover 100
98-14oz-420ml with ball cover 100
98-14oz-420ml with bayon cover 100
98-14oz-420ml with direct drinking cover 100
18 oz 500ml 100 set with flat lid
18 oz 500ml with ball cover 100 set
18 oz 500ml with bayonet cover 100 sets
18 oz 500ml with straight drink lid 100 set
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
98-16 oz 540ml short with straight drink lid 100 sets
16 oz 540ml high with flat lid 100 set
16 oz 540ml high with ball cover 100 sets
16 oz 540ml high with Bayon cover 100 sets
16 oz 540ml high with straight drink lid 100 sets
20 oz 600ml 100 set with flat lid
20 oz 600ml with ball cover 100 sets
98-24 oz 680ml 100 sets with flat lid
98-24 oz 680ml 100 sets with ball cover
98-24oz 680ml with snap cap 100 sets
98-24oz 680ml with direct drinking cap 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)