Codeunit 313 Sales-Printed
- App
- Base Application
- Namespace
- Microsoft.Sales.Document
- Versions
- 17-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Sales/Document/SalesPrinted.Codeunit.al55 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Sales.Document;
/// <summary>
/// Increments the print counter on a sales document when it is printed.
/// </summary>
codeunit 313 "Sales-Printed"
{
Permissions = TableData "Sales Header" = rm;
TableNo = "Sales Header";
trigger OnRun()
begin
OnBeforeOnRun(Rec, SuppressCommit);
Rec.Find();
Rec."No. Printed" := Rec."No. Printed" + 1;
OnBeforeModify(Rec);
Rec.Modify();
if not SuppressCommit then
Commit();
OnAfterOnRun(Rec);
end;
var
SuppressCommit: Boolean;
/// <summary>
/// Specifies whether to suppress the commit after updating the print counter.
/// </summary>
/// <param name="NewSuppressCommit">True to suppress commit; false to allow commit after printing.</param>
procedure SetSuppressCommit(NewSuppressCommit: Boolean)
begin
SuppressCommit := NewSuppressCommit;
end;
[IntegrationEvent(false, false)]
local procedure OnAfterOnRun(var SalesHeader: Record "Sales Header")
begin
end;
[IntegrationEvent(false, false)]
local procedure OnBeforeModify(var SalesHeader: Record "Sales Header")
begin
end;
[IntegrationEvent(false, false)]
local procedure OnBeforeOnRun(var SalesHeader: Record "Sales Header"; var SuppressCommit: Boolean)
begin
end;
}