assign to - allow comments
This commit is contained in:
parent
29ed95ba22
commit
06fcfdfcde
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
.todoitem .ref_link {
|
.todoitem .ref_link {
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 14px;
|
margin-left: 10px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,11 @@ erpnext.todo.ToDoItem = Class.extend({
|
|||||||
}
|
}
|
||||||
todo.labelclass = label_map[todo.priority];
|
todo.labelclass = label_map[todo.priority];
|
||||||
todo.userdate = dateutil.str_to_user(todo.date) || '';
|
todo.userdate = dateutil.str_to_user(todo.date) || '';
|
||||||
|
if(todo.assigned_by) {
|
||||||
|
todo.fullname = repl("[By %(fullname)s] ", {
|
||||||
|
fullname: wn.boot.user_info[todo.assigned_by].fullname
|
||||||
|
})
|
||||||
|
}
|
||||||
if(todo.reference_name && todo.reference_type) {
|
if(todo.reference_name && todo.reference_type) {
|
||||||
todo.link = repl('<a href="#!Form/%(reference_type)s/%(reference_name)s">\
|
todo.link = repl('<a href="#!Form/%(reference_type)s/%(reference_name)s">\
|
||||||
%(reference_type)s: %(reference_name)s</a>', todo);
|
%(reference_type)s: %(reference_name)s</a>', todo);
|
||||||
@ -59,7 +64,7 @@ erpnext.todo.ToDoItem = Class.extend({
|
|||||||
<span class="description">\
|
<span class="description">\
|
||||||
<span class="label %(labelclass)s">%(priority)s</span>\
|
<span class="label %(labelclass)s">%(priority)s</span>\
|
||||||
<span class="help" style="margin-right: 7px">%(userdate)s</span>\
|
<span class="help" style="margin-right: 7px">%(userdate)s</span>\
|
||||||
%(description)s</span>\
|
%(fullname)s%(description)s</span>\
|
||||||
<span class="ref_link">→ \
|
<span class="ref_link">→ \
|
||||||
%(link)s</span>\
|
%(link)s</span>\
|
||||||
<a href="#" class="close">×</a>\
|
<a href="#" class="close">×</a>\
|
||||||
|
@ -2170,7 +2170,7 @@ wn.widgets.form.sidebar.AssignTo=Class.extend({init:function(parent,sidebar,doct
|
|||||||
this.refresh();},refresh:function(){var me=this;$c('webnotes.widgets.form.assign_to.get',{doctype:me.doctype,name:me.name},function(r,rt){me.render(r.message)})},render:function(d){var me=this;$(this.body).empty();if(this.dialog){this.dialog.hide();}
|
this.refresh();},refresh:function(){var me=this;$c('webnotes.widgets.form.assign_to.get',{doctype:me.doctype,name:me.name},function(r,rt){me.render(r.message)})},render:function(d){var me=this;$(this.body).empty();if(this.dialog){this.dialog.hide();}
|
||||||
for(var i=0;i<d.length;i++){$(this.body).append(repl('<div>%(owner)s \
|
for(var i=0;i<d.length;i++){$(this.body).append(repl('<div>%(owner)s \
|
||||||
<a class="close" href="#" data-owner="%(owner)s">×</a></div>',d[i]))}
|
<a class="close" href="#" data-owner="%(owner)s">×</a></div>',d[i]))}
|
||||||
$(this.body).find('a.close').click(function(){$c('webnotes.widgets.form.assign_to.remove',{doctype:me.doctype,name:me.name,assign_to:$(this).attr('data-owner')},function(r,rt){me.render(r.message);});return false;});},add:function(){var me=this;if(!me.dialog){me.dialog=new wn.widgets.Dialog({title:'Add to To Do',width:350,fields:[{fieldtype:'Link',fieldname:'assign_to',options:'Profile',label:'Assign To',description:'Add to To Do List of',reqd:true},{fieldtype:'Data',fieldname:'description',label:'Comment','default':'Assigned by '+user},{fieldtype:'Date',fieldname:'date',label:'Complete By'},{fieldtype:'Select',fieldname:'priority',label:'Priority',options:'Low\nMedium\nHigh','default':'Medium'},{fieldtype:'Check',fieldname:'notify',label:'Notify By Email'},{fieldtype:'Button',label:'Add',fieldname:'add_btn'}]});me.dialog.fields_dict.add_btn.input.onclick=function(){var assign_to=me.dialog.fields_dict.assign_to.get_value();if(assign_to){$c('webnotes.widgets.form.assign_to.add',{doctype:me.doctype,name:me.name,assign_to:assign_to,description:me.dialog.fields_dict.description.get_value(),priority:me.dialog.fields_dict.priority.get_value(),date:me.dialog.fields_dict.date.get_value(),notify:me.dialog.fields_dict.notify.get_value()},function(r,rt){me.render(r.message);});}}}
|
$(this.body).find('a.close').click(function(){$c('webnotes.widgets.form.assign_to.remove',{doctype:me.doctype,name:me.name,assign_to:$(this).attr('data-owner')},function(r,rt){me.render(r.message);});return false;});},add:function(){var me=this;if(!me.dialog){me.dialog=new wn.widgets.Dialog({title:'Add to To Do',width:350,fields:[{fieldtype:'Link',fieldname:'assign_to',options:'Profile',label:'Assign To',description:'Add to To Do List of',reqd:true},{fieldtype:'Data',fieldname:'description',label:'Comment'},{fieldtype:'Date',fieldname:'date',label:'Complete By'},{fieldtype:'Select',fieldname:'priority',label:'Priority',options:'Low\nMedium\nHigh','default':'Medium'},{fieldtype:'Check',fieldname:'notify',label:'Notify By Email'},{fieldtype:'Button',label:'Add',fieldname:'add_btn'}]});me.dialog.fields_dict.add_btn.input.onclick=function(){var assign_to=me.dialog.fields_dict.assign_to.get_value();if(assign_to){$c('webnotes.widgets.form.assign_to.add',{doctype:me.doctype,name:me.name,assign_to:assign_to,description:me.dialog.fields_dict.description.get_value(),priority:me.dialog.fields_dict.priority.get_value(),date:me.dialog.fields_dict.date.get_value(),notify:me.dialog.fields_dict.notify.get_value()},function(r,rt){me.render(r.message);});}}}
|
||||||
me.dialog.clear();me.dialog.show();}});
|
me.dialog.clear();me.dialog.show();}});
|
||||||
/*
|
/*
|
||||||
* lib/js/legacy/app.js
|
* lib/js/legacy/app.js
|
||||||
|
@ -1 +1 @@
|
|||||||
841
|
842
|
Loading…
Reference in New Issue
Block a user