Men's Fashion Business Luxury Design Printed Long Sleeve Shirt

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

Description

  • SPU:
    MSR482833
  • Material:
    Cotton Blends
  • Style:
    Casual/Business
  • Pattern Type:
    Solid
  • 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
Royal Blue/ XS
Royal Blue/ S
Royal Blue/ M
Royal Blue/ L
Royal Blue/ XL
Royal Blue/ 2XL
Royal Blue/ 3XL
Royal Blue/ 4XL
Royal Blue/ 5XL
Green/ XS
Green/ S
Green/ M
Green/ L
Green/ XL
Green/ 2XL
Green/ 3XL
Green/ 4XL
Green/ 5XL
White/ XS
White/ S
White/ M
White/ L
White/ XL
White/ 2XL
White/ 3XL
White/ 4XL
White/ 5XL
Burgundy/ XS
Burgundy/ S
Burgundy/ M
Burgundy/ L
Burgundy/ XL
Burgundy/ 2XL
Burgundy/ 3XL
Burgundy/ 4XL
Burgundy/ 5XL
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)