-
Notifications
You must be signed in to change notification settings - Fork 0
/
fill_TRF.py
664 lines (493 loc) · 14.3 KB
/
fill_TRF.py
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
#!/bin/python
#coding:utf-8
"""
Author: Michael Jin
Date: 2021-06-08
"""
import os
from docx import Document
from docx.shared import Inches
from docx.shared import Pt
from docx.enum.text import WD_ALIGN_PARAGRAPH
from word import find_table
def find_table(tables,search_string):#关键词查找对应表格
table_components=[]
for table in tables:#遍历每一个表格
if table.cell(0,1).text==search_string:#自定义关键字来搜索表格
table_components.append(table)
return table_components
###用于把TRF文件条款部分自动填充序号
def fill_number(document,method):
# '''
# document: Document的实例
# method:cells和rows两种方法,cells速度快,但是不够直观,rows直观,概念清晰,但是速度慢
# '''
tables = document.tables #获取文档中表格对象列表
table5 = tables[5]#条款判断至annex s结束
table7 = tables[7] #条款判断部分ANNEX S开始的表
if method=='cells':
cells = table5._cells #判断部分一共分两个表,这是第一个表的序号处理
total_rows=len(table5.rows)
j=1
for i in range(3,total_rows*4+1,4):
cells[i].text = str(j)
j = j+1
cells = table7._cells #判断部分一共分两个表,这是第二个表的序号处理
total_rows=len(table7.rows)
j=1
for i in range(3,total_rows*4+1,4):
cells[i].text = str(j)
j = j+1
elif method=='rows':
###判断部分一共分两个表,这是第一个表的序号处理
j=1
total_rows=len(table5.rows)
for row in range(0,total_rows):
print(f'{row}/{total_rows}')
cells=table5.row_cells(row)
cells[3].text=str(j)
j=j+1
###判断部分一共分两个表,这是第二个表的序号处理
j=1
total_rows=len(table7.rows)
for row in range(0,total_rows):
print(f'{row}/{total_rows}')
cells=table7.row_cells(row)
cells[3].text=str(j)
j=j+1
document.save(TRF_path[:-5]+'_filled.docx')
###自动填充不适用的章节
def auto_NA(table,start,end):
'''
table:条款分两张表,指定是哪一张表格
start(int):起始行
end(int):结尾行
'''
cells = table._cells #获取所有的单元格
for row in range(start,end+1):
if cells[row*4-2].text=='':
cells[row*4-1].text='N/A'#行数和单元格之间的对应关系,cell=4*row-1
elif cells[row*4-2].text!='':
cells[row*4-1].text='--'#行数和单元格之间的对应关系,cell=4*row-1
###某一行的判定
def fill_line(table,row,value='N/A'):
'''
table:表格对象
row(int):行号
value(str):P or N/A
'''
cells = table._cells #获取所有的单元格
cells[4*row-1].text=value
###某一行的注释
def comment(table,row,value):
'''
table:表格对象
row(int):行号
value(str):想写的内容
'''
cells = table._cells #获取所有的单元格
cells[4*row-2].text=value
###条款判断,适用于2-40v
def verdict(document):
'''
document:文档对象
'''
###初始化
tables=document.tables
table5=tables[5]
table7=tables[7]
###参数
volt=input('请输入器具的额定电压:')
phase=input('是否为单相器具:')
# if phase=='n':
# phase_number=input('多相器具请输入相数:')
acdc=input('ac or dc?')
if acdc=='ac':
freq=input('请输入频率:')
power=input('请输入额定功率:')
current=input('请输入额定电流:')
appliance_type=input('请选择器具类型:')
AC_type=input('分体还是移动')
grade=input('器具为I,II,III?')
use_env=input('器具的使用环境')
laundry=input('是否在洗衣房使用')
public=input('大众是否可触及')
flammable=input('是否可燃')
if flammable=='y':
leak=input('是否做泄露测试(Annex FF)')
detection=input('是否采用可燃冷媒探测系统')
arrest=input('采用火焰捕捉外壳(Annex NN)?')
else:
leak='n'
detection='n'
arrest='n'
UV=input('是否包含UV-C')
###cl.5
fill_line(table5,1,'--')
fill_line(table5,2,'P')
###cl.5.2
fill_line(table5,3,'P')
if flammable=='y':
if leak=='y':
fill_line(table5,4,'P')
if detection=='y':
fill_line(table5,5,'P')
else:
fill_line(table5,5,'N/A')
if arrest=='y':
fill_line(table5,6,'P')
else:
fill_line(table5,6,'N/A')
else:
auto_NA(table5,4,6)
###cl.5.6
fill_line(table5,7,'P')
###cl.5.7
fill_line(table5,8,'P')
###cl.5.10
if AC_type=='split air conditioner':
fill_line(table5,9,'P')
fill_line(table5,10,'P')
fill_line(table5,11,'P')
else:
auto_NA(table5,9,11)
###cl.6
fill_line(table5,12,'--')
###cl.6.1
fill_line(table5,13,'P')
comment(table5,13,grade)
###cl.6.2
fill_line(table5,4,'--')
if use_env=='indoor use only':
fill_line(table5,15,'N/A')
fill_line(table5,16,'P')
elif use_env=='outdoor use':
fill_line(table5,15,'P')
fill_line(table5,16,'N/A')
if laundry=='y':
fill_line(table5,17,'P')
else:
fill_line(table5,17,'N/A')
###cl.6.101
if public=='y':
fill_line(table5,18,'P')
comment(table5,18,'accessible to general public')
elif public=='n':
fill_line(table5,18,'P')
comment(table5,18,'not accessible to general public')
###cl.7
fill_line(table5,19,'--')
###cl.7.1
fill_line(table5,20,'P')
comment(table5,20,volt)
if phase=='y':
fill_line(table5,21,'N/A')
elif phase=='n':
fill_line(table5,21,'P')
comment(table5,21,'refer to the marking label')
if acdc=='ac':
fill_line(table5,22,'P')
comment(table5,22,freq)
elif acdc=='dc':
fill_line(table5,22,'N/A')
if power!='':
fill_line(table5,23,'P')
comment(table5,23,power)
else:
fill_line(table5,23,'N/A')
if current!='':
fill_line(table5,24,'P')
comment(table5,24,current)
else:
fill_line(table5,24,'N/A')
fill_line(table5,25,'P')
comment(table5,25,'refer to the marking label')
fill_line(table5,26,'P')
comment(table5,26,'refer to the marking label')
###Annex B
if appliance_type!='battery-operated appliance':
auto_NA(table5,1296,1344)
###Annex C
auto_NA(table5,1345,1347)
###Annex F
auto_NA(table5,1361,1390)
###Annex H
auto_NA(table5,1406,1432)
###Annex J
auto_NA(table5,1433,1442)
###Annex K
pass
###Annex M
pass
###Annex N
pass
###Annex R
auto_NA(table5,1475,1520)
###Annex S
if appliance_type!='battery-operated appliance':
auto_NA(table7,1,42)
###Annex T
if UV=='no':
auto_NA(table7,43,62)
###Annex DD
if flammable=='no':
auto_NA(table7,63,234)
###Annex EE
pass
###Annex FF
if flammable=='no':
auto_NA(table7,255,285)
###Annex GG
if flammable=='no':
auto_NA(table7,286,606)
###Annex JJ
auto_NA(table7,607,615)
###Annex KK
if flammable=='no':
auto_NA(table7,616,648)
###Annex LL
if flammable=='no':
auto_NA(table7,649,706)
###Annex MM
if flammable=='no':
auto_NA(table7,707,717)
###Annex NN
if flammable=='no':
auto_NA(table7,718,724)
###Annex PP
if flammable=='no':
auto_NA(table7,725,747)
###Annex QQ
if flammable=='no':
auto_NA(table7,748,811)
return document
###条款判断,适用于2-40x
def verdict_40x(document):
'''
document:文档对象
'''
###初始化
tables=document.tables
table5=tables[5]
table7=tables[7]
###参数
volt=input('请输入器具的额定电压:')
phase=input('是否为单相器具:')
# if phase=='n':
# phase_number=input('多相器具请输入相数:')
acdc=input('ac or dc?')
if acdc=='ac':
freq=input('请输入频率:')
power=input('请输入额定功率:')
current=input('请输入额定电流:')
appliance_type=input('请选择器具类型:')
AC_type=input('分体还是移动')
grade=input('器具为I,II,III?')
use_env=input('器具的使用环境')
laundry=input('是否在洗衣房使用')
public=input('大众是否可触及')
flammable=input('是否可燃')
if flammable=='y':
leak=input('是否做泄露测试(Annex FF)')
detection=input('是否采用可燃冷媒探测系统')
arrest=input('采用火焰捕捉外壳(Annex NN)?')
else:
leak='n'
detection='n'
arrest='n'
UV=input('是否包含UV-C')
# ###cl.5
# fill_line(table5,1,'--')
# fill_line(table5,2,'P')
#
#
# ###cl.5.2
# fill_line(table5,3,'P')
# if flammable=='y':
# if leak=='y':
# fill_line(table5,4,'P')
# if detection=='y':
# fill_line(table5,5,'P')
# else:
# fill_line(table5,5,'N/A')
# if arrest=='y':
# fill_line(table5,6,'P')
# else:
# fill_line(table5,6,'N/A')
# else:
# auto_NA(table5,4,6)
#
#
# ###cl.5.6
# fill_line(table5,7,'P')
#
#
# ###cl.5.7
# fill_line(table5,8,'P')
#
#
# ###cl.5.10
# if AC_type=='split air conditioner':
# fill_line(table5,9,'P')
# fill_line(table5,10,'P')
# fill_line(table5,11,'P')
# else:
# auto_NA(table5,9,11)
#
#
# ###cl.6
# fill_line(table5,12,'--')
#
#
# ###cl.6.1
# fill_line(table5,13,'P')
# comment(table5,13,grade)
#
#
# ###cl.6.2
# fill_line(table5,4,'--')
# if use_env=='indoor use only':
# fill_line(table5,15,'N/A')
# fill_line(table5,16,'P')
# elif use_env=='outdoor use':
# fill_line(table5,15,'P')
# fill_line(table5,16,'N/A')
# if laundry=='y':
# fill_line(table5,17,'P')
# else:
# fill_line(table5,17,'N/A')
#
#
# ###cl.6.101
# if public=='y':
# fill_line(table5,18,'P')
# comment(table5,18,'accessible to general public')
# elif public=='n':
# fill_line(table5,18,'P')
# comment(table5,18,'not accessible to general public')
#
#
# ###cl.7
# fill_line(table5,19,'--')
#
#
# ###cl.7.1
# fill_line(table5,20,'P')
# comment(table5,20,volt)
# if phase=='y':
# fill_line(table5,21,'N/A')
# elif phase=='n':
# fill_line(table5,21,'P')
# comment(table5,21,'refer to the marking label')
# if acdc=='ac':
# fill_line(table5,22,'P')
# comment(table5,22,freq)
# elif acdc=='dc':
# fill_line(table5,22,'N/A')
# if power!='':
# fill_line(table5,23,'P')
# comment(table5,23,power)
# else:
# fill_line(table5,23,'N/A')
# if current!='':
# fill_line(table5,24,'P')
# comment(table5,24,current)
# else:
# fill_line(table5,24,'N/A')
# fill_line(table5,25,'P')
# comment(table5,25,'refer to the marking label')
# fill_line(table5,26,'P')
# comment(table5,26,'refer to the marking label')
###Annex B
if appliance_type!='battery-operated appliance':
auto_NA(table5,1294,1342)
###Annex C
auto_NA(table5,1343,1345)
###Annex F
auto_NA(table5,1359,1388)
###Annex H
auto_NA(table5,1404,1430)
###Annex J
auto_NA(table5,1431,1440)
###Annex K
fill_line(table5,1441,'--')
fill_line(table5,1442,'P')
fill_line(table5,1443,'P')
auto_NA(table5,1444,1445)
fill_line(table5,1446,'P')
auto_NA(table5,1447,1448)
###Annex M
pass
###Annex N
auto_NA(table5,1461,1472)
###Annex R
auto_NA(table5,1473,1518)
###Annex S
if appliance_type!='battery-operated appliance':
auto_NA(table7,1,42)
###Annex T
if UV=='no':
auto_NA(table7,43,62)
###Annex DD
if flammable=='no':
auto_NA(table7,63,234)
###Annex EE
auto_NA(table7,235,254)
###Annex FF
if flammable=='no':
auto_NA(table7,255,285)
###Annex GG
if flammable=='no':
auto_NA(table7,286,606)
###Annex JJ
auto_NA(table7,607,615)
###Annex KK
if flammable=='no':
auto_NA(table7,616,648)
###Annex LL
if flammable=='no':
auto_NA(table7,649,706)
###Annex MM
if flammable=='no':
auto_NA(table7,707,717)
###Annex NN
if flammable=='no':
auto_NA(table7,718,724)
###Annex PP
if flammable=='no':
auto_NA(table7,725,747)
###Annex QQ
if flammable=='no':
auto_NA(table7,748,811)
return document
####################################### main program #############################################
if __name__=='__main__':
TRF_path=input('Please input the TRF file:')
document = Document(TRF_path) #Open the template document
verdict_40x(document)
document.save(r'J:\Tools4Cert\TRF\test.docx')
# fill_number(document,'rows')
# while True:
# try:
# print("This TDS is for IEC 60335-2-40:2018 in conjunction with IEC 60335-1:2010+A1:2013+A2:2016!")
# print("================================================== Program begin ==================================================")
# # job_no=input("Please input the project number:")
# TRF_path=input('Please input the TRF file:')
# document = Document(TRF_path) #Open the template document
## fill_number(document,'cells')
# verdict(document)
#
# document.save(r'J:\Tools4Cert\TRF\test.docx')
#
# print("==================================================Program END ==================================================")
# flag=input("Press Enter to continue! Others to EXIT!")
# if flag!="":
# break
# else:
# os.system("cls")
#
# except:
# print("==================================================Program END ==================================================")
# print("Error, please contact [email protected]")
# break
#