Payment Request "To Email" not pulling correctly

Hello all,

We’re having an issue with the customer’s “to” email not pulling through correctly into our Payment Request forms, and the field is defaulting to the email of the user who created the customer.
I have a custom field, “customer.default_email,” on the customer record, that would be useful to fetch data from. I changed the To field to default to this customer.default_email field, as described in the screenshot below, but it is not pulling forward properly into the Payment Request form. What can I do to fix this? Do I need a more robust “if” statement in the code for fetching the default_email field? Does the default_email field need to be a different datatype than it is now (data) to show up correctly here? Thank you for your help!


image

@welihayes

This code should be able to pull the email from the customer master if the fetch from part is written correctly.

If you need the email to be picked up in the email box, write Email in the Options section of your field. This will tell ERPNext to validate the data entered in the field as an email ID.

Hey Kenneth,
Attached is a screenshot of the customer’s default_email field (this is a test customer with some junk data for display) in screenshot 1, and in screenshot 2 is a capture of what is happening by default on a new Payment Request – it is defaulting to my email address since I was the one who created the customer. The fetch statement is as shown in the original post. Still not sure why this is happening. This customer does NOT have a primary contact linked to it, but even customers who do have a primary contact with an email address linked are not functioning correctly for us in this regard.


Is there is a reason to use this custom field as a source of the email for payment request? The system will pick up the email you’ve selected in the Sales Order/Invoice belonging to the customer for this purpose by default.

Looks like this is getting overriden from the serverside itself:

Instead of this, why don’t you create a default contact for the customer, create a new order/invoice from that and check if the payment request is picking up the correct email.

Hey Kenneth,

That fix works for new sales orders where the customer has a primary contact set up. One day when we get our own server instance set up I will make sure to go in and edit this code, but for now we’re using the online version. :slight_smile:

I will advise my sales team that when they create a customer they will need to set up a primary contact for the customer as well as filling out those custom “default” fields that we use for other purposes.

In the meantime, is there no way to override that code that’s being run by the server when it fetches the payer_email field?

While I have not tested this, using server scripts might be your best bet.

I would really suggest not to edit code directly especially for smaller use cases. This will put you in a bad habit of editing the code directly and you may eventually end up in a situation where you’ll have issues maintaining your changes and upgrading in the long run.

It is always best to start with the base system, learn the best practices for using, configuring, and developing the system/customization or hiring someone who does this for a living :slight_smile:

Awesome, thank you so much for your help. I am a DBA/SQL developer and have only dabbled in Python but we love ERPNext. Those links are very helpful. :slight_smile: Have a good one and thank you again for assisting in figuring out this issue!

Hello guys, since the original issue ERPNext changed a lot, fortunately.
And there is no Default Email anymore on the Customer Name and Type section.

Now we have an Email id in Primary Address and Contact Detail section on the same customer form.

But the issue is that this or any other customer-related email address still doesn’t fetch to payment request’s “email to” field.

Is there any way to fix it?

Thank you

ps: its pull the user’s email address who created the payment request.