forked from microsoft/ALAppExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShpfyShipmentMethodsMapping.Page.al
54 lines (51 loc) · 1.94 KB
/
ShpfyShipmentMethodsMapping.Page.al
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
namespace Microsoft.Integration.Shopify;
/// <summary>
/// Page Shpfy Shipment Methods Mapping (ID 30129).
/// </summary>
page 30129 "Shpfy Shipment Methods Mapping"
{
Caption = 'Shopify Shipment Methods';
PageType = List;
SourceTable = "Shpfy Shipment Method Mapping";
UsageCategory = None;
layout
{
area(content)
{
repeater(General)
{
field(Name; Rec.Name)
{
ApplicationArea = all;
ToolTip = 'Specifies the delivery method in Shopify.';
}
field("Code"; Rec."Shipment Method Code")
{
ApplicationArea = All;
ToolTip = 'Specifies the shipping method in D365BC.';
}
field("Shipping Charges Type"; Rec."Shipping Charges Type")
{
ApplicationArea = All;
ToolTip = 'Specifies the value of the Shipping Charges Type field.';
}
field("Shipping Charges No."; Rec."Shipping Charges No.")
{
ApplicationArea = All;
ShowMandatory = Rec."Shipping Charges Type" <> Rec."Shipping Charges Type"::" ";
ToolTip = 'Specifies the value of the Shipping Charges No. field.';
}
field("Shipping Agent Code"; Rec."Shipping Agent Code")
{
ApplicationArea = All;
ToolTip = 'Specifies the code for the shipping agent who is transporting the items.';
}
field("Shipping Agent Service Code"; Rec."Shipping Agent Service Code")
{
ApplicationArea = All;
ToolTip = 'Specifies the code for the service, such as a one-day delivery, that is offered by the shipping agent.';
}
}
}
}
}