GWY
2022-05-05 39c03ca1e4f7fa33b3a5a2a089dec11c94c3662f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
<?xml version="1.0" encoding="UTF-8"?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
    <caseValues>
        <plural>false</plural>
        <value>样机借出申请</value>
    </caseValues>
    <caseValues>
        <plural>true</plural>
        <value>样机借出申请</value>
    </caseValues>
    <fields>
        <label><!-- AWS Data Id --></label>
        <name>AWS_Data_Id__c</name>
    </fields>
    <fields>
        <label><!-- 代理商ID --></label>
        <name>AccountId__c</name>
    </fields>
    <fields>
        <label><!-- 代理商 --></label>
        <name>Agent__c</name>
        <relationshipLabel><!-- 样机借出申请 --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 转借元订单 --></label>
        <name>AllLead_OrderName__c</name>
    </fields>
    <fields>
        <label><!-- 申请者部门 --></label>
        <name>Applicant_department__c</name>
    </fields>
    <fields>
        <label><!-- 申请者邮箱 --></label>
        <name>Applicant_mailbox__c</name>
    </fields>
    <fields>
        <label><!-- 申请者电话 --></label>
        <name>ApplyPerson_Phone__c</name>
    </fields>
    <fields>
        <label><!-- 申请者 --></label>
        <name>ApplyPerson__c</name>
        <relationshipLabel><!-- 样机借出申请 (申请者) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 提交时间 --></label>
        <name>Approval_Date__c</name>
    </fields>
    <fields>
        <label><!-- 是否允许追加样机 --></label>
        <name>Approval_Status__c</name>
    </fields>
    <fields>
        <label><!-- 审批步骤 --></label>
        <name>Approval_Step__c</name>
    </fields>
    <fields>
        <label><!-- 经理(审批) --></label>
        <name>ApproveManager__c</name>
        <relationshipLabel><!-- 样机借出申请 (经理(审批)) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 审批人 --></label>
        <name>Approver__c</name>
        <relationshipLabel><!-- 样机借出申请 (审批人) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 全部回寄日期 --></label>
        <name>Asset_Return_Date_All__c</name>
    </fields>
    <fields>
        <label><!-- 最新回寄日期 --></label>
        <name>Asset_Return_Date__c</name>
    </fields>
    <fields>
        <label><!-- 预订回收日(仪景通) --></label>
        <name>Asset_loaner_closed_Date__c</name>
    </fields>
    <fields>
        <label><!-- 预计出货日(仪景通) --></label>
        <name>Asset_loaner_start_Date__c</name>
    </fields>
    <fields>
        <label><!-- FV/Bitplane/NewPort/Scientifica…… --></label>
        <name>BS_FV__c</name>
    </fields>
    <fields>
        <label><!-- OSIS(活细胞/TIRFM)/DP/Q-Imaging/ Andor/Hama --></label>
        <name>BS_OSIS__c</name>
    </fields>
    <fields>
        <label><!-- Spinsr --></label>
        <name>BS_Spinsr__c</name>
    </fields>
    <fields>
        <label><!-- VS120 --></label>
        <name>BS_VS120__c</name>
    </fields>
    <fields>
        <label><!-- scanR --></label>
        <name>BS_scanR__c</name>
    </fields>
    <fields>
        <label><!-- BackToPreStatus --></label>
        <name>BackToPreStatus__c</name>
    </fields>
    <fields>
        <label><!-- BeforeSubmitStatus --></label>
        <name>BeforeSubmitStatus__c</name>
    </fields>
    <fields>
        <label><!-- 出库指示日期 --></label>
        <name>Bollow_Date__c</name>
    </fields>
    <fields>
        <label><!-- 取消日期 --></label>
        <name>Cancel_Date__c</name>
    </fields>
    <fields>
        <label><!-- 取消理由 --></label>
        <name>Cancel_Reason__c</name>
    </fields>
    <fields>
        <label><!-- 数量_申请者已收货 --></label>
        <name>Count_ApplicantReceived__c</name>
    </fields>
    <fields>
        <label><!-- 数量_完结 --></label>
        <name>Count_Finish__c</name>
    </fields>
    <fields>
        <label><!-- 数量_NG回寄 --></label>
        <name>Count_NG_SendBack__c</name>
    </fields>
    <fields>
        <label><!-- 数量_收货NG --></label>
        <name>Count_NG__c</name>
    </fields>
    <fields>
        <label><!-- 数量_未回收 --></label>
        <name>Count_Not_Received__c</name>
    </fields>
    <fields>
        <label><!-- 数量_其他完结状态_未发货 --></label>
        <name>Count_OtherFinish_NotSendOut__c</name>
    </fields>
    <fields>
        <label><!-- 数量_已回收动作 --></label>
        <name>Count_Received__c</name>
    </fields>
    <fields>
        <label><!-- 数量_已回寄 --></label>
        <name>Count_SendBack__c</name>
    </fields>
    <fields>
        <label><!-- 数量_出库前已检测 --></label>
        <name>Count_SendOutChecked__c</name>
    </fields>
    <fields>
        <label><!-- 数量_已发货 --></label>
        <name>Count_SendOut__c</name>
    </fields>
    <fields>
        <label><!-- 数量_已下架 --></label>
        <name>Count_StockDown__c</name>
    </fields>
    <fields>
        <label><!-- 数量_已上架(回库)_未发货 --></label>
        <name>Count_StockUp_NotSendOut__c</name>
    </fields>
    <fields>
        <label><!-- CreatorUserType --></label>
        <name>CreatorUserType__c</name>
    </fields>
    <fields>
        <label><!-- 元代理商名称 --></label>
        <name>DealerOrder_From__c</name>
        <relationshipLabel><!-- 样机借出申请 (元代理商名称) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 元代理商名称(文本) --></label>
        <name>Dealer_From_txt__c</name>
    </fields>
    <fields>
        <label><!-- 使用目的 --></label>
        <name>Demo_purpose__c</name>
        <picklistValues>
            <masterLabel>OCSM内部、第三方的合作</masterLabel>
            <translation><!-- OCSM内部、第三方的合作 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>OT品质问题</masterLabel>
            <translation><!-- OT品质问题 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>OT漏发、错发问题</masterLabel>
            <translation><!-- OT漏发、错发问题 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>QIS顶用</masterLabel>
            <translation><!-- QIS顶用 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>交货期延误</masterLabel>
            <translation><!-- 交货期延误 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>交货期延误的借用</masterLabel>
            <translation><!-- 交货期延误的借用 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>交货期顶用</masterLabel>
            <translation><!-- 交货期顶用 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>产品品质问题</masterLabel>
            <translation><!-- 产品品质问题 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>全国性展会</masterLabel>
            <translation><!-- 全国性展会 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>公司内部人员的培训</masterLabel>
            <translation><!-- 公司内部人员的培训 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>各地组织的地方性展会、学术会及举办Work Shop</masterLabel>
            <translation><!-- 各地组织的地方性展会、学术会及举办Work Shop --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>国家相关机构的检测</masterLabel>
            <translation><!-- 国家相关机构的检测 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>培训</masterLabel>
            <translation><!-- 培训 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>客户演示</masterLabel>
            <translation><!-- 客户演示 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>客户试用</masterLabel>
            <translation><!-- 客户试用 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>展会</masterLabel>
            <translation><!-- 展会 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>展会/内部会议</masterLabel>
            <translation><!-- 展会/内部会议 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>展会研讨会</masterLabel>
            <translation><!-- 展会研讨会 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>样机售前(演示/试用)</masterLabel>
            <translation><!-- 样机售前(演示/试用) --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>演示</masterLabel>
            <translation><!-- 演示 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>特殊案件配合</masterLabel>
            <translation><!-- 特殊案件配合 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>维修</masterLabel>
            <translation><!-- 维修 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>维修顶用</masterLabel>
            <translation><!-- 维修顶用 --></translation>
        </picklistValues>
    </fields>
    <fields>
        <label><!-- 申请理由 --></label>
        <name>Demo_purpose_text__c</name>
    </fields>
    <fields>
        <label><!-- 副经理(审批) --></label>
        <name>DeputyApproveManager__c</name>
        <relationshipLabel><!-- 样机借出申请 (副经理(审批)) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 明细数量 --></label>
        <name>Detail_count__c</name>
    </fields>
    <fields>
        <label><!-- 责任人电话 --></label>
        <name>Director_Number__c</name>
    </fields>
    <fields>
        <label><!-- 样机责任人 --></label>
        <name>Director__c</name>
    </fields>
    <fields>
        <label><!-- 责任人邮箱 --></label>
        <name>Director_email__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_10 --></label>
        <name>EC_Code_10__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_11 --></label>
        <name>EC_Code_11__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_12 --></label>
        <name>EC_Code_12__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_13 --></label>
        <name>EC_Code_13__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_14 --></label>
        <name>EC_Code_14__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_15 --></label>
        <name>EC_Code_15__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_16 --></label>
        <name>EC_Code_16__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_17 --></label>
        <name>EC_Code_17__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_18 --></label>
        <name>EC_Code_18__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_19 --></label>
        <name>EC_Code_19__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_1 --></label>
        <name>EC_Code_1__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_20 --></label>
        <name>EC_Code_20__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_2 --></label>
        <name>EC_Code_2__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_3 --></label>
        <name>EC_Code_3__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_4 --></label>
        <name>EC_Code_4__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_5 --></label>
        <name>EC_Code_5__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_6 --></label>
        <name>EC_Code_6__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_7 --></label>
        <name>EC_Code_7__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_8 --></label>
        <name>EC_Code_8__c</name>
    </fields>
    <fields>
        <label><!-- EC_Code_9 --></label>
        <name>EC_Code_9__c</name>
    </fields>
    <fields>
        <label><!-- 工程师名称(产品) --></label>
        <name>Engineer_CP__c</name>
        <relationshipLabel><!-- 样机借出申请 (工程师名称(产品)) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 工程师名称(服务) --></label>
        <name>Engineer_FW__c</name>
        <relationshipLabel><!-- 样机借出申请 (工程师名称(服务)) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 样机分类 --></label>
        <name>Equipment_Type__c</name>
        <picklistValues>
            <masterLabel>ANI</masterLabel>
            <translation><!-- ANI --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>BS</masterLabel>
            <translation><!-- BS --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>IE</masterLabel>
            <translation><!-- IE --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>NDT</masterLabel>
            <translation><!-- NDT --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>RVI</masterLabel>
            <translation><!-- RVI --></translation>
        </picklistValues>
    </fields>
    <fields>
        <label><!-- 完毕日期 --></label>
        <name>Finished_Date__c</name>
    </fields>
    <fields>
        <label><!-- 第一次超期提醒 --></label>
        <name>First_timeOut__c</name>
    </fields>
    <fields>
        <label><!-- 跟进询价 --></label>
        <name>Follow_Opp__c</name>
        <relationshipLabel><!-- 样机借出申请 --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 跟进询价(文本) --></label>
        <name>Follow_Opp_text__c</name>
    </fields>
    <fields>
        <label><!-- 申请者装机确认日期 --></label>
        <name>HP_Received_Sign_Date__c</name>
    </fields>
    <fields>
        <label><!-- 签收单上传记录 --></label>
        <name>HP_received_sign_rich__c</name>
    </fields>
    <fields>
        <label><!-- 装机确认附件 --></label>
        <name>Installation_Qualification_Attachment__c</name>
    </fields>
    <fields>
        <label><!-- 是否分割申请单 --></label>
        <name>IsSplitLoanerApplication__c</name>
    </fields>
    <fields>
        <label><!-- 是否自动收货 --></label>
        <name>Is_Automatic_Received__c</name>
    </fields>
    <fields>
        <label><!-- 是否高端产品 --></label>
        <name>Is_High_end_Products__c</name>
    </fields>
    <fields>
        <label><!-- 是否维修产品 --></label>
        <name>Is_Repair_Products__c</name>
    </fields>
    <fields>
        <label><!-- 是否超期未归还 --></label>
        <name>Is_time_out__c</name>
    </fields>
    <fields>
        <label><!-- 是否超期未归还(IT用) --></label>
        <name>Is_time_out_formula__c</name>
    </fields>
    <fields>
        <label><!-- 借出担当与经理是否相同 --></label>
        <name>JPlay_Mantf__c</name>
    </fields>
    <fields>
        <label><!-- 全部回收日期 --></label>
        <name>LoanerClosedDateAll__c</name>
    </fields>
    <fields>
        <label><!-- 借用客户数量 --></label>
        <name>Loaner_AccountNo__c</name>
    </fields>
    <fields>
        <label><!-- 样机借用客户 --></label>
        <name>Loaner_Account__c</name>
    </fields>
    <fields>
        <label><!-- 借用协议PDF --></label>
        <name>Loaner_AgreementPDF__c</name>
    </fields>
    <fields>
        <label><!-- 续借申请日期 --></label>
        <name>Loaner_Apply_Renewal_Date__c</name>
    </fields>
    <fields>
        <label><!-- 转借确认照片 --></label>
        <name>Loaner_Confirm_Photo__c</name>
    </fields>
    <fields>
        <label><!-- 转借申请单 --></label>
        <name>Loaner_LendFrom__c</name>
        <relationshipLabel><!-- 样机转借申请 --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 是否转借申请 --></label>
        <name>Loaner_LendOrder__c</name>
    </fields>
    <fields>
        <label><!-- 转借申请单用户1 --></label>
        <name>Loaner_LendUser1__c</name>
        <relationshipLabel><!-- 样机借出申请 (转借申请单用户1) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 转借申请单用户2 --></label>
        <name>Loaner_LendUser2__c</name>
        <relationshipLabel><!-- 样机借出申请 (转借申请单用户2) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 转借申请单用户3 --></label>
        <name>Loaner_LendUser3__c</name>
        <relationshipLabel><!-- 样机借出申请 (转借申请单用户3) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 转借申请单用户4 --></label>
        <name>Loaner_LendUser4__c</name>
        <relationshipLabel><!-- 样机借出申请 (转借申请单用户4) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 转借申请单用户5 --></label>
        <name>Loaner_LendUser5__c</name>
        <relationshipLabel><!-- 样机借出申请 (转借申请单用户5) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 续借至日期 --></label>
        <name>Loaner_Renewal_Date__c</name>
    </fields>
    <fields>
        <label><!-- 续借申请原因 --></label>
        <name>Loaner_Renewal_Reason__c</name>
    </fields>
    <fields>
        <label><!-- 续借申请状态 --></label>
        <name>Loaner_Renewal__c</name>
        <picklistValues>
            <masterLabel>已通过</masterLabel>
            <translation><!-- 已通过 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>待审批</masterLabel>
            <translation><!-- 待审批 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>未申请</masterLabel>
            <translation><!-- 未申请 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>申请中</masterLabel>
            <translation><!-- 申请中 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>驳回</masterLabel>
            <translation><!-- 驳回 --></translation>
        </picklistValues>
    </fields>
    <fields>
        <label><!-- Loaner Ser Encrypted --></label>
        <name>Loaner_Ser_Encrypted__c</name>
    </fields>
    <fields>
        <label><!-- 借用担当 --></label>
        <name>Loaner_Ser__c</name>
    </fields>
    <fields>
        <label><!-- 转借样机 --></label>
        <name>Loaner_loaner__c</name>
    </fields>
    <fields>
        <label><!-- Loaner receive staff Encrypted --></label>
        <name>Loaner_receive_staff_Encrypted__c</name>
    </fields>
    <fields>
        <label><!-- 收件人姓名 --></label>
        <name>Loaner_receive_staff__c</name>
    </fields>
    <fields>
        <label><!-- Loaner receive staff phone Encrypted --></label>
        <name>Loaner_receive_staff_phone_Encrypted__c</name>
    </fields>
    <fields>
        <label><!-- 收件人电话 --></label>
        <name>Loaner_receive_staff_phone__c</name>
    </fields>
    <fields>
        <label><!-- 删除明细 --></label>
        <name>Manager_detail_Del__c</name>
    </fields>
    <fields>
        <label><!-- 内部留言栏 --></label>
        <name>OCN_Internal_Notes__c</name>
    </fields>
    <fields>
        <label><!-- 分割申请单信息 --></label>
        <name>Other_Form__c</name>
    </fields>
    <fields>
        <label><!-- 逾期未归还 --></label>
        <name>Overdue__c</name>
    </fields>
    <fields>
        <label><!-- Pos Code Encrypted --></label>
        <name>Pos_Code_Encrypted__c</name>
    </fields>
    <fields>
        <label><!-- Post Code Encrypted --></label>
        <name>Post_Code_Encrypted__c</name>
    </fields>
    <fields>
        <label><!-- 邮编 --></label>
        <name>Post_Code__c</name>
    </fields>
    <fields>
        <label><!-- 收回后需要准备天数 --></label>
        <name>Prepare_Day__c</name>
    </fields>
    <fields>
        <label><!-- 产品10数量 --></label>
        <name>ProductCount10__c</name>
    </fields>
    <fields>
        <label><!-- 产品11数量 --></label>
        <name>ProductCount11__c</name>
    </fields>
    <fields>
        <label><!-- 产品12数量 --></label>
        <name>ProductCount12__c</name>
    </fields>
    <fields>
        <label><!-- 产品13数量 --></label>
        <name>ProductCount13__c</name>
    </fields>
    <fields>
        <label><!-- 产品14数量 --></label>
        <name>ProductCount14__c</name>
    </fields>
    <fields>
        <label><!-- 产品15数量 --></label>
        <name>ProductCount15__c</name>
    </fields>
    <fields>
        <label><!-- 产品16数量 --></label>
        <name>ProductCount16__c</name>
    </fields>
    <fields>
        <label><!-- 产品17数量 --></label>
        <name>ProductCount17__c</name>
    </fields>
    <fields>
        <label><!-- 产品18数量 --></label>
        <name>ProductCount18__c</name>
    </fields>
    <fields>
        <label><!-- 产品19数量 --></label>
        <name>ProductCount19__c</name>
    </fields>
    <fields>
        <label><!-- 产品1数量 --></label>
        <name>ProductCount1__c</name>
    </fields>
    <fields>
        <label><!-- 产品20数量 --></label>
        <name>ProductCount20__c</name>
    </fields>
    <fields>
        <label><!-- 产品2数量 --></label>
        <name>ProductCount2__c</name>
    </fields>
    <fields>
        <label><!-- 产品3数量 --></label>
        <name>ProductCount3__c</name>
    </fields>
    <fields>
        <label><!-- 产品4数量 --></label>
        <name>ProductCount4__c</name>
    </fields>
    <fields>
        <label><!-- 产品5数量 --></label>
        <name>ProductCount5__c</name>
    </fields>
    <fields>
        <label><!-- 产品6数量 --></label>
        <name>ProductCount6__c</name>
    </fields>
    <fields>
        <label><!-- 产品7数量 --></label>
        <name>ProductCount7__c</name>
    </fields>
    <fields>
        <label><!-- 产品8数量 --></label>
        <name>ProductCount8__c</name>
    </fields>
    <fields>
        <label><!-- 产品9数量 --></label>
        <name>ProductCount9__c</name>
    </fields>
    <fields>
        <label><!-- 产品10 --></label>
        <name>ProductNameNum10__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品10) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品11 --></label>
        <name>ProductNameNum11__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品11) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品12 --></label>
        <name>ProductNameNum12__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品12) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品13 --></label>
        <name>ProductNameNum13__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品13) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品14 --></label>
        <name>ProductNameNum14__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品14) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品15 --></label>
        <name>ProductNameNum15__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品15) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品16 --></label>
        <name>ProductNameNum16__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品16) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品17 --></label>
        <name>ProductNameNum17__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品17) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品18 --></label>
        <name>ProductNameNum18__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品18) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品19 --></label>
        <name>ProductNameNum19__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品19) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品1 --></label>
        <name>ProductNameNum1__c</name>
        <relationshipLabel><!-- 样机借出申请 --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品20 --></label>
        <name>ProductNameNum20__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品20) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品2 --></label>
        <name>ProductNameNum2__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品2) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品3 --></label>
        <name>ProductNameNum3__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品3) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品4 --></label>
        <name>ProductNameNum4__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品4) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品5 --></label>
        <name>ProductNameNum5__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品5) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品6 --></label>
        <name>ProductNameNum6__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品6) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品7 --></label>
        <name>ProductNameNum7__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品7) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品8 --></label>
        <name>ProductNameNum8__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品8) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品9 --></label>
        <name>ProductNameNum9__c</name>
        <relationshipLabel><!-- 样机借出申请 (产品9) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 产品部审批 --></label>
        <name>Product_Approval__c</name>
    </fields>
    <fields>
        <label><!-- RVI样机管理者审批 --></label>
        <name>RVI_Manager_Approval__c</name>
    </fields>
    <fields>
        <label><!-- 收货附件 --></label>
        <name>Receipt_Attachment__c</name>
    </fields>
    <fields>
        <label><!-- 申请者收货日期 --></label>
        <name>Received_Date__c</name>
    </fields>
    <fields>
        <label><!-- 提醒日期 --></label>
        <name>Remind_Date__c</name>
    </fields>
    <fields>
        <label><!-- 归还提醒日期 --></label>
        <name>Remind_Request_Date__c</name>
    </fields>
    <fields>
        <label><!-- 续借次数 --></label>
        <name>Renew_Num__c</name>
    </fields>
    <fields>
        <label><!-- 续借审批日期 --></label>
        <name>Renewal_Examine_Date__c</name>
    </fields>
    <fields>
        <label><!-- 借出结束日 --></label>
        <name>Rental_End_Date__c</name>
    </fields>
    <fields>
        <label><!-- 借出开始日 --></label>
        <name>Rental_Start_Date__c</name>
    </fields>
    <fields>
        <label><!-- 希望归还日(申请者) --></label>
        <name>Request_return_Date__c</name>
    </fields>
    <fields>
        <label><!-- 希望到货日期 --></label>
        <name>Request_shipping_Date__c</name>
    </fields>
    <fields>
        <label><!-- 返品-物流公司 --></label>
        <name>Return_Track_Company__c</name>
    </fields>
    <fields>
        <label><!-- 返品-物流单号 --></label>
        <name>Return_Track_Number__c</name>
    </fields>
    <fields>
        <label><!-- Return Trake Staff Encrypted --></label>
        <name>Return_Trake_Staff_Encrypted__c</name>
    </fields>
    <fields>
        <label><!-- 返品人 --></label>
        <name>Return_Trake_Staff__c</name>
    </fields>
    <fields>
        <label><!-- 发货人 --></label>
        <name>Return_to_wh_staff__c</name>
        <relationshipLabel><!-- 样机借出申请 (发货人) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- SSBG期 --></label>
        <name>SSBG_period__c</name>
    </fields>
    <fields>
        <label><!-- 第二次超期提醒 --></label>
        <name>Second_timeOut__c</name>
    </fields>
    <fields>
        <label><!-- 服务部审批 --></label>
        <name>Service_Approval__c</name>
    </fields>
    <fields>
        <label><!-- 全部发货日期 --></label>
        <name>Shipping_Finished_Date_All__c</name>
    </fields>
    <fields>
        <label><!-- 最新发货日期 --></label>
        <name>Shipping_Finished_Date__c</name>
    </fields>
    <fields>
        <label><!-- 样机借出状态(公式) --></label>
        <name>Status_F__c</name>
    </fields>
    <fields>
        <label><!-- 样机借出状态 --></label>
        <name>Status__c</name>
        <picklistValues>
            <masterLabel>CompetedC</masterLabel>
            <translation><!-- CompetedC --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>Completed</masterLabel>
            <translation><!-- Completed --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>全部发货</masterLabel>
            <translation><!-- 全部发货 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>全部回寄</masterLabel>
            <translation><!-- 全部回寄 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>全部回收</masterLabel>
            <translation><!-- 全部回收 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>出库前已检测</masterLabel>
            <translation><!-- 出库前已检测 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>取消</masterLabel>
            <translation><!-- 取消 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>取消申请</masterLabel>
            <translation><!-- 取消申请 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>完毕</masterLabel>
            <translation><!-- 完毕 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>已下架</masterLabel>
            <translation><!-- 已下架 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>已出库指示</masterLabel>
            <translation><!-- 已出库指示 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>已批准</masterLabel>
            <translation><!-- 已批准 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>已提交</masterLabel>
            <translation><!-- 已提交 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>欠品确认中</masterLabel>
            <translation><!-- 欠品确认中 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>申请中</masterLabel>
            <translation><!-- 申请中 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>申请者已收货</masterLabel>
            <translation><!-- 申请者已收货 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>申请者已装机确认</masterLabel>
            <translation><!-- 申请者已装机确认 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>草案中</masterLabel>
            <translation><!-- 草案中 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>部分发货</masterLabel>
            <translation><!-- 部分发货 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>部分回寄</masterLabel>
            <translation><!-- 部分回寄 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>销售担当批准</masterLabel>
            <translation><!-- 销售担当批准 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>驳回</masterLabel>
            <translation><!-- 驳回 --></translation>
        </picklistValues>
    </fields>
    <fields>
        <label><!-- 发货-物流单号 --></label>
        <name>Tracking_Number__c</name>
    </fields>
    <fields>
        <label><!-- 自动编号 --></label>
        <name>auto_no__c</name>
    </fields>
    <fields>
        <label><!-- 二次审批抄送人 --></label>
        <name>ccUser__c</name>
    </fields>
    <fields>
        <label><!-- 收获数量 --></label>
        <name>count_AppReceived__c</name>
    </fields>
    <fields>
        <label><!-- 发货-物流公司 --></label>
        <name>delivery_company__c</name>
    </fields>
    <fields>
        <label><!-- direct shippment address Encrypted --></label>
        <name>direct_shippment_address_Encrypted__c</name>
    </fields>
    <fields>
        <label><!-- 收件人详细地址 --></label>
        <name>direct_shippment_address__c</name>
    </fields>
    <fields>
        <label><!-- 样机管理者 --></label>
        <name>loaner_Manager__c</name>
        <relationshipLabel><!-- 样机借出申请 (样机管理者) --></relationshipLabel>
    </fields>
    <fields>
        <label><!-- 备注 --></label>
        <name>loaner_Remark__c</name>
    </fields>
    <fields>
        <label><!-- 样机管理地 --></label>
        <name>loaner_manage_place__c</name>
        <picklistValues>
            <masterLabel>上海明园</masterLabel>
            <translation><!-- 上海明园 --></translation>
        </picklistValues>
        <picklistValues>
            <masterLabel>北京酒仙桥</masterLabel>
            <translation><!-- 北京酒仙桥 --></translation>
        </picklistValues>
    </fields>
    <fields>
        <label><!-- loaner期 --></label>
        <name>loaner_period__c</name>
    </fields>
    <fields>
        <label><!-- 样机存放地 --></label>
        <name>loaner_place__c</name>
    </fields>
    <fields>
        <label><!-- 样机申请单号 --></label>
        <name>loaner_request_number__c</name>
    </fields>
    <fields>
        <label><!-- 自己送还 --></label>
        <name>loaner_return__c</name>
    </fields>
    <fields>
        <label><!-- 自提时间(D) --></label>
        <name>pickup_time_Delete__c</name>
    </fields>
    <fields>
        <label><!-- 自提时间 --></label>
        <name>pickup_time__c</name>
    </fields>
    <fields>
        <label><!-- 归还人姓名 --></label>
        <name>return_Name__c</name>
    </fields>
    <fields>
        <label><!-- return Number Encrypted --></label>
        <name>return_Number_Encrypted__c</name>
    </fields>
    <fields>
        <label><!-- 返品人电话 --></label>
        <name>return_Number__c</name>
    </fields>
    <fields>
        <label><!-- 销售经理与黄江平是否是同一人 --></label>
        <name>whether_same_person__c</name>
    </fields>
    <layouts>
        <layout>样机借出申请_代理商(BS)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 服务产品信息 --></label>
            <section>服务产品信息</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_代理商(NDT/ANI)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_代理商(NDT/ANINew)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 物流信息 --></label>
            <section>物流信息</section>
        </sections>
        <sections>
            <label><!-- 申请单信息 --></label>
            <section>申请单信息</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_代理商(RVI)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_代理商(非BS)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(BS)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- ECN内部留言栏 --></label>
            <section>ECN内部留言栏</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 服务产品信息 --></label>
            <section>服务产品信息</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(BS管理者)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- ECN内部留言栏 --></label>
            <section>ECN内部留言栏</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 服务产品信息 --></label>
            <section>服务产品信息</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(NDT/ANI内部)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- ECN内部留言栏 --></label>
            <section>ECN内部留言栏</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(NDT/ANI内部New)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 物流信息 --></label>
            <section>物流信息</section>
        </sections>
        <sections>
            <label><!-- 申请单信息 --></label>
            <section>申请单信息</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(RVI)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- ECN内部留言栏 --></label>
            <section>ECN内部留言栏</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(sys)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- ECN内部留言栏 --></label>
            <section>ECN内部留言栏</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 服务产品信息 --></label>
            <section>服务产品信息</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(管理者)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- ECN内部留言栏 --></label>
            <section>ECN内部留言栏</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(管理者)NDT/ANI</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- ECN内部留言栏 --></label>
            <section>ECN内部留言栏</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(管理者)NDT/ANI的副本</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 物流信息 --></label>
            <section>物流信息</section>
        </sections>
        <sections>
            <label><!-- 申请单信息 --></label>
            <section>申请单信息</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <layouts>
        <layout>样机借出申请_社内(非BS)</layout>
        <sections>
            <label><!-- Custom Links --></label>
            <section>Custom Links</section>
        </sections>
        <sections>
            <label><!-- ECN内部留言栏 --></label>
            <section>ECN内部留言栏</section>
        </sections>
        <sections>
            <label><!-- 借用样机目的 --></label>
            <section>借用样机目的</section>
        </sections>
        <sections>
            <label><!-- 取消信息 --></label>
            <section>取消信息</section>
        </sections>
        <sections>
            <label><!-- 备注 --></label>
            <section>备注</section>
        </sections>
        <sections>
            <label><!-- 收件人信息 --></label>
            <section>收件人信息</section>
        </sections>
        <sections>
            <label><!-- 时间管理 --></label>
            <section>时间管理</section>
        </sections>
        <sections>
            <label><!-- 样机借出申请详细信息 --></label>
            <section>样机借出申请详细信息</section>
        </sections>
        <sections>
            <label><!-- 样机希望借出期限 --></label>
            <section>样机希望借出期限</section>
        </sections>
        <sections>
            <label><!-- 物流信息(全部收发货用) --></label>
            <section>物流信息(全部收发货用)</section>
        </sections>
        <sections>
            <label><!-- 签字确认 --></label>
            <section>签字确认</section>
        </sections>
        <sections>
            <label><!-- 续借申请 --></label>
            <section>续借申请</section>
        </sections>
        <sections>
            <label><!-- 转借申请 --></label>
            <section>转借申请</section>
        </sections>
    </layouts>
    <recordTypes>
        <label><!-- ANI --></label>
        <name>ANI</name>
    </recordTypes>
    <recordTypes>
        <label><!-- BS --></label>
        <name>BS</name>
    </recordTypes>
    <recordTypes>
        <label><!-- BS_DEALER --></label>
        <name>BS_DEALER</name>
    </recordTypes>
    <recordTypes>
        <label><!-- IE --></label>
        <name>IE</name>
    </recordTypes>
    <recordTypes>
        <label><!-- NDT --></label>
        <name>NDT</name>
    </recordTypes>
    <recordTypes>
        <label><!-- RVI --></label>
        <name>RVI</name>
    </recordTypes>
    <startsWith>Consonant</startsWith>
    <validationRules>
        <errorMessage><!-- 批准之后才能上传借用协议 --></errorMessage>
        <name>AgreementPDF</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 审批人 只可以修改 借出开始日、借出结束日、元代理商名称 --></errorMessage>
        <name>Approver_check</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 借用日期超限,请确认 --></errorMessage>
        <name>BS_DayCheck</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 续借天数超限,请确认 --></errorMessage>
        <name>BS_Renewal_Day</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 请选择跟进询价 --></errorMessage>
        <name>BS_follow_opp</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 借用日期超限,请确认 --></errorMessage>
        <name>IE_DayCheck</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 续借天数超限,请确认 --></errorMessage>
        <name>IE_Renewal_Day</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 元代理商名称是空,请确认信息 --></errorMessage>
        <name>LendApplyCheck</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 必须先分配样机再通过审批。 --></errorMessage>
        <name>Loaner_Lend_pass</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 收货人信息或者自提时间必须填其中之一 --></errorMessage>
        <name>Loaner_receive_check</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 收货人信息和自提时间只能填其中之一 --></errorMessage>
        <name>Loaner_receive_check2</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 借用日期超限,请确认 --></errorMessage>
        <name>NDT_ANI_DayCheck</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 续借天数超限,请确认 --></errorMessage>
        <name>NDT_ANI_Renewal_Day</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 已全部收货,不能更改物流单号 --></errorMessage>
        <name>Nomber_changed</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 借用日期超限,请确认 --></errorMessage>
        <name>RVI_DayCheck</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 续借天数超限,请确认 --></errorMessage>
        <name>RVI_Renewal_Day</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 审批前请填写:工程师名称(服务) --></errorMessage>
        <name>Service_Engineer_Approval</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 只有在草案中和驳回状态可以修改使用目的,申请理由和跟进询价 --></errorMessage>
        <name>change_follow_opp</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 请先输入借出开始结束日 --></errorMessage>
        <name>loaer_RVI_RentalDate_check</name>
    </validationRules>
    <validationRules>
        <errorMessage><!-- 必须先做样机分配后再审批销售担当批准 --></errorMessage>
        <name>loaer_assignment_check</name>
    </validationRules>
    <webLinks>
        <label><!-- APortionDeliver --></label>
        <name>APortionDeliver</name>
    </webLinks>
    <webLinks>
        <label><!-- ApplicantReceive --></label>
        <name>ApplicantReceive</name>
    </webLinks>
    <webLinks>
        <label><!-- Button_Renewal --></label>
        <name>Button_Renewal</name>
    </webLinks>
    <webLinks>
        <label><!-- LoanerLend --></label>
        <name>LoanerLend</name>
    </webLinks>
    <webLinks>
        <label><!-- PortionDeliver --></label>
        <name>PortionDeliver</name>
    </webLinks>
    <webLinks>
        <label><!-- ReceivedLoaner --></label>
        <name>ReceivedLoaner</name>
    </webLinks>
    <webLinks>
        <label><!-- StockDown --></label>
        <name>StockDown</name>
    </webLinks>
    <webLinks>
        <label><!-- StockDownCheck --></label>
        <name>StockDownCheck</name>
    </webLinks>
    <webLinks>
        <label><!-- StockUp --></label>
        <name>StockUp</name>
    </webLinks>
    <webLinks>
        <label><!-- StockUpCheck --></label>
        <name>StockUpCheck</name>
    </webLinks>
    <webLinks>
        <label><!-- Submit --></label>
        <name>Submit</name>
    </webLinks>
    <webLinks>
        <label><!-- cancelLoanerApplication --></label>
        <name>cancelLoanerApplication</name>
    </webLinks>
    <webLinks>
        <label><!-- installConfirm --></label>
        <name>installConfirm</name>
    </webLinks>
    <webLinks>
        <label><!-- invoicePDF --></label>
        <name>invoicePDF</name>
    </webLinks>
    <webLinks>
        <label><!-- loanIndication --></label>
        <name>loanIndication</name>
    </webLinks>
    <webLinks>
        <label><!-- loaner_Rental_Order --></label>
        <name>loaner_Rental_Order</name>
    </webLinks>
    <webLinks>
        <label><!-- sendBackAll --></label>
        <name>sendBackAll</name>
    </webLinks>
    <webLinks>
        <label><!-- sendOutAll --></label>
        <name>sendOutAll</name>
    </webLinks>
    <webLinks>
        <label><!-- splitLoanerApplication --></label>
        <name>splitLoanerApplication</name>
    </webLinks>
</CustomObjectTranslation>