27. Februar 2020 15:18
PostAndSend - OnAction()
Post(CODEUNIT::"Sales-Post and Send",NavigateAfterPost::Nowhere);
27. Februar 2020 15:54
LOCAL PostUpdateOrderLine(SalesHeader : Record "Sales Header")
ResetTempLines(TempSalesLine);
WITH TempSalesLine DO BEGIN
SETFILTER(Quantity,'<>0');
IF FINDSET THEN
REPEAT
IF SalesHeader.Ship THEN BEGIN
"Quantity Shipped" += "Qty. to Ship";
"Qty. Shipped (Base)" += "Qty. to Ship (Base)";
END;
...
27. Februar 2020 17:36