binxie
2024-01-18 22bd41f13147fce1df6ff35b592720c9cb387de9
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
<?xml version="1.0" encoding="UTF-8"?>
<Workflow xmlns="http://soap.sforce.com/2006/04/metadata">
    <alerts>
        <fullName>AgencyProblemAssetEmal</fullName>
        <description>办事处问题设备回库</description>
        <protected>false</protected>
        <recipients>
            <recipient>xueyan_lv@olympus.com.cn</recipient>
            <type>user</type>
        </recipients>
        <senderType>CurrentUser</senderType>
        <template>Loaner_function/AgencyProblemAssetEmal</template>
    </alerts>
    <alerts>
        <fullName>Asset_delete_request</fullName>
        <description>保有设备删除申请邮件</description>
        <protected>false</protected>
        <recipients>
            <recipient>ling_zhu@olympus.com.cn</recipient>
            <type>user</type>
        </recipients>
        <senderType>CurrentUser</senderType>
        <template>Olympus_OCM/Delete_manual_asset_request</template>
    </alerts>
    <alerts>
        <fullName>RentalCountError</fullName>
        <description>已分配数或已借出数异常</description>
        <protected>false</protected>
        <recipients>
            <recipient>xueyan_lv@olympus.com.cn</recipient>
            <type>user</type>
        </recipients>
        <senderType>CurrentUser</senderType>
        <template>Loaner_function/RentalCountError</template>
    </alerts>
    <fieldUpdates>
        <fullName>ActionFieldUpdate0501</fullName>
        <field>Guarantee_period_year__c</field>
        <name>保修年限更新</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Null</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Asser_Discard_To_Use</fullName>
        <field>Status</field>
        <literalValue>使用中</literalValue>
        <name>待报废变更为使用中</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>AssetAge</fullName>
        <field>CurrentAge_Asset__c</field>
        <formula>Asset_Age__c</formula>
        <name>当期设备年龄</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>AssetInstallDateNotNull</fullName>
        <field>Status</field>
        <literalValue>使用中</literalValue>
        <name>有安装日,更新状态到[使用中]</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>AssetMarkUpdateAuto</fullName>
        <field>AssetMark__c</field>
        <formula>IF (Product2.RecordTypeId == &apos;01210000000aMAE&apos;,
    &apos;竞品主机&apos;,
    IF (Product2.RecordTypeId == &apos;01210000000aMAD&apos;,
        &apos;竞品耗材&apos;,
        IF (Product2.Serial_Lot_No__c == &apos;S/N tracing&apos;,
            &apos;主机&apos;,
            &apos;耗材&apos;
        )
    )
)</formula>
        <name>AssetMarkUpdateAuto</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>AssetName_Set_ProductName</fullName>
        <field>Name</field>
        <formula>IF(Isblank(Product2Id), Name, Product2.Name)</formula>
        <name>AssetName=ProductName</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>AssetOwnerUpdate_dealer</fullName>
        <field>Asset_Owner__c</field>
        <literalValue>经销商资产</literalValue>
        <name>资产所属更新(经销商资产)</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>AssetOwnerUpdate_hospital</fullName>
        <field>Asset_Owner__c</field>
        <literalValue>病院資産</literalValue>
        <name>资产所属更新(医院资产)</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>AssetOwnerUpdate_olympus</fullName>
        <field>Asset_Owner__c</field>
        <literalValue>Olympus</literalValue>
        <name>资产所属更新(奥林巴斯)</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Asset_Discard_Quantity</fullName>
        <field>Quantity</field>
        <formula>0</formula>
        <name>废弃时数量更新为0</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Asset_Hospital_Manage_Number_Change</fullName>
        <field>Hospital_Manage_Number_Change_Date__c</field>
        <formula>TODAY()</formula>
        <name>納入機器病院管理番号変更</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Asset_Status_Tobediscard</fullName>
        <field>Status</field>
        <literalValue>待报废</literalValue>
        <name>状态变更为待报废</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>true</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Asset_Tobe_Discard_Quantity</fullName>
        <field>Abandoned_Inventory__c</field>
        <name>废弃时(丢失/盘亏)更新为空</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Null</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Asset_Tobe_Discard_Quantity2</fullName>
        <field>Abandoned_RealThing__c</field>
        <name>废弃时(实物)更新为空</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Null</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Asset_Year_as_Text</fullName>
        <description>LJPH-C3NBDT
