forked from Eric-Guo/pl-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms_COP.rb
922 lines (833 loc) · 36.3 KB
/
forms_COP.rb
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
# encoding: UTF-8
# file date 9/10/2012 by Eric
# DOC# 3755-02-00101 COP FVI Rework Form
#cop_rework_form_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_PRD', 'CopFviReworkForm',
# (cop_rework_form_fields.merge common_fields)
# DOC# 3755-02-11001 Production Log Sheet(Tray Ink mark)
tray_ink_mark_production_fields = {
:machine_no => :string,
:status_code => ["(N) Normal Operation","(OP) MC Open","(RM) Repaire M/C","(PM) PM","(CD) Change Device","(SC) Shift Change","(CI) Change Ink"],
:device_no => :string,
:program_id => :string,
:lot_no => :string,
:in_qty => :integer,
:out_qty => :integer,
:visual_inspection_recorder => :string,
:remark => :string,
:visual_inspection => :boolean,
:viscosity_test_1_3s => :boolean,
:peeling_test_by_qc => :boolean,
:solvents_test_by_qc => :boolean,
:printing_times => :integer,
}
tray_ink_mark_production_detail_fields = {
:items => ["position measurement x 位置测量 x", "position measurement y 位置测量 y"],
:data1 => :float,
:data2 => :float,
:data3 => :float,
:data4 => :float,
:data5 => :float,
}
generate_form 'COP_PRD', 'TrayInkMarkProduction',
(tray_ink_mark_production_fields.merge common_fields), tray_ink_mark_production_detail_fields
# DOC# 3755-02-11005 Cosmetic_Marking_Production_Log_Sheet_R1
cosmetic_marking_production_fields = {
:machine_no => :string,
:status_code => ['(N) Normal Operation','(OP) MC Open','(RM) Repaire M/C','(PM) PM','(CD) Change Device','(SC) Shift Change'],
:lot_no => :string,
:device_no => :string,
:in_qty => :integer,
:out_qty => :integer,
:visual_inspection_recorder => :string,
:remark => :string,
:visual_inspection => :boolean,
:peeling_test_by_qc => :boolean,
:solvents_test_by_qc => :boolean,
}
cosmetic_marking_production_detail_fields = {
:items => ["Position measurement_x 位置测量_x", "Position measurement_y位置测量_y", "Ink Thickness油墨厚度"],
:data1 => :float,
:data2 => :float,
:data3 => :float,
:data4 => :float,
:data5 => :float,
:data6 => :float,
}
generate_form 'COP_PRD', 'CosmeticMarkingProd',
(cosmetic_marking_production_fields.merge common_fields), cosmetic_marking_production_detail_fields
# DOC# 3755-02-12001 Production Log Sheet(Compound Black TOP)
compound_black_top_production_fields = {
:machine_no => :string,
:status_code => ['(N) Normal Operation','(OP) MC Open','(RM) Repaire M/C','(PM) PM','(CD) Change Device','(SC) Shift Change','(CI) Change Ink'],
:lot_no => :string,
:device_no => :string,
:in_qty => :integer,
:out_qty => :integer,
:rework_qty => :integer,
:rework_units_inspection_result => :string,
:visual_inspection_recorder => :string,
:remark => :string,
:silk_print_position => :boolean,
:visual_inspection => :boolean,
:permanence_test_by_qc => :boolean,
}
generate_form 'COP_PRD', 'CompoundBlackTopProd',
(compound_black_top_production_fields.merge common_fields)
# DOC# 3755-02-20004 Production Log Sheet (welding)
welding_production_fields = {
:machine_no => :string,
:status_code => ['(Prod) Production','(W/M) Waiting Material','(R/M) Repaire M/C','(P/M) PM','(M/P) M/C Power On','(Eng) Engineering','(L/P) Lid PN Change','(P/A)Parameter Adjustment','(S/C)Shift Change'],
:product_type => :string,
:device => :string,
:lot_no => :string,
:in_qty => :integer,
:out_qty => :integer,
:reject_code => :string,
:shaking_test_record => :string,
:remark => :string,
:frequency => :string,
:visual_inspection => :boolean,
:card_dimension => :boolean,
:switch_force_pull_force => :boolean,
:shaking_test => :boolean,
}
welding_production_detail_fields = {
:items => ['Air pressure 气压','Energy Force 焊接能量','Amplitude % 振幅','Velocity 焊头下降速度','Hold Time 保持时间','Trig Force 触发压力','上盖P/N(模号&穴号)','下盖P/N(模号&穴号)'],
:result => :string,
}
generate_form 'COP_PRD', 'WeldingProduction',
(welding_production_fields.merge common_fields), welding_production_detail_fields
# DOC# 3755-02-50004 Production Log Sheet ( card assembly laser mark)
card_assembly_laser_mark_production_fields = {
:machine_no => :string,
:status_code => ['(Prod) Production','(CD) Change Device','(SC) Shift Change','(RM) Repaire M/C','(PM) PM','(MD) Machine Down','(Eng) Engineering','(WM) Wait Material'],
:lot_no => :string,
:in_qty => :integer,
:out_qty => :integer,
:visual_inspection_recorder => :string,
:remark => :string,
:frequency => :string,
:device_no => :string,
:product_type => :string,
:visual_inspection => :boolean,
:laser_power => :boolean,
}
card_assembly_laser_mark_production_detail_fields = {
:items => ['buyoff position measurement_x', 'buyoff position measurement_y'],
:data1 => :float,
:data2 => :float,
:data3 => :float,
:data4 => :float,
:data5 => :float,
:data6 => :float,
:data7 => :float,
:data8 => :float,
}
generate_form 'COP_PRD', 'CardAssyLaserMarkPrd',
(card_assembly_laser_mark_production_fields.merge common_fields), card_assembly_laser_mark_production_detail_fields
# DOC# 3755-02-60004 Production Log Sheet (SD label)
sd_label_production_fields = {
:machine_no => :string,
:status_code => ['(S/U) MC Set Up','(Prod) Production','(C/D) Change Device','(WM) Wait Material','(RM) Repaire M/C','(PM) PM','(Eng) Engineering','(M/D) Machine Done'],
:lot_no => :string,
:in_qty => :integer,
:out_qty => :integer,
:visual_inspection_recorder => :string,
:remark => :string,
:visual_inspection => :boolean,
:label_position => :boolean,
:confirm_by_qc => :boolean,
}
generate_form 'COP_PRD', 'SdLabelProduction',
(sd_label_production_fields.merge common_fields)
# DOC# 3755-02-60011 Prodcution Log Sheet ( Card FVI)
#card_fvi_production_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_PRD', 'CardFviProduction',
# (card_fvi_production_fields.merge common_fields)
# DOC# 3755-02-60029 Production Log Sheet (Mask Label)
mask_label_production_fields = {
:machine_no => :string,
:status_code => ['(S/U) MC Set Up','(Prod) Production','(C/D) Change Device','(WM) Wait Material','(RM) Repaire M/C','(PM) PM','(Eng) Engineering','(M/D) Machine Done'],
:lot_no => :string,
:in_qty => :integer,
:out_qty => :integer,
:visual_inspection_recorder => :string,
:remark => :string,
:frequency => :string,
:mask_label_orientation => :boolean,
:mask_label_permanent => :boolean,
:confirm_by_qc => :boolean,
}
mask_label_production_detail_fields = {
:items => ["mask Label position a 标签位置 a", "mask Label position b 标签位置 b", "mask Label thickness c(mm) 标签厚度 c(mm)"],
:data1 => :float,
:data2 => :float,
:data3 => :float,
:data4 => :float,
:data5 => :float,
:data6 => :float,
}
generate_form 'COP_PRD', 'MaskLabelProduction',
(mask_label_production_fields.merge common_fields), mask_label_production_detail_fields
# DOC# 3755-02-60041 FVI Production log sheet
#fvi_production_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_PRD', 'FviProduction',
# (fvi_production_fields.merge common_fields)
# DOC# 3755-02-70012 Prodcution Log Sheet (Packing)
#packing_production_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_PRD', 'PackingProduction',
# (packing_production_fields.merge common_fields)
# DOC# 3755-02-70026 Production Log Sheet(Jewel case packing)
#jewel_case_packing_production_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_PRD', 'JewelCasePackingProduction',
# (jewel_case_packing_production_fields.merge common_fields)
# DOC# 3755-02-90011 Production Log Sheet ( Ink Masking)
ink_masking_production_fields = {
:machine_no => :string,
:status_code => ['(N) Normal Operation','(OP) MC Set Up','(RM) Repaire M/C','(PM) PM','(CD) Change Device','(WM) Wait Material'],
:lot_no => :string,
:in_qty => :integer,
:out_qty => :integer,
:visual_inspection_recorder => :string,
:remark => :string,
:frequency => :string,
:ink_mask_permanent => :boolean,
:confirm_by_qc => :boolean,
}
ink_masking_production_detail_fields = {
:items => ["ink mask position_a标签位置_a", "ink mask position_b标签位置_b", "ink mask position_c标签位置_c", "ink mask position_d标签位置_d","ink mask thickness_e标签厚度_e"],
:data_1 => :float,
:data_2 => :float,
:data_3 => :float,
:data_4 => :float,
:data_5 => :float,
:data_6 => :float,
}
generate_form 'COP_PRD', 'InkMaskingProd',
(ink_masking_production_fields.merge common_fields), ink_masking_production_detail_fields
# DOC# 3755-02-60016 Production Log Sheet (Bake)
bake_production_fields = {
:machine_no => :string,
:status_code => ['(S/U) MC Set Up','(Prod) Production','(C/D) Change Device','(WM) Wait Material','(RM) Repaire M/C','(PM) PM','(Eng) Engineering','(M/D) Machine Done'],
:lot_no => :string,
:out_qty => :integer,
:bake_program => :string,
:temp => :string,
:profile_check => :boolean,
:remarks => :string,
}
generate_form 'COP_PRD', 'BakeProduction',
(bake_production_fields.merge common_fields)
# DOC# 3751-02-10011 Auto_Welding_Equipment_Half-Yearly_PM
#auto_welding_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AutoWeldingEquipmentHalfYearlyPm',
# (auto_welding_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30036 Auto_Welding_Equipment_Weekly & Monthly_PM
#card_assembly_auto_welding_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyAutoWeldingEquipmentWeeklyAndMonthlyPm',
# (card_assembly_auto_welding_equipment_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30060 Auto_Welder_Machine_Shiftly_Check_Record
#auto_welding_equipment_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AutoWeldingEquipmentShiftlyCheck',
# (auto_welding_equipment_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30021 Manual Welding Equipment Half-Yearly PM
#manual_auto_welding_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualAutoWeldingEquipmentHalfYearlyPm',
# (manual_auto_welding_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30037 Manual Welding Equipment Monthly PM
#manual_welding_equipment_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualWeldingEquipmentMonthlyPm',
# (manual_welding_equipment_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30059 Manual Welding Machine Shiftly Check Record
#manual_welding_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualWeldingMachineShiftlyCheck',
# (manual_welding_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30119 De-Lid_Equipment_Month & half-Yearly_PM_Record
#de_lid_equipment_month_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'DeLidEquipmentMonthaAndHalfYearlyPm',
# (de_lid_equipment_month_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30120 De-Lid_Machine_Shiftly_Check_Record
#de_lid_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'DeLidMachineShiftlyCheck',
# (de_lid_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30016 Bottom_Lid_Marking_Equipment_Half-Yearly_PM
#bottom_lid_marking_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'BottomLidMarkingEquipmentHalfYearlyPm',
# (bottom_lid_marking_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30044 Bottom_Lid_Marking_Equipment_Weekly & Monthly_PM
#bottom_lid_marking_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'BottomLidMarkingEquipmentWeeklyAndMonthlyPm',
# (bottom_lid_marking_equipment_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30061 Bottom Lid Marking Machine Shiftly Check Record
#bottom_lid_marking_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'BottomLidMarkingMachineShiftlyCheck',
# (bottom_lid_marking_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30076 Dry Cabinet Monthly And Half-Yearly PM Record
#dry_cabinet_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'DryCabinetMonthlyAndHalfYearlyPm',
# (dry_cabinet_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30073 Force Tester Equipment Monthly And Half-Yearly PM Record
#force_tester_equipment_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ForceTesterEquipmentMonthlyAndHalfYearlyPm',
# (force_tester_equipment_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30042 Card Assembly ICOS Equipment Monthly And Half-Yearly PM Record
#card_assembly_icos_equipment_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyIcosEquipmentMonthlyAndHalfYearlyPm',
# (card_assembly_icos_equipment_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30058 AOI Machine Shiftly Check Record
#aoi_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AoiMachineShiftlyCheckSTI_Shiftly_Check',
# (aoi_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30077 STI_Shiftly_Check_Record
#sti_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'StiShiftlyCheck',
# (sti_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30117 STI_Equipment_Monthly_And_Half-Yearly_PM_Record
#sti_hexa_equipment_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'StiHexaEquipmentMonthlyAndHalfYearlyPm',
# (sti_hexa_equipment_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30028 Oven Equipment Monthly And Half-Yearly PM Record
#oven_equipment_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'OvenEquipmentMonthlyAndHalfYearlyPm',
# (oven_equipment_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30057 Oven_Machine_Shiftly_Check_Record
#oven_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'OvenMachineShiftlyCheck',
# (oven_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30112 Vacuum_Oven_Monthly_And_Half-Yearly_PM_Record
#vacuum_oven_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'VacuumOvenMonthlyAndHalfYearlyPm',
# (vacuum_oven_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30113 Vacuum_oven_Shiftly_Check_Record
#vacuum_oven_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'VacuumOvenShiftlyCheck',
# (vacuum_oven_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30103 Mimaki Ink Jet Machine Shiftly Check Record
#mimaki_ink_jet_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'MimakiInkJetMachineShiftlyCheck',
# (mimaki_ink_jet_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30104 Mimaki Ink Jet Machine Weekly & Monthly PM Record
#mimaki_ink_jet_machine_Weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'MimakiInkJetMachineWeeklyAndMonthlyPm',
# (mimaki_ink_jet_machine_Weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30105 Mimaki Ink Jet Machine Half-Yearly PM Record
#mimaki_ink_jet_machine_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'MimakiInkJetMachineHalfYearlyPm',
# (mimaki_ink_jet_machine_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30100 Microdot 930 With Dimatix Print Head Equipment Weekly & Monthly PM Record
#microdot_930_with_dimatix_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot930WithDimatixEquipmentWeeklyAndMonthlyPm',
# (microdot_930_with_dimatix_equipment_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30101 Microdot 930 With Dimatix Print Head Equipment Half-Yearly PM Record
#microdot_930_with_dimatix_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot930WithDimatixEquipmentHalfYearlyPm',
# (microdot_930_with_dimatix_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30102 Microdot 930 With Dimatix Print Head Equipment Shiftly Check Record
#microdot_930_with_dimatix_equipment_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot930WithDimatixEquipmentShiftlyCheck',
# (microdot_930_with_dimatix_equipment_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30032 Microdot 915 Equipment Weekly & Monthly PM Record
#microdot_915_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot915EquipmentWeeklyAndMonthlyPm',
# (microdot_915_equipment_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30033 Microdot 915 Equipment Half-Yearly PM Record
# microdot_915_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot915EquipmentHalfYearlyPm',
# (microdot_915_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30053 Microdot 915 Machine Shiftly Check Record
#microdot_915_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot915MachineShiftlyCheck',
# (microdot_915_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30048 Microdot 930 Equipment Weekly & Monthly PM Record
#microdot_930_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot930EquipmentWeeklyAndMonthlyPm',
# (microdot_930_equipment_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30049 Microdot 930 Equipment Half-Yearly PM Record
#microdot_930_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot930EquipmentHalfYearlyPm',
# (microdot_930_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30054 Microdot 930 Machine Shiftly Check Record
#microdot_930_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'Microdot930MachineShiftlyCheck',
# (microdot_930_machine_shiftly_check_fields.merge common_fields)
# DOC# 3741-02-30030 Plasma Equipment Quarterly PM Record
#plasma_equipment_quarterly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'PlasmaEquipmentQuarterlyPm',
# (plasma_equipment_quarterly_pm_fields.merge common_fields)
# DOC# 3741-02-30070 Plasma Equipment Shiftly Check Record
#plasma_equipment_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'PlasmaEquipmentShiftlyCheck',
# (plasma_equipment_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30078 Card Assembly Auto Silk Screen Half-Yearly PM Record
#card_assembly_auto_silk_screen_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyAutoSilkScreenHalfYearlyPm',
# (card_assembly_auto_silk_screen_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30079 Card Assembly Auto silk screen weekly & monthly PM record
#card_assembly_auto_silk_screen_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyAutoSilkScreenWeeklyAndMonthlyPm',
# (card_assembly_auto_silk_screen_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30080 Card Assembly Auto Silk Screen Shiftly Check Record
#card_assembly_auto_silk_screen_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyAutoSilkScreenShiftlyCheck',
# (card_assembly_auto_silk_screen_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30034 UV Oven Equipment Weekly & Monthly PM Record
#uv_oven_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'UvOvenEquipmentWeeklyAndMonthlyPm',
# (uv_oven_equipment_weekly_and_monthly_pm_fields.merge common_fields)
#DOC# 3751-02-30035 UV Oven Equipment Half-Yearly PM Record
#uv_oven_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'UvOvenEquipmentHalfYearlyPm',
# (uv_oven_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30055 UV Oven Machine Shiftly Check Record
#uv_oven_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'UvOvenMachineShiftlyCheck',
# (uv_oven_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30050 Auto_Jewel_Case_Machine_Weekly_And_Monthly_PM_Record
#auto_jewel_case_machine_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AutoJewelCaseMachineWeeklyAndMonthlyPm',
# (auto_jewel_case_machine_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30051 Auto_Jewel_Case_Packing_Machine_Half-Yearly_PM_Record
#auto_jewel_case_packing_machine_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AutoJewelCasePackingMachineHalfYearlyPm',
# (auto_jewel_case_packing_machine_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30062 Auto_j-case_Machine_Shiftly_Check_Record
#auto_jewel_case_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AutoJewelCaseMachineShiftlyCheck',
# (auto_jewel_case_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30106 Card Assembly J-case Label Machine Shiftly Check Record
#card_assembly_jewel_case_label_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyJewelCaseLabelMachineShiftlyCheck',
# (card_assembly_jewel_case_label_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30107 Card Assembly J-case Label Machine Monthly PM Record
#card_assembly_jewel_case_label_machine_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyJewelCaseLabelMachineMonthlyPm',
# (card_assembly_jewel_case_label_machine_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30108 Card Assembly J-case Label Machine Half-Yearly PM Record
#card_assembly_jewel_case_label_machine_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyJewelCaseLabelMachineHalfYearlyPm',
# (card_assembly_jewel_case_label_machine_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30052 Packing_Equipment_Half-Yearly_PM_Record
#packing_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'PackingEquipmentHalfYearlyPm',
# (packing_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30064 Packing_Machine_Shiftly_Check_Record
#packing_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'PackingMachineShiftlyCheck',
# (packing_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30048 Card Assembly Pull Strength Test Equipment Monthly&Half-Yearly PM Record
#card_assembly_pull_strength_test_equipment_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyPullStrengthTestEquipmentMonthlyAndHalfYearlyPm',
# (card_assembly_pull_strength_test_equipment_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30047 Card Assembly Switch Force Test Equipment Monthly & Half-Yearly PM Record
#card_assembly_switch_force_test_equipment_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblySwitchForceTestEquipmentMonthlyAndHalfYearlyPm',
# (card_assembly_switch_force_test_equipment_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30110 Card Assembly Engraver Equipment Machine Shift Check Record
#card_assembly_engraver_equipment_machine_shift_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyEngraverEquipmentMachineShiftCheck',
# (card_assembly_engraver_equipment_machine_shift_check_fields.merge common_fields)
# DOC# 3751-02-30109 Engraver Equipment Monthly & Half-Yearly PM Record
# engraver_equipment_monthly_and_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'EngraverEquipmentMonthlyAndHalfYearlyPm',
# (engraver_equipment_monthly_and_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30081 Card Assembly H2 Burn Half-Yearly PM Record
#card_assembly_h2_burn_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyH2BurnHalfYearlyPm',
# (card_assembly_h2_burn_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30082 Card_Assembly_H2_Burn_Machine_Shiftly_Check_Record
#card_assembly_h2_burn_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyH2BurnMachineShiftlyCheck',
# (card_assembly_h2_burn_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30083 Card Assembly H2 Burn Weekly & Monthly PM Record
#card_assembly_h2_burn_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyH2BurnWeeklyAndMonthlyPm',
# (card_assembly_h2_burn_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30069 Card Assembly ON TRAY INK MARK Monthly PM Record
#card_assembly_on_tray_ink_mark_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyOnTrayInkMarkMonthlyPm',
# (card_assembly_on_tray_ink_mark_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30070 Card Assembly ON TRAY INK MARK Equipment Half-Yearly PM Record
#card_assembly_on_tray_ink_mark_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyOnTrayInkMarkEquipmentHalfYearlyPm',
# (card_assembly_on_tray_ink_mark_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30096 Card_Assembly_Tray_Ink_Mark_Shiftly_Check_Record
#card_assembly_tray_ink_mark_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'CardAssemblyTrayInkMarkShiftlyCheck',
# (card_assembly_tray_ink_mark_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30114 Manual J-case Label Equipment Half-Yearly PM Record
#manual_jewel_case_label_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualJewelCaseLabelEquipmentHalfYearlyPm',
# (manual_jewel_case_label_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30115 Manual J-Case Label Machine Shiftly Check Record
#manual_jewel_case_label_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualJewelCaseLabelMachineShiftlyCheck',
# (manual_jewel_case_label_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30116 Manual J-Case Label Machine Weekly & Monthly PM Record
#manual_jewel_case_label_machine_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualJewelCaseLabelMachineWeeklyAndMonthlyPm',
# (manual_jewel_case_label_machine_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30087 Manual SD Label Equipment Shiftly Check Record
#manual_sd_label_equipment_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualSdLabelEquipmentShiftlyCheck',
# (manual_sd_label_equipment_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30088 Manual SD Label Machine Weekly & Monthly PM Record
#manual_sd_label_machine_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualSdLabelMachineWeeklyAndMonthlyPm',
# (manual_sd_label_machine_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30089 Manual SD Label Equipment Half-Yearly PM Record
#manual_sd_label_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'ManualSdLabelEquipmentHalfYearlyPm',
# (manual_sd_label_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30040 Auto Mask Label Attach Equipment Weekly & Monthly PM Record
#auto_mask_label_attach_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AutoMaskLabelAttachEquipmentWeeklyAndMonthlyPm',
# (auto_mask_label_attach_equipment_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30041 Auto Mask Label Attach Equipment Half-Yearly PM Record
#auto_mask_label_attach_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AutoMaskLabelAttachEquipmentHalfYearlyPm',
# (auto_mask_label_attach_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30056 Auto Mask Label Machine Shiftly Check Record
#auto_mask_label_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'AutoMaskLabelMachineShiftlyCheck',
# (auto_mask_label_machine_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30091 Nautilus SD Label Equipment Shiftly Check Record
#nautilus_sd_label_equipment_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'NautilusSdLabelEquipmentShiftlyCheck',
# (nautilus_sd_label_equipment_shiftly_check_fields.merge common_fields)
# DOC# 3751-02-30092 Nautilus SD Label Attach Equipment Half-Yearly PM Record
#nautilus_sd_label_attach_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'NautilusSdLabelAttachEquipmentHalfYearlyPm',
# (nautilus_sd_label_attach_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30090 Nautilus SD Label Attach Equipment Weekly & Monthly PM Record
#nautilus_sd_label_attach_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'NautilusSdLabelAttachEquipmentWeeklyAndMonthlyPm',
# (nautilus_sd_label_attach_equipment_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30020 SD Label Attach Equipment Half-Yearly PM Record
#sd_label_attach_equipment_half_yearly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'SdLabelAttachEquipmentHalfYearlyPm',
# (sd_label_attach_equipment_half_yearly_pm_fields.merge common_fields)
# DOC# 3751-02-30045 SD Label Attach Equipment Weekly & Monthly PM record
#sd_label_attach_equipment_weekly_and_monthly_pm_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'SdLabelAttachEquipmentWeeklyAndMonthlyPm',
# (sd_label_attach_equipment_weekly_and_monthly_pm_fields.merge common_fields)
# DOC# 3751-02-30063 SD Label Machine Shiftly Check Record
#sd_label_machine_shiftly_check_fields = {
# :profile_check => :string,
# :in_time => :timestamp,
# :out_time => :timestamp,
#}
#generate_form 'COP_EQP', 'SdLabelMachineShiftlyCheck',
# (sd_label_machine_shiftly_check_fields.merge common_fields)