Skip to content

Commit 861fb4c

Browse files
committed
EDU-9384: T220 issues in code snippets fixed
1 parent 817045d commit 861fb4c

7 files changed

Lines changed: 26 additions & 1 deletion

File tree

Customization/T220/CodeSnippets/Step1.1.1/RSSVWorkOrderEntry.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using PX.Data;
22
using PX.Data.BQL.Fluent;
3+
using System;
34

45
namespace PhoneRepairShop
56
{

Customization/T220/CodeSnippets/Step1.2.1/RSSVWorkOrderEntry.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using PX.Data;
22
using PX.Data.BQL.Fluent;
3+
using System;
34

45
namespace PhoneRepairShop
56
{

Customization/T220/CodeSnippets/Step1.2.2/RSSVWorkOrderEntry.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
////////// The added code
44
using PX.Objects.IN;
55
////////// The end of added code
6+
using System;
67

78
namespace PhoneRepairShop
89
{

Customization/T220/CodeSnippets/Step1.3.1/RSSVWorkOrderEntry.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
////////// The end of added code
55
using PX.Data.BQL.Fluent;
66
using PX.Objects.IN;
7+
using System;
78

89
namespace PhoneRepairShop
910
{

Customization/T220/CodeSnippets/Step1.3.2/RSSVWorkOrderEntry.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using PX.Data.BQL;
33
using PX.Data.BQL.Fluent;
44
using PX.Objects.IN;
5+
using System;
56

67
namespace PhoneRepairShop
78
{

Customization/T220/CodeSnippets/Step2.1.1/RSSVSetupMaint.cs

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using PX.Data;
33
using PX.Data.BQL.Fluent;
4+
using System;
45

56
namespace PhoneRepairShop
67
{
@@ -10,5 +11,23 @@ public class RSSVSetupMaint : PXGraph<RSSVSetupMaint>
1011
public PXCancel<RSSVSetup> Cancel = null!;
1112

1213
public SelectFrom<RSSVSetup>.View Setup = null!;
13-
}
14+
15+
16+
public PXFilter<MasterTable> MasterView;
17+
public PXFilter<DetailsTable> DetailsView;
18+
19+
[Serializable]
20+
public class MasterTable : PXBqlTable, IBqlTable
21+
{
22+
23+
}
24+
25+
[Serializable]
26+
public class DetailsTable : PXBqlTable, IBqlTable
27+
{
28+
29+
}
30+
31+
32+
}
1433
}

Customization/T220/CodeSnippets/Step2.1.4/RSSVWorkOrderEntry.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using PX.Data.BQL;
33
using PX.Data.BQL.Fluent;
44
using PX.Objects.IN;
5+
using System;
56

67
namespace PhoneRepairShop
78
{

0 commit comments

Comments
 (0)