(self, stuff)
| 54 | self.columnText = info.displayName if info.displayName != "" else info.name |
| 55 | |
| 56 | def getText(self, stuff): |
| 57 | attr = getattr(stuff, self.propertyName, None) |
| 58 | if attr: |
| 59 | return formatAmount(attr, 3, 0, 3) |
| 60 | else: |
| 61 | return "" |
| 62 | |
| 63 | @staticmethod |
| 64 | def getParameters(): |
nothing calls this directly
no test coverage detected