| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>SIS_Sample_submit_report__c</fullName> |  |     <externalId>false</externalId> |  |     <formula>IF(ISBLANK(text(OPD_SIS_Report__r.Status__c)),0, |  |   |  | CASE(text(OPD_SIS_Report__r.Status__c), |  | "草案中",0, |  | "申請中",1, |  | "批准",1, |  | "提交",1, |  | "跟进中",0, |  | "完毕",1, |  | "取消",0,0))</formula> |  |     <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs> |  |     <label>是否提交SIS报告书(有Sample)</label> |  |     <precision>18</precision> |  |     <required>false</required> |  |     <scale>0</scale> |  |     <trackTrending>false</trackTrending> |  |     <type>Number</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |