mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-04 22:18:27 +00:00
task listview and added footer to email digest
This commit is contained in:
@@ -9,30 +9,41 @@ wn.doclistviews['Task'] = wn.views.ListView.extend({
|
||||
'`tabTask`.priority',
|
||||
'`tabTask`.allocated_to',
|
||||
]);
|
||||
this.stats = this.stats.concat(['status']);
|
||||
},
|
||||
|
||||
label_style: {
|
||||
"status": {
|
||||
"Open": "danger",
|
||||
"Closed": "success",
|
||||
"Hold": "info",
|
||||
"Waiting for Customer": "info"
|
||||
}
|
||||
},
|
||||
|
||||
prepare_data: function(data) {
|
||||
this._super(data);
|
||||
data.opening_date = wn.datetime.str_to_user(data.opening_date);
|
||||
|
||||
data.label_style = this.label_style.status[data.status];
|
||||
|
||||
data.status_html = repl('<span class="label \
|
||||
label-%(label_style)s">%(status)s</span>', data);
|
||||
|
||||
// escape double quotes
|
||||
data.description = cstr(data.subject)
|
||||
+ " | " + cstr(data.description);
|
||||
|
||||
data.description = data.description.replace(/"/gi, '\"')
|
||||
.replace(/</gi, '<').replace(/>/gi, '>');
|
||||
},
|
||||
|
||||
columns: [
|
||||
{width: '3%', content: 'check'},
|
||||
{width: '5%', content: 'avatar'},
|
||||
{width: '3%', content: 'docstatus'},
|
||||
{width: '12%', content: 'name'},
|
||||
{width: '30%', content: 'subject+tags'},
|
||||
{
|
||||
width: '15%',
|
||||
content: function(parent, data) {
|
||||
$(parent).html(data.status +
|
||||
(data.priority ? " [" + data.priority + "]" : "")
|
||||
);
|
||||
},
|
||||
},
|
||||
{width: '5%', content: 'avatar_modified'},
|
||||
{width: '20%', content:'name'},
|
||||
{width: '10%', content:'status_html'},
|
||||
{width: '40%', content: 'subject+tags'},
|
||||
{width: '20%', content: 'allocated_to'},
|
||||
{width: '12%', content:'opening_date', css: {
|
||||
'text-align': 'right', 'color':'#777'
|
||||
}},
|
||||
{width: '12%', content:'modified', css: {'text-align': 'right', 'color':'#777'}}
|
||||
]
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user