(newPosNo)
| 2000 | return false; |
| 2001 | } |
| 2002 | async function _saveCompleted(newPosNo) { |
| 2003 | _formObject.setActive(false); |
| 2004 | _formObject.memorizeCurrentValues(); |
| 2005 | if (_isFormInDialog && _isFormInDialogJobPK !== null) { |
| 2006 | _isFormInDialogJobPK.jpos_posno = newPosNo; |
| 2007 | |
| 2008 | await _showForm( |
| 2009 | buttons.STATE.show, |
| 2010 | _isFormInDialogJobPK, |
| 2011 | _isFormInDialogSelector |
| 2012 | ); |
| 2013 | } else { |
| 2014 | |
| 2015 | await _updateTableContent(); |
| 2016 | } |
| 2017 | } |
| 2018 | async function showSISaveConfirmDialog(message) { |
| 2019 | const ok = await confirmDialog(message); |
| 2020 | if (ok) { |
no test coverage detected