Men's Striped Business Casual Shirt

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

Description

  • SPU:
    MSR447034
  • Material:
    Cotton Blends
  • Style:
    Casual/Business
  • Pattern Type:
    Striped
  • Element:
    Button Design
  • Type:
    Full Print
  • Size:
    S/M/L/XL/XXL/XXXL/XXXXL/XXXXXL
  • Fit Type:
    Loose
  • 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

SizeBustSleeve LengthClothing Length
CMINCHCMINCHCMINCH
S110.043.3163.024.8070.027.56
M114.044.8864.025.2071.027.95
L120.047.2465.025.5972.028.35
XL126.049.6166.025.9873.028.74
2XL132.051.9767.026.3874.029.13
3XL138.054.3368.026.7775.029.53
4XL144.056.6968.026.7775.029.53
5XL150.059.0568.026.7775.029.53
1
Select product
Selected 0 item(s)
Picture 1/ S
Picture 1/ M
Picture 1/ L
Picture 1/ XL
Picture 1/ 2XL
Picture 1/ 3XL
Picture 1/ 4XL
Picture 1/ 5XL
Picture 2/ S
Picture 2/ M
Picture 2/ L
Picture 2/ XL
Picture 2/ 2XL
Picture 2/ 3XL
Picture 2/ 4XL
Picture 2/ 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)