How to set Default Value in Opportunity as under.
Next Contact By = doc.user (we tried putting {{doc.owner}}. It did not work
Next Contact Date = Today’s Date
Please advise.
How to set Default Value in Opportunity as under.
Next Contact By = doc.user (we tried putting {{doc.owner}}. It did not work
Next Contact Date = Today’s Date
Please advise.
Try to set default values from Customize Form.
Go to Customize Form and select Opportunity doctype.
Priya Shitole
New Indictrans Technologies Pvt Ltd
Thank you very much Priya. It worked.
Appreciate your support.
Thanking you,
With Regards,
Deven Shah
Safeworld Systems Pvt Ltd
M - 09825060116
@alec_ruizramon1 , I think this is not possible via doctype, but by using custom script you have to calculate date after 7 days from current date and set it to date field.
Try with this code -
frappe.datetime.add_days(new Date(), 7)
Regards,
Priya Shitole