Men's Vintage Solid Color Single Breasted Textured Jacket

$62.68
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '0a4024b0-c4e3-4e27-b4bc-a49914be2ccf'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // 加购中状态 } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = 'c74bee22-1c7f-4454-8e86-2f6d2ee74578'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == 'c74bee22-1c7f-4454-8e86-2f6d2ee74578' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); // 加购事件 this.registerAction('handleAddToCart', (invocation) => { // 阻止事件冒泡 const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // 如果正在加购中,直接返回 if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // 加购方法 async addToCart(quantity) { // 设置加购中状态 this.isAddingToCart_ = true; const productId = 'c74bee22-1c7f-4454-8e86-2f6d2ee74578'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // 触发加购成功提示 this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无论成功失败,都重置加购状态 this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // 触发加购成功提示 triggerAddToCartToast_() { // 如果主题有自己的加购提示,则不显示 const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 显示应用的加购成功提示 this.showToast_("Added successfully"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("Added successfully"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
Color:  Coffee
Size:  S
Quantity

Description

SKU:xtjx6202410188

DESCRIPTION

Fabric: Blended

Pattern: Solid Color

Collar: Lapel

Placket: Single-Breasted

Sleeve Length: Regular

Style: Casual

Sleeve Length: Long Sleeve

Thickness: Regular

Applicable Scene: Casual

Category: Jacket

Product Size:


PleaseNote:There may be 1-2 cm deviation in different sizes, locations and stretch of fabrics.

PromiseIf the product has any quality problems, please feel free to contact us, we will help you solve the problem as quickly as possible.

care

Machine wash gently at 30°C with similar coloured garments.

Do not use bleach or softener.

Do not iron or dry.

Dry as much as possible.

1.How long does it take to ship?

Once we received your order. The item will be processed within 3-10days from the day you made your order, and after that, it may take 7-15 business days to be delivered normally.

 

2.How do I choose my size?

Each product has a corresponding size chart, you can choose the right size according to the size chart

Each product detail is accompanied by a corresponding Size Guide (How to check the Size Guide--👉) you can choose the right size according to the size chart!

If you still have questions about sizing, please contact our online customer service.

 

3. About the material

At the bottom of each product detail page there will be a product description which contains the product fabric and material. If you would like to know more about materials and product care, click the link to learn more! 👉

 

4. What payment methods do you support?

As for payment methods, Paypal,klarna,Visa,Maestro,MasterCard and American Express are all acceptable.

 

5. What is your location?

We are located in Hong Kong. All the items will be shipped out from it.

 

6. Is your website trustworthy? What countries does the logistics deliver to?

We understand your concern and can assure you of lawful operation of our company.

We provide qualified products and attentive service.We provide worldwide shipping on a global scale including America, Europe, Australia, Africa, etc. You will get what you buy.

If you are interested in our products, please visit our website to place the order.

If there is any further question, please feel free to contact us.

 

7.Does your company have a local store?

We are sorry for the inconvenience, but we solely sell online. If you are interested in our products, please view our website: XXXX. You can directly choose items and place orders there.

 

8.Is there a quality issue with the relatively low pricing of the products on your site?

Whatever the item is cheap or expensive, the most important thing is that you like it. Also we need to tell you, there might be some difference between the expensive items and the cheap items in every aspects, there are some cheap items in our websites but also have a good quality .

 

So please believe in us and in our product. Thanks.

 

9.There are some bad messages on your site, are these real?

We are sorry to hear that. Even if you saw some bad reviews about our websites, it doesn't rule out that someone is doing it on purpose. And everything has two sides, as the saying goes "Ten thousand people have ten thousand different views on Hamlet." You can have a try by yourself.

Also, we guarantee the good quality of our products. Please contact us if you have received damaged product. It will be solved timely till your satisfaction.

 

10.With regard to tariffs, who pays the tariffs?

We usually mark the parcel as‘gift’ with estimated value of $10, so you might not need to pay the customs duties. But, it also depends on the customs rules of your country. Please note that customers are responsible for paying the tax their countries charge.

Shopping:

Sell Out ? What If The Item I’m Interested In Is No Longer Available In My Size ?

New items can be sold out rather quickly, but we may get more soon!Please contact our customer care department via New items can be sold out

