()
| 272 | ]; |
| 273 | } |
| 274 | async function onCopyFromOrderToJob() { |
| 275 | if (_parentTableSelection) { |
| 276 | const id = _parentTableSelection.orde_orderid; |
| 277 | await copyFromOrderToJob(id, _staticData, _getListofSelectedRow()); |
| 278 | await _updateTableContent(); |
| 279 | } |
| 280 | } |
| 281 | async function onMove() { |
| 282 | if (_parentTableSelection) { |
| 283 | const id = _parentTableSelection.job_jobid; |
nothing calls this directly
no test coverage detected