Skip to content

Instantly share code, notes, and snippets.

Created July 7, 2014 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c5f44f7f2297133098f4 to your computer and use it in GitHub Desktop.
Save anonymous/c5f44f7f2297133098f4 to your computer and use it in GitHub Desktop.
Adding total quantity in Delivery Note (ERPNEXT)
cur_frm.cscript.custom_validate = function() {
var sum = 0;
$.each(cur_frm.doc.delivery_note_details, function(i, d) { sum += d.qty });
cur_frm.set_value("total_qty", sum);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment