Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 157007340
ITEM: 183740
Add style to your wardrobe with the Magellan Outdoors Women's Willow Creek Mixed Media Plaid Long Sleeve Blouse. The cotton and viscose material is gentle, and the loose fit gives you an easygoing wearing experience. The collar adds a classy look to the garment.
Features and Benefits
Cotton and viscose material delivers softness
Long sleeves extend coverage
Collar adds style
Loose fit permits comfort
Specifications
Compression: No
Clothing Type: Casual Shirts
Neckline: Collar
Sleeve length: Long Sleeve
Activity: Casual
Material: Cotton/Viscose
Heat Retention: No
Gender: Women's
Size Range: Women's
Moisture Wicking: No
Care: Machine Wash
Product Type: Shirts
Flame Resistant: No
Age Group: Adults'
Style: 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();