Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
This item may ship from a different location therefore only eligible for ground shipping. Additionally, this item is not eligible for APO/FPO delivery.
STYLE IT WITH
about this product
SKU: 157301223
ITEM: S3250CHA
If you want to stay comfortable on the job, look to the Smith's Workwear Men's Extra Heavyweight Chamois Flannel Shirt. This shirt is made of chamois cotton flannel that is brushed for a soft feel, and the fabric will soften with age. The chest pocket features a pen slot to help keep a writing utensils within reach.
Features and Benefits
Made of soft, extra-heavyweight, brushed chamois cotton flannel to provide comfort
Fabric is designed to soften over time
Flapped chest pocket with a pen slot
Long sleeves with adjustable cuff closures
Button-down collar
Double-tough stitching is built to last
Specifications
Compression: No
Clothing Type: Work Shirts
Neckline: Collar
Sleeve length: Long Sleeve
Material technology: Brushed
Activity: Work
Material: 100% Cotton Flannel
Heat Retention: Yes
Gender: Men's
Size Range: Men's
Moisture Wicking: No
Care: Machine Wash
Product Type: Shirts
Flame Resistant: No
Age Group: Adults'
Style: Flannel Shirts
Hood: No
Placket: Button
What's in the Box
Smith's Workwear Men's Extra Heavyweight Chamois Flannel Shirt
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();