somebody can you help me? what is the process for transferring of signatory thank you
Solved
how to transfer signatory in Request for Payment form
Best answer by Yuriy Zaletskyy
In Acumatica, you can transfer a signatory to the Request for Payment form via C# by using the following steps:
- Create a custom field on the APPaymentRequest form to hold the signatory information.
- Create a custom button on the APPaymentRequest form that, when clicked, opens a new form or pop-up window where the user can select the signatory.
- Create a C# event handler for the custom button's click event that retrieves the selected signatory information and assigns it to the custom field on the APPaymentRequest form.
- Make sure the custom field is included in the layout of the APPaymentRequest form and is visible to the user.
Here is an example of C# code that shows how to create a custom button, event handler and custom field on the APPaymentRequest form, and assign the selected signatory to the custom field:
using PX.Data;
using PX.Objects.AP;
namespace AcuPowerOrYourNameSpace
{
public class APPaymentRequest_Extension : PXGraphExtension<APPaymentRequest>
{
//Custom field to hold the signatory information
public abstract class usrSignatory : IBqlField { }
[PXString(250, IsUnicode = true)]
[PXUIField(DisplayName = "Signatory")]
public string UsrSignatory { get; set; }
//Custom button to open the signatory selection form
public PXAction<APPaymentRequest> selectSignatory;
[PXButton(CommitChanges = true)]
[PXUIField(DisplayName = "Select Signatory")]
protected void SelectSignatory()
{
//Open the signatory selection form or pop-up window
}
//Event handler for the custom button's click event
protected void APPaymentRequest_RowSelected(PXCache cache, PXRowSelectedEventArgs e)
{
if (e.Row == null) return;
APPaymentRequest row = (APPaymentRequest)e.Row;
APPaymentRequest_Extension ext = cache.GetExtension<APPaymentRequest_Extension>(row);
//Retrieve the selected signatory information
ext.UsrSignatory = //Retrieve the selected signatory information here;
}
}
}
It is important to keep in mind that the above code is an example and may require modification to match your specific requirements. Additionally, you will have to create the form or pop-up window where the user can select the signatory.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.