公式拷文本,实际返回日期</description>
        <field>Asset_Year_Txt__c</field>
        <formula>Asset_Year__c</formula>
        <name>设备日期公式拷文本</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>BSSCategoryTextCopy</fullName>
        <field>BSSCategory_Text__c</field>
        <formula>BSSCategory__c</formula>
        <name>BSSCategoryTextCopy</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>BrandNameTextCopy</fullName>
        <field>Brand_Name_Text__c</field>
        <formula>Brand_Name__c</formula>
        <name>BrandNameTextCopy</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Busy_Date</fullName>
        <field>Status_Busy_Date__c</field>
        <formula>TODAY()</formula>
        <name>使用中登録日</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Category2TextCopy</fullName>
        <field>Category2_Text__c</field>
        <formula>Category2__c</formula>
        <name>Category2TextCopy</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Category3TextCopy</fullName>
        <field>Category3_Text__c</field>
        <formula>Category3__c</formula>
        <name>Category3TextCopy</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Category4TextCopy</fullName>
        <field>Category4_Text__c</field>
        <formula>Category4__c</formula>
        <name>Category4TextCopy</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Category5TextCopy</fullName>
        <field>Category5_Text__c</field>
        <formula>Category5__c</formula>
        <name>Category5TextCopy</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>ConsumableSLMark_up</fullName>
        <field>AssetMark__c</field>
        <formula>&apos;耗材&apos;</formula>
        <name>追溯耗材Mark更新</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>CostcenterUpdate</fullName>
        <field>Internal_cost_center_text__c</field>
        <formula>Internal_cost_center_formula__c</formula>
        <name>成本中心更新编码Update</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Costcenter_select_update</fullName>
        <field>Internal_cost_center_text__c</field>
        <formula>text(Internal_cost_center__c)</formula>
        <name>成本中心更新选项Update</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>CurrentAge_Asset</fullName>
        <field>CurrentAge_Asset__c</field>
        <formula>IF(ISBLANK(CurrentTarget_Asset__c),null,Asset_Age__c)</formula>
        <name>当期设备年龄</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>CurrentSOMStatus_1H</fullName>
        <field>CurrentSOM_Status_1H__c</field>
        <formula>SOM_Status_1H__c</formula>
        <name>当期1H期末SOM状态</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>CurrentSOM_1H</fullName>
        <field>CurrentSOM_Status_1H__c</field>
        <formula>IF(OR(month(TODAY())&lt;=3, month(TODAY())&gt;=10),null,SOM_Status_1H__c)</formula>
        <name>当期1H期末SOM状态</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>CurrentSOM_2H</fullName>
        <field>CurrentSOM_Status_2H__c</field>
        <formula>IF(OR(month(TODAY())&lt;=3, month(TODAY())&gt;=10),SOM_Status_2H__c,null)</formula>
        <name>当期2H期末SOM状态</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>CurrentSOM_Status_1H</fullName>
        <field>CurrentSOM_Status_1H__c</field>
        <formula>IF(OR(month(TODAY())&lt;=3, month(TODAY())&gt;=10),null,SOM_Status_1H__c)</formula>
        <name>当期1H期末SOM状态</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>CurrentSOM_Status_2H</fullName>
        <field>CurrentSOM_Status_2H__c</field>
        <formula>IF(OR(month(TODAY())&lt;=3, month(TODAY())&gt;=10),SOM_Status_2H__c,null)</formula>
        <name>当期2H期末SOM状态</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>CurrentTarget_Asset</fullName>
        <description>如果【既有设备标识(文本)】是空,且【覆盖设备的可选对象标识】有值时,把【覆盖设备的可选对象标识】的值更新到【当期覆盖设备的可选对象】</description>
        <field>CurrentTarget_Asset__c</field>
        <formula>IF(ISBLANK(Existing_Asset__c)&amp;&amp;! ISBLANK(Target_Asset_Flag__c),Target_Asset_Flag__c,CurrentTarget_Asset__c)</formula>
        <name>当期覆盖设备的可选对象</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>DEL_FALSE</fullName>
        <field>Delete_Flag__c</field>
        <literalValue>0</literalValue>
        <name>0.退货转备品DEL置FALSE</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>DEL_TRUE</fullName>
        <field>Delete_Flag__c</field>
        <literalValue>1</literalValue>
        <name>0.备品再退货转DEL置TRUE</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>DeliveryDateAuto</fullName>
        <description>当保有设备信息来源为“手动输入”时,创建时自动将“出货日”赋值为1900/01/01,不要覆盖以后手工修改的值。</description>
        <field>Posting_Date__c</field>
        <formula>DATE(1900,01,01)</formula>
        <name>出货日自动赋值</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Discard_Quantity_ModifyReason</fullName>
        <field>ChangeQuantityReason__c</field>
        <literalValue>废弃</literalValue>
        <name>废弃时数量修改理由更新为废弃</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Equipment_Last_confirmed_day</fullName>
        <field>Equipment_Last_checking_day__c</field>
        <formula>today()</formula>
        <name>更新设备最后确认日</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Extend_Gurantee_DateTo_toText</fullName>
        <field>Extend_Gurantee_DateTo_Text__c</field>
        <formula>Extend_Gurantee_DateTo__c</formula>
        <name>文本化多年保修期至</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>FY23_Asset_Age</fullName>
        <field>FY23_Asset_Age__c</field>
        <formula>IF(IF_Coverage_Target_Asset_FF__c==3 &amp;&amp; ISBLANK(FY23_Asset_Age__c),0,FY23_Asset_Age__c)</formula>
        <name>FY23设备年龄</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>GuaranteePeriod</fullName>
        <field>GuaranteePeriod__c</field>
        <formula>guarantee_period__c</formula>
        <name>备份保修天数</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Guarantee_period_UP</fullName>
        <field>Guarantee_period_for_products__c</field>
        <formula>Guarantee_period_formula__c</formula>
        <name>新逻辑保修期限转文本</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Guarantee_periodequalPosting_Date</fullName>
        <field>Guarantee_period_for_products__c</field>
        <formula>Posting_Date__c</formula>
        <name>保修期限=发货日</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Gurantee_End_day_as_text</fullName>
        <description>距多年保修结束日公式拷文本</description>
        <field>Gurantee_End_day1__c</field>
        <formula>Gurantee_End_day__c</formula>
        <name>距多年保修结束日公式拷文本</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>HPID_copy_as_text</fullName>
        <field>HP_ID_Text__c</field>
        <formula>HP_Id__c</formula>
        <name>HPID文本化</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>IF_Coverage_Target_Asset</fullName>
        <field>IF_Coverage_Target_Asset__c</field>
        <formula>IF(IF_Coverage_Target_Asset__c==&apos;0&apos;|| ISBLANK(IF_Coverage_Target_Asset__c), TEXT(IF_Coverage_Target_Asset_FF__c ),IF_Coverage_Target_Asset__c)</formula>
        <name>覆盖设备的可选对象</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Inchage_dept_from_select</fullName>
        <field>Internal_demo_incharge_demo_text__c</field>
        <formula>text(Internal_demo_incharge_demo__c)</formula>
        <name>更新备品资产管理负责本部选项</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Indistinctness_Date</fullName>
        <field>Indistinctness_Date__c</field>
        <formula>TODAY()</formula>
        <name>不明登録日</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Input_past_2nd_ins</fullName>
        <field>X2_second_past_inspection__c</field>
        <formula>PRIORVALUE( Final_Examination_Date__c )</formula>
        <name>设定-2次前点检日</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>true</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>InstallDateequalPosting_Date</fullName>
        <field>InstallDate</field>
        <formula>Posting_Date__c</formula>
        <name>安装日=发货日</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Install_Account_Code_Setting</fullName>
        <field>Install_Account_Code__c</field>
        <formula>Account.Management_Code__c</formula>
        <name>納品確認書の診療科コード_セット</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Install_Account_Name_Setting</fullName>
        <field>Install_Account_Name__c</field>
        <formula>Account.Name</formula>
        <name>納品確認書の診療科名称_セット</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Install_Hospital_Name_Setting</fullName>
        <field>Install_Hospital_Name__c</field>
        <formula>Hospital__r.Name</formula>
        <name>納品確認書の病院名称_セット</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Installation_Last_Chack_Date</fullName>
        <field>Final_Examination_Date__c</field>
        <formula>TODAY()</formula>
        <name>納入機器-最終点検日設定</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Instration_HP_code</fullName>
        <field>Install_Hospital_code__c</field>
        <formula>Hospital__r.Management_Code__c</formula>
        <name>納品確認書の病院コード_セット</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Marketing_Input_Date</fullName>
        <field>Marketing_Input_Date__c</field>
        <formula>Today()</formula>
        <name>市场对应录入时间</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Product_Code_Plus_Serial_No</fullName>
        <field>Product_Serial_No__c</field>
        <formula>IF(ISBLANK(Product2Id), Id, Product2.ProductCode) + &apos;:&apos;
