Merge pull request 'Correct Beginning Qty' (#11) from paulcortezl5 into main

Reviewed-on: #11
pull/12/head
paul 1 year ago
commit a9f5126d0e

@ -363,7 +363,7 @@
' </table>' +
' </div>' +
' </div>' +
' <p>Beginning quantity: ' + KWHStockReceived["qty"] + '</p>' +
' <p>Beginning quantity: ' + ((KWHStockReceived == null) ? "0" : KWHStockReceived["qty"]) + '</p>' +
' <h3>Quantity Remaining in Warehouse: ' + KWHData["endingqty"] + '</h3>' +
' </div>' +
' </div>';

Loading…
Cancel
Save