개정판 e534f39d
issue #1053 : 생성한 장치의 데이터 입력 => 폼의 Unit 를 Drawing의 Attrs 에서 읽어 오도록 변경
Change-Id: Ie8edffc92576006b3da35c7a9ff7531f6831504a
HYTOS/HYTOS/Strainer_T.py | ||
---|---|---|
44 | 44 |
appDocData = AppDocData.instance() |
45 | 45 |
drawing = appDocData.activeDrawing |
46 | 46 |
if drawing: |
47 |
columnDisplayNameList = appDocData.getColumnDisplayNames(drawing.UID, 'Nozzles') |
|
48 |
if len(columnDisplayNameList) > 0: |
|
49 |
for columnDisplayName in columnDisplayNameList: |
|
50 |
if columnDisplayName[0] == 'Pressure Drop': |
|
51 |
self.ui.label_PressureUnit.setText(columnDisplayName[1]) |
|
52 |
elif columnDisplayName[0] == 'Elevation': |
|
53 |
self.ui.label_ElevationUnit.setText(columnDisplayName[1]) |
|
54 |
|
|
47 |
for attr in drawing.attrs: |
|
48 |
if attr[0] == 'Units': |
|
49 |
self.ui.label_PressureUnit.setText(attr[1]['Pressure']) |
|
50 |
self.ui.label_ElevationUnit.setText(attr[1]['Length']) |
|
51 |
|
|
55 | 52 |
def accept(self): |
56 | 53 |
QDialog.accept(self) |
57 | 54 |
|
내보내기 Unified diff