rather quickly, but we may get more soon!

Please contact our customer care department via email and we will do our best to notify you if the item becomes available again. Please include the

best email address for reaching you when the item becomes available.

What Should Do If The Size On The Tag Is Different From What I Ordered ?

The size show on the website will be converted into international size before products are put on sale, which is standard and regular. Therefore, if

you find that the size you get is not the same as shown on the website, don’t panic and worry. That size we sent you is right. Put them on first and see how it turns out. If they don't fit you well, you could return them definitely. (Please check our return policy)

Why The Color Of Received Clothing Is A Little Different From What I Saw Online ?

The camera's perspective and the extent of lighting may cause a little color difference. Hope you could understand us. If it does not affect the

appearance and mood about your favorite clothing, we hope you can keep clothing. We will give you promotion code as the compensation for the future purchase. However, we will try our best to avoid the matter happens.

How Do I Use A Discount Code ?

If you have a discount coupon, when you go to “check out” page, you may find an option where you need to input the number, that’s how you use it.

Why Was My Order Canceled ?

Due to an unforeseen event, the item you ordered suddenly became out of stock and is no longer available. We promise these cases are rare. However, if an item in your order does become unavailable, you will be contacted within 24 to 48 hours about the cancellation. If your order contains additional items, these items will still be shipped to you and the unavailable item will be removed from your order for refund.

Need To Change Something On My Order, How Can I Do That ?

If you need to change or cancel your order, please contact us immediately. We process and ship orders quickly (we’re fast!). Once the parcel was processed and sent to the post office, we will be unable to make any changes.

Can I Get More Information On A Product ?

We try to publish as much useful info as we can about all our products, to help you buy the things that will suit you best.

The product page for every item includes sizing, a detailed description, care instructions, and most importantly, plenty of images.

If there is anything further information you feel we need to put on there to help you, just let us know what information you'd like to see and we'll do our best to include it.

Any Catalogues That I Can Buy From ?

With over so many new items every week, and hundreds of items on the site at any one time, plus constantly changing fashion news, trend features and advice, it would simply be impossible for a paper catalogue to keep up.

Instead we prefer to focus our energy on providing our customers with a website where you can buy what you want when you want, 24 hours, 7 days a week and we believe that the images and catwalk give you a much more realistic view of the items you want.

Payment:

How Do I Pay For My Order ?

We like to give you plenty of payment options: we accept Visa, MasterCard credit card as our secure payment method which accepts all kinds of credit or debit cards. We also take security very seriously indeed, so your details will be safe with us.

All credit and debit card holders are subject to validation and authorization by both us and the card issuer, to maintain security and prevent fraud.

What Currencies Can I Use ?

There are several currencies available as follows: US dollar, EURO, Great Britain Pound Sterling,Canada Dollar, Australia Dollar, Norwegian Krone, Switzerland Francs, Swedish Krona, Polish Zloty, Danish Krona, Japanese Yen, Hong Kong Dollar.

Is It Safe To Use My Credit Card On The Website ?

Please don’t worry; it is safe to order on our website.

We use industry-standard encryption technologies when transferring and receiving customer data exchanged with our site server. None of your credit-card details will be revealed.

During checkout, when you enter your credit card & personal information at our online store, you are passing the information securely to us, using secure socket layer technology (SSL).Welcome to choose your favorite items on our website.

Why Might My Credit Card Be Refused ?

Your credit card may be refused for any of the following reasons:

The card may have expired. Check that your card is still valid.

You may have reached your credit limit. Contact your bank to check that you have not exceeded the authorized purchase limit.

You may have entered some information incorrectly. Check that you have filled in all the required fields correctly.

Make sure you’re using the latest version of your web browser. Maybe because your browser is installed some kinds of plug-ins. Please clear the cookies restart the browser and then try again.

Was I Charged Twice ?

Your credit card will only be charged once after your order ships.

If you just placed your order, what you are seeing on your bank account is an authorization. This is a common bank practice handling credit card transactions to ensure sufficient funds and account authenticity. This authorization will clear (depending on your bank, usually within 48 – 72 hours.) If you need help speeding up the process, you can contact the issuing bank of your credit card.