Hello everyone,
The version of Acumatica I’m working with is 2025 R2.
I’ll have to paste the source code into pastebin since the source code is a bit too long and the post cannot be created
the HTML file
the TS file that contains the viewinfo
and the actual views TS file
now the files from my colleague:
The HTML file
the TS file
Now the C# code for the buttons:
the method of the Confirm button
the Change Order button method:
public PXAction<ArcContractLine> changeOrder;
[PXUIField(DisplayName = "Change Order")]
[PXButton]
protected virtual IEnumerable ChangeOrder(PXAdapter adapter)
{
if (PanelContract.AskExt(true) == WebDialogResult.OK)
{
ChangeOrderProceed();
}
throw new PXRefreshException();
}

