Men's Geometric Print Business Shirt

$22.99
$44.22
Save $21.23
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Description

Description

  • SPU:
    MSR408839
  • Material:
    Cotton Blends
  • Style:
    Casual/Business
  • Pattern Type:
    Plaid
  • Element:
    Button Design
  • Type:
    Stitching Way
  • Size:
    XS/S/M/L/XL/XXL/XXXL/XXXXL/XXXXXL
  • Fit Type:
    Loose
  • Sleeve Style:
    Shirt-sleeve
  • Neckline:
    Turndown Collar
  • Clothing Length Type:
    Regular
*The item does not include any accessories in the picture, unless stated otherwise in the product description.

Size chart

SizeShoulderBustSleeve LengthClothing Length
CMINCHCMINCHCMINCHCMINCH
XS44.017.3296.037.8059.023.2371.027.95
S46.018.11106.041.7360.023.6273.028.74
M48.018.90112.044.0961.024.0275.029.53
L50.019.68118.046.4662.024.4178.030.71
XL52.020.47126.049.6164.025.2080.031.50
2XL54.021.26132.051.9765.025.5982.032.28
3XL56.022.05138.054.3366.025.9885.033.46
4XL58.022.83144.056.6967.026.3887.034.25
5XL60.023.62150.059.0568.026.7789.035.04
1
Select product
Selected 0 item(s)
Blue/ XS
Blue/ S
Blue/ M
Blue/ L
Blue/ XL
Blue/ 2XL
Blue/ 3XL
Blue/ 4XL
Blue/ 5XL
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)