CINXE.COM
Procore 默认成本编号有哪些? - Procore
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Procore 默认成本编号有哪些? - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=347514643d37bf95a0cf76b3ce0ed34c_emgtc2cuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13854" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=6699f74b132e2bfa09fffa4d76f79739:site_13854" id="mt-print-css" /> <script type="text/javascript" nonce="a22892877eb85f3547c1d4084e61238a6d21fb774119596809c535322d361b92" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=9529aea554fde890c4d7cb109f8680ca3b4d1cd2:site_13854"></script><script type="application/json" id="mt-global-settings" nonce="a22892877eb85f3547c1d4084e61238a6d21fb774119596809c535322d361b92">{"apiToken":"xhr_2_1739834021_d708bb08691259c12205e4dc0776ac4d5e8d06f575abbb87521681729427b263","pageId":3459,"pageViewId":"dd47f9f4-f451-4ad6-815f-5db95c8671c1"}</script> <!-- Recaptcha for contact support form - --> <script defer src="https://www.google.com/recaptcha/api.js"></script> <!-- Back to Top Button by Tie Dec 14 2023 --> <script defer>/*<![CDATA[*/ window.onscroll = function () { scrollFunction(); }; function scrollFunction() { if (!document.querySelector(".columbia-article-topic-category")) { const backToTopButton = document.querySelector("#back-to-top-button"); const pageText = document.querySelector(".mt-content-container"); if (pageText.getBoundingClientRect().top < -20) { backToTopButton.style.display = "block"; } else { backToTopButton.style.display = "none"; } } } function scrollToTop() { const pageText = document.querySelector(".mt-content-container"); pageText.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest", }); } /*]]>*/</script> <!-- Global Responsive Book Functions Added by Tie Jun 14 2023 --> <script>/*<![CDATA[*/ function displaySection(id){ $(".content-section").hide(); $(id).show(); var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($(window).scrollTop() > $(".content-sop").offset().top) { $([document.documentElement, document.body]).animate({ scrollTop: $(id).offset().top - 84 }, 100); } $('.toc-sop a').removeClass('selected-chapter'); str1=".toc-sop a[onclick*=\\'\\"; str3="\\']"; fin_str=str1.concat(id,str3); $(fin_str).addClass('selected-chapter'); $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); const newURL = new URL(window.location.href); newURL.hash = id; history.pushState({},'',newURL); return false; } function toggleToc(){ var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($menuButton.attr("aria-expanded") === "false") { $menuButton.attr("aria-expanded","true"); $content.attr("data-mobile-visible","false"); $toc.attr("data-mobile-visible","true"); } else { $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); } } /*]]>*/</script> <!-- Put Page ID on Page Settings Added by Tie Apr 14, 2022 --> <script>/*<![CDATA[*/ document.addEventListener("DOMContentLoaded", function (e) { if (document.querySelector("#mt-summary")) { var pageId = document.querySelector("#mt-summary").dataset.pageId; var text = document.createElement("p"); var box = document.querySelector(".mt-collapsible-section"); text.innerText = `Page ID: ${pageId}`; box.appendChild(text); var line = document.querySelector(".elm-meta-data.elm-meta-top"); if (document.querySelector("#mt-summary")) { line.style.display = "block"; box.appendChild(line); } } }); /*]]>*/</script> <!-- Define Deprecated Video Hiding Function Sitewide Added by Tie Marc 30, 2022 --> <script>/*<![CDATA[*/ function hideDeprecatedVideos() { let thisurl = window.location.href; if (thisurl.includes('Media_Library') || thisurl.includes('/tc') || thisurl.includes('/tutorials')) { $('.deprecated-video').show(); }; } $(function () { if ($('.deprecated-video').length) { hideDeprecatedVideos(); } }) /*]]>*/</script> <!-- Define Sorting functions sitewide Added by Tie Marc 11, 2022 --> <script>/*<![CDATA[*/ const language = 'zh-cn' //Change this two lines during localization const noAlphabetArray = ['zh-cn']; const compareFun = (a, b) => { return new Intl.Collator(language).compare(a.title, b.title); } let sortTerms = (elementType, section, skipFirst) => { let terms = [...section.querySelectorAll(elementType)] let firstElement = section.firstElementChild; let termHeaders = terms.map(e => e.innerText) let termObject = [] termHeaders.forEach((title, index) => { termObject.push({ title }); termObject[index].header = terms[index]; }); termObject.sort(compareFun); section.innerHTML = ''; if (skipFirst) { section.append(firstElement); } termObject.forEach((element) => { section.append(element.header); }); } const sortItems = (definitionSelector, sortItemSelector, skipFirst = false) => { let definitionsSections = [...document.querySelectorAll(definitionSelector)]; definitionsSections.forEach(section => sortTerms(sortItemSelector, section, skipFirst)); } /*]]>*/</script> <!-- Hide content from other regions Added by Tie Marc 7, 2022 --> <script>/*<![CDATA[*/ function getSubdomain() { let host = window.location.host; let subdomain = host.split(".")[0]; return subdomain; } function getLocaleBySubdomain(subdomain) { if (subdomain == "de") { return "de-de"; } if (subdomain == "es") { return "es-419"; } if (subdomain == "fr") { return "fr-fr"; } if (subdomain == "support") { return "en-us"; } return subdomain; } function getAllLocales() { var listedLocales = $(".localization-group") .map(function () { return $(this).data("locale"); }) .get(); return listedLocales; } function hideOtherLocales() { const subdomain = getSubdomain(); const locale = getLocaleBySubdomain(subdomain); let styleElement = document.createElement("style"); styleElement.setAttribute("type", "text/css"); styleElement.innerText = `.localization-group:not([data-locale*='${locale}']) {\ndisplay: none;\n}\n`; styleElement.innerText += '.localization-group[data-locale="else"] {\ndisplay: unset;\n}'; styleElement.innerText += `.localization-group[data-locale*="${locale}"] ~ .localization-group[data-locale="else"] {\ndisplay: none;\n}`; document.head.appendChild(styleElement); } $(function () { hideOtherLocales(); }) /*]]>*/</script> <!-- Collapsible Content. Added by Tie Apr 21, 2020 --> <script>/*<![CDATA[*/ $(window).on('load', function(e){ $('.collapsible').find('.trigger').on('click',function(){ $(this).closest('.collapsible').find('.col_content').slideToggle('350'); if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-down'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-down')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-right'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-down'); } else { $(this).find('.arrowclass').removeClass('fas fa-chevron-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-right'); } }); }); function colex(el) { $(el).closest(".collapsible").find(".col_content").slideToggle("350"); if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-down"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-down")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-right"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-down"); } else { $(el).find(".arrowclass").removeClass("fas fa-chevron-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-right"); } } /*]]>*/</script> <!-- Start Custom Print Style --> <!-- User ID Tracking. Added by Dean Feb 21, 2018 --> <script>/*<![CDATA[*/document.addEventListener("DOMContentLoaded", function() { var json = JSON.parse(document.getElementById('mt-global-settings').textContent) if (!json['userIsAnonymous']) { var dataLayer = window.dataLayer || {}; dataLayer.push({ 'event': 'setUserId', 'userId': json['userId'] }); window.Procore = window.Procore || {}; window.Procore.metrics = window.Procore.metrics || {}; window.Procore.metrics.user = window.Procore.metrics.user || {}; window.Procore.metrics.user.mtid = json['userId']; } }); /*]]>*/</script> <!-- End User ID Tracking --> <!-- Adobe Launch: Added 9/10/2019 by Joshua Bradley --> <script src="//assets.adobedtm.com/launch-EN162b61ce5645478888c92738b130b2f3.min.js" async="async"></script> <!-- End Adobe Launch--> <!-- Google Tag Manager --> <script>/*<![CDATA[*/(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NWZQ5W6');/*]]>*/</script> <!-- End Google Tag Manager --> <!-- Start Typography --> <link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6912732/682666/css/fonts.css"> <link rel="stylesheet" type="text/css" href="https://mkt-cdn.procore.com/fonts/sctogrotesk/sctogrotesk.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" as="style"> <!-- End Typography --> <!-- Start of FontAwesome --> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <!-- End of FontAwesome --> <!-- Start Service Cloud Header for Ticket Form --> <!-- End Service Cloud Header for Ticket Form --> <!-- OneTrust Cookies Consent Notice start for procore.com --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="cbdfc14e-1f05-4d37-82a6-11d3228b4df5"></script> <script type="text/javascript">/*<![CDATA[*/ function OptanonWrapper() { } /*]]>*/</script> <!-- OneTrust Cookies Consent Notice end for procore.com --> </head> <body class="columbia-page-main columbia-article-faq columbia-breadcrumb-home-faq-what-are-procores-default-cost-codes columbia-live no-touch columbia-lang-zh-cn columbia-skin-grape"> <div class="grape-messaging"> </div> <div class="grape-header-custom"> <div class="mt-custom-header-div"><div class="mt-custom-header-container"><div class="mt-custom-header-logo"><a target="_self" href="https://zh-sg.support.procore.com/" rel="internal"><img src="https://zh-sg.support.procore.com/@api/deki/site/logo.png?default=https://a.mtstatic.com/skins/common/logo/logo.png%3F_%3D9529aea554fde890c4d7cb109f8680ca3b4d1cd2:site_13854" /><span id="support-logo">支持</span></a></div><ul class="mt-custom-header-right"><li class="mt-custom-header-marketing"><a target="_blank" href="https://www.procore.com/en-sg?journey=supporttoprocore" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="dropdown dropdown-hover"><a href="#" class="dropdown-toggle mt-icon-earth mt-icon-arrow-down7" role="button"> 新加坡(简体中文)</a><ul class="dropdown-menu" id="lang-dd" style="display: none;"><li><a target="_self" href="https://es.support.procore.com/" rel="external nofollow" class="link-https">América Latina (Español)</a></li><li><a target="_self" href="https://en-au.support.procore.com/" rel="external nofollow" class="link-https">Australia (English)</a></li><li><a target="_self" href="https://pt-br.support.procore.com/" rel="external nofollow" class="link-https">Brasil (Português)</a></li><li><a target="_self" href="https://en-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (English)</a></li><li><a target="_self" href="https://fr-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (Français)</a></li><li><a target="_self" href="https://de.support.procore.com/" rel="external nofollow" class="link-https">Deutschland (Deutsch)</a></li><li><a target="_self" href="https://es-es.support.procore.com/" rel="external nofollow" class="link-https">España (Español)</a></li><li><a target="_self" href="https://fr.support.procore.com/" rel="external nofollow" class="link-https">France (Français)</a></li><li><a target="_self" href="https://en-gb.support.procore.com/" rel="external nofollow" class="link-https">United Kingdom (English)</a></li><li><a target="_self" href="https://support.procore.com/" rel="external nofollow" class="link-https">United States (English)</a></li><li><a target="_self" class="internal" href="https://zh-sg.support.procore.com/" rel="internal">新加坡(简体中文)</a></li><li><a target="_self" href="https://ja-jp.support.procore.com/" rel="external nofollow" class="link-https">日本(日本語)</a></li></ul></li><li class="mt-custom-header-listitem"><a target="_blank" href="https://zh-sg.support.procore.com/references/contact-support" rel="internal">联系人</a></li><li class="mt-custom-header-listitem-login"><a target="_blank" href="https://app.procore.com?journey=supporttologin" rel="external noopener nofollow" class="link-https">登录 Procore 应用</a></li></ul></div></div><div class="mt-prepend-home mt-custom-home elm-nav" id="header-search"><div class="elm-nav-container"><script type="application/json" id="mt-localizations-help-widget">/*<![CDATA[*/{"Help.Widget.button.text":"\u641c\u7d22","Help.Widget.label.text":"\u67e5\u8be2","Help.Widget.placeholder.text":"\u6211\u4eec\u80fd\u4e3a\u4f60\u63d0\u4f9b\u54ea\u4e9b\u5e2e\u52a9\uff1f"}/*]]>*/</script><div class="mt-inputredirect" data-query-key="q" data-path=""></div></div></div> <script type="text/javascript">/*<![CDATA[*/ $(document).ready(function(){ $('.mt-custom-header-right .dropdown').hover(function(){ $(this).children('.dropdown-menu').toggle(); }) });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ /* Adds Training Center Help action to Pro Member Nav. Dean Jan 11, 2018 */ $(document).ready(function(){ $('.elm-header-user-nav.elm-nav .elm-nav-container>ol').prepend('<li><a class="mt-icon-editor-training-link" style="display:inline" target="_blank" href="/tc/1-Author_Training_Center_Documentation">Training Center Help</a></li>'); });/*]]>*/</script> </div> <div class="grape-header grape-wrapper"> <div class="grape-header-container grape-wrapper-container"> <div class="grape-site-logo"> <a class="logo-anonymous" href="/" title="Procore"> <img class="mt-cdn" src="https://a.mtstatic.com/@public/production/site_13854/1681518206-logo.png" alt="Procore" title="Procore"> </a> </div> <div class="grape-site-navigation"> <ul class="mt-site-nav"> <li class="mt-login-sign-in"> <a class="mt-icon-quick-sign-in" href="https://zh-sg.support.procore.com/Special:AuthenticationProviders?returntotitle=faq%2Fwhat-are-procores-default-cost-codes" title="登录"> 登录 </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://zh-sg.support.procore.com/Special:UserPassword" title="找回丢失的密码"> 忘记密码 </a> </li> </ul> </div> <div class="grape-site-search"> <div class="mt-quick-search-container"> <form action="/Special:Search"> <input name="path" id="mt-search-path" type="hidden" value="" /> <label class="mt-label" for="mt-site-search-input"> 搜索 </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="我们可如何帮助您?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> 搜索 </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://zh-sg.support.procore.com/"> <span class="mt-icon-article-category mt-icon-article-home"></span> Home </a> </li> <li> <a href="https://zh-sg.support.procore.com/faq"> <span class="mt-icon-article-guide"></span> 常见问题 </a> </li> </ul> </div> </div> <div class="grape-content grape-wrapper"> <div class="grape-content-container grape-wrapper-container"> <div id="flash-messages"><div class="dekiFlash"></div></div> <h1 id="title" class="no-edit" style="visibility: visible;"> Procore 默认成本编号有哪些? </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2025-02-17T21:16:58Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="目录" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">目录</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#.E8.83.8C.E6.99.AF" rel="internal">背景</a></li><li><a href="#.E7.AD.94.E6.A1.88" rel="internal">答案</a><ol><li><ol><li><a href="#.E6.B3.A8.E6.84.8F" rel="internal"> 注意</a></li></ol></li><li><a href="#.E9.BB.98.E8.AE.A4.E6.88.90.E6.9C.AC.E7.BC.96.E5.8F.B7.E7.BB.86.E5.88.86.E9.A1.B9" rel="internal">默认成本编号细分项</a><ol><li><a href="#.E6.8F.90.E7.A4.BA" rel="internal"> 提示</a></li></ol></li></ol></li><li><a href="#.E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85" rel="internal">另请参阅</a></li><li><a href="#" rel="internal"> </a></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_1"><span id=".E8.83.8C.E6.99.AF"></span><h2 class="editable">背景</h2> <p>在 Procore 中,<em>成本编号</em>定义了建设工程项目中待完成工程的具体类型。它也是 Procore <a class="F1" title="词汇表" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms#Budget_Code" rel="internal">预算编号</a>中的默认细分之一 (1)。要了解更多信息,请参阅 <a title="Procore 的 WBS 中的预算编号是什么?" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" rel="internal">Procore WBS 中的预算编号是什么?</a></p> </div><div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_2"><span id=".E7.AD.94.E6.A1.88"></span><h2 class="editable">答案</h2> <p>作为贵公司 Procore 账户的 <a class="F1" title="Procore 管理员" href="https://zh-sg.support.procore.com/procore-learning-paths/general-contractor/procore-administrator" rel="internal">Procore 管理员</a>,第一步是为贵公司的工作分解结构 (WBS) 定义成本编号和成本类型列表。</p> <p>选择以下选项之一:</p> <ul> <li><strong>在 Procore 的工作分解结构中使用成本编号细分项</strong><br />在 Procore 中,“成本编号”部分默认可用,并与<a class="F1" title="词汇表" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms#Construction_Specifications_Institute" rel="internal">美国施工规范协会 (CSI)</a> 的 <a class="F1" title="词汇表" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms#MasterFormat" rel="internal">MasterFormat</a> 保持一致。请参阅下面的<a title="Procore 默认成本编号有哪些?" class="mt-self-link" href="#Default_Cost_Code_List" rel="internal">默认成本编号列表</a>。要了解有关细分项的更多信息,请参阅: <ul> <li><a title="创建公司的默认工作分解结构" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/create-your-companys-default-work-breakdown-structure" rel="internal">创建公司的默认工作分解结构</a></li> <li><a title="创建项目工作分解结构" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/admin/tutorials/create-your-projects-work-breakdown-structure" rel="internal">创建项目工作分解结构</a></li> </ul> </li> <li><strong>使用 Procore Imports 应用程序导入成本编号细分项</strong><br />可以使用 Procore Imports 应用程序将细分项导入公司或项目级别管理员工具。有关详细信息,请参阅 <a title="Procore 导入模板" href="https://zh-sg.support.procore.com/references/procore-import-templates" rel="internal">Procore Import 模板</a>和以下链接: <ul> <li><a title="将细分项目导入公司级别管理员工具 (Procore Imports)" href="https://zh-sg.support.procore.com/products/procore-imports/company-admin/tutorials/import-segment-items-into-your-company-level-admin-tool-procore-imports" rel="internal">将细分项导入公司级别管理员工具 </a></li> <li><a title="将细分项导入项目级别管理员工具 (Procore Imports)" href="https://zh-sg.support.procore.com/products/procore-imports/project-admin/tutorials/import-segment-items-into-your-project-level-admin-tool-with-procore-imports" rel="internal">将细分项导入项目级别管理员工具</a></li> </ul> </li> </ul> <div class="callout callout-note"> <div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section"><span id=".E6.B3.A8.E6.84.8F"></span><h5 class="editable"><i class="fas fa-info-circle"> </i>注意</h5> 如果公司正在使用ERP集成工具或 Procore <img alt="icon-external-link.png" height="14px" loading="lazy" width="14px" class="internal" src="https://zh-sg.support.procore.com/@api/deki/files/10774/icon-external-link.png?revision=1&size=bestfit&width=14&height=14" /> <a data-track-click="Content, Link, Field Productivity" href="https://www.procore.com/field-productivity" rel="external noopener nofollow" target="_blank" title="https://www.procore.com/field-productivity">资源跟踪</a>工具,请参阅<a title="为什么我不能创建 WBS 自定义细分?" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" rel="internal">为什么我不能创建 WBS 自定义细分?</a></div></div> <div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_3"><span id=".E9.BB.98.E8.AE.A4.E6.88.90.E6.9C.AC.E7.BC.96.E5.8F.B7.E7.BB.86.E5.88.86.E9.A1.B9"></span><h3 class="editable">默认成本编号细分项</h3> <p>下表详细说明了 Procore 中基于 17 Division CSI MasterFormat 的默认“成本编号”细分项。在下表中,灰色背景的行表示 MasterFormat 的分部,白色背景的行表示 MasterFormat 每个分部内的各个成本编号细分项。</p> <div class="callout callout-tip"> <div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section"><span id=".E6.8F.90.E7.A4.BA"></span><h5 class="editable"><i class="fas fa-check-circle"> </i>提示</h5> <p><strong>在 Procore 中,为什么没有“分部”的概念?</strong>在 Procore 的 WBS 中,“成本编号”细分是分层细分,并没有“分部”的概念。相反,“分部”被视为分层细分中的某一层级。细分内的层需始终用短划线 (-) 分隔。Procore 的默认成本编号列表有两 (2) 层。但是,你的环境可能有一层、两层或多层。要了解更多信息,请参阅 <a title="Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?" href="https://zh-sg.support.procore.com/faq/where-is-the-division-in-the-cost-code-segment-in-procores-wbs" rel="internal">Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?</a></p> <p><strong>我能否获得一份默认 成本 编号列表的副本?</strong> 要下载默认 成本 编号名称的副本以供参考,请点击 Procore_默认<strong><a title="Procore_Default_Cost_Codes.csv" rel="internal" class="iconitext-16 ext-csv" href="https://zh-sg.support.procore.com/@api/deki/files/10551/Procore_Default_Cost_Codes.csv?revision=1">_Cost_Codes.csv</a></strong> 。<br /> <em>注意:</em>此CSV文件仅供参考,其格式未经格式化以导入 Procore。</p> </div></div> <p> </p> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th class="text-align:center" style="width:189px;">成本编号子编号</th> <th class="text-align:center" style="width:845px;">成本编号描述</th> </tr> <tr> <th style="text-align:left;width:189px;">分部 01-</th> <th style="text-align:left;width:845px;">一般要求</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:189px;">000</td> <td style="width:845px;text-align:left;">目的</td> </tr> <tr> <td class="text-align:right" style="width:189px;">002</td> <td style="width:845px;text-align:left;">指示</td> </tr> <tr> <td class="text-align:right" style="width:189px;">010</td> <td style="width:845px;text-align:left;">项目经理</td> </tr> <tr> <td class="text-align:right" style="width:189px;">011</td> <td style="width:845px;text-align:left;">项目工程师</td> </tr> <tr> <td class="text-align:right" style="width:189px;">012</td> <td style="width:845px;text-align:left;">监理</td> </tr> <tr> <td class="text-align:right" style="width:189px;">013</td> <td style="width:845px;text-align:left;">项目协调员</td> </tr> <tr> <td class="text-align:right" style="width:189px;">014</td> <td style="width:845px;text-align:left;">项目执行管理层</td> </tr> <tr> <td class="text-align:right" style="width:189px;">500</td> <td style="width:845px;text-align:left;">临时设施与管制</td> </tr> <tr> <td class="text-align:right" style="width:189px;">510</td> <td style="width:845px;text-align:left;">临时公共设施</td> </tr> <tr> <td class="text-align:right" style="width:189px;">511</td> <td style="width:845px;text-align:left;">临时用电</td> </tr> <tr> <td class="text-align:right" style="width:189px;">514</td> <td style="width:845px;text-align:left;">临时采暖、空调和通风</td> </tr> <tr> <td class="text-align:right" style="width:189px;">515</td> <td style="width:845px;text-align:left;">临时照明</td> </tr> <tr> <td class="text-align:right" style="width:189px;">517</td> <td style="width:845px;text-align:left;">临时电话</td> </tr> <tr> <td class="text-align:right" style="width:189px;">520</td> <td style="width:845px;text-align:left;">建筑设施</td> </tr> <tr> <td class="text-align:right" style="width:189px;">523</td> <td style="width:845px;text-align:left;">卫生设施</td> </tr> <tr> <td class="text-align:right" style="width:189px;">530</td> <td style="width:845px;text-align:left;">临时建筑</td> </tr> <tr> <td class="text-align:right" style="width:189px;">540</td> <td style="width:845px;text-align:left;">施工辅助设施</td> </tr> <tr> <td class="text-align:right" style="width:189px;">542</td> <td style="width:845px;text-align:left;">建筑脚手架和平台</td> </tr> <tr> <td class="text-align:right" style="width:189px;">550</td> <td style="width:845px;text-align:left;">车辆通道和停车场</td> </tr> <tr> <td class="text-align:right" style="width:189px;">560</td> <td style="width:845px;text-align:left;">临时护栏和围栏</td> </tr> <tr> <td class="text-align:right" style="width:189px;">570</td> <td style="width:845px;text-align:left;">临时管控</td> </tr> <tr> <td class="text-align:right" style="width:189px;">580</td> <td style="width:845px;text-align:left;">项目选定</td> </tr> <tr> <td class="text-align:right" style="width:189px;">600</td> <td style="width:845px;text-align:left;">产品要求(工作范围)</td> </tr> <tr> <td class="text-align:right" style="width:189px;">630</td> <td style="width:845px;text-align:left;">产品代替程序</td> </tr> <tr> <td class="text-align:right" style="width:189px;">640</td> <td style="width:845px;text-align:left;">甲供产品</td> </tr> <tr> <td class="text-align:right" style="width:189px;">700</td> <td style="width:845px;text-align:left;">执行要求</td> </tr> <tr> <td class="text-align:right" style="width:189px;">712</td> <td style="width:845px;text-align:left;">当地条件</td> </tr> <tr> <td class="text-align:right" style="width:189px;">740</td> <td style="width:845px;text-align:left;">清洁</td> </tr> <tr> <td class="text-align:right" style="width:189px;">760</td> <td style="width:845px;text-align:left;">保护已有建筑</td> </tr> <tr> <td class="text-align:right" style="width:189px;">903</td> <td style="width:845px;text-align:left;">有害物质减排</td> </tr> <tr> <td class="text-align:right" style="width:189px;">904</td> <td style="width:845px;text-align:left;">有害物质清除和处置</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:189px;">分部 02-</th> <th style="text-align:left;width:845px;">现场施工</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:189px;">000</td> <td style="width:845px;text-align:left;">一般</td> </tr> <tr> <td class="text-align:right" style="width:189px;">200</td> <td style="width:845px;text-align:left;">现场准备</td> </tr> <tr> <td class="text-align:right" style="width:189px;">220</td> <td style="width:845px;text-align:left;">现场拆除</td> </tr> <tr> <td class="text-align:right" style="width:189px;">230</td> <td style="width:845px;text-align:left;">现场清理</td> </tr> <tr> <td class="text-align:right" style="width:189px;">240</td> <td style="width:845px;text-align:left;">排水</td> </tr> <tr> <td class="text-align:right" style="width:189px;">250</td> <td style="width:845px;text-align:left;">支撑和基础加固</td> </tr> <tr> <td class="text-align:right" style="width:189px;">260</td> <td style="width:845px;text-align:left;">开挖支护</td> </tr> <tr> <td class="text-align:right" style="width:189px;">300</td> <td style="width:845px;text-align:left;">土方工程</td> </tr> <tr> <td class="text-align:right" style="width:189px;">310</td> <td style="width:845px;text-align:left;">平整</td> </tr> <tr> <td class="text-align:right" style="width:189px;">311</td> <td style="width:845px;text-align:left;">最后平整</td> </tr> <tr> <td class="text-align:right" style="width:189px;">312</td> <td style="width:845px;text-align:left;">粗略平整</td> </tr> <tr> <td class="text-align:right" style="width:189px;">315</td> <td style="width:845px;text-align:left;">挖掘</td> </tr> <tr> <td class="text-align:right" style="width:189px;">316</td> <td style="width:845px;text-align:left;">回填</td> </tr> <tr> <td class="text-align:right" style="width:189px;">317</td> <td style="width:845px;text-align:left;">精选借土</td> </tr> <tr> <td class="text-align:right" style="width:189px;">320</td> <td style="width:845px;text-align:left;">开挖与充填</td> </tr> <tr> <td class="text-align:right" style="width:189px;">362</td> <td style="width:845px;text-align:left;">白蚁防治</td> </tr> <tr> <td class="text-align:right" style="width:189px;">370</td> <td style="width:845px;text-align:left;">侵蚀和沉积控制</td> </tr> <tr> <td class="text-align:right" style="width:189px;">500</td> <td style="width:845px;text-align:left;">公用事业服务</td> </tr> <tr> <td class="text-align:right" style="width:189px;">540</td> <td style="width:845px;text-align:left;">化粪池</td> </tr> <tr> <td class="text-align:right" style="width:189px;">621</td> <td style="width:845px;text-align:left;">地基排水管道</td> </tr> <tr> <td class="text-align:right" style="width:189px;">625</td> <td style="width:845px;text-align:left;">挡土墙排水管道</td> </tr> <tr> <td class="text-align:right" style="width:189px;">740</td> <td style="width:845px;text-align:left;">柔性沥青路面</td> </tr> <tr> <td class="text-align:right" style="width:189px;">750</td> <td style="width:845px;text-align:left;">混凝土垫和人行道</td> </tr> <tr> <td class="text-align:right" style="width:189px;">770</td> <td style="width:845px;text-align:left;">路缘石和排水沟</td> </tr> <tr> <td class="text-align:right" style="width:189px;">780</td> <td style="width:845px;text-align:left;">粘土单元摊铺机</td> </tr> <tr> <td class="text-align:right" style="width:189px;">781</td> <td style="width:845px;text-align:left;">沥青摊铺机</td> </tr> <tr> <td class="text-align:right" style="width:189px;">782</td> <td style="width:845px;text-align:left;">砖块摊铺机</td> </tr> <tr> <td class="text-align:right" style="width:189px;">783</td> <td style="width:845px;text-align:left;">嵌锁型混凝土单元铺砌</td> </tr> <tr> <td class="text-align:right" style="width:189px;">784</td> <td style="width:845px;text-align:left;">石材单元摊铺机</td> </tr> <tr> <td class="text-align:right" style="width:189px;">790</td> <td style="width:845px;text-align:left;">运动场地表面修整</td> </tr> <tr> <td class="text-align:right" style="width:189px;">795</td> <td style="width:845px;text-align:left;">多孔铺砌</td> </tr> <tr> <td class="text-align:right" style="width:189px;">800</td> <td style="width:845px;text-align:left;">现场设施</td> </tr> <tr> <td class="text-align:right" style="width:189px;">812</td> <td style="width:845px;text-align:left;">滴灌</td> </tr> <tr> <td class="text-align:right" style="width:189px;">813</td> <td style="width:845px;text-align:left;">草坪喷灌</td> </tr> <tr> <td class="text-align:right" style="width:189px;">815</td> <td style="width:845px;text-align:left;">喷泉</td> </tr> <tr> <td class="text-align:right" style="width:189px;">820</td> <td style="width:845px;text-align:left;">围栏和大门</td> </tr> <tr> <td class="text-align:right" style="width:189px;">821</td> <td style="width:845px;text-align:left;">绞织网围栏</td> </tr> <tr> <td class="text-align:right" style="width:189px;">822</td> <td style="width:845px;text-align:left;">装饰金属围栏和大门</td> </tr> <tr> <td class="text-align:right" style="width:189px;">823</td> <td style="width:845px;text-align:left;">PVC 围栏和大门</td> </tr> <tr> <td class="text-align:right" style="width:189px;">824</td> <td style="width:845px;text-align:left;">铁丝围栏和大门</td> </tr> <tr> <td class="text-align:right" style="width:189px;">825</td> <td style="width:845px;text-align:left;">木质围栏和大门</td> </tr> <tr> <td class="text-align:right" style="width:189px;">830</td> <td style="width:845px;text-align:left;">挡土墙</td> </tr> <tr> <td class="text-align:right" style="width:189px;">850</td> <td style="width:845px;text-align:left;">桥梁/人行天桥</td> </tr> <tr> <td class="text-align:right" style="width:189px;">870</td> <td style="width:845px;text-align:left;">雕塑/装饰品</td> </tr> <tr> <td class="text-align:right" style="width:189px;">900</td> <td style="width:845px;text-align:left;">园林绿化</td> </tr> <tr> <td class="text-align:right" style="width:189px;">915</td> <td style="width:845px;text-align:left;">覆盖物</td> </tr> <tr> <td class="text-align:right" style="width:189px;">917</td> <td style="width:845px;text-align:left;">整地</td> </tr> <tr> <td class="text-align:right" style="width:189px;">919</td> <td style="width:845px;text-align:left;">表土</td> </tr> <tr> <td class="text-align:right" style="width:189px;">923</td> <td style="width:845px;text-align:left;">播种和土壤补充剂</td> </tr> <tr> <td class="text-align:right" style="width:189px;">924</td> <td style="width:845px;text-align:left;">铺草皮</td> </tr> <tr> <td class="text-align:right" style="width:189px;">930</td> <td style="width:845px;text-align:left;">外墙植物</td> </tr> <tr> <td class="text-align:right" style="width:189px;">932</td> <td style="width:845px;text-align:left;">植物和灯泡</td> </tr> <tr> <td class="text-align:right" style="width:189px;">935</td> <td style="width:845px;text-align:left;">工厂维护</td> </tr> <tr> <td class="text-align:right" style="width:189px;">936</td> <td style="width:845px;text-align:left;">肥料</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:190px;">分部 03-</th> <th style="text-align:left;width:844px;">混凝土</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:190px;">000</td> <td style="width:844px;text-align:left;">一般</td> </tr> <tr> <td class="text-align:right" style="width:190px;">050</td> <td style="width:844px;text-align:left;">混凝土分包商</td> </tr> <tr> <td class="text-align:right" style="width:190px;">100</td> <td style="width:844px;text-align:left;">混凝土配筋</td> </tr> <tr> <td class="text-align:right" style="width:190px;">210</td> <td style="width:844px;text-align:left;">现浇混凝土</td> </tr> <tr> <td class="text-align:right" style="width:190px;">230</td> <td style="width:844px;text-align:left;">地脚螺栓</td> </tr> <tr> <td class="text-align:right" style="width:190px;">300</td> <td style="width:844px;text-align:left;">基脚</td> </tr> <tr> <td class="text-align:right" style="width:190px;">310</td> <td style="width:844px;text-align:left;">伸缩缝</td> </tr> <tr> <td class="text-align:right" style="width:190px;">320</td> <td style="width:844px;text-align:left;">板基</td> </tr> <tr> <td class="text-align:right" style="width:190px;">330</td> <td style="width:844px;text-align:left;">地下室混凝土浇筑墙体</td> </tr> <tr> <td class="text-align:right" style="width:190px;">350</td> <td style="width:844px;text-align:left;">混凝土整面</td> </tr> <tr> <td class="text-align:right" style="width:190px;">400</td> <td style="width:844px;text-align:left;">预制混凝土</td> </tr> <tr> <td class="text-align:right" style="width:190px;">500</td> <td style="width:844px;text-align:left;">水泥基面层和垫层</td> </tr> <tr> <td class="text-align:right" style="width:190px;">600</td> <td style="width:844px;text-align:left;">灌浆</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:190px;">分部 04-</th> <th style="text-align:left;width:844px;">砌体工程</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:190px;">050</td> <td style="width:844px;text-align:left;">基本砌筑材料和方法</td> </tr> <tr> <td class="text-align:right" style="width:190px;">200</td> <td style="width:844px;text-align:left;">砌体单元</td> </tr> <tr> <td class="text-align:right" style="width:190px;">400</td> <td style="width:844px;text-align:left;">石材</td> </tr> <tr> <td class="text-align:right" style="width:190px;">500</td> <td style="width:844px;text-align:left;">耐火材料</td> </tr> <tr> <td class="text-align:right" style="width:190px;">600</td> <td style="width:844px;text-align:left;">耐腐蚀砌体</td> </tr> <tr> <td class="text-align:right" style="width:190px;">700</td> <td style="width:844px;text-align:left;">模拟砌体</td> </tr> <tr> <td class="text-align:right" style="width:190px;">800</td> <td style="width:844px;text-align:left;">砌体组件</td> </tr> <tr> <td class="text-align:right" style="width:190px;">900</td> <td style="width:844px;text-align:left;">砌体修复和清理</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:192px;">分部 05-</th> <th style="text-align:left;width:842px;">金属</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:192px;">050</td> <td style="width:842px;text-align:left;">基本金属材料和方法</td> </tr> <tr> <td class="text-align:right" style="width:192px;">100</td> <td style="width:842px;text-align:left;">结构金属</td> </tr> <tr> <td class="text-align:right" style="width:192px;">200</td> <td style="width:842px;text-align:left;">金属托梁</td> </tr> <tr> <td class="text-align:right" style="width:192px;">300</td> <td style="width:842px;text-align:left;">金属面板</td> </tr> <tr> <td class="text-align:right" style="width:192px;">400</td> <td style="width:842px;text-align:left;">冷成型金属框架</td> </tr> <tr> <td class="text-align:right" style="width:192px;">500</td> <td style="width:842px;text-align:left;">金属制品</td> </tr> <tr> <td class="text-align:right" style="width:192px;">600</td> <td style="width:842px;text-align:left;">液压制品</td> </tr> <tr> <td class="text-align:right" style="width:192px;">700</td> <td style="width:842px;text-align:left;">装饰金属</td> </tr> <tr> <td class="text-align:right" style="width:192px;">800</td> <td style="width:842px;text-align:left;">侵蚀控制</td> </tr> <tr> <td class="text-align:right" style="width:192px;">900</td> <td style="width:842px;text-align:left;">金属修复和清洁</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:193px;">分部 06-</th> <th style="text-align:left;width:841px;">木材和塑料</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:193px;">050</td> <td style="width:841px;text-align:left;">基本木材塑料材料和方法</td> </tr> <tr> <td class="text-align:right" style="width:193px;">100</td> <td style="width:841px;text-align:left;">粗木工</td> </tr> <tr> <td class="text-align:right" style="width:193px;">200</td> <td style="width:841px;text-align:left;">精细木工</td> </tr> <tr> <td class="text-align:right" style="width:193px;">400</td> <td style="width:841px;text-align:left;">建筑木制品</td> </tr> <tr> <td class="text-align:right" style="width:193px;">500</td> <td style="width:841px;text-align:left;">结构塑料</td> </tr> <tr> <td class="text-align:right" style="width:193px;">600</td> <td style="width:841px;text-align:left;">塑料制品</td> </tr> <tr> <td class="text-align:right" style="width:193px;">900</td> <td style="width:841px;text-align:left;">木材塑料修复和清洁</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:194px;">分部 07-</th> <th style="text-align:left;width:840px;">保温隔湿</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:194px;">050</td> <td style="width:840px;text-align:left;">基本保温隔湿材料和方法</td> </tr> <tr> <td class="text-align:right" style="width:194px;">100</td> <td style="width:840px;text-align:left;">防潮防水</td> </tr> <tr> <td class="text-align:right" style="width:194px;">200</td> <td style="width:840px;text-align:left;">热保护 - 保温层</td> </tr> <tr> <td class="text-align:right" style="width:194px;">300</td> <td style="width:840px;text-align:left;">木瓦、屋面瓦和屋面覆盖层</td> </tr> <tr> <td class="text-align:right" style="width:194px;">400</td> <td style="width:840px;text-align:left;">屋面和壁板</td> </tr> <tr> <td class="text-align:right" style="width:194px;">500</td> <td style="width:840px;text-align:left;">薄膜屋面</td> </tr> <tr> <td class="text-align:right" style="width:194px;">600</td> <td style="width:840px;text-align:left;">防水板和金属板</td> </tr> <tr> <td class="text-align:right" style="width:194px;">700</td> <td style="width:840px;text-align:left;">屋顶专用件和配件</td> </tr> <tr> <td class="text-align:right" style="width:194px;">800</td> <td style="width:840px;text-align:left;">防火防烟</td> </tr> <tr> <td class="text-align:right" style="width:194px;">900</td> <td style="width:840px;text-align:left;">接缝密封剂</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:198px;">分部 08-</th> <th style="text-align:left;width:836px;">门窗</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:198px;">050</td> <td style="width:836px;text-align:left;">基本门窗材料和方法</td> </tr> <tr> <td class="text-align:right" style="width:198px;">100</td> <td style="width:836px;text-align:left;">门</td> </tr> <tr> <td class="text-align:right" style="width:198px;">200</td> <td style="width:836px;text-align:left;">木门和塑料门</td> </tr> <tr> <td class="text-align:right" style="width:198px;">300</td> <td style="width:836px;text-align:left;">特种门</td> </tr> <tr> <td class="text-align:right" style="width:198px;">400</td> <td style="width:836px;text-align:left;">入口和橱窗</td> </tr> <tr> <td class="text-align:right" style="width:198px;">500</td> <td style="width:836px;text-align:left;">窗户</td> </tr> <tr> <td class="text-align:right" style="width:198px;">600</td> <td style="width:836px;text-align:left;">天窗</td> </tr> <tr> <td class="text-align:right" style="width:198px;">700</td> <td style="width:836px;text-align:left;">五金件</td> </tr> <tr> <td class="text-align:right" style="width:198px;">800</td> <td style="width:836px;text-align:left;">玻璃装配</td> </tr> <tr> <td class="text-align:right" style="width:198px;">900</td> <td style="width:836px;text-align:left;">玻璃幕墙</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:196px;">分部 09-</th> <th style="text-align:left;width:838px;">饰面</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:196px;">050</td> <td style="width:838px;text-align:left;">基本饰面材料和方法</td> </tr> <tr> <td class="text-align:right" style="width:196px;">100</td> <td style="width:838px;text-align:left;">金属支架组件</td> </tr> <tr> <td class="text-align:right" style="width:196px;">250</td> <td style="width:838px;text-align:left;">石膏墙板</td> </tr> <tr> <td class="text-align:right" style="width:196px;">300</td> <td style="width:838px;text-align:left;">瓷砖</td> </tr> <tr> <td class="text-align:right" style="width:196px;">400</td> <td style="width:838px;text-align:left;">水磨石</td> </tr> <tr> <td class="text-align:right" style="width:196px;">500</td> <td style="width:838px;text-align:left;">吊顶</td> </tr> <tr> <td class="text-align:right" style="width:196px;">600</td> <td style="width:838px;text-align:left;">楼板</td> </tr> <tr> <td class="text-align:right" style="width:196px;">680</td> <td style="width:838px;text-align:left;">地毯</td> </tr> <tr> <td class="text-align:right" style="width:196px;">700</td> <td style="width:838px;text-align:left;">墙面饰面</td> </tr> <tr> <td class="text-align:right" style="width:196px;">800</td> <td style="width:838px;text-align:left;">声学处理</td> </tr> <tr> <td class="text-align:right" style="width:196px;">900</td> <td style="width:838px;text-align:left;">油漆和涂料</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:201px;">分部 10-</th> <th style="text-align:left;width:833px;">特制品</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:201px;">100</td> <td style="width:833px;text-align:left;">视觉展示板</td> </tr> <tr> <td class="text-align:right" style="width:201px;">150</td> <td style="width:833px;text-align:left;">隔间和小室</td> </tr> <tr> <td class="text-align:right" style="width:201px;">200</td> <td style="width:833px;text-align:left;">百叶窗和通风口</td> </tr> <tr> <td class="text-align:right" style="width:201px;">240</td> <td style="width:833px;text-align:left;">格栅和屏幕</td> </tr> <tr> <td class="text-align:right" style="width:201px;">250</td> <td style="width:833px;text-align:left;">服务墙</td> </tr> <tr> <td class="text-align:right" style="width:201px;">260</td> <td style="width:833px;text-align:left;">护墙和护角</td> </tr> <tr> <td class="text-align:right" style="width:201px;">270</td> <td style="width:833px;text-align:left;">架空地板</td> </tr> <tr> <td class="text-align:right" style="width:201px;">290</td> <td style="width:833px;text-align:left;">虫害控制</td> </tr> <tr> <td class="text-align:right" style="width:201px;">300</td> <td style="width:833px;text-align:left;">壁炉和火炉</td> </tr> <tr> <td class="text-align:right" style="width:201px;">340</td> <td style="width:833px;text-align:left;">制造的室外制品</td> </tr> <tr> <td class="text-align:right" style="width:201px;">350</td> <td style="width:833px;text-align:left;">旗杆</td> </tr> <tr> <td class="text-align:right" style="width:201px;">400</td> <td style="width:833px;text-align:left;">身份识别装置</td> </tr> <tr> <td class="text-align:right" style="width:201px;">450</td> <td style="width:833px;text-align:left;">行人管制装置</td> </tr> <tr> <td class="text-align:right" style="width:201px;">500</td> <td style="width:833px;text-align:left;">储物柜</td> </tr> <tr> <td class="text-align:right" style="width:201px;">520</td> <td style="width:833px;text-align:left;">消防器材</td> </tr> <tr> <td class="text-align:right" style="width:201px;">530</td> <td style="width:833px;text-align:left;">防护罩</td> </tr> <tr> <td class="text-align:right" style="width:201px;">550</td> <td style="width:833px;text-align:left;">邮政特制品</td> </tr> <tr> <td class="text-align:right" style="width:201px;">600</td> <td style="width:833px;text-align:left;">隔墙</td> </tr> <tr> <td class="text-align:right" style="width:201px;">670</td> <td style="width:833px;text-align:left;">储物架</td> </tr> <tr> <td class="text-align:right" style="width:201px;">700</td> <td style="width:833px;text-align:left;">外部防护</td> </tr> <tr> <td class="text-align:right" style="width:201px;">750</td> <td style="width:833px;text-align:left;">电话特制品</td> </tr> <tr> <td class="text-align:right" style="width:201px;">800</td> <td style="width:833px;text-align:left;">厕所、浴室和洗衣间特制品</td> </tr> <tr> <td class="text-align:right" style="width:201px;">820</td> <td style="width:833px;text-align:left;">浴室配件</td> </tr> <tr> <td class="text-align:right" style="width:201px;">880</td> <td style="width:833px;text-align:left;">标尺</td> </tr> <tr> <td class="text-align:right" style="width:201px;">900</td> <td style="width:833px;text-align:left;">壁柜衣橱特制品</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:201px;">分部 11-</th> <th style="text-align:left;width:833px;">设备</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:201px;">010</td> <td style="width:833px;text-align:left;">维护设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">020</td> <td style="width:833px;text-align:left;">安全和保险库设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">030</td> <td style="width:833px;text-align:left;">取款及服务设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">040</td> <td style="width:833px;text-align:left;">宗教设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">050</td> <td style="width:833px;text-align:left;">图书馆设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">060</td> <td style="width:833px;text-align:left;">剧院和舞台设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">070</td> <td style="width:833px;text-align:left;">仪器设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">080</td> <td style="width:833px;text-align:left;">登记设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">090</td> <td style="width:833px;text-align:left;">行李寄存处设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">100</td> <td style="width:833px;text-align:left;">商品设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">110</td> <td style="width:833px;text-align:left;">商业洗衣及干洗设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">120</td> <td style="width:833px;text-align:left;">自动售货设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">130</td> <td style="width:833px;text-align:left;">视听设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">140</td> <td style="width:833px;text-align:left;">汽车服务设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">150</td> <td style="width:833px;text-align:left;">停车控制设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">160</td> <td style="width:833px;text-align:left;">装卸码头设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">170</td> <td style="width:833px;text-align:left;">固体废物处理设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">190</td> <td style="width:833px;text-align:left;">拘留设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">200</td> <td style="width:833px;text-align:left;">给水及水处理设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">280</td> <td style="width:833px;text-align:left;">液压闸门和阀门</td> </tr> <tr> <td class="text-align:right" style="width:201px;">300</td> <td style="width:833px;text-align:left;">污(废)水处理设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">400</td> <td style="width:833px;text-align:left;">餐饮服务设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">450</td> <td style="width:833px;text-align:left;">住宅设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">460</td> <td style="width:833px;text-align:left;">组合厨房设备单元</td> </tr> <tr> <td class="text-align:right" style="width:201px;">470</td> <td style="width:833px;text-align:left;">暗室设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">480</td> <td style="width:833px;text-align:left;">体育、娱乐和治疗设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">500</td> <td style="width:833px;text-align:left;">工业加工设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">600</td> <td style="width:833px;text-align:left;">实验室设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">650</td> <td style="width:833px;text-align:left;">天文馆设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">660</td> <td style="width:833px;text-align:left;">天文台设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">680</td> <td style="width:833px;text-align:left;">办公用品</td> </tr> <tr> <td class="text-align:right" style="width:201px;">700</td> <td style="width:833px;text-align:left;">医疗设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">850</td> <td style="width:833px;text-align:left;">导航设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">870</td> <td style="width:833px;text-align:left;">农业设备</td> </tr> <tr> <td class="text-align:right" style="width:201px;">900</td> <td style="width:833px;text-align:left;">展览用设备</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:201px;">分部 12-</th> <th style="text-align:left;width:833px;">陈设</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:201px;">050</td> <td style="width:833px;text-align:left;">幕布</td> </tr> <tr> <td class="text-align:right" style="width:201px;">100</td> <td style="width:833px;text-align:left;">艺术品</td> </tr> <tr> <td class="text-align:right" style="width:201px;">300</td> <td style="width:833px;text-align:left;">制造箱柜</td> </tr> <tr> <td class="text-align:right" style="width:201px;">400</td> <td style="width:833px;text-align:left;">陈设和配件</td> </tr> <tr> <td class="text-align:right" style="width:201px;">500</td> <td style="width:833px;text-align:left;">家具</td> </tr> <tr> <td class="text-align:right" style="width:201px;">600</td> <td style="width:833px;text-align:left;">多人座椅</td> </tr> <tr> <td class="text-align:right" style="width:201px;">700</td> <td style="width:833px;text-align:left;">系统家具</td> </tr> <tr> <td class="text-align:right" style="width:201px;">800</td> <td style="width:833px;text-align:left;">室内植物和盆栽</td> </tr> <tr> <td class="text-align:right" style="width:201px;">900</td> <td style="width:833px;text-align:left;">陈设修复和维修</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:203px;">分部 13-</th> <th style="text-align:left;width:831px;">特殊建筑</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:203px;">010</td> <td style="width:831px;text-align:left;">气承结构</td> </tr> <tr> <td class="text-align:right" style="width:203px;">020</td> <td style="width:831px;text-align:left;">建筑模块</td> </tr> <tr> <td class="text-align:right" style="width:203px;">030</td> <td style="width:831px;text-align:left;">特殊用途房间</td> </tr> <tr> <td class="text-align:right" style="width:203px;">090</td> <td style="width:831px;text-align:left;">辐射防护</td> </tr> <tr> <td class="text-align:right" style="width:203px;">100</td> <td style="width:831px;text-align:left;">防雷</td> </tr> <tr> <td class="text-align:right" style="width:203px;">110</td> <td style="width:831px;text-align:left;">阴极保护</td> </tr> <tr> <td class="text-align:right" style="width:203px;">120</td> <td style="width:831px;text-align:left;">预制结构</td> </tr> <tr> <td class="text-align:right" style="width:203px;">150</td> <td style="width:831px;text-align:left;">游泳池</td> </tr> <tr> <td class="text-align:right" style="width:203px;">160</td> <td style="width:831px;text-align:left;">水族馆</td> </tr> <tr> <td class="text-align:right" style="width:203px;">165</td> <td style="width:831px;text-align:left;">水上乐园设施</td> </tr> <tr> <td class="text-align:right" style="width:203px;">170</td> <td style="width:831px;text-align:left;">浴缸和水池</td> </tr> <tr> <td class="text-align:right" style="width:203px;">175</td> <td style="width:831px;text-align:left;">溜冰场</td> </tr> <tr> <td class="text-align:right" style="width:203px;">185</td> <td style="width:831px;text-align:left;">狗舍和动物收容所</td> </tr> <tr> <td class="text-align:right" style="width:203px;">190</td> <td style="width:831px;text-align:left;">现场建造的焚化炉</td> </tr> <tr> <td class="text-align:right" style="width:203px;">200</td> <td style="width:831px;text-align:left;">储油罐</td> </tr> <tr> <td class="text-align:right" style="width:203px;">220</td> <td style="width:831px;text-align:left;">过滤下排水和介质</td> </tr> <tr> <td class="text-align:right" style="width:203px;">230</td> <td style="width:831px;text-align:left;">消化器覆盖和附件</td> </tr> <tr> <td class="text-align:right" style="width:203px;">240</td> <td style="width:831px;text-align:left;">氧化系统</td> </tr> <tr> <td class="text-align:right" style="width:203px;">260</td> <td style="width:831px;text-align:left;">污泥调质系统</td> </tr> <tr> <td class="text-align:right" style="width:203px;">280</td> <td style="width:831px;text-align:left;">有害物质整治</td> </tr> <tr> <td class="text-align:right" style="width:203px;">400</td> <td style="width:831px;text-align:left;">测控仪表</td> </tr> <tr> <td class="text-align:right" style="width:203px;">500</td> <td style="width:831px;text-align:left;">记录仪表</td> </tr> <tr> <td class="text-align:right" style="width:203px;">550</td> <td style="width:831px;text-align:left;">运输控制仪器</td> </tr> <tr> <td class="text-align:right" style="width:203px;">600</td> <td style="width:831px;text-align:left;">太阳能和风能设备</td> </tr> <tr> <td class="text-align:right" style="width:203px;">700</td> <td style="width:831px;text-align:left;">安防接入和监控</td> </tr> <tr> <td class="text-align:right" style="width:203px;">800</td> <td style="width:831px;text-align:left;">楼宇自动化和控制</td> </tr> <tr> <td class="text-align:right" style="width:203px;">850</td> <td style="width:831px;text-align:left;">探测与报警</td> </tr> <tr> <td class="text-align:right" style="width:203px;">900</td> <td style="width:831px;text-align:left;">灭火</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:205px;">14-</th> <th style="text-align:left;width:829px;">输送系统</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:205px;">100</td> <td style="width:829px;text-align:left;">小型货运升降机</td> </tr> <tr> <td class="text-align:right" style="width:205px;">200</td> <td style="width:829px;text-align:left;">电梯</td> </tr> <tr> <td class="text-align:right" style="width:205px;">300</td> <td style="width:829px;text-align:left;">自动扶梯和自动人行道</td> </tr> <tr> <td class="text-align:right" style="width:205px;">400</td> <td style="width:829px;text-align:left;">升降机</td> </tr> <tr> <td class="text-align:right" style="width:205px;">500</td> <td style="width:829px;text-align:left;">物料搬运</td> </tr> <tr> <td class="text-align:right" style="width:205px;">600</td> <td style="width:829px;text-align:left;">起重机和缆索</td> </tr> <tr> <td class="text-align:right" style="width:205px;">700</td> <td style="width:829px;text-align:left;">转台</td> </tr> <tr> <td class="text-align:right" style="width:205px;">800</td> <td style="width:829px;text-align:left;">脚手架</td> </tr> <tr> <td class="text-align:right" style="width:205px;">900</td> <td style="width:829px;text-align:left;">运输</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:204px;">15-</th> <th style="text-align:left;width:830px;">机械</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:204px;">050</td> <td style="width:830px;text-align:left;">基本机械材料和方法</td> </tr> <tr> <td class="text-align:right" style="width:204px;">100</td> <td style="width:830px;text-align:left;">管道</td> </tr> <tr> <td class="text-align:right" style="width:204px;">200</td> <td style="width:830px;text-align:left;">工艺管道</td> </tr> <tr> <td class="text-align:right" style="width:204px;">300</td> <td style="width:830px;text-align:left;">消防管道</td> </tr> <tr> <td class="text-align:right" style="width:204px;">400</td> <td style="width:830px;text-align:left;">卫生装置和设备</td> </tr> <tr> <td class="text-align:right" style="width:204px;">500</td> <td style="width:830px;text-align:left;">采暖设备</td> </tr> <tr> <td class="text-align:right" style="width:204px;">600</td> <td style="width:830px;text-align:left;">制冷设备</td> </tr> <tr> <td class="text-align:right" style="width:204px;">700</td> <td style="width:830px;text-align:left;">采暖、通风和空调</td> </tr> <tr> <td class="text-align:right" style="width:204px;">800</td> <td style="width:830px;text-align:left;">空气分配</td> </tr> <tr> <td class="text-align:right" style="width:204px;">900</td> <td style="width:830px;text-align:left;">供暖、通风和空调控制装置</td> </tr> <tr> <td class="text-align:right" style="width:204px;">950</td> <td style="width:830px;text-align:left;">测试、调节及平衡</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:203px;">16</th> <th style="text-align:left;width:831px;">电气</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:203px;">050</td> <td style="width:831px;text-align:left;">基本电气材料和方法</td> </tr> <tr> <td class="text-align:right" style="width:203px;">100</td> <td style="width:831px;text-align:left;">电气</td> </tr> <tr> <td class="text-align:right" style="width:203px;">200</td> <td style="width:831px;text-align:left;">电力</td> </tr> <tr> <td class="text-align:right" style="width:203px;">300</td> <td style="width:831px;text-align:left;">输配电</td> </tr> <tr> <td class="text-align:right" style="width:203px;">400</td> <td style="width:831px;text-align:left;">低压配电</td> </tr> <tr> <td class="text-align:right" style="width:203px;">500</td> <td style="width:831px;text-align:left;">照明</td> </tr> <tr> <td class="text-align:right" style="width:203px;">700</td> <td style="width:831px;text-align:left;">通信</td> </tr> <tr> <td class="text-align:right" style="width:203px;">800</td> <td style="width:831px;text-align:left;">声音和视频</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:202px;">17-</th> <th style="text-align:left;width:832px;">加成和应急开支</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:202px;">010</td> <td style="width:832px;text-align:left;">应急开支</td> </tr> <tr> <td class="text-align:right" style="width:202px;">020</td> <td style="width:832px;text-align:left;">保险</td> </tr> <tr> <td class="text-align:right" style="width:202px;">030</td> <td style="width:832px;text-align:left;">保函</td> </tr> <tr> <td class="text-align:right" style="width:202px;">040</td> <td style="width:832px;text-align:left;">利润</td> </tr> </tbody> </table> </div></div><div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_4"><span id=".E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85"></span><h2 class="editable">另请参阅</h2> <ul> <li><a title="添加公司成本编号" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/add-company-cost-codes" rel="internal">添加公司成本编号</a></li> <li><a title="为 ERP 集成配置成本编号首选项" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/configure-cost-code-preferences-for-erp-integrations" rel="internal">为 ERP 集成配置成本编号首选项</a></li> <li><a title="Procore 有哪些默认成本类型?" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" rel="internal">Procore 有哪些默认成本类型?</a></li> </ul> </div><div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_5"><span id=""></span><h2 class="editable"> </h2> <style>/*<![CDATA[*/body #deki-page-title::before {content: url("/@api/deki/pages/:ccaec8e887044385a1dfc2a3a0f71434/files/=tool-icon_faq.png");}/*]]>*/</style> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Marketing_Snippet" data-section="直接成本" data-show="false"> </div> </div></div> </div> </div> <div class="mt-content-footer"></div> <ol class="grape-meta-data grape-meta-article-navigation"> <li class="grape-back-to-top"><a class="mt-icon-back-to-top" href="#title" id="mt-back-to-top" title="返回到本文章顶部">返回顶部</a></li> <li class="grape-article-pagination"><ul class="mt-article-pagination"> <li class="mt-pagination-previous"> <a class="mt-icon-previous-article" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span>Procore 的默认变更类型和变更原因是什么?</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span>Procore 有哪些默认成本类型?</span></a> </li> </ul> </li> </ol> </div> </div> <div class="grape-footer grape-wrapper"> <div class="grape-wrapper-container"> <ol> <li class="grape-footer-copyright">© 版权所有 2025 Procore</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> CXone Expert提供 <span class="mt-registered">®</span> </a></li> </ol> </div> </div> <div class="grape-footer-custom"> <div class="mt-custom-footer-container"><div class="mt-custom-footer-left"><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a target="_blank" href="https://www.linkedin.com/company/procore-technologies" rel="external noopener nofollow" class="mt-icon-linkedin2 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.facebook.com/procore.tech" rel="external noopener nofollow" class="mt-icon-facebook5 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.twitter.com/procoretech" rel="external noopener nofollow" class="mt-icon-twitter4 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.instagram.com/procoretech" rel="external noopener nofollow" class="mt-icon-instagram3 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.youtube.com/user/ProcoreVideo" rel="external noopener nofollow" class="mt-icon-youtube link-https"></a></li></ul></div><div class="mt-custom-footer-right"><div class="mt-custom-footer-copyright"><span>© 2025 Procore Technologies, Inc.</span></div><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/privacy" target="_blank" rel="external noopener nofollow" class="link-https">隐私声明</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/terms-of-service" target="_blank" rel="external noopener nofollow" class="link-https">服务条款</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/en-sg" target="_blank" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="mt-custom-footer-link" id="last-item"><a href="https://app.procore.com/mindtouch/auth" target="_blank" rel="external noopener nofollow" class="link-https">登录</a></li></ul></div></div> <script type="text/javascript">/*<![CDATA[*/ <!-- Change default from Draft to Live in Edit and New screens. Added by Dean May 13, 2020 --> $("a.mt-icon-new-page").click(function () { setTimeout( function () { $("label[for='mt-new-templates-create-live']").click(); }, 10000); });/*]]>*/</script> </div> <script type="text/javascript" data-mindtouch-module="true" src="https://a.mtstatic.com/deki/javascript/out/standalone/ui.widget.helpWidget.js?_=9529aea554fde890c4d7cb109f8680ca3b4d1cd2:site_13854"></script><!-- Scroll to Top Button --> <div><button id="back-to-top-button" onclick="scrollToTop()"><i class="fa fa-angle-up">‌‍​</i></button></div> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWZQ5W6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> </body> </html>