Trumpet Flower Disposable Lunch Box Round Package Fast Food Box Plastic Lobster Maocai Round Bowl Noodle Soup Bowl with Lid

$75.00
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description







1
Select product
Selected 0 item(s)
200ml transparent 500 sets with lid
280ml transparent with cover 500 sets
300ml transparent 450 sets with lid
380ml transparent with cover 500 sets
450ml transparent 450 sets with lid
500ml transparent 450 sets with lid
625ml transparent 300 sets with lid
750ml transparent 300 sets with lid
800ml transparent with cover 300 sets
1000ml transparent with cover 300 sets
1000ml transparent with lid (bsd)300 sets
1250ml transparent with cover 180 sets
1500ml transparent with cover 180 sets
1750ml transparent 180 sets with lid
2000ml transparent 90 sets with lid
2500ml transparent with cover 90 sets
3000ml transparent with cover 90 sets
5000ml transparent 60 sets with lid
200ml black 500 sets with lid
280ml black 500 set with lid
300ml black 450 sets with lid
380ml black 500 set with cover
450ml black 450 sets with lid
500ml black 450 sets with lid
625ml black 300 sets with lid
800ml black 300 sets with lid
1000ml black 300 sets with lid
1250ml black 180 sets with lid
1500ml black 180 sets with lid
1750ml black 180 sets with lid
2000ml black with cover 90 sets
2500ml black 90 sets with lid
3000ml black 90 sets with lid
4000ml black with lid (low basin) 60 sets
5000ml black with cover 60 sets
6000ml black with cover 60 sets
2500ml white with cover 90 sets
3000ml White 90 sets with lid
4000ml White with lid (low basin) 60 sets
5000ml White 60 sets with lid
6000ml White 60 sets with lid
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)