(fields: Iterator<string>)
| 181 | } |
| 182 | |
| 183 | decodeModelCode(fields: Iterator<string>): void { |
| 184 | if (this.serverVersion >= MIN_SERVER_VER_MODELS_SUPPORT) { |
| 185 | this.order.modelCode = decodeStr(fields) |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | decodeGoodTillDate(fields: Iterator<string>): void { |
| 190 | this.order.goodTillDate = decodeStr(fields) |
no test coverage detected