()
| 190 | } |
| 191 | } |
| 192 | function onGoToSi() { |
| 193 | const selection = _tableObject.getSelection(); |
| 194 | if (selection.length > 0) { |
| 195 | const hPk = getPKfromModule(); |
| 196 | replacePage( |
| 197 | urlGotoSiFromJobService({ |
| 198 | jobId: hPk.jobid, |
| 199 | posNos: _getListofSelectedRow() |
| 200 | }) |
| 201 | ); |
| 202 | } else { |
| 203 | showLoadingWarning(TC.selectionEmpty); |
| 204 | } |
| 205 | } |
| 206 | async function onShiftPosition(state) { |
| 207 | const pk = getPKFromSelection(); |
| 208 | if (pk !== null) { |
nothing calls this directly
no test coverage detected