Stanley Black & Decker - Financials (2024)

', loadingMessage: '

Loading slider...

', contentSources: { "Financials": { type: 'financials', reportTypes: ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], label: 'financials' }, 'Other: news': { type: 'news', tags: ['financials'], label: 'other' }, 'Other: webcast': { type: 'events', tags: ['financials'], label: 'other' }, 'Other: presentation': { type: 'presentations', tags: ['financials'], label: 'other' }, 'SEC: quarterly filing': { type: 'sec', symbol: SECCONFIG.cik, excludeNoDocuments: true, includeHtmlDocument: true, filingTypes: ['10-K', '10-K/A', '10-Q'], exchange: 'CIK', label: 'sec' }, "News": { type: 'news', loadShortBody: false, tags: ['earnings', 'financials'], label: 'news' }, }, template: ( /* beautify preserve:start */ '{{#quartersWithItems.length}}'+ '

'+ // build tabs navigation for desktop '

{{#quartersWithItems}}'+ '{{#.}}'+ '

'+ '{{/.}}'+ '{{/quartersWithItems}}

'+ // build select navigation for mobile '

'+ ''+ ''+ '

'+ // news item '{{#quartersWithItems}}'+ '{{#.}}

'+ '

'+ '{{#news}}'+ '

{{displayShortType}} {{fiscalYear}}

'+ '

{{{title}}}

'+ '

{{{body}}}

'+ '

' + '' + 'View full release' + '' + '

' + '{{/news}}'+ '{{^news}}'+ '

There is no related quarterly press release.

'+ '{{/news}}'+ '

'+ '

{{/.}}'+ '{{/quartersWithItems}}'+ '

'+ '

'+ '{{#quartersWithItems}}'+ '{{#.}}

'+ '

'+ '

Download

'+ '

    ' + '{{#docs}}' + '
  • ' + '' + '{{docTitle}}' + '{{#blank}}(opens in new window){{/blank}}' + '
  • ' + '{{/docs}}' + '

' + '

Related Information

'+ '

    '+ '
  • ' + 'SEC Filings' + '
  • ' + '

'+ '

'+ '

{{/.}}'+ '{{/quartersWithItems}}'+ '

'+ '{{/quartersWithItems.length}}'+ '{{^quartersWithItems.length}}'+ '

No financial quarters found.

'+ '{{/quartersWithItems.length}}' /* beautify preserve:end */ ), beforeRender: function (e, data) { data.quartersWithItems = []; var quarterArray = [], quarterlyRange = { /*'Q1': [1, 2, 3], 'Q2': [4, 5, 6], 'Q3': [7, 8, 9], 'Q4': [10, 11, 12]*/ 'Q1': [4, 5, 6], 'Q2': [7, 8, 9], 'Q3': [10, 11, 12], 'Q4': [1, 2, 3] }; secQuarterlyRange = { 'Q1': { monthStart: 1, monthEnd: 4 }, 'Q2': { monthStart: 5, monthEnd: 7 }, 'Q3': { monthStart: 8, monthEnd: 10 } }; function addSortGetIndex(value, array) { array.push(value); array.sort().reverse(); return array.indexOf(value); } function makeTargetBlank(doc) { if (doc.docUrl) { var url = doc.docUrl.toLowerCase().split('.'); if (url[url.length - 1] != 'aspx') { doc.blank = true; } } } function findDocIndex(index, item) { return data.quartersWithItems[index].docs.findIndex(function (doc) { return doc.docCategory == item.docCategory; }); } function setupItems(item) { if (item.contentSourceID == 'Financials') { quarterArray.push(item.fiscalYear + ' ' + item.shortType); data.quartersWithItems.push(item); } else if (item.contentSourceID.startsWith('SEC') && WIDGETSETUP.useSec) { setupSec(item); setupSecDocs(item); addSecItem(item); } else if (item.contentSourceID.startsWith('Other') && WIDGETSETUP.useOther) { $.each(item.tags, function (i, tag) { if (tag.startsWith('fin-')) { setupOther(item, tag); } }); } else if (item.contentSourceID == 'News') { setupNews(item); } } function setupSec(item) { if (item.description === 'Annual Report') { item.fiscalYear = SECCONFIG.secAnnualSameYear ? item.year : item.year - 1; item.shortType = 'Q4'; item.docCategory = 'tenk'; } else { var filingMonth = new Date(item.date).getMonth(); item.fiscalYear = item.year; item.docCategory = 'tenq'; if (filingMonth >= secQuarterlyRange.Q1.monthStart && filingMonth <= secQuarterlyRange.Q1.monthEnd) { item.shortType = 'Q1'; } else if (filingMonth >= secQuarterlyRange.Q2.monthStart && filingMonth <= secQuarterlyRange.Q2.monthEnd) { item.shortType = 'Q2'; } else if (filingMonth >= secQuarterlyRange.Q3.monthStart && filingMonth <= secQuarterlyRange.Q3.monthEnd) { item.shortType = 'Q3'; } } } function setupSecDocs(item) { $.each(SECCONFIG.secFilingTypes[item.type].preferredDocs, function (x, prefDoc) { var found = false; $.each(item.docs, function (j, secDoc) { if (prefDoc === secDoc.docType) { secDoc.docType == "CONVPDF" ? secDoc.docType = "PDF" : secDoc.docType = secDoc.docType; item.docType = secDoc.docType; item.docUrl = secDoc.docUrl; found = true; } }); if (found) return false; }); } function addSecItem(item) { var quarterIndexSec = $.inArray((item.fiscalYear + ' ' + item.shortType), quarterArray); if (quarterIndexSec > -1) { var secDocIndex = findDocIndex(quarterIndexSec, item); if (secDocIndex > -1) { if (!WIDGETSETUP.onlyFillBlanksSec) data.quartersWithItems[quarterIndexSec].docs.splice(secDocIndex, 1, item); } else { data.quartersWithItems[quarterIndexSec].docs.push(item); } } else { var secQuarter = item.fiscalYear + ' ' + item.shortType, secIndex = addSortGetIndex(secQuarter, quarterArray), newSecItem = { shortType: item.shortType, fiscalYear: item.fiscalYear, docs: [item] }; data.quartersWithItems.splice(secIndex, 0, newSecItem); } } function setupOther(item, details) { if (item.tags.indexOf('transcript') > -1) { item.docCategory = 'transcript'; } else { item.docCategory = item.contentSourceID.replace('Other: ', ''); } if (item.docCategory == 'webcast' && item.docs) { $.each(item.docs, function (ind, doc) { doc.title = doc.title.toLowerCase(); if (doc.title.includes('transcript')) { if (item.webcast) { doc.contentSourceID = 'Other: transcript'; doc.tags = item.tags; var otherTranscript = { id: 'Other: transcript', label: 'other', items: [] }; otherTranscript.items.push(doc); data.sourcesWithItems.push(otherTranscript); } else { item.docCategory = 'transcript'; item.url = doc.url; item.size = doc.size; } } }); } if (item.webcast) { item.docUrl = item.webcast; } else if (!item.docUrl && item.url) { item.docUrl = item.url; } var detailsArr = details.split('-'), itemYear = detailsArr[1], shortType = detailsArr[2].toUpperCase(), quarterIndex = $.inArray((itemYear + ' ' + shortType), quarterArray); if (quarterIndex > -1) { var docIndex = findDocIndex(quarterIndex, item); if (docIndex > -1) { if (!WIDGETSETUP.onlyFillBlanksOther) data.quartersWithItems[quarterIndex].docs.splice(docIndex, 1, item); } else { data.quartersWithItems[quarterIndex].docs.push(item); } } else { var otherQuarter = itemYear + ' ' + shortType, otherIndex = addSortGetIndex(otherQuarter, quarterArray), newOtherItem = { shortType: shortType, fiscalYear: parseInt(itemYear), year: parseInt(itemYear), docs: [item] }; data.quartersWithItems.splice(otherIndex, 0, newOtherItem); } } function setupNews(item) { if (item.tags.indexOf('financials') > -1 && WIDGETSETUP.useFinNewsTags) { // New school "financials" formatted tag used setupNewsFinancialsTag(item); } else if (item.tags.indexOf('earnings') > -1) { // Old school "earnings" tag used setupNewsEarningsTag(item); } } function setupNewsEarningsTag(item){ item.month = new Date(item.dateObj).getMonth() + 1; // first month, january return 0, february returns 2 if (quarterlyRange['Q1'].indexOf(item.month) > -1) { item.shortType = 'Q1'; item.fiscalYear = item.year; // item.year + 1 if news quarter is in next year or item.year - 1 if news quarter is in previous year } else if (quarterlyRange['Q2'].indexOf(item.month) > -1) { item.shortType = 'Q2'; item.fiscalYear = item.year; // item.year + 1 if news quarter is in next year or item.year - 1 if news quarter is in previous year } else if (quarterlyRange['Q3'].indexOf(item.month) > -1) { item.shortType = 'Q3'; item.fiscalYear = item.year; // item.year + 1 if news quarter is in next year or item.year - 1 if news quarter is in previous year } else if (quarterlyRange['Q4'].indexOf(item.month) > -1) { item.shortType = 'Q4'; item.fiscalYear = item.year - 1; // item.year + 1 if news quarter is in next year or item.year - 1 if news quarter is in previous year } if ($.inArray((item.fiscalYear + ' ' + item.shortType), quarterArray) > -1) { data.quartersWithItems[$.inArray((item.fiscalYear + ' ' + item.shortType), quarterArray)].news = item; } } function setupNewsFinancialsTag(item){ $.each(item.tags, function (i, tag) { if (tag.startsWith('fin-')) { var tagArr = tag.split('-'), itemYear = tagArr[1], shortType = tagArr[2].toUpperCase(); if ($.inArray((itemYear + ' ' + shortType), quarterArray) > -1) { data.quartersWithItems[$.inArray((itemYear + ' ' + shortType), quarterArray)].news = item; } } }); } function setTitleAndPlacement(quarter) { $.each(quarter.docs, function (i, doc) { if (DOCSETUP[doc.docCategory]) { doc.docTitle = DOCSETUP[doc.docCategory].title; doc.placement = DOCSETUP[doc.docCategory].placement; } else { doc.docTitle = doc.docTitle || doc.title; doc.placement = 9; } }); quarter.docs.sort(function (a, b) { return a.placement - b.placement; }); } for (var i = 0; i < data.sourcesWithItems.length; i++) { $.each(data.sourcesWithItems[i].items, function (i, item) { setupItems(item); }); } data.quartersWithItems.length = WIDGETSETUP.totalQuarters; $.each(data.quartersWithItems, function (i, quarter) { //00640227 quarter.displayShortType = quarter.shortType[1]+quarter.shortType[0]; if (quarter){ setTitleAndPlacement(quarter); $.each(quarter.docs, function (i, doc) { makeTargetBlank(doc); }); } }); }, complete: function (e) { q4Defaults.tabs($(e.target), '.tabs_nav', '.tabs_link', '.module-financial-mashup_item', '.module-financial-mashup_select', false); } });})();

', itemLoadingMessage: '

Loading financial reports for the selected year...

', contentSources: { "Financials": { type: 'financials', reportTypes: ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], label: 'financials' }, 'Other: news': { type: 'news', tags: ['financials'], label: 'other' }, 'Other: webcast': { type: 'events', tags: ['financials'], label: 'other' }, 'Other: presentation': { type: 'presentations', tags: ['financials'], label: 'other' }, 'SEC: quarterly filing': { type: 'sec', symbol: SECCONFIG.cik, excludeNoDocuments: true, includeHtmlDocument: true, filingTypes: ['10-K', '10-K/A', '10-Q'], exchange: 'CIK', label: 'sec' }, }, template: ( /* beautify preserve:start */ // optional tabs - not used by default '

'+ '{{#template}}' + '{{#.}}'+ '

'+ '{{year}}'+ '

'+ '{{/.}}'+ '{{/template}}' + '

'+ // select dropdown '{{#template.length}}' + '

' + '' + '' + '

' + '{{#template}}' + '{{#.}}' + '

' + '{{#quarters}}' + '

' + '

{{displayShortType}} Earnings

' + '

' + '{{#docs}}' + '

' + '' + '{{docTitle}}' + '{{#blank}}(opens in new window){{/blank}}' + '

' + '{{/docs}}' + '

' + '

' + '{{/quarters}}' + '

' + '{{/.}}' + '{{/template}}' + '{{/template.length}}' + '{{^template.length}}' + '

No financial quarters found.

'+ '{{/template.length}}' /* beautify preserve:end */ ), beforeRender: function (e, data) { data.quartersWithItems = []; data.template = []; var quarterArray = [], yearTracker = [], quarterlyRange = { 'Q1': [1, 2, 3], 'Q2': [4, 5, 6], 'Q3': [7, 8, 9], 'Q4': [10, 11, 12] }; secQuarterlyRange = { 'Q1': { monthStart: 1, monthEnd: 4 }, 'Q2': { monthStart: 5, monthEnd: 7 }, 'Q3': { monthStart: 8, monthEnd: 10 } }; function addSortGetIndex(value, array) { array.push(value); array.sort().reverse(); return array.indexOf(value); } function makeTargetBlank(doc) { if (doc.docUrl) { var url = doc.docUrl.toLowerCase().split('.'); if (url[url.length - 1] != 'aspx') { doc.blank = true; } } } function findDocIndex(index, item) { return data.quartersWithItems[index].docs.findIndex(function (doc) { return doc.docCategory == item.docCategory; }); } function setupItems(item) { if (item.contentSourceID == 'Financials') { quarterArray.push(item.fiscalYear + ' ' + item.shortType); data.quartersWithItems.push(item); } else if (item.contentSourceID.startsWith('SEC') && WIDGETSETUP.useSec) { setupSec(item); setupSecDocs(item); addSecItem(item); } else if (item.contentSourceID.startsWith('Other') && WIDGETSETUP.useOther) { $.each(item.tags, function (i, tag) { if (tag.startsWith('fin-')) { setupOther(item, tag); } }); } } function setupSec(item) { if (item.description === 'Annual Report') { item.fiscalYear = SECCONFIG.secAnnualSameYear ? item.year : item.year - 1; item.shortType = 'Q4'; item.docCategory = 'tenk'; } else { var filingMonth = new Date(item.date).getMonth(); item.fiscalYear = item.year; item.docCategory = 'tenq'; if (filingMonth >= secQuarterlyRange.Q1.monthStart && filingMonth <= secQuarterlyRange.Q1.monthEnd) { item.shortType = 'Q1'; } else if (filingMonth >= secQuarterlyRange.Q2.monthStart && filingMonth <= secQuarterlyRange.Q2.monthEnd) { item.shortType = 'Q2'; } else if (filingMonth >= secQuarterlyRange.Q3.monthStart && filingMonth <= secQuarterlyRange.Q3.monthEnd) { item.shortType = 'Q3'; } } } function setupSecDocs(item) { $.each(SECCONFIG.secFilingTypes[item.type].preferredDocs, function (x, prefDoc) { var found = false; $.each(item.docs, function (j, secDoc) { if (prefDoc === secDoc.docType) { secDoc.docType == "CONVPDF" ? secDoc.docType = "PDF" : secDoc.docType = secDoc.docType; item.docType = secDoc.docType; item.docUrl = secDoc.docUrl; found = true; } }); if (found) return false; }); } function addSecItem(item) { var quarterIndexSec = $.inArray((item.fiscalYear + ' ' + item.shortType), quarterArray); if (quarterIndexSec > -1) { var secDocIndex = findDocIndex(quarterIndexSec, item); if (secDocIndex > -1) { if (!WIDGETSETUP.onlyFillBlanksSec) data.quartersWithItems[quarterIndexSec].docs.splice(secDocIndex, 1, item); } else { data.quartersWithItems[quarterIndexSec].docs.push(item); } } else { var secQuarter = item.fiscalYear + ' ' + item.shortType, secIndex = addSortGetIndex(secQuarter, quarterArray), newSecItem = { shortType: item.shortType, fiscalYear: item.fiscalYear, docs: [item] }; data.quartersWithItems.splice(secIndex, 0, newSecItem); } } function setupOther(item, details) { if (item.tags.indexOf('transcript') > -1) { item.docCategory = 'transcript'; } else { item.docCategory = item.contentSourceID.replace('Other: ', ''); } if (item.docCategory == 'webcast' && item.docs) { $.each(item.docs, function (ind, doc) { doc.title = doc.title.toLowerCase(); if (doc.title.includes('transcript')) { if (item.webcast) { doc.contentSourceID = 'Other: transcript'; doc.tags = item.tags; var otherTranscript = { id: 'Other: transcript', label: 'other', items: [] }; otherTranscript.items.push(doc); data.sourcesWithItems.push(otherTranscript); } else { item.docCategory = 'transcript'; item.url = doc.url; item.size = doc.size; } } }); } if (item.webcast) { item.docUrl = item.webcast; } else if (!item.docUrl && item.url) { item.docUrl = item.url; } var detailsArr = details.split('-'), itemYear = detailsArr[1], shortType = detailsArr[2].toUpperCase(), quarterIndex = $.inArray((itemYear + ' ' + shortType), quarterArray); if (quarterIndex > -1) { var docIndex = findDocIndex(quarterIndex, item); if (docIndex > -1) { if (!WIDGETSETUP.onlyFillBlanksOther) data.quartersWithItems[quarterIndex].docs.splice(docIndex, 1, item); } else { data.quartersWithItems[quarterIndex].docs.push(item); } } else { var otherQuarter = itemYear + ' ' + shortType, otherIndex = addSortGetIndex(otherQuarter, quarterArray), newOtherItem = { shortType: shortType, fiscalYear: parseInt(itemYear), year: parseInt(itemYear), docs: [item] }; data.quartersWithItems.splice(otherIndex, 0, newOtherItem); } } function setTitleAndPlacement(quarter) { $.each(quarter.docs, function (i, doc) { if (DOCSETUP[doc.docCategory]) { doc.docTitle = DOCSETUP[doc.docCategory].title; doc.placement = DOCSETUP[doc.docCategory].placement; } else { doc.docTitle = doc.docTitle || doc.title; doc.placement = 9; } }); quarter.docs.sort(function (a, b) { return a.placement - b.placement; }); } for (var i = 0; i < data.sourcesWithItems.length; i++) { $.each(data.sourcesWithItems[i].items, function (i, item) { setupItems(item); }); } $.each(data.quartersWithItems, function (i, quarter) { //00640227 quarter.displayShortType = quarter.shortType[1]+quarter.shortType[0]; setTitleAndPlacement(quarter); $.each(quarter.docs, function (i, doc) { makeTargetBlank(doc); }); if ($.inArray(quarter.year, yearTracker) == -1) { yearTracker.push(quarter.year); var dataTpl = { year: quarter.year, quarters: [] }; data.template.push(dataTpl); } var yearIndex = data.template.findIndex(function (yearObj) { return yearObj.year == quarter.year; }); data.template[yearIndex].quarters.push(quarter); }); }, complete: function (e) { q4Defaults.tabs( $(e.target), '.accordion-tabs_nav', '.accordion-tabs_link', '.module-financial-accordion_item', '.module_options-select', false ); q4App.toggle( $(e.target).find('.module-financial-accordion_item'), '.module_item', '.module-financial_year-text', '.module_links', false, false, true ); function updateSR() { if ($(e.target).find('#quarterly-status').length) { var theYear = $('#module-financial-quarter_select').val().replace(".module-financial-accordion_item--", ""); $(e.target).find('#quarterly-status').text('Showing quarterly results from year ' + theYear); } } q4Defaults.a11yAnnouncement('polite', 'quarterly-status', $(e.target).find('.module_options'), updateSR); $(e.target).find('.module_options-select').on('change', updateSR); } });})();

Stanley Black & Decker - Financials (2024)

References

Top Articles
Latest Posts
Article information

Author: Madonna Wisozk

Last Updated:

Views: 5869

Rating: 4.8 / 5 (68 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Madonna Wisozk

Birthday: 2001-02-23

Address: 656 Gerhold Summit, Sidneyberg, FL 78179-2512

Phone: +6742282696652

Job: Customer Banking Liaison

Hobby: Flower arranging, Yo-yoing, Tai chi, Rowing, Macrame, Urban exploration, Knife making

Introduction: My name is Madonna Wisozk, I am a attractive, healthy, thoughtful, faithful, open, vivacious, zany person who loves writing and wants to share my knowledge and understanding with you.