(supplRemains)
| 2206 | } |
| 2207 | } |
| 2208 | async function deleteEntrySi(supplRemains) { |
| 2209 | const selectedListPosNo = _tableObject |
| 2210 | .getSelection() |
| 2211 | .map(el => el.jpos_posno); |
| 2212 | const hPk = getPKfromModule(); |
| 2213 | const para = { |
| 2214 | idSiBook: hPk.idSiBook, |
| 2215 | siHeaderId: hPk.siHeaderId, |
| 2216 | supplRemains: supplRemains, |
| 2217 | lockTimestamp: _formData.settings.lockTimestamp, |
| 2218 | listPosNos: selectedListPosNo |
| 2219 | }; |
| 2220 | await servicesData.setSiDeletePos(para); |
| 2221 | _tableSelectionPosNo = null; |
| 2222 | await _updateTableContent(); |
| 2223 | } |
| 2224 | async function setDeletePosList(para) { |
| 2225 | const result = await servicesData.setDeletePosList(para); |
| 2226 | if (result) { |
no test coverage detected