CINXE.COM
配置项目模板 - 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</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=814adc7572602bc7c2a39e3e9899638a_emgtc2cuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13854" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=a87985e947b3b92ebec6cfe4689bceb3:site_13854" id="mt-print-css" /> <script type="text/javascript" nonce="52f0610c59ea2fdde1594f89e93c012d796dbd6a232b1f1d4eab6409c658c0b9" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=76f77a33377b2f0da26a22ff3a2c3345f92f980b:site_13854"></script><script type="application/json" id="mt-global-settings" nonce="52f0610c59ea2fdde1594f89e93c012d796dbd6a232b1f1d4eab6409c658c0b9">{"apiToken":"xhr_2_1732863140_eecee8f47e7508aca6efc2f0bcad56ef19c5416a42a5687309cfc0e00fa879a8","pageId":1457,"pageViewId":"d5eb4671-f1ec-48e6-8a35-167d03209da3"}</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-tutorial columbia-breadcrumb-home-products-online-user-guide-company-level-portfolio-tutorials-configure-a-project-template 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_%3D76f77a33377b2f0da26a22ff3a2c3345f92f980b: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></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=products%2Fonline%2Fuser-guide%2Fcompany-level%2Fportfolio%2Ftutorials%2Fconfigure-a-project-template" 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/products"> <span class="mt-icon-article-category"></span> 产品 </a> </li> <li> <a href="https://zh-sg.support.procore.com/products/online"> <span class="mt-icon-article-category"></span> Procore Web (app.procore.com) </a> </li> <li> <a href="https://zh-sg.support.procore.com/products/online/user-guide"> <span class="mt-icon-article-category"></span> Procore 用户指南 </a> </li> <li> <a href="https://zh-sg.support.procore.com/products/online/user-guide/company-level"> <span class="mt-icon-article-category"></span> 公司级别 </a> </li> <li> <a href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/portfolio"> <span class="mt-icon-article-tool-landing-page"></span> 项目集合 </a> </li> <li> <a href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/portfolio/tutorials"> <span class="mt-icon-article-tutorial-list"></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;"> 配置项目模板 </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2024-10-10T18:58:36Z"></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="#.E7.9B.AE.E6.A0.87" rel="internal">目标</a></li><li><a href="#.E8.83.8C.E6.99.AF" rel="internal">背景</a></li><li><a href="#.E9.9C.80.E8.A6.81.E8.80.83.E8.99.91.E7.9A.84.E4.BA.8B.E9.A1.B9" rel="internal">需要考虑的事项</a></li><li><a href="#.E6.AD.A5.E9.AA.A4" rel="internal">步骤</a><ol><li><a href="#.E8.AF.B7.E6.B1.82.E5.9C.A8_Procore_.E4.B8.AD.E5.90.AF.E7.94.A8.E9.A1.B9.E7.9B.AE.E6.A8.A1.E6.9D.BF" rel="internal">请求在 Procore 中启用项目模板</a><ol><li><a href="#.E6.B3.A8.E6.84.8F" rel="internal"> 注意</a></li></ol></li><li><a href="#.E7.A1.AE.E8.AE.A4.E9.A1.B9.E7.9B.AE.E6.A8.A1.E6.9D.BF.E5.A4.84.E4.BA.8E.E6.B4.BB.E5.8A.A8.E7.8A.B6.E6.80.81" rel="internal">确认项目模板处于活动状态</a></li></ol></li><li><a href="#.E5.B0.86.E8.BD.AC.E7.A7.BB.E5.88.B0.E6.96.B0.E9.A1.B9.E7.9B.AE.E7.9A.84.E9.A1.B9" rel="internal">将转移到新项目的项</a></li><li><a href="#.E4.B8.8D.E4.BC.9A.E8.BD.AC.E7.A7.BB.E5.88.B0.E6.96.B0.E9.A1.B9.E7.9B.AE.E7.9A.84.E9.A1.B9" rel="internal">不会转移到新项目的项</a><ol><li><a href="#.E6.B3.A8.E6.84.8F_2" rel="internal"> 注意</a></li></ol></li><li><a href="#.E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85" rel="internal">另请参阅</a><ol><li><a href="#" rel="internal"> </a></li></ol></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_1"><span id=".E7.9B.AE.E6.A0.87"></span><h2 class="editable">目标</h2> <p>将现有项目配置为项目模板,以便在公司 Procore 账户中新建项目时可以应用它。</p> </div><div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_2"><span id=".E8.83.8C.E6.99.AF"></span><h2 class="editable">背景</h2> <p>在 Procore 中,可以选择现有项目作为新建项目的模板。这让你能够保存现有项目的常用设置,然后将这些设置应用于新项目(即,在新建项目时)。有关与项目模板一起保存的常用设置和项的信息,请参阅下面的<a title="配置项目模板" href="#Items_That_Will_Carry_Over_to_Your_New_Project" rel="internal">将转移到新项目的项。</a></p> </div><div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_3"><span id=".E9.9C.80.E8.A6.81.E8.80.83.E8.99.91.E7.9A.84.E4.BA.8B.E9.A1.B9"></span><h2 class="editable">需要考虑的事项</h2> <ul> <li><strong>所需用户权限:</strong> <ul> <li>你必须是公司的 <a title="Procore 管理员" href="https://zh-sg.support.procore.com/procore-learning-paths/general-contractor/procore-administrator" rel="internal">Procore 管理员</a>。<br />或者</li> <li>公司级别目录工具的“管理员”级别权限。</li> </ul> </li> <li><strong>其他信息:</strong> <ul> <li>要创建项目模板,请<a title="联系支持团队" href="https://zh-sg.support.procore.com/references/contact-support" rel="internal">联系支持</a>或Procore 联系人。 Procore 团队成员将为你启用项目模板功能。</li> <li>可以创建无限数量的项目模板。</li> <li>可以修改现有模板,但修改不会追溯到现有项目,且更新仅会应用于新项目。</li> </ul> </li> <li> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Reusable_Text_Snippets" data-section="项目模板(项目集合工具)" data-show="false"> <div class="mt-include" id="s4825"> <p><strong class="trigger">对于使用的公司</strong><img alt="icon-erp-synced2.png" class="internal default" style="width: 39px; height: 15px;" width="39px" height="15px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/10737/icon-erp-synced2.png?revision=1&size=bestfit&width=39&height=15" /> <strong class="trigger">ERP集成工具:</strong>如果你要从集成ERP系统导入作业以作为新项目添加到 Procore,则需要选择项目模板以应用于新的 Procore 项目。 有关详细信息,请访问<strong class="trigger"><a title="关于ERP集成需要了解的事项" class="mt-disabled" rel="broken">关于ERP集成需要了解的事项</a></strong>。<br /></p> </div> </div> </li> </ul> </div><div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_4"><span id=".E6.AD.A5.E9.AA.A4"></span><h2 class="editable">步骤</h2> <ul> <li><a title="配置项目模板" href="#Request_to_Enable_Project_Templates_In_Procore" rel="internal">请求在 Procore 中启用项目模板</a></li> <li><a title="配置项目模板" href="#Confirm_that_Your_Project_Template_is_Active" rel="internal">确认项目模板处于活动状态</a></li> </ul> <div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_5"><span id=".E8.AF.B7.E6.B1.82.E5.9C.A8_Procore_.E4.B8.AD.E5.90.AF.E7.94.A8.E9.A1.B9.E7.9B.AE.E6.A8.A1.E6.9D.BF"></span><h3 class="editable">请求在 Procore 中启用项目模板</h3> <p>要提交在 Procore 中启用项目模板功能的请求,请执行以下操作:</p> <ol> <li>确保你拥有适当的权限。</li> <li>在公司账户中选择要用作模板的项目。 <ul> </ul> </li> <li>在请求中包括以下信息: <div class="callout callout-note"> <div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section"><span id=".E6.B3.A8.E6.84.8F"></span><h5 class="editable"><i class="fas fa-info-circle"> </i>注意</h5> <ul> <li>可以使用公司账户中的现有项目,也可以创建一个新项目。请参阅<a title="新建项目" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/portfolio/tutorials/create-a-new-project" rel="internal">新建项目</a>。</li> <li>有关与项目模板一起保存的常用设置和项的信息,请参阅<a title="应用项目模板时会复制哪些内容到新项目?" href="https://zh-sg.support.procore.com/faq/what-gets-copied-over-to-a-new-project-when-applying-a-project-template" rel="internal">应用项目模板时会复制哪些内容到新项目?</a></li> </ul> </div></div> <ol start="1" style="list-style-type: lower-alpha;"> <li><strong>项目名称</strong>。项目的名称和编号。要查找项目名称,请导航到<strong>项目集合</strong>工具并在<strong>项目</strong>列表中找到所需的项目。包括<em>名称</em>值。请参阅<a title="在公司项目集合中搜索项目" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/portfolio/tutorials/search-the-company-portfolio-for-projects" rel="internal">在公司项目集合中搜索项目</a>。<br /><em>注意</em>:在此示例中,我们想要使用名为“Seaward Shopping Center I”的现有项目作为项目模板。<br /><br /><img alt="project-name.png" class="internal default" style="width: 700px; height: 269px;" width="700px" height="269px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/3519/project-name.png?revision=1&size=bestfit&width=700&height=269" /><br /></li> <li><strong>项目 ID</strong>。项目的 ID 编号。要查找项目 ID,请点击项目集合工具中的项目链接。这将在 Web 浏览器中打开项目。然后查看地址栏中的 URL。项目 ID 为出现在 URL 中的数字:<a title="http://app.procore.com/XXXXXX/project/home" href="http://app.procore.com/XXXXXX/project/home" target="_blank" rel="external noopener nofollow" class="external">http://app.procore.com/XXXXXX/project/home</a>。<br /><br /><img alt="project-id.png" class="internal default" style="width: 668px; height: 264px;" width="668px" height="264px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/2831/project-id.png?revision=1&size=bestfit&width=668&height=264" /><br /><br /></li> </ol> </li> <li>将上述信息和请求通过电子邮件消息发送至: <ol start="1" style="list-style-type: lower-alpha;"> <li><a title="mailto:support@procore.com" href="mailto:support@procore.com" target="_blank" rel="external noopener nofollow" class="link-mailto">support@procore.com</a><br />或者</li> <li>Procore 联系人</li> </ol> </li> </ol> <ul> </ul> </div><div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_6"><span id=".E7.A1.AE.E8.AE.A4.E9.A1.B9.E7.9B.AE.E6.A8.A1.E6.9D.BF.E5.A4.84.E4.BA.8E.E6.B4.BB.E5.8A.A8.E7.8A.B6.E6.80.81"></span><h3 class="editable">确认项目模板处于活动状态</h3> <p>在Procore 联系人确认所选项目已作为模板激活后,请执行以下操作:</p> <ol> <li>导航到公司的<strong>项目集合</strong>工具。<br />此时显示项目集合页面。</li> <li>点击<strong>创建项目</strong>。<br />此时将打开“创建项目”页面。</li> <li>在<strong>一般信息</strong>下,查看<strong>项目模板</strong>列表中的活动模板列表。<br /><br /><img alt="demo-project-template.gif" class="internal default" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/1841/demo-project-template.gif?revision=1" /><br /></li> <li><em>可选:</em>如果要继续创建新项目,请按照<a title="添加新项目" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/portfolio/tutorials/create-a-new-project" rel="internal">添加新项目</a>中的步骤操作。</li> </ol> </div></div><div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_7"><span id=".E5.B0.86.E8.BD.AC.E7.A7.BB.E5.88.B0.E6.96.B0.E9.A1.B9.E7.9B.AE.E7.9A.84.E9.A1.B9"></span><h2 class="editable">将转移到新项目的项</h2> <p>此表标识了复制到使用项目模板创建的新项目的设置。</p> <table class="perm-table mt-responsive-table"> <thead> <tr> <th class="mt-column-width-20" style="text-align:left;">工具</th> <th class="mt-column-width-20" style="text-align:left;">项</th> <th class="mt-column-width-65" style="text-align:left;">其他信息</th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">Procore 工具</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"> <p><strong>除进度计划和项目主页外,每个工具的大多数高级设置配置都将转移到新项目中。</strong></p> <p>有关每个工具的特定高级设置的更多信息,请参阅站点上的“配置高级设置”教程。</p> <p><em>注意:</em>项目级别观察任务模板不会转移到新项目。</p> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">行动计划</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 通知</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"><strong>通知</strong>设置便会复制到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(公司级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > 默认 > 计划</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">添加到模板的计划列表将复制到新项目。 请参阅<a title="添加自定义计划" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/add-a-custom-program" rel="internal">添加自定义计划</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(公司级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">工具设置 > 支持的工具 > 字段集</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">分配给项目模板的字段集将复制到新项目。 请参阅<a title="什么是可配置字段集以及哪些 Procore 工具支持它们?" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" rel="internal">什么是可配置字段集以及哪些 Procore 工具支持它们?</a></td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > 活动工具</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">任何选定的活动 工具都将复制到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > 工种</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">项目工种的设置将复制到新项目。 要了解有关工种的更多信息,请参阅<a title="哪些 Procore 工具支持“工种”?" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" rel="internal">哪些 Procore 工具支持"工种"?</a></td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > 设备</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">添加到<strong>设备名称</strong>列表的项将复制到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > 一般</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">这些设置将复制到新项目: <ul> <li><strong>项目阶段</strong>(下拉列表)</li> <li><strong>项目类型</strong>(下拉列表)</li> <li><strong>防止此项目超额计费</strong>(复选框)</li> <li><strong>非合约成本</strong>(复选框)</li> <li><strong>启用子作业</strong>(复选框)</li> <li><strong>启用DocuSign</strong> (复选框)</li> <li><strong>预算的人工生产力</strong>(复选框)</li> <li><strong>变更事件</strong>(复选框)</li> <li><strong>变更通知单</strong>(复选框)</li> </ul> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > 地点</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">地点设置下的<strong>仅允许在上方的地点管理器中创建地点</strong>复选框的<strong>设置</strong>将复制到新项目。 <em>注意:</em>清除该复选框后,用户可以从 Procore Web 应用程序中的任何地点字段创建地点。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > Webhook</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"><a title="配置项目 Webhook" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/admin/tutorials/configure-webhooks" rel="internal">项目级别 Webhook 配置</a>(包括"通知端点"和"授权标头"字段值)将复制到新项目。 <em>注意:</em>只有在默认 Procore 命名空间中配置的 Webhook 才会复制到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > 工作分解结构</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"> <div> <p><beta-tag>测试版</beta-tag>此功能目前处于测试阶段,并非所有客户都可以普遍使用。 联系你的Procore 联系人以了解更多信息。</p> </div> <p>这些项将复制到新项目:</p> <ul> <li>Procore 的默认"成本类型"细分项和所有自定义成本 类型细分项。</li> <li>添加到项目模板的任何自定义细分项。</li> <li>在预算代码结构中包含和排除"细分"的开/关设置。</li> <li>项目模板的预算编号结构及其在模板中的细分排列。</li> </ul> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > 工作日</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">工作日将转移到新项目。 请参阅<a title="设置项目工作日" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/admin/tutorials/set-project-working-days" rel="internal">设置项目工作日</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目设置 > ERP集成设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">"允许项目与ERP同步"和"启用ERP 作业 成本事务同步"设置都会转移到新项目。 请参阅<a title="products/online/user-guide/company-level/portfolio/tutorials/create-a-new-project" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/portfolio/tutorials/create-a-new-project" rel="internal">创建项目</a>并<a title="在 Procore 项目中启用 ERP 作业成本事务同步" class="mt-disabled" rel="broken">在 Procore 项目上启用ERP 作业 成本事务同步</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">投标</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">投标文件包默认设置页面上的所有设置都将转移到新项目。 请参阅<a title="配置高级设置:投标" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/bidding/tutorials/configure-advanced-settings-bidding" rel="internal">配置高级设置:投标</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">预算</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">默认自动计算完工预测</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">此复选框中的设置将转移到新项目。 请参阅<a title="配置设置:预算" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/budget/tutorials/configure-settings-budget" rel="internal">配置设置:预算</a>和<a title="使用“完工预测”功能" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/budget/tutorials/use-the-forecast-to-complete-feature" rel="internal">使用"完工预测"功能</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">预算</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">启用高级预测</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">此复选框中的设置将转移到新项目。 请参阅<a title="配置设置:预算" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/budget/tutorials/configure-settings-budget" rel="internal">配置设置:预算</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">预算</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">需要预算变更净额</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">此复选框中的设置将转移到新项目。 请参阅<a title="配置设置:预算" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/budget/tutorials/configure-settings-budget" rel="internal">配置设置:预算</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">变更通知单</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 变更通知单配置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">在项目模板中建立的变更 通知单 配置将转移到基于该模板的新项目。 你可以为主合同和合约方选择单层、双层或三层变更 通知单 配置。 主合同侧和合约侧的变更通知单层配置可能不同。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">合约</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">合约列表</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">采购订单和分包合同的"一般"标签页中的字段将会转移,但不包括编号(#)、承包公司、发票联系人、默认分发对象和附件。 此外,合约的状态在新项目中会更新为"草稿"。<br /><br /> 除了成本编号分配之外,分项价格表标签页中的明细项也会转移到新项目。 这是因为项目编号不会转移到新项目。 SOV 上的预算编号保留成本 类型分配。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">合约</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">合约列表</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"> <p>采购订单和分包合同的"一般"标签页中的字段将会转移,但不包括编号(#)、承包公司、发票联系人、默认分发对象和附件。 此外,合约的状态在新项目中会更新为"草稿"。</p> </td> </tr> <tr class="localization-group" data-locale="en-us"> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">合约</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">合规性模板</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">对于使用Procore Pay的客户,"合同配置"下的"合规模板"设置将复制到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">通信</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">对于项目模板上的每种信函类型,以下配置将复制到新项目:启用逾期项目的电子邮件提醒复选框、响应将是到期编号、默认说明文本和电子邮件设置。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">工作日志</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 项目设置(工作日志设置)</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"> <p>源项目的工作日志设置将复制到新项目。<br /><br /> <em>注意:</em>单独的工作日志条目、电子邮件、变更历史记录以及在工作日志设置页面的人力类别区域下创建的所有配置设置都不会复制到新项目。</p> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">目录</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目目录(用户和公司)</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">如果项目模板包含项目目录工具中的用户和公司,则他们将被添加到使用模板创建的任何新项目中。 在源项目上分配了<a class="F1" title="词汇表" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms#Global_Permissions_Template" rel="internal">全局权限模板</a>的用户将在新项目上分配相同的权限模板。 在来源项目上分配了<a data-track-click="Content, Link, project specific permissions templates" title="词汇表" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms#Project_Specific_Permissions_Template" rel="internal">项目特定权限模板</a>的用户将在新项目上分配相同的工具权限(未选择权限模板)。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">文档</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">文档文件夹结构</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">在项目的文档工具下,文件夹将以相同的结构保留。 请参阅<a title="产品/在线/用户指南/项目级别/文档/教程/为文档工具创建标准项目文件夹结构" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/documents/tutorials/create-a-standard-project-folder-structure-for-the-documents-tool" rel="internal">创建标准文件夹结构</a>。<br /><br /> <em>注意:</em>这些文件夹中的任何文件都不会转移,因为它们很可能是特定于项目的文档,与每个新项目无关。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">文档</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">文档工具根文件夹中的文件</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">存在于文档工具根级别(其他文件夹之外)的文件将保留。 请参阅我可以将文档工具中的文件复制到另一个项目吗? 了解更多详情。 通过将文件上传或移动到文档工具的该区域,可以将文件添加到根文件夹。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">图纸</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 类别缩写设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">在图纸工具的配置设置中设置的图纸类别缩写将转移到新项目。 请参阅<a title="配置默认图纸类别" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/drawings/tutorials/configure-default-drawing-disciplines" rel="internal">配置默认图纸类别</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">电子邮件</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 通信设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">确定'谁可以使用项目或工具项的入站电子邮件地址将电子邮件发送到 Procore 中'的通信设置将转移到新项目。 请参阅<a title="配置高级设置:电子邮件" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/emails/tutorials/configure-advanced-settings-emails" rel="internal">配置高级设置:电子邮件</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">电子邮件</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 默认将通信设为“私密”</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">将通信默认为"私密"复选框的设置转移到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">估算</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">估算</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">除“数量”列外,所有估算和数据都将转移到新项目中。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">检查任务</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 创建检查任务模板</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">检查任务模板和相关数据将转移到新项目。 请参阅<a title="创建项目级别检查任务模板" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/inspections/tutorials/create-a-project-level-inspection-template" rel="internal">创建项目级别检查任务模板</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">检查任务</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 配置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">"默认为私密",强制用户创建关于项失败的观察任务,并且检查任务通知将转移到新项目。 请参阅<a title="配置高级设置:项目级别检查任务" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/inspections/tutorials/configure-advanced-settings-project-level-inspections" rel="internal">配置高级设置:项目级别检查任务</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">事件</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">默认为私密</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">开发票</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">只有<strong>“默认计费周期”</strong> 、 <strong>“电子邮件</strong>”和<strong>“其他”</strong>部分下的设置才会转移到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">会议</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">"会议设置"页面上的所有设置(包括"会议视图"和"自动显示以前的会议纪要")都会转移到新项目。 请参阅<a title="配置高级设置:会议" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/meetings/tutorials/configure-advanced-settings-meetings" rel="internal">配置高级设置:会议</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">观察任务</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 观察任务设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"><strong>默认将观察任务设为私密</strong>和<strong>观察任务将在 X 个工作日内到期的设置</strong>转移到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">照片</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">照片设置页面上的所有设置都会转移到新项目。 请参阅<a title="配置高级设置:照片" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/photos/tutorials/configure-advanced-settings-photos" rel="internal">配置高级设置:照片</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">主合同</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">分项价格表标签页</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">项目模板上分项价格表(SOV)标签页中的数据将转移到新项目。 此外,高级设置将被转移。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">主合同</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">合同配置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">"合同配置"下的设置将复制到新项目。 请参阅<a title="配置设置:主合同" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/prime-contracts/tutorials/configure-settings-prime-contracts" rel="internal">配置设置:主合同</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">尾项清单</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 尾项清单设置 > 尾项项目类型</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">在项目的尾项清单工具的配置设置页面中创建的"尾项项目类型"列表。 请参阅<a title="配置高级设置:尾项清单" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/punch-list/tutorials/configure-advanced-settings-punch-list" rel="internal">创建尾项项目类型</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">尾项清单</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 尾项清单设置 > 尾项电子邮件</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">在项目的尾项清单工具的配置设置页面中配置的"尾项电子邮件"设置。 请参阅<a title="配置高级设置:尾项清单" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/punch-list/tutorials/configure-advanced-settings-punch-list#Configure_Emails" rel="internal">配置电子邮件</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">尾项清单</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 尾项清单设置 > 尾项清单模板</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">项目级别尾项模板可转移到新项目。 请参阅<a title="创建项目级别尾项项目模板" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/punch-list/tutorials/create-a-project-level-punch-item-template" rel="internal">创建项目级别尾项项目模板</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">RFI</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > RFI 设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">以下设置将转移到新项目中: <strong>RFI 管理器、允许私人 RFI、默认情况下私人 RFI、新 RFI 问题的答案将到期、启用逾期 RFI 的电子邮件提醒、仅显示对标准和只读用户的官方回复、</strong>并按<strong>项目阶段添加 RFI 编号前缀。</strong></td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">RFI</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > RFI 设置 > RFI 电子邮件</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">RFI 工具的“配置设置”页面中配置的任何电子邮件设置都将转移到新项目中。 请参阅<a title="如何控制 Procore 在 RFI 过程中发送的电子邮件?" href="https://zh-sg.support.procore.com/faq/how-do-i-control-which-emails-are-sent-by-procore-during-the-rfi-process" rel="internal">如何控制 Procore 在 RFI 过程中发送的电子邮件?</a></td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">进度计划</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 一般</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">此部分中的任何进度计划设置。请参阅<a title="配置高级设置:项目进度计划" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/schedule/tutorials/configure-advanced-settings-project-level-schedule" rel="internal">配置高级设置:项目进度计划。</a></td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">进度计划</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 文件管理</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">文件名筛选器将转移到新项目。 请参阅<a title="配置高级设置:项目进度计划" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/schedule/tutorials/configure-advanced-settings-project-level-schedule" rel="internal">配置高级设置:项目进度计划。</a></td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">送审</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 送审答复</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">在源项目中创建的任何自定义提交响应都将转移到新项目。 请参阅<a title="管理自定义送审答复" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/submittals/tutorials/manage-custom-submittal-responses" rel="internal">管理自定义送审答复</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">送审</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 送审电子邮件</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">在送审工具的"配置设置"页面中配置的所有电子邮件设置都将转移到新项目。 请参阅<a title="送审工具何时向 Procore 用户发送电子邮件通知?" href="https://zh-sg.support.procore.com/faq/when-does-the-submittals-tool-send-email-notifications-to-procore-users" rel="internal">送审工具何时向 Procore 用户发送电子邮件通知?</a></td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">送审</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">按规范分项为送审编号</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">此设置将转移到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">考勤表</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 考勤表设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">启用的时间输入设置和任何附加字段将延续到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">工时和材料单</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 材料设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"><strong>创建者</strong>、<strong>公司签名</strong>人和<strong>客户签名</strong>人的工时和材料<strong>电子邮件</strong>设置将转移到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">工时和材料单</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">配置设置 > 更改事件导出选项</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;"><strong>汇总人工明细项</strong>和<strong>汇总设备明细项</strong>选项将转移到新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">工作流</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">公司级别工作流工具 > 已分配的项目</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">分配给项目模板的所有模板也将分配给从该模板创建的新项目。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">工作流</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">项目级别工具 > 工具配置设置 > 工作流设置</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">所有工具的工作流模板配置都将转移,包括步骤的任务分配对象、工作流经理和通讯组。</td> </tr> </tbody> </table> </div><div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_8"><span id=".E4.B8.8D.E4.BC.9A.E8.BD.AC.E7.A7.BB.E5.88.B0.E6.96.B0.E9.A1.B9.E7.9B.AE.E7.9A.84.E9.A1.B9"></span><h2 class="editable">不会转移到新项目的项</h2> <p>下表标识了当新项目基于项目模板时不会转移到新项目的项。</p> <table class="perm-table perm-table-horizontal perm-table-highlight mt-responsive-table"> <thead> <tr> <th class="mt-column-width-20" style="text-align:left;"><strong>工具</strong></th> <th class="mt-column-width-35" style="text-align:left;">项</th> <th class="mt-column-width-45" style="text-align:left;"><strong>其他信息</strong></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">所有项目工具</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">配置设置 > 默认分发</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">"默认通讯对象"列表的成员。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(公司级别)</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">自定义字段</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">为项目级别工具创建的自定义字段。 请参阅<a title="新建自定义字段" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/create-new-custom-fields" rel="internal">新建自定义字段</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(公司级别)</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">公司设置 > Webhook</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">公司级别 Webhook。 请参阅<a title="配置公司 Webhook" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/configure-company-webhooks" rel="internal">配置公司 Webhook</a> 。 仅项目级别 Webhook 将会转移。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">项目设置 > 一般</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">项目名称、正在进行的项目、工作编号、项目描述、平方英尺、工作电话、工作传真、地址、城市、国家、州、县、邮政编码、纬度/经度、预计开始日期、预计完成日期、保修开始日期、保修结束日期、实际开始日期、预计完成日期、实际开始日期、预计完成日期、父级工作、预计项目价值、办公室、项目标志、部门、项目、投标类型、所有者类型、区域、复制目录、项目徽标、语言 - 国家</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">管理员(项目级别)</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">项目设置 > 地点</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">分层地点。 请参阅<a title="将分层地点添加到项目" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/admin/tutorials/add-multi-tiered-locations-to-a-project" rel="internal">将分层地点添加到项目。</a></td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">变更事件</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">变更事件设置 > 附件</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">这些设置不会转移(请参阅<a title="配置设置:变更事件" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/change-events/tutorials/configure-advanced-settings-change-events#Set_Attachment_Settings" rel="internal">设置附件设置</a>): <ul> <li>"将 RFQ 答复中的附件复制到主潜在变更通知单"设置。</li> <li>"将 RFQ 答复中的附件复制到合约 CO"设置。</li> </ul> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">合约</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">采购订单和分包合同</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">这些项不会转移(请参阅<a title="创建合约" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/commitments/tutorials/create-a-commitment" rel="internal">创建合约</a>): <ul> <li>"编号(#)"分配。</li> <li>"承包公司"设置。</li> <li>"发票联系人"分配。</li> <li>"附件"文件。</li> <li>默认通讯对象</li> </ul> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">通信</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">配置设置 > 标签页设置 > 默认分发</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">"默认通讯对象"列表。 请参阅<a title="配置高级设置:通信" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/correspondence/tutorials/configure-advanced-settings-correspondence" rel="internal">配置高级设置:通信</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">工作日志</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">人力类别</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">单独的工作日志条目、电子邮件、变更历史记录以及在工作日志设置页面的人力类别区域下创建的所有配置设置。 请参阅<a title="创建人力条目" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/daily-log/tutorials/create-manpower-entries" rel="internal">创建人力条目</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">权限(公司级别)</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">项目权限模板</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有项目特定权限模板。 请参阅<a title="创建项目权限模板" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/create-a-project-permissions-template" rel="internal">创建项目权限模板</a>。 <div class="callout callout-note"> <div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section"><span id=".E6.B3.A8.E6.84.8F_2"></span><h5 class="editable"><i class="fas fa-info-circle"> </i>注意</h5> 分配给源项目中特定项目 权限 模板的用户将在新项目中分配相同的工具权限。 但是,没有选择权限模板。</div></div> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">电子邮件</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">配置设置 > 电子邮件设置</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">这些设置(请参阅<a title="配置高级设置:电子邮件" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/emails/tutorials/configure-advanced-settings-emails" rel="internal">配置高级设置:电子邮件</a>): <ul> <li>"默认通讯对象"列表。</li> <li>"从其他项目复制标记"设置。</li> </ul> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">图纸</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">图纸页</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有自动图纸 页链接。 请参阅<a title="自动图纸页链接" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/drawings/tutorials/automatic-drawing-sheet-linking" rel="internal">自动图纸页链接</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">主页</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">配置设置 > 项目主页设置</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">这些设置(请参阅<a class="F1" title="配置高级设置:项目主页" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/home/tutorials/configure-advanced-settings-project-home#Update_the_Project_Home_Settings" rel="internal">更新项目主页设置</a>): <ul> <li>"显示当前天气条件"设置。</li> <li>"显示今天的进度计划"设置。</li> <li>"显示项目里程碑"设置。</li> <li>"持续的项目消息"设置。</li> </ul> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">主页</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">主页 > 项目团队</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有项目团队成员。 请参阅<a title="将项目团队添加到项目主页" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/home/tutorials/add-the-project-team-to-the-project-home-page" rel="internal">将项目团队添加到项目主页</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">主页</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">主页 > 项目链接</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有项目链接。 请参阅<a title="在项目主页上添加、修改或删除项目链接" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/home/tutorials/add-modify-or-remove-project-links-on-the-project-home-page" rel="internal">在项目主页上添加、修改或删除项目链接</a>。</td> </tr> <tr class="localization-group" data-locale="en-us"> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">开发票</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">发票设置 > 留置权弃权书</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">Procore Pay的所有"留置权弃权书"设置。 请参阅<a title="配置设置:开发票" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/invoicing/tutorials/configure-settings-invoicing" rel="internal">配置设置:开发票</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">开发票</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">开票设置 > 分包商工作流程设置</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">发票管理的分包商工作流设置。 请参阅<a title="配置设置:开发票" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/invoicing/tutorials/configure-settings-invoicing" rel="internal">配置设置:开发票</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">会议</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">项目会议</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有会议。 这包括会议类别、模板和议程结构。 请参阅<a title="会议" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/meetings" rel="internal">会议</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">照片</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">相册</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有相册。 请参阅<a title="创建照片相册" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/photos/tutorials/create-a-photo-album" rel="internal">创建照片相册</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">RFI</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">配置设置 > RFI 设置</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">这些设置(请参阅<a title="配置高级设置:RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/configure-advanced-settings-rfis" rel="internal">配置高级设置:RFI</a> ): <ul> <li>"默认通讯对象"列表。</li> <li>"自定义字段 1 的标签"字段。</li> <li>"自定义字段 2 的标签"字段。</li> <li>"默认情况下,任务分配对象需要答复"设置。</li> </ul> </td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">报告(项目级别)</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">报告</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有预制和自定义报告。 请参阅<a title="项目报告" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/reports" rel="internal">报告</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">进度计划</td> <td class="mt-column-width-20" data-th="Item" style="text-align:left;">进度计划</td> <td class="mt-column-width-65" data-th="Additional Information" style="text-align:left;">任何集成的项目进度计划。 请参阅<a title="项目进度计划" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/schedule" rel="internal">进度计划</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">规范</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">规范分项</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有项目规范分项。 请参阅<a title="手动创建规范分项" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/specifications/tutorials/manually-create-spec-sections" rel="internal">手动创建规范分项</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">送审</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">配置设置 > 送审工作流模板</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有提交工作流程模板。 请参阅<a title="管理送审工作流模板" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/submittals/tutorials/manage-submittal-workflow-templates" rel="internal">管理送审工作流模板</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">任务</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">任务</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">所有任务。 请参阅<a title="添加任务" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/tasks/tutorials/add-a-task" rel="internal">添加任务</a>。</td> </tr> <tr> <td class="mt-column-width-20" data-th="Tool" style="text-align:left;">工时和材料单</td> <td class="mt-column-width-35" data-th="Item" style="text-align:left;">配置设置 > 材料设置</td> <td class="mt-column-width-45" data-th="Additional Information" style="text-align:left;">这些设置(请参阅<a title="配置高级设置:工时和材料单" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/tm-tickets/tutorials/configure-advanced-settings-tm-tickets" rel="internal">配置高级设置:T&M 票证</a>): <ul> <li>"默认通讯对象"列表。</li> <li>"默认通讯对象"列表的"工时和材料电子邮件"设置。</li> </ul> </td> </tr> </tbody> </table> </div><div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_9"><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/portfolio/tutorials/apply-a-project-template-to-a-new-project" rel="internal">将项目模板应用于新项目</a></li> </ul> <div mt-section-origin="products/online/user-guide/company-level/portfolio/tutorials/configure-a-project-template" class="mt-section" id="section_10"><span id=""></span><h4 class="editable"> </h4> <style>/*<![CDATA[*/body #deki-page-title::before {content: url("/@api/deki/pages/:ccaec8e887044385a1dfc2a3a0f71434/files/=tool-icon_portfolio_web-company-level.png");}/*]]>*/</style> </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/products/online/user-guide/company-level/portfolio/tutorials/change-your-password" title="更改密码"><span>更改密码</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/portfolio/tutorials/configure-advanced-settings-portfolio" title="配置高级设置:项目集合"><span>配置高级设置:项目集合</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">© 版权所有 2024 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>© 2024 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?_=76f77a33377b2f0da26a22ff3a2c3345f92f980b: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>