+ SerialNumber
+ IF(Delete_Flag__c, &apos;:&apos; + Account.Management_Code__c, &apos;&apos;)</formula>
        <name>Product_Code+Serial_No</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Product_Code_Plus_Serial_No_Clear</fullName>
        <field>Product_Serial_No__c</field>
        <name>Product_Code+Serial_No Clear</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Null</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Product_Code_Serial_No_Department</fullName>
        <field>Product_Serial_No__c</field>
        <formula>IF(ISBLANK(Product2Id), Id, Product2.ProductCode) + &apos;:&apos;
+ SerialNumber + &apos;:&apos;
+ LPAD(text(Salesdepartment__c),FIND(&apos;.&apos;,text(Salesdepartment__c))-1)
+ IF(Delete_Flag__c, &apos;:&apos; + Account.Management_Code__c, &apos;&apos;)</formula>
        <name>Product_Code+Serial_No+Salesdepartment</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Product_Code_Serial_No_UnkownSerial</fullName>
        <field>Product_Serial_No__c</field>
        <formula>IF(ISBLANK(Product2Id), Id, Product2.ProductCode) + &apos;:&apos;
+  serial_past__c 
+ IF(Delete_Flag__c, &apos;:&apos; + Account.Management_Code__c, &apos;&apos;)</formula>
        <name>Product_Code+Serial_No UnkownSerial</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Set_CompanyCodeOfEquipment_BJ</fullName>
        <field>CompanyOfEquipment__c</field>
        <literalValue>北京</literalValue>
        <name>设定备品所属公司(北京)</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Set_CompanyCodeOfEquipment_GZ</fullName>
        <field>CompanyOfEquipment__c</field>
        <literalValue>广州</literalValue>
        <name>设定备品所属公司(广州)</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Set_CompanyCodeOfEquipment_SH</fullName>
        <field>CompanyOfEquipment__c</field>
        <literalValue>上海</literalValue>
        <name>设定备品所属公司(上海)</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Set_CompanyCodeOfEquipment_SY</fullName>
        <field>CompanyOfEquipment__c</field>
        <literalValue>沈阳</literalValue>
        <name>设定备品所属公司(沈阳)</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Literal</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Tobe_Discard_Clear</fullName>
        <field>Tobe_Discarded_Date__c</field>
        <name>待报废登录日Clear</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Null</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Unused_Date</fullName>
        <field>Unused_Date__c</field>
        <formula>TODAY()</formula>
        <name>未使用登録日</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>UpdateSerialNumber</fullName>
        <description>シリアル番号不明の場合、「シリアル番号」に、自動採番した値を入れる。</description>
        <field>SerialNumber</field>
        <formula>serial_past__c</formula>
        <name>シリアル番号更新</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Update_Discard_Date</fullName>
        <field>Discarded_Date__c</field>
        <formula>TODAY()</formula>
        <name>廃棄日登録</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Update_TobeDiscard_Date</fullName>
        <field>Tobe_Discarded_Date__c</field>
        <formula>TODAY()</formula>
        <name>待报废日登录</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Update_call_back_check_day</fullName>
        <field>CIC_call_back_confirm_day__c</field>
        <formula>today()</formula>
        <name>更新安装状态确认日(CIC)</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <fieldUpdates>
        <fullName>Update_inchage_dept</fullName>
        <field>Internal_demo_incharge_demo_text__c</field>
        <formula>Internal_cost_center_formula__c</formula>
        <name>备品资产管理负责本部更新</name>
        <notifyAssignee>false</notifyAssignee>
        <operation>Formula</operation>
        <protected>false</protected>
        <reevaluateOnChange>false</reevaluateOnChange>
    </fieldUpdates>
    <rules>
        <fullName>AssetMarkUpdate</fullName>
        <actions>
            <name>AssetMarkUpdateAuto</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <criteriaItems>
            <field>Asset.IF_Information_From__c</field>
            <operation>equals</operation>
            <value>假</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.AssetMark__c</field>
            <operation>equals</operation>
        </criteriaItems>
        <triggerType>onCreateOnly</triggerType>
    </rules>
    <rules>
        <fullName>AssetName%3DProductName</fullName>
        <actions>
            <name>AssetName_Set_ProductName</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <formula>OR(Name = &quot;*&quot;, ISCHANGED(Product2Id))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>AssetTextCopy</fullName>
        <actions>
            <name>BSSCategoryTextCopy</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>BrandNameTextCopy</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Category2TextCopy</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Category3TextCopy</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Category4TextCopy</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Category5TextCopy</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>OR(ISNEW(), ISCHANGED(Product2Id))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>CIC安装状态确认日</fullName>
        <actions>
            <name>Update_call_back_check_day</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <criteriaItems>
            <field>Asset.CIC_call_back_check__c</field>
            <operation>equals</operation>
            <value>真</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.CIC_call_back_confirm_day__c</field>
            <operation>equals</operation>
        </criteriaItems>
        <triggerType>onCreateOrTriggeringUpdate</triggerType>
    </rules>
    <rules>
        <fullName>Equipment_Last_confirmed_day</fullName>
        <actions>
            <name>Equipment_Last_confirmed_day</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>OR(ISCHANGED(Status), 
ISCHANGED(Installation_Site__c), 
ISCHANGED(Final_Examination_Date__c), 
ISCHANGED(Hospital_Manage_Number__c))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>KPI指标赋值</fullName>
        <actions>
            <name>CurrentAge_Asset</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>CurrentSOM_Status_1H</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>CurrentSOM_Status_2H</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>CurrentTarget_Asset</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <formula>ISCHANGED(Posting_Date__c)|| ISNEW()</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>Product_Code%2BSerial_No</fullName>
        <actions>
            <name>Product_Code_Plus_Serial_No</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <booleanFilter>1 AND NOT(2 AND 3 AND 4 AND 5)</booleanFilter>
        <criteriaItems>
            <field>Asset.IsCompetitorProduct</field>
            <operation>equals</operation>
            <value>假</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.Manage_type__c</field>
            <operation>equals</operation>
            <value>数量管理</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.AssetMark__c</field>
            <operation>equals</operation>
            <value>耗材</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.Loaner_accsessary__c</field>
            <operation>equals</operation>
            <value>真</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.unknow_serial_NO_product__c</field>
            <operation>equals</operation>
            <value>假</value>
        </criteriaItems>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>Product_Code%2BSerial_No Clear</fullName>
        <actions>
            <name>Product_Code_Plus_Serial_No_Clear</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <criteriaItems>
            <field>Asset.IsCompetitorProduct</field>
            <operation>equals</operation>
            <value>真</value>
        </criteriaItems>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>Product_Code%2BSerial_No UnkownSerial</fullName>
        <actions>
            <name>Product_Code_Serial_No_UnkownSerial</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>UpdateSerialNumber</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <criteriaItems>
            <field>Asset.unknow_serial_NO_product__c</field>
            <operation>equals</operation>
            <value>真</value>
        </criteriaItems>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>Product_Code%2BSerial_No%2BSalesdepartment</fullName>
        <actions>
            <name>Product_Code_Serial_No_Department</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <booleanFilter>1 AND 2 AND 3 AND 4 AND 5</booleanFilter>
        <criteriaItems>
            <field>Asset.IsCompetitorProduct</field>
            <operation>equals</operation>
            <value>假</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.Manage_type__c</field>
            <operation>equals</operation>
            <value>数量管理</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.AssetMark__c</field>
            <operation>equals</operation>
            <value>耗材</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.Loaner_accsessary__c</field>
            <operation>equals</operation>
            <value>真</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.unknow_serial_NO_product__c</field>
            <operation>equals</operation>
            <value>假</value>
        </criteriaItems>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>保修天数工作流</fullName>
        <actions>
            <name>GuaranteePeriod</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>OR(ISCHANGED(Guarantee_period_for_products__c),ISCHANGED(InstallDate__c),ISCHANGED(ChangeWarrantyStartDate__c),ISNEW())</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>保有设备HPID文本化</fullName>
        <actions>
            <name>Asset_Year_as_Text</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Gurantee_End_day_as_text</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>HPID_copy_as_text</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>20210927 LJPH-C3NBDT
