\r\n \r\n\"We had another quarter of strong growth in our digital assets with dotcom sales growing approximately 25%, led by online orders picked up in the store through Buy Online, Pick Up In Store (BOPUS) and Buy Online, Ship to Store (BOSS),\" said aid Home Depot CEO Craig A. Menear. \"At the same time, our operations team remains focused on improving the interconnected customer experience in the store.\" \r\n \r\nThe effort paid off, as Home Depot saw year-over-year improvement in customer satisfaction scores for its BOPUS and BOSS offerings in the second quarter. \r\n \r\nMeanwhile, its online channel represented 5% of sales in the second quarter. \"Our dotcom team continues to expand our capabilities to solve our customers' needs through our online properties,\" said Menear. \r\n \r\nIn the second quarter, Home Depot improved its mobile experience, invested in content and made site improvements to \"take friction out\" for customers. \r\n \r\nThe company is also investing in its supply chain to support online growth, completing the build-out of a direct fulfillment center located in Troy Township, Ohio. The company plans to begin shipping product to customers out of this facility in the third quarter. \r\n \r\n\"This facility, along with our two other DFC's in California and Georgia, will give us the capability to reach 90% of our U.S. customers with two-day or less parcel shipping,\" said Menear. \r\n \r\nHome Depot is in four markets with its Buy Online, Deliver From Store implementation. Virtually all of its stores are in the delivery business, but Home Depot is now enabling the buy online component. As part of that, the company seeks to enable tighter delivery windows. \r\n \r\n\"We're working to really perfect that and make that a flawless customer experience,\" said Mark Holifield, Executive VP-Supply Chain & Product Development. \r\n \r\n\"I would say that tighter time windows are harder to meet than all-day windows, so we want to be absolutely certain that we can meet those before we roll further, but we would expect to roll that through 2016.\" \r\n \r\nIn merchandising, Home Depot recently utilized its regional merchandising managers and planning and assortment tools to refine its assortment in cleaning. Based on customer demand and analytical data, the company has expanded its offering in the category. In addition to refreshes in subcategories like sponges, gloves, and brooms, the company expanded its air care and laundry offering and said it's very pleased with the results. \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n"}]}};
const country = "US";
const language = "en-US,en;q=0.5";
const SITE_LANGUAGE = "en";
const siteName = "RIS News";
const userRoles = ["anonymous"];
const userUid = 0;
const indexName = "risnews";
window.dataLayer = window.dataLayer || [];
const data = {};
data.entityTaxonomy = {};
const contentTypes = [
"article",
"blog",
"bulletin",
"embed_page",
"landing_page",
"event",
"image",
"page",
"product",
"whitepaper",
"video",
"tags",
];
if (
routeInfo &&
"bundle" in routeInfo &&
contentTypes.includes(routeInfo["bundle"])
) {
data.entityBundle = routeInfo.bundle;
data.entityTitle = `${routeInfo.title} | ${siteName}`;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.entityType = "node";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.entityTaxonomyKeys = {};
data.entityTaxonomyHierarchies = {};
data.parentNaicsCode = {};
data.isPro = false;
data.algoliaIndexName = indexName;
// Add toxonomy data
const taxonomies = {
businessTopic: "business_topic",
contentType: "content_type",
company: "company",
marketSegment: "market_segment",
};
const getHierarchy = (term, terms = []) => {
terms.push({ id: term.id, name: term.name });
if (term.parentTerm != null) {
getHierarchy(term.parentTerm, terms);
}
return terms;
};
const getTerms = (term, useApiId = false) => {
return { id: useApiId ? term.apiId : term.id, name: term.name };
};
const getKeys = (term) => {
return { id: term.id, name: term.apiId };
};
Object.entries(taxonomies).forEach(([key, item]) => {
terms = routeInfo[key];
if (terms && terms.length > 0) {
data["entityTaxonomy"][item] = terms.map((term) =>
getTerms(term, key === "company")
);
if (key !== "company") {
data["entityTaxonomyKeys"][item] = terms.map(getKeys);
termGroups = [];
terms.forEach((term, termInd) => {
termGroups[termInd] = getHierarchy(term);
});
data["entityTaxonomyHierarchies"][item] = termGroups;
}
}
});
data["entityTaxonomy"]["tags"] = routeInfo["topics"] || [];
// Primary Topic is either the business topic or the top tag.
if (routeInfo["businessTopic"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["businessTopic"][0]["name"];
} else {
if (routeInfo["topics"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["topics"][0]["name"];
}
}
// Primary and secondary entityNaicsCodes come from the MarketSegment
if (routeInfo.marketSegment?.length > 0) {
data.entityNaicsCode = {};
data["entityNaicsCode"]["id"] = routeInfo["marketSegment"][0]["id"];
data["entityNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["naicsCode"];
if (routeInfo["marketSegment"][0]["parentTerm"] != null) {
data["parentNaicsCode"]["id"] =
routeInfo["marketSegment"][0]["parentTerm"]["id"];
data["parentNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["parentTerm"]["naicsCode"];
}
} else {
data.entityNaicsCode = [];
}
if (routeInfo.taggedPro) {
data.isPro = routeInfo.taggedPro;
}
window.dataLayer.push(data);
} else if (routeInfo && "vid" in routeInfo) {
data.entityBundle = "tags";
data.entityTitle = routeInfo.name;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.entityType = "taxonomy_term";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.algoliaIndexName = indexName;
data["entityTaxonomy"]["tags"] = {
id: routeInfo["id"],
name: routeInfo["name"],
};
window.dataLayer.push(data);
}
})();
Home Depot's sales for its 2015 second quarter were $24.8 billion, up 4.3% from last year, thanks in part to online sales growth. The company has been making moves to meet the new demand, including adding a new fulfillment center, which it expects to give 90% of its U.S. customers two-day or less parcel shipping.
"We had another quarter of strong growth in our digital assets with dotcom sales growing approximately 25%, led by online orders picked up in the store through Buy Online, Pick Up In Store (BOPUS) and Buy Online, Ship to Store (BOSS)," said aid Home Depot CEO Craig A. Menear. "At the same time, our operations team remains focused on improving the interconnected customer experience in the store."
The effort paid off, as Home Depot saw year-over-year improvement in customer satisfaction scores for its BOPUS and BOSS offerings in the second quarter.
Meanwhile, its online channel represented 5% of sales in the second quarter. "Our dotcom team continues to expand our capabilities to solve our customers' needs through our online properties," said Menear.
In the second quarter, Home Depot improved its mobile experience, invested in content and made site improvements to "take friction out" for customers.
The company is also investing in its supply chain to support online growth, completing the build-out of a direct fulfillment center located in Troy Township, Ohio. The company plans to begin shipping product to customers out of this facility in the third quarter.
"This facility, along with our two other DFC's in California and Georgia, will give us the capability to reach 90% of our U.S. customers with two-day or less parcel shipping," said Menear.
Home Depot is in four markets with its Buy Online, Deliver From Store implementation. Virtually all of its stores are in the delivery business, but Home Depot is now enabling the buy online component. As part of that, the company seeks to enable tighter delivery windows.
"We're working to really perfect that and make that a flawless customer experience," said Mark Holifield, Executive VP-Supply Chain & Product Development.
"I would say that tighter time windows are harder to meet than all-day windows, so we want to be absolutely certain that we can meet those before we roll further, but we would expect to roll that through 2016."
In merchandising, Home Depot recently utilized its regional merchandising managers and planning and assortment tools to refine its assortment in cleaning. Based on customer demand and analytical data, the company has expanded its offering in the category. In addition to refreshes in subcategories like sponges, gloves, and brooms, the company expanded its air care and laundry offering and said it's very pleased with the results.