Query about app

hie all,
i m new to erpNext
i have created app name is meeting…
then edited … meeting.py and meeting.js added the code of def validation as shown in Video

i m not able to set full_name and avoid duplicate entries while i select email id of user …

following is my code…
meeting.py:

# -*- coding: utf-8 -*-
# Copyright (c) 2015, Frappe and contributors
# For license information, please see license.txt

from __future__ import unicode_literals
import frappe
from frappe import _
from frappe.model.document import Document

class Meeting(Document):
    def validate(self):
        """set missing names"""
        found=[]

        for attendee in self.attendees:
            if not attendee.full_name:
                attendee.full_name = get_full_name(attendee.attendee)

            if attendee.attendee in found:
                frappe.throw(_("Attendee {0} entered twice").format(attendee.attendee))

            found.append(attendee.attendee)


@frappe.whitelist()
def get_full_name(attendee):
    user = frappe.get_doc("User",attendee)
    return " ".join(filter(None,[user.first_name, user.middle_name, user.last_name]))


meeting.js:-

// Copyright (c) 2016, Frappe and contributors
// For license information, please see license.txt

frappe.ui.form.on('Meeting Attendee', {
	attendee: function(frm,cdt,cdn) {
        var attendee=frappe.model.get_dco(cdt,cdn);
        if(attendee.attendee){
            frm.call({
                method:"meeting.meeting.doctype.meeting.meeting.get_full_name",
                args:{
                    attendee: attendee.attendee
                },
                callback:function(r){
                    frappe.model.set_value(cdt,cdn,"full_name",r.message);
                }
            });
        }
        else{
            frappe.model.set_value(cdt,cdn,"full_name",null);
        }
    }
})

plz help

What the exact problem?

if you add print statements in def validate, they will show on your bench console.

the problem is i edited both the files…but there is not done any kind effect to my form… if i add attendee in my form it will not fetch the name of user as i want …i refred all vedio as it is which is given in frappe tutorial…but datz not work for me…

this is my form;

You have to try and debug using the browser JS console and the terminal and find where exactly your code is failing.

i tried …there is no error found in my code…what i do…

Try,
var attendee = locals[cdt][cdn]; in place of var attendee=frappe.model.get_dco(cdt,cdn);
this should work, also its frappe.model.get_doc(cdt,cdn);

There is a syntax error. You have misspelled doc.
It’s “frappe.model.get_doc”.

now i got this error in browser console…
Failed to load resource: the server responded with a status of 404 (NOT FOUND)
desk#Form/Meeting/Meeting-1:1 Uncaught SyntaxError: Unexpected token < in JSON at position 0
at JSON.parse ()
at Object. (desk.min.js:142)
at i (jquery.min.js:2)
at Object.fireWith [as rejectWith] (jquery.min.js:2)
at z (jquery.min.js:4)
at XMLHttpRequest. (jquery.min.js:4)…
how can i slow it…
this is my json file…
meeting.json:-1:
{
“allow_copy”: 0,
“allow_import”: 0,
“allow_rename”: 0,
“autoname”: “Meeting-.#”,
“creation”: “2015-11-27 16:27:10.255613”,
“custom”: 0,
“docstatus”: 0,
“doctype”: “DocType”,
“document_type”: “Document”,
“fields”: [
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “title”,
“fieldtype”: “Data”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Title”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “status”,
“fieldtype”: “Select”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Status”,
“length”: 0,
“no_copy”: 0,
“options”: “Planned\nInvitation Sent\nIn Progress\nCompleted\nCancelled”,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 1,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “show_in_website”,
“fieldtype”: “Check”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Show in Website”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “page_name”,
“fieldtype”: “Data”,
“hidden”: 1,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Page Name”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 1,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“default”: “meetings”,
“fieldname”: “parent_website_route”,
“fieldtype”: “Data”,
“hidden”: 1,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Parent Website Route”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 1,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “column_break_3”,
“fieldtype”: “Column Break”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “date”,
“fieldtype”: “Date”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 1,
“label”: “Date”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 1,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “from_time”,
“fieldtype”: “Time”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “From Time”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 1,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “to_time”,
“fieldtype”: “Time”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “To Time”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 1,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 1,
“collapsible_depends_on”: “agenda”,
“fieldname”: “agenda_section”,
“fieldtype”: “Section Break”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Agenda”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “agenda”,
“fieldtype”: “Table”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Agenda”,
“length”: 0,
“no_copy”: 0,
“options”: “Meeting Agenda”,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 1,
“collapsible_depends_on”: “attendees”,
“fieldname”: “attendees_section”,
“fieldtype”: “Section Break”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Attendees”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “attendees”,
“fieldtype”: “Table”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Attendees”,
“length”: 0,
“no_copy”: 0,
“options”: “Meeting Attendee”,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 1,
“fieldname”: “invitation”,
“fieldtype”: “Section Break”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Invitation”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “invitation_message”,
“fieldtype”: “Text Editor”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Invitation Message”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“depends_on”: “eval:doc.status==="Planned"”,
“fieldname”: “send_emails”,
“fieldtype”: “Button”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Send Emails”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 1,
“collapsible_depends_on”: “minutes”,
“fieldname”: “minutes_section”,
“fieldtype”: “Section Break”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Minutes”,
“length”: 0,
“no_copy”: 0,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
},
{
“allow_on_submit”: 0,
“bold”: 0,
“collapsible”: 0,
“fieldname”: “minutes”,
“fieldtype”: “Table”,
“hidden”: 0,
“ignore_user_permissions”: 0,
“in_filter”: 0,
“in_list_view”: 0,
“label”: “Minutes”,
“length”: 0,
“no_copy”: 0,
“options”: “Meeting Minute”,
“permlevel”: 0,
“precision”: “”,
“print_hide”: 0,
“print_hide_if_no_value”: 0,
“read_only”: 0,
“report_hide”: 0,
“reqd”: 0,
“search_index”: 0,
“set_only_once”: 0,
“unique”: 0
}
],
“hide_heading”: 0,
“hide_toolbar”: 0,
“idx”: 0,
“in_create”: 0,
“in_dialog”: 0,
“is_submittable”: 0,
“issingle”: 0,
“istable”: 0,
“max_attachments”: 0,
“modified”: “2015-12-10 17:34:50.888498”,
“modified_by”: “Administrator”,
“module”: “Meeting”,
“name”: “Meeting”,
“name_case”: “”,
“owner”: “Administrator”,
“permissions”: [
{
“amend”: 0,
“apply_user_permissions”: 0,
“cancel”: 0,
“create”: 0,
“delete”: 0,
“email”: 1,
“export”: 1,
“if_owner”: 0,
“import”: 0,
“permlevel”: 0,
“print”: 1,
“read”: 1,
“report”: 1,
“role”: “Meeting Manager”,
“set_user_permissions”: 0,
“share”: 1,
“submit”: 0,
“write”: 0
},
{
“amend”: 0,
“apply_user_permissions”: 0,
“cancel”: 0,
“create”: 1,
“delete”: 1,
“email”: 1,
“export”: 1,
“if_owner”: 0,
“import”: 0,
“permlevel”: 0,
“print”: 1,
“read”: 1,
“report”: 1,
“role”: “Meeting Attendee”,
“set_user_permissions”: 0,
“share”: 1,
“submit”: 0,
“write”: 1
}
],
“read_only”: 0,
“read_only_onload”: 0,
“sort_field”: “modified”,
“sort_order”: “DESC”,
“title_field”: “title”
}