@makarand_b @Ben_Cornwell_Mott
Thanks for all.
I do the CustomScript with your information.
frappe.ui.form.on(“Oportunidad TIBA”,“refresh”, function(frm)
{
switch(frm.doc.oportunidad_desde)
{
case “Iniciativa”:
cur_frm.add_fetch(“iniciativa”, “giro”, “giro”);
cur_frm.add_fetch(“iniciativa”, “nomcliente”, “nomcliente”);
cur_frm.add_fetch(“iniciativa”, “descripcion”, “descripcion”);
cur_frm.add_fetch(“iniciativa”, “territorio”, “territorio”);
cur_frm.add_fetch(“iniciativa”, “nomcontacto”, “nomcontacto”);
cur_frm.add_fetch(“iniciativa”, “telcontacto”, “telcontacto”);
cur_frm.add_fetch(“iniciativa”, “dircontacto”, “dircontacto”);
cur_frm.add_fetch(“iniciativa”, “econtacto”, “econtacto”);
cur_frm.add_fetch(“iniciativa”, “secmercado”, “secmercado”);
cur_frm.add_fetch(“iniciativa”, “fechaidentificacion”, “fechaidentificacion”);
break;
case “Cliente”:
cur_frm.add_fetch(“cliente”, “giro”, “giro”);
cur_frm.add_fetch(“cliente”, “nomcliente”, “nomcliente”);
cur_frm.add_fetch(“cliente”, “descripcion”, “descripcion”);
cur_frm.add_fetch(“cliente”, “territorio”, “territorio”);
cur_frm.add_fetch(“cliente”, “nomcontacto”, “nomcontacto”);
cur_frm.add_fetch(“cliente”, “telcontacto”, “telcontacto”);
cur_frm.add_fetch(“cliente”, “dircontacto”, “dircontacto”);
cur_frm.add_fetch(“cliente”, “econtacto”, “econtacto”);
cur_frm.add_fetch(“cliente”, “secmercado”, “secmercado”);
cur_frm.add_fetch(“cliente”, “fechaidentificacion”, “fechaidentificacion”);
break;
}
var total = 0
total = flt(frm.doc.cmensual)/ (1 - flt(frm.doc.margen/100))
frm.doc.pmensual= total;
})
thanks.