This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
[fix] When composing email via timeline, if no last email, set subject as [DocType]: [Name]
version-14
Anand Doshi
10 years ago
parent
265dbd1473
commit
69ca8a73d5
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
frappe/public/js/frappe/views/communication.js
+ 4
- 0
frappe/public/js/frappe/views/communication.js
View File
@@ -118,6 +118,10 @@ frappe.views.CommunicationComposer = Class.extend({
this.subject = "Re: " + this.subject;
}
}
if (!this.subject) {
this.subject = __(this.frm.doctype) + ': ' + this.frm.docname;
}
}
},
Write
Preview
Loading…
Cancel
Save