Petunia Metal Tin Foil Box Barbecue Packaging Box Round Thickened Disposable Takeaway Aluminum Foil Lunch Box

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

















1
Select product
Selected 0 item(s)
125ml gold round without cover 100 pcs
125ml gold round with PET cover 100 pcs
345ml golden round without cover 125
345ml golden round with PP cover 125 PCs
345ml golden round with lid (machine sealing required) 125
450ml golden round without cover 125
450ml golden round with PP cover 125 PCs
450ml golden round with lid (machine sealing required) 125
450ml red round without cap 125 pieces
450ml red round with pp cap 125 pieces
520ml golden round without cover 125
520ml golden round with PP cover 125 PCs
520ml golden round with lid (machine sealing required) 125
600ml golden round without cover 125
600ml golden round with PP cover 125 PCs
600ml golden round with lid (machine sealing required) 125
750ml golden round without cover 125
750ml golden round with PP cover 125 PCs
750ml golden round with lid (machine sealing required) 125
870ml golden round without cover 125
870ml golden round with PP cover 125 PCs
870ml golden round with lid (machine sealing required) 125
1000ml golden round without cover 125
1000ml gold round with PP cover 125
1000ml golden round with lid (machine sealing required) 125
1130ml golden round without cover 125
1130ml golden round with PP cover 125 PCs
1130ml golden round with lid (machine sealing required) 125
1130ml red round without cap 125 pieces
1130ml red round with pp cap 125 pieces
1370ml golden round without cover 125
1370ml golden round with PP cover 125 PCs
1370ml golden round with lid (machine sealing required) 125
1370ml red round without cap 125 pieces
1370ml red round with pp cap 125 pieces
1430ml golden round without cover 125
1430ml golden round with PP cover 125 PCs
1430ml golden round with lid (machine sealing required) 125
1700ml golden round without cover 125
1700ml golden round with PP cover 125 PCs
1700mlml golden round with lid (machine sealing required) 125
2000ml gold round without cover 100 pcs
2000ml gold round with PP cover 100 pcs
2000ml golden round with lid (machine sealing required) 100
2500ml gold round without cover 100 pcs
2500ml gold round with PP cover 100 pcs
2500ml golden round with lid (machine sealing required) 100
3000ml gold round without cover 100 pcs
3000ml gold round with PP cover 100 pcs
3000ml golden round with lid (machine sealing required) 100
3000ml red round without cap 100 pieces
3000ml red round with pp cap 100 pieces
3500ml gold round without cover 100
3500ml gold round with PP cover 100 pcs
3500ml golden round with lid (machine sealing required) 100
4000ml gold round without cover 100 pcs
4000ml gold round with PP cover 100 pcs
4000ml golden round with lid (machine sealing required) 100
5000ml gold round without cover 100 pcs
5000ml gold round with PP cover 100 pcs
5000ml golden round with lid (machine sealing required) 100
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)