添加公式拷文本Asset_Year__c字段更新</description>
        <formula>True</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>出货日自动赋值</fullName>
        <actions>
            <name>DeliveryDateAuto</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <criteriaItems>
            <field>Asset.Information_From__c</field>
            <operation>equals</operation>
            <value>手动输入</value>
        </criteriaItems>
        <description>当保有设备信息来源为“手动输入”时,创建时自动将“出货日”赋值为1900/01/01,不要覆盖以后手工修改的值。</description>
        <triggerType>onCreateOnly</triggerType>
    </rules>
    <rules>
        <fullName>分配数或已借出数异常</fullName>
        <actions>
            <name>RentalCountError</name>
            <type>Alert</type>
        </actions>
        <active>false</active>
        <description>保有设备的分配数和已借出数与汇总明细计数的值做比较,不一致时发邮件</description>
        <formula>OR(Rental_Count__c != Rental_Count_Sys__c, Out_of_wh__c!= Out_of_wh_Sys__c) &amp;&amp; AssetManageConfirm__c  &amp;&amp; Account_Management_Code__c != $Label.Account_Asset_FJZ &amp;&amp; NOT(CONTAINS(&apos;02i100000048Tx0,02i100000048U1z,02i10000004HRAO,02i100000048Tvk,02i100000048U7Z,02i100000048Tz8,02i100000048Tzl,02i100000048U1W,02i100000048Tvb,02i10000004HRAT,02i10000004HRAY,02i100000048U68&apos;,LEFT(Id,15)) )</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>删除手动登录错误设备</fullName>
        <actions>
            <name>Asset_delete_request</name>
            <type>Alert</type>
        </actions>
        <active>true</active>
        <criteriaItems>
            <field>Asset.Request_manager_deleter_manaual_input__c</field>
            <operation>equals</operation>
            <value>真</value>
        </criteriaItems>
        <triggerType>onCreateOrTriggeringUpdate</triggerType>
    </rules>
    <rules>
        <fullName>办事处问题设备回库通知</fullName>
        <actions>
            <name>AgencyProblemAssetEmal</name>
            <type>Alert</type>
        </actions>
        <active>false</active>
        <description>一部分调拨后设备有问题,回库后需要立即修改
