Women's Elegant Burgundy High Neck Long Sleeve Pocket Belted Coat Midi Dress

$29.99
$47.99
Save $18.00
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Description

Style: Elegant, Formal, Semi Formal, Work

Color: Burgundy, Black

Material: Polyester

Fit Type: Regular Fit

Length: Midi Dress

Neckline: High Neck

Pattern Type: Solid

Details: Long Sleeve, Pocket, Belted

Product Type: Instock

Item ID: SQ000897

SIZE CHART
SizeBustWaistLengthSleeves
CMINCHCMINCHCMINCHCMINCH
S9236.2 7529.5 9738.1 6023.6 
M9637.7 7931.0 9838.5 6124.0 
L10240.1 8533.4 9938.9 6224.4 
XL10842.4 9135.8 10039.3 6324.8 
2XL11444.8 9738.1 10139.7 6425.2 
3XL12047.2 10340.5 10240.1 6525.5 
*This data was obtained from manually measuring the product, it may be off by 2-3 CM.
*1 cm=0.393 inch, 1 inch=2.54 cm
1
Select product
Selected 0 item(s)
Burgundy/ S
Burgundy/ M
Burgundy/ L
Burgundy/ XL
Burgundy/ 2XL
Burgundy/ 3XL
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ 2XL
Black/ 3XL
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)