()
| 314 | await _updateTableContent(); |
| 315 | } |
| 316 | function onStatusChange() { |
| 317 | const selection = _tableObject.getSelection(); |
| 318 | const hPk = getPKfromModule(); |
| 319 | return { |
| 320 | idSiBook: hPk.idSiBook, |
| 321 | siHeaderId: hPk.siHeaderId, |
| 322 | theJobID: selection.map(obj => obj.jpos_jobid), |
| 323 | thePosNo: selection.map(obj => obj.jpos_posno), |
| 324 | theHeaderType: selection.map(obj => obj.jpos_headertype), |
| 325 | theSubPosNo: selection.map(obj => obj.jpos_subposno), |
| 326 | multiple: selection.length > 1 |
| 327 | }; |
| 328 | } |
| 329 | async function onAutoSums() { |
| 330 | if (_parentTableSelection) { |
| 331 | await autoSumsDialog( |
nothing calls this directly
no test coverage detected