| 217 | } |
| 218 | |
| 219 | QString EcoNode::ecoCode() const |
| 220 | { |
| 221 | if (m_ecoCode == -1) |
| 222 | return QString(); |
| 223 | |
| 224 | QChar segment('A' + m_ecoCode / 100); |
| 225 | return segment + QString("%1").arg(m_ecoCode % 100, 2, 10, QChar('0')); |
| 226 | } |
| 227 | |
| 228 | QString EcoNode::opening() const |
| 229 | { |