Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 112708783
ITEM: 1593U BLUE 20.5
All the features in the French Toast Girls' Plus Size Modern Peter Pan Blouse combine to create a sweet, feminine shirt she'll be excited to wear all day long. It has a button-down design with back darts to keep the fit slim. The Peter Pan collar adds a classic touch to the overall structure, and the Wrinkle No Moreâ„¢ fabric will keep her looking polished.
Features and Benefits
Made with a blend of cotton and polyester poplin fabric with Wrinkle No More™ technology
Button-down design
Short sleeves
Modern Peter Pan collar
Back darts for a slim fit
Tag-free for extra comfort
Specifications
Reinforced knees: No
Clothing Type: School Uniforms
Product Type: Shirts
Age Group: Kids'
Style: Blouse,Button Down
Activity: School
Gender: Girls'
Size Range: Girls' Plus (8 - 20 Plus)
Care: Machine Wash
What's in the Box
French Toast Girls' Plus Size Modern Peter Pan Blouse
User Manual
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();