Men's Business Checkered Print Shirt

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

Description

  • SPU:
    MSR408539
  • 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)
Black/ XS
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ 2XL
Black/ 3XL
Black/ 4XL
Black/ 5XL
Dark Blue/ XS
Dark Blue/ S
Dark Blue/ M
Dark Blue/ L
Dark Blue/ XL
Dark Blue/ 2XL
Dark Blue/ 3XL
Dark Blue/ 4XL
Dark Blue/ 5XL
Coffee/ XS
Coffee/ S
Coffee/ M
Coffee/ L
Coffee/ XL
Coffee/ 2XL
Coffee/ 3XL
Coffee/ 4XL
Coffee/ 5XL
Green/ XS
Green/ S
Green/ M
Green/ L
Green/ XL
Green/ 2XL
Green/ 3XL
Green/ 4XL
Green/ 5XL
Grey/ XS
Grey/ S
Grey/ M
Grey/ L
Grey/ XL
Grey/ 2XL
Grey/ 3XL
Grey/ 4XL
Grey/ 5XL
Burgundy/ XS
Burgundy/ S
Burgundy/ M
Burgundy/ L
Burgundy/ XL
Burgundy/ 2XL
Burgundy/ 3XL
Burgundy/ 4XL
Burgundy/ 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)