Skip to content
Merged
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
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
"id": "5452f323-059e-499a-9753-5d2c07eef904",
"publisher": "NovaVision Software A/S",
"name": "PrintVis",
"version": "24.0.0.0"
"version": "26.0.0.0"
}
],
"screenshots": [],
"platform": "1.0.0.0",
"application": "24.0.0.0",
"platform": "25.0.0.0",
"application": "25.0.0.0",
"idRanges": [
{
"from": 80101,
Expand All @@ -47,5 +47,6 @@
"runtime": "11.0",
"features": [
"NoImplicitWith"
]
],
"preprocessorSymbols": ["CLEAN26"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
MoveTableDataSalesHeader();
MoveTableDataSalesLine();
MoveTableDataSalesHeaderArchive();
#if NOT CLEAN26
MoveUserSetupFields();
#endif
MoveTableDataSPVSGeneralSetup();
end;

Expand Down Expand Up @@ -50,7 +52,7 @@
if PurchaseHeader.FindSet() then
repeat
PurchaseHeader."PTE SOI Coordinator" := PurchaseHeader."PTE UBG Coordinator";
PurchaseHeader."PTE SOI Control Qty Incl. VAT" := PurchaseHeader."PTE UBG Cont Amount Incl. VAT";

Check warning on line 55 in Sales Order Integration/PTE Sales Order Integration Move Data/src/Codeunit/PTEUBGMoveData.Codeunit.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0432 Field 'PTE SOI Control Qty Incl. VAT' is marked for removal. Reason: Not used anymore. Tag: 22.0.

Check warning on line 55 in Sales Order Integration/PTE Sales Order Integration Move Data/src/Codeunit/PTEUBGMoveData.Codeunit.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0432 Field 'PTE UBG Cont Amount Incl. VAT' is marked for removal. Reason: Not used anymore. Tag: 22.0.
PurchaseHeader."PTE SOI Deadline" := PurchaseHeader."PTE UBG Deadline";
PurchaseHeader."PTE SOI Expected Receipt Time" := PurchaseHeader."PTE UBG Expected Receipt Time";
PurchaseHeader."PTE SOI Manual Responsible" := PurchaseHeader."PTE UBG Manual Responsible";
Expand Down Expand Up @@ -98,7 +100,7 @@
if PurchaseHeaderArchive.FindSet() then
repeat
PurchaseHeaderArchive."PTE SOI Archived" := PurchaseHeaderArchive."PTE UBG Archived";
PurchaseHeaderArchive."PTE SOI Control Qty Incl. VAT" := PurchaseHeaderArchive."PTE UBG Cont Amount Incl. VAT";

Check warning on line 103 in Sales Order Integration/PTE Sales Order Integration Move Data/src/Codeunit/PTEUBGMoveData.Codeunit.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0432 Field 'PTE SOI Control Qty Incl. VAT' is marked for removal. Reason: Not used anymore. Tag: 22.0.

Check warning on line 103 in Sales Order Integration/PTE Sales Order Integration Move Data/src/Codeunit/PTEUBGMoveData.Codeunit.al

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

AL0432 Field 'PTE UBG Cont Amount Incl. VAT' is marked for removal. Reason: Not used anymore. Tag: 22.0.
PurchaseHeaderArchive."PTE SOI Coordinator" := PurchaseHeaderArchive."PTE UBG Coordinator";
PurchaseHeaderArchive."PTE SOI Deadline" := PurchaseHeaderArchive."PTE UBG Deadline";
PurchaseHeaderArchive."PTE SOI Expected Receipt Time" := PurchaseHeaderArchive."PTE UBG Expected Receipt Time";
Expand Down Expand Up @@ -214,7 +216,7 @@
SalesHeaderArchive.Modify(false);
until SalesHeaderArchive.Next() = 0;
end;

#if NOT CLEAN26
local procedure MoveUserSetupFields()
var
PVSUserSetup: Record "PVS User Setup";
Expand All @@ -225,7 +227,7 @@
PVSUserSetup."PTE SOI Case Management Start" := PVSUserSetup."Case Management Start";
until PVSUserSetup.Next() = 0;
end;

#endif
local procedure MoveTableDataSPVSGeneralSetup()
var
PVSGeneralSetup: Record "PVS General Setup";
Expand Down
Loading