-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStandardSalesOrderConfReportExt.al
84 lines (83 loc) · 3.38 KB
/
StandardSalesOrderConfReportExt.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
reportextension 50100 StandardSalesOrderConf extends "Standard Sales - Order Conf."
{
dataset
{
add(Line)
{
column(LineFormatStyle; Format("Line Format Style", 0, 2))
{
}
}
addbefore(AssemblyLine)
{
dataitem(LineNormal; "Integer")
{
DataItemTableView = sorting(Number) where(Number = const(1));
column(DescriptionNormal; Line.Description) { }
column(QuantityNormal; FormattedQuantity) { }
column(UnitOfMeasureNormal; Line."Unit of Measure") { }
column(UnitPriceNormal; FormattedUnitPrice) { }
column(LineDiscountPercentTextNormal; LineDiscountPctText) { }
column(LineAmountNormal; FormattedLineAmount) { }
column(NoNormal; Line."No.") { }
column(VATPctNormal; FormattedVATPct) { }
trigger OnPreDataItem()
begin
if Line."Line Format Style" <> Line."Line Format Style"::Normal then
CurrReport.Break();
end;
}
dataitem(LineItalic; "Integer")
{
DataItemTableView = sorting(Number) where(Number = const(1));
column(DescriptionItalic; Line.Description) { }
column(QuantityItalic; FormattedQuantity) { }
column(UnitOfMeasureItalic; Line."Unit of Measure") { }
column(UnitPriceItalic; FormattedUnitPrice) { }
column(LineDiscountPercentTextItalic; LineDiscountPctText) { }
column(LineAmountItalic; FormattedLineAmount) { }
column(NoItalic; Line."No.") { }
column(VATPctItalic; FormattedVATPct) { }
trigger OnPreDataItem()
begin
if Line."Line Format Style" <> Line."Line Format Style"::Italic then
CurrReport.Break();
end;
}
dataitem(LineBold; "Integer")
{
DataItemTableView = sorting(Number) where(Number = const(1));
column(DescriptionBold; Line.Description) { }
column(QuantityBold; FormattedQuantity) { }
column(UnitOfMeasureBold; Line."Unit of Measure") { }
column(UnitPriceBold; FormattedUnitPrice) { }
column(LineDiscountPercentTextBold; LineDiscountPctText) { }
column(LineAmountBold; FormattedLineAmount) { }
column(NoBold; Line."No.") { }
column(VATPctBold; FormattedVATPct) { }
trigger OnPreDataItem()
begin
if Line."Line Format Style" <> Line."Line Format Style"::Bold then
CurrReport.Break();
end;
}
}
}
rendering
{
layout("StandardSalesOrderConf.rdlc")
{
Type = RDLC;
LayoutFile = './StandardSalesOrderConf.rdl';
Caption = 'Conditional Formatting (RDLC)';
Summary = 'Conditional Formatting (RDLC)';
}
layout("StandardSalesOrderConf.docx")
{
Type = Word;
LayoutFile = './StandardSalesOrderConf.docx';
Caption = 'Conditional Formatting (Word)';
Summary = 'Conditional Formatting (Word)';
}
}
}