Skip to content

Commit

Permalink
Removed .App from namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
finnpedersenkazes committed Mar 4, 2024
1 parent 41553fe commit f908cff
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 30 deletions.
6 changes: 3 additions & 3 deletions App/Enums/SubscriptionEnum.Enum.al
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

enum 50140 "Subscription Enum"
{
Extensible = true;

value(0; " ")
{
Caption = ' ';
{
Caption = ' ';
}
value(1; Recurring)
{
Expand Down
6 changes: 3 additions & 3 deletions App/MakeOrdersBatch.Report.al
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;

report 50142 "Make Orders Batch"
{
ApplicationArea = All;
ApplicationArea = All;
Caption = 'Make Orders from Blanket Order Lines ready to ship';
ProcessingOnly = true;
UsageCategory = None;
UsageCategory = None;

dataset
{
Expand Down
6 changes: 3 additions & 3 deletions App/NextPeriodeCalcBatch.Report.al
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;

report 50140 "Next Periode Calc Batch"
{
ApplicationArea = All;
ApplicationArea = All;
Caption = 'Calculate Next Subscription Period';
ProcessingOnly = true;
UsageCategory = None;
UsageCategory = None;

dataset
{
Expand Down
6 changes: 3 additions & 3 deletions App/QtyToShipCalcBatch.Report.al
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;

report 50141 "Qty To Ship Calc Batch"
{
ApplicationArea = All;
ApplicationArea = All;
Caption = 'Calculate Quantity to Ship';
ProcessingOnly = true;
UsageCategory = None;
UsageCategory = None;

dataset
{
Expand Down
2 changes: 1 addition & 1 deletion App/StandardEventSubscribers/EventSubscribers.Codeunit.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;
using Microsoft.Sales.Posting;
Expand Down
2 changes: 1 addition & 1 deletion App/StandardPageExtensions/SubOrderSubform.PageExt.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;

Expand Down
2 changes: 1 addition & 1 deletion App/StandardPageExtensions/SubscriptionItemCard.PageExt.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Inventory.Item;

Expand Down
2 changes: 1 addition & 1 deletion App/StandardPageExtensions/SubscriptionItemList.PageExt.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Inventory.Item;

Expand Down
2 changes: 1 addition & 1 deletion App/StandardPageExtensions/SubscriptionOrder.PageExt.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;

Expand Down
2 changes: 1 addition & 1 deletion App/StandardPageExtensions/SubscriptionOrders.PageExt.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;

Expand Down
6 changes: 3 additions & 3 deletions App/StandardTableExtensions/SubscriptionItem.TableExt.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Inventory.Item;

Expand All @@ -17,8 +17,8 @@ tableextension 50140 "Subscription Item" extends Item
end;
}
field(50001; "Subscription Periodicity"; DateFormula)
{
Caption = 'Subscription Periodicity';
{
Caption = 'Subscription Periodicity';
trigger OnValidate()
var
DateFormulaErr: TextConst ENU = 'The Date Formula %1 will not calculate a date in the future. Please enter a correct Date Formula.';
Expand Down
8 changes: 4 additions & 4 deletions App/StandardTableExtensions/SubscriptionSalesLine.TableExt.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;

Expand All @@ -17,8 +17,8 @@ tableextension 50141 "Subscription Sales Line" extends "Sales Line"
end;
}
field(50001; "Subscription Periodicity"; DateFormula)
{
Caption = 'Subscription Periodicity';
{
Caption = 'Subscription Periodicity';
trigger OnValidate()
var
DateFormulaErr: TextConst ENU = 'The Date Formula %1 will not calculate a date in the future. Please enter a correct Date Formula.';
Expand All @@ -30,7 +30,7 @@ tableextension 50141 "Subscription Sales Line" extends "Sales Line"
field(50002; OrderNumber; Code[20])
{
Caption = 'OrderNumber';
DataClassification = ToBeClassified;
DataClassification = ToBeClassified;
Editable = false;
}
}
Expand Down
6 changes: 3 additions & 3 deletions App/SubSalesOrderLines.Page.al
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;

page 50140 "Sub. Sales Order Lines"
{
ApplicationArea = All;
ApplicationArea = All;
Caption = 'Subscription Sales Order Lines';
PageType = List;
SourceTable = "Sales Line";
SourceTableView = where("Document Type" = const("Blanket Order"),
"Subscription Type" = filter(Recurring | Stop));
UsageCategory = None;
UsageCategory = None;

layout
{
Expand Down
2 changes: 1 addition & 1 deletion App/SubscriptionManagement.Codeunit.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Sales.Document;
using Microsoft.Inventory.Item;
Expand Down
2 changes: 1 addition & 1 deletion Tests/TestSubscriptionApp.Codeunit.al
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FinnPedersenFrance.App.BasicSubscriptionManagement;
namespace FinnPedersenFrance.BasicSubscriptionManagement;

using Microsoft.Inventory.Item;
using Microsoft.Sales.Document;
Expand Down

0 comments on commit f908cff

Please sign in to comment.