add lxy 20221104  回库后跟UK-21-4041997 建立Link</description>
        <formula>CONTAINS(&apos;02i10000003awbi&apos;, LEFT(Id,15))
&amp;&amp; ISCHANGED(Rental_Count__c)</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>备品再退货转DEL置TRUE</fullName>
        <actions>
            <name>DEL_TRUE</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>AccountId = &apos;00110000015Bx0h&apos;  &amp;&amp;  RecordTypeId = &apos;01210000000kOPM&apos; &amp;&amp;  Delete_Flag__c= FALSE</formula>
        <triggerType>onCreateOrTriggeringUpdate</triggerType>
    </rules>
    <rules>
        <fullName>市场对应录入时间自动录入</fullName>
        <actions>
            <name>Marketing_Input_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>当【市场对应产品分类】变化时,记录此时的【市场对应录入时间】</description>
        <formula>AND(TEXT(Market_Product_Category__c)!=null,ISCHANGED( Market_Product_Category__c))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>待报废变更为使用中</fullName>
        <actions>
            <name>Asser_Discard_To_Use</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Tobe_Discard_Clear</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <formula>RecordTypeId = &quot;01210000000kOPR&quot; &amp;&amp; TEXT(Manage_type__c) =&quot;个体管理&quot; &amp;&amp; Quantity &gt; 0 &amp;&amp; TEXT(Status) = &apos;待报废&apos; &amp;&amp; (if(if(isnull(Abandoned_RealThing__c),0,Abandoned_RealThing__c) + if(isnull(Abandoned_Inventory__c),0,Abandoned_Inventory__c) == 0,true,false)) &amp;&amp;  Account.Management_Code__c != $Label.Account_Asset_FJZ</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>待报废日登录</fullName>
        <actions>
            <name>Asset_Status_Tobediscard</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Update_TobeDiscard_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>And(ISCHANGED(Status), (ISPICKVAL (Status,&quot;待报废&quot;)=True))</description>
        <formula>And(ISCHANGED(Fixture_Status__c),Fixture_Status__c  &lt;&gt;  &quot;废弃&quot;,OR(Abandoned_RealThing__c &gt; 0,Abandoned_Inventory__c &gt; 0),TEXT(Manage_type__c) =&quot;个体管理&quot;)</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>成本中心更新编码Update</fullName>
        <actions>
            <name>Update_inchage_dept</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>ISCHANGED(Internal_cost_center_cd__c)</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>成本中心更新选项Update</fullName>
        <actions>
            <name>Costcenter_select_update</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>ISCHANGED(Internal_cost_center__c )</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>手动创建的耗材信息修改</fullName>
        <actions>
            <name>Guarantee_periodequalPosting_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>InstallDateequalPosting_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>1.保有设备来源=手动输入,保有设备标记=耗材时,耗材保有设备的安装日=发货日;
