Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Peppol;

using Microsoft.Bank.BankAccount;

tableextension 37200 "PEPPOL Payment Method" extends "Payment Method"
{
fields
{
field(37200; "PEPPOL Payment Means Code"; Code[3])
{
Caption = 'PEPPOL Payment Means Code';
DataClassification = CustomerContent;
ToolTip = 'Specifies the UNCL4461 payment means code (BT-81) used when exporting this payment method in XRechnung or ZUGFeRD format. Leave blank to use the default code 58 (SEPA credit transfer). Common values: 30 (Credit transfer), 48 (Credit card), 49 (SEPA direct debit), 58 (SEPA credit transfer).';
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Peppol;

using Microsoft.Bank.BankAccount;

pageextension 37222 "PEPPOL Payment Methods" extends "Payment Methods"
{
layout
{
addlast(Control1)
{
field("PEPPOL Payment Means Code"; Rec."PEPPOL Payment Means Code")
{
ApplicationArea = Basic, Suite;
}
}
}
}
Loading