Set default date after 3 month

hello. anyone has ever managed to set a default date to (now + 3 months)?

Hi @bahaou,

please apply it.

cur_frm.cscript.onload = function(doc, cdt, cd)
{
    cur_frm.set_value("your_field_name", frappe.datetime.add_months(get_today(), 3));
};

Then reload and check it.

Thanks.