2.保有设备来源=手动输入,保有设备标记=耗材时,耗材保有设备的保修期限=安装日or发货日,保修天数=0。</description>
        <formula>OR(RecordTypeId = &apos;01210000000kOPM&apos;  &amp;&amp;  Information_From__c = &apos;手动输入&apos; &amp;&amp; AssetMark__c = &apos;耗材&apos;)</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>文本化 多年保修期至</fullName>
        <actions>
            <name>Extend_Gurantee_DateTo_toText</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>true</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>新逻辑保修期限对应</fullName>
        <actions>
            <name>Guarantee_period_UP</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>New_logic_data__c</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>更新-2次前点检日</fullName>
        <actions>
            <name>Input_past_2nd_ins</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>ISCHANGED( Final_Examination_Date__c )</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>更新保修年限为空</fullName>
        <actions>
            <name>ActionFieldUpdate0501</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <criteriaItems>
            <field>Asset.New_logic_data__c</field>
            <operation>equals</operation>
            <value>假</value>
        </criteriaItems>
        <criteriaItems>
            <field>Asset.Guarantee_period_year__c</field>
            <operation>equals</operation>
            <value>1,2,3,4,5</value>
        </criteriaItems>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>更新备品资产管理负责本部选项</fullName>
        <actions>
            <name>Inchage_dept_from_select</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>ISCHANGED(Internal_demo_incharge_demo__c)</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>有安装日%EF%BC%8C更新状态到%EF%BC%BB使用中%EF%BC%BD</fullName>
        <actions>
            <name>AssetInstallDateNotNull</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Busy_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <criteriaItems>
            <field>Asset.InstallDate</field>
            <operation>notEqual</operation>
        </criteriaItems>
        <triggerType>onCreateOrTriggeringUpdate</triggerType>
    </rules>
    <rules>
        <fullName>期末SOM状态赋值</fullName>
        <actions>
            <name>CurrentSOM_1H</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>CurrentSOM_2H</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <formula>ISCHANGED(CurrentContract_Start_Date__c)||ISCHANGED(CurrentContract_End_Date__c)||ISCHANGED(currentContract_Conclusion_Date__c)|| ISNEW()</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>病院管理番号変更日</fullName>
        <actions>
            <name>Asset_Hospital_Manage_Number_Change</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>病院管理番号が変更された日付</description>
        <formula>ISCHANGED( Hospital_Manage_Number__c )</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入商品-点検結果大修理</fullName>
        <actions>
            <name>Installation_ToDo_lRepair</name>
            <type>Task</type>
        </actions>
        <active>true</active>
        <formula>AND(ISCHANGED( Inspection_Result__c ) , ISPICKVAL( Inspection_Result__c , &quot;大修理&quot;))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入商品-点検結果小修理</fullName>
        <actions>
            <name>Installation_ToDo_sRepair</name>
            <type>Task</type>
        </actions>
        <active>true</active>
        <formula>AND(ISCHANGED( Inspection_Result__c ) , ISPICKVAL( Inspection_Result__c , &quot;小修理&quot;))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入商品-点検結果正常</fullName>
        <actions>
            <name>Installation_ToDo_Normal</name>
            <type>Task</type>
        </actions>
        <active>true</active>
        <formula>AND(ISCHANGED( Inspection_Result__c ) , ISPICKVAL( Inspection_Result__c , &quot;正常&quot;))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入商品状態変更%EF%BC%88不明%EF%BC%89</fullName>
        <actions>
            <name>Indistinctness_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>納入商品状態変更(不明)の日付登録</description>
        <formula>And(ISCHANGED(Status), (ISPICKVAL (Status,&quot;不明&quot;)=True))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入商品状態変更%EF%BC%88使用中%EF%BC%89</fullName>
        <actions>
            <name>Busy_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>納入商品状態変更(使用中)の日付登録</description>
        <formula>And(ISCHANGED(Status), (ISPICKVAL (Status,&quot;使用中&quot;)=True))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入商品状態変更%EF%BC%88废弃%EF%BC%89</fullName>
        <actions>
            <name>Update_Discard_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>納入商品状態変更(废弃)の日付登録</description>
        <formula>And(ISCHANGED(Status), (ISPICKVAL (Status,&quot;废弃&quot;)=True))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入商品状態変更%EF%BC%88廃棄%EF%BC%89</fullName>
        <actions>
            <name>Asset_Discard_Quantity</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Asset_Tobe_Discard_Quantity</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Asset_Tobe_Discard_Quantity2</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Discard_Quantity_ModifyReason</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Update_Discard_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>納入商品状態変更(廃棄)の日付登録</description>
        <formula>And(ISCHANGED(Status), (ISPICKVAL (Status,&quot;廃棄&quot;)=True))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入商品状態変更%EF%BC%88未使用%EF%BC%89</fullName>
        <actions>
            <name>Unused_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>納入商品状態変更(未使用)の日付登録</description>
        <formula>And(ISCHANGED(Status), (ISPICKVAL (Status,&quot;未使用&quot;)=True))</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納入機器-最終点検日</fullName>
        <actions>
            <name>Installation_Last_Chack_Date</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>ISCHANGED(  Inspection_Result__c )</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>納品確認書の診療科コード_セット</fullName>
        <actions>
            <name>Install_Account_Code_Setting</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Install_Account_Name_Setting</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Install_Hospital_Name_Setting</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>Instration_HP_code</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <formula>Not(Isblank(Product2Id)) &amp;&amp; IsCompetitorProduct == False &amp;&amp; Not(Isblank(InstallDate)) &amp;&amp; Isblank(Install_Account_Code__c)</formula>
        <triggerType>onCreateOrTriggeringUpdate</triggerType>
    </rules>
    <rules>
        <fullName>自动更新资产所属%28医院资产%29</fullName>
        <actions>
            <name>AssetOwnerUpdate_hospital</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <description>WLIG-BS9CL8 增加了 &amp;&amp; LEFT(AccountId,15) !=&apos;00110000015Bx0h&apos;</description>
        <formula>LEFT(RecordTypeID__c, 15) = &apos;01210000000kOPM&apos; &amp;&amp; Hospital__r.RecordTypeId = &apos;01210000000QemG&apos; &amp;&amp; LEFT(AccountId,15) !=&apos;00110000015Bx0h&apos;</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>自动更新资产所属%28奥林巴斯%29</fullName>
        <actions>
            <name>AssetOwnerUpdate_olympus</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <description>WLIG-BS9CL8 增加了 || LEFT(AccountId,15) =&apos;00110000015Bx0h&apos;</description>
        <formula>LEFT(RecordTypeID__c, 15) = &apos;01210000000kOPR&apos; || LEFT(AccountId,15) =&apos;00110000015Bx0h&apos;</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>自动更新资产所属%28经销商资产%29</fullName>
        <actions>
            <name>AssetOwnerUpdate_dealer</name>
            <type>FieldUpdate</type>
        </actions>
        <active>true</active>
        <formula>LEFT(RecordTypeID__c, 15)  = &apos;01210000000kOPM&apos;  &amp;&amp; Hospital__r.RecordTypeId = &apos;01210000000Qem1&apos;</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>覆盖设备的可选对象文本化</fullName>
        <actions>
            <name>FY23_Asset_Age</name>
            <type>FieldUpdate</type>
        </actions>
        <actions>
            <name>IF_Coverage_Target_Asset</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>20230209 覆盖设备的可选对象
