mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-08 02:16:52 +01:00
Pure git-mv relocation of the SECURITY domain from the community layer to the Microsoft layer. No content changes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
10 lines
346 B
AL
10 lines
346 B
AL
codeunit 50100 "Order Buffer Helper"
|
|
{
|
|
procedure ResetStagingBuffer(var OrderBuffer: Record "Sales Header")
|
|
begin
|
|
// No IsTemporary check. A caller that accidentally passes the real
|
|
// Sales Header table wipes every sales header in the company with
|
|
// no prior warning.
|
|
OrderBuffer.DeleteAll();
|
|
end;
|
|
}
|