<?xml version="1.0" encoding="UTF-8"?>
|
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
<fullName>Project_level__c</fullName>
|
<externalId>false</externalId>
|
<formula>IF(
|
AND(Text(Relation__c) == '低', Urgency__c== '1.紧急') ||
|
AND(Text(Relation__c)== '低', Urgency__c== '2.中期') ||
|
AND(Text(Relation__c)== '低', Urgency__c== '3.长期'),
|
'5.选择管理',
|
IF(
|
AND(Text(Relation__c) == '中', Urgency__c== '2.中期') ||
|
AND(Text(Relation__c)== '中', Urgency__c== '3.长期') ||
|
AND(Text(Relation__c)== '高', Urgency__c== '3.长期'),
|
'4.周期管理',
|
IF(
|
AND(Text(Relation__c) == '中', Urgency__c== '1.紧急'),
|
'3.紧密追踪',
|
IF(
|
AND(Text(Relation__c) == '高', Urgency__c== '2.中期'),
|
'2.重点关注',
|
IF(AND(Text(Relation__c) == '高', Urgency__c== '1.紧急'),
|
'1.重点管理',
|
''
|
)
|
)
|
)
|
)
|
)</formula>
|
<label>项目等级</label>
|
<required>false</required>
|
<trackHistory>false</trackHistory>
|
<trackTrending>false</trackTrending>
|
<type>Text</type>
|
<unique>false</unique>
|
</CustomField>
|