添加公式拷文本IF_Coverage_Target_Asset__c字段更新</description>
        <formula>ISCHANGED(Posting_Date__c)|| ISNEW()</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>设定备品所属公司%EF%BC%88上海%EF%BC%89FromVBA</fullName>
        <actions>
            <name>Set_CompanyCodeOfEquipment_SH</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>(ISNEW() || ISCHANGED(CompanyCodeOfEquipment_txt__c)) &amp;&amp; CompanyCodeOfEquipment_txt__c = &quot;5112&quot;</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>设定备品所属公司%EF%BC%88北京%EF%BC%89FromVBA</fullName>
        <actions>
            <name>Set_CompanyCodeOfEquipment_BJ</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>(ISNEW() || ISCHANGED(CompanyCodeOfEquipment_txt__c)) &amp;&amp; CompanyCodeOfEquipment_txt__c = &quot;5111&quot;</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>设定备品所属公司%EF%BC%88广州%EF%BC%89FromVBA</fullName>
        <actions>
            <name>Set_CompanyCodeOfEquipment_GZ</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>(ISNEW() || ISCHANGED(CompanyCodeOfEquipment_txt__c)) &amp;&amp; CompanyCodeOfEquipment_txt__c = &quot;5113&quot;</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>设定备品所属公司%EF%BC%88沈阳%EF%BC%89FromVBA</fullName>
        <actions>
            <name>Set_CompanyCodeOfEquipment_SY</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>(ISNEW() || ISCHANGED(CompanyCodeOfEquipment_txt__c)) &amp;&amp; CompanyCodeOfEquipment_txt__c = &quot;5114&quot;</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>追溯设备耗材Mark更新</fullName>
        <actions>
            <name>ConsumableSLMark_up</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <formula>Information_From__c  = &apos;追溯系统&apos;  &amp;&amp;   ISBLANK(AssetMark__c)</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <rules>
        <fullName>退货转备品DEL置FALSE</fullName>
        <actions>
            <name>DEL_FALSE</name>
            <type>FieldUpdate</type>
        </actions>
        <active>false</active>
        <description>AccountId = &apos;0011000000VAiwz&apos;  &amp;&amp;  RecordTypeId = &apos;01210000000kOPR&apos; &amp;&amp;  Delete_Flag__c= TRUE</description>
        <formula>((ISCHANGED(RecordTypeId) &amp;&amp; RecordTypeId = &apos;01210000000kOPR&apos;) || 
(ISCHANGED(AccountId) &amp;&amp; AccountId = &apos;0011000000VAiwz&apos; ))
&amp;&amp;  Delete_Flag__c= TRUE</formula>
        <triggerType>onAllChanges</triggerType>
    </rules>
    <tasks>
        <fullName>Installation_ToDo_Normal</fullName>
        <assignedTo>olympus@proto.1</assignedTo>
        <assignedToType>user</assignedToType>
        <dueDateOffset>0</dueDateOffset>
        <notifyAssignee>false</notifyAssignee>
        <offsetFromField>Asset.Final_Examination_Date__c</offsetFromField>
        <priority>中</priority>
        <protected>false</protected>
        <status>完了</status>
        <subject>点検結果-正常</subject>
    </tasks>
    <tasks>
        <fullName>Installation_ToDo_lRepair</fullName>
        <assignedTo>olympus@proto.1</assignedTo>
        <assignedToType>user</assignedToType>
        <dueDateOffset>0</dueDateOffset>
        <notifyAssignee>false</notifyAssignee>
        <offsetFromField>Asset.Final_Examination_Date__c</offsetFromField>
        <priority>中</priority>
        <protected>false</protected>
        <status>完了</status>
        <subject>点検結果-要大修理</subject>
    </tasks>
    <tasks>
        <fullName>Installation_ToDo_sRepair</fullName>
        <assignedTo>olympus@proto.1</assignedTo>
        <assignedToType>user</assignedToType>
        <dueDateOffset>0</dueDateOffset>
        <notifyAssignee>false</notifyAssignee>
        <offsetFromField>Asset.Final_Examination_Date__c</offsetFromField>
        <priority>中</priority>
        <protected>false</protected>
        <status>完了</status>
        <subject>点検結果-要小修理</subject>
    </tasks>
</Workflow>