Salary Link or get from ctc

PHOTO EMBED

Mon Sep 18 2023 20:26:33 GMT+0000 (Coordinated Universal Time)

Saved by @Taimoor #terminal

//Replace Your Field with "custom_salary1" //


frappe.ui.form.on('Employee', {
    refresh: function(frm) {
        // Add a trigger when the form is refreshed or loaded
        frm.events.custom_salary1_from_ctc(frm);
    },
    ctc: function(frm) {
        // Add a trigger when the ctc field is changed
        frm.events.custom_salary1_from_ctc(frm);
    },
    custom_salary1_from_ctc: function(frm) {
        // Get the value from the ctc field and set it in custom_salary1
        var ctc_value = frm.doc.ctc;
        frm.set_value('custom_salary1', ctc_value);
    }
});
content_copyCOPY