|
- // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
- // MIT License. See license.txt
-
- /* Form page structure
-
- + this.parent (either FormContainer or Dialog)
- + this.wrapper
- + this.toolbar
- + this.form_wrapper
- + this.head
- + this.body
- + this.layout
- + this.sidebar
- + this.footer
- */
-
- frappe.provide('_f');
- frappe.provide('frappe.ui.form');
-
- frappe.ui.form.Controller = Class.extend({
- init: function(opts) {
- $.extend(this, opts);
- this.setup && this.setup();
- }
- });
-
- _f.frms = {};
-
- _f.Frm = function(doctype, parent, in_form) {
- this.docname = '';
- this.doctype = doctype;
- this.display = 0;
- this.refresh_if_stale_for = 120;
-
- var me = this;
- this.opendocs = {};
- this.sections = [];
- this.grids = [];
- this.cscript = new frappe.ui.form.Controller({frm:this});
- this.events = {};
- this.pformat = {};
- this.fetch_dict = {};
- this.parent = parent;
- this.tinymce_id_list = [];
-
- this.setup_meta(doctype);
-
- // show in form instead of in dialog, when called using url (router.js)
- this.in_form = in_form ? true : false;
-
- // notify on rename
- var me = this;
- $(document).on('rename', function(event, dt, old_name, new_name) {
- if(dt==me.doctype)
- me.rename_notify(dt, old_name, new_name)
- });
- }
-
- _f.Frm.prototype.check_doctype_conflict = function(docname) {
- var me = this;
- if(this.doctype=='DocType' && docname=='DocType') {
- msgprint(__('Allowing DocType, DocType. Be careful!'))
- } else if(this.doctype=='DocType') {
- if (frappe.views.formview[docname] || frappe.pages['List/'+docname]) {
- msgprint(__("Cannot open {0} when its instance is open", ['DocType']))
- throw 'doctype open conflict'
- }
- } else {
- if (frappe.views.formview.DocType && frappe.views.formview.DocType.frm.opendocs[this.doctype]) {
- msgprint(__("Cannot open instance when its {0} is open", ['DocType']))
- throw 'doctype open conflict'
- }
- }
- }
-
- _f.Frm.prototype.setup = function() {
-
- var me = this;
- this.fields = [];
- this.fields_dict = {};
- this.state_fieldname = frappe.workflow.get_state_fieldname(this.doctype);
-
- // wrapper
- this.wrapper = this.parent;
- frappe.ui.make_app_page({
- parent: this.wrapper,
- single_column: this.meta.hide_toolbar
- });
- this.page = this.wrapper.page;
- this.layout_main = this.page.main.get(0);
-
- this.toolbar = new frappe.ui.form.Toolbar({
- frm: this,
- page: this.page
- });
-
- // print layout
- this.setup_print_layout();
-
- // 2 column layout
- this.setup_std_layout();
-
- // client script must be called after "setup" - there are no fields_dict attached to the frm otherwise
- this.script_manager = new frappe.ui.form.ScriptManager({
- frm: this
- });
- this.script_manager.setup();
- this.watch_model_updates();
-
- if(!this.meta.hide_toolbar) {
- this.footer = new frappe.ui.form.Footer({
- frm: this,
- parent: $('<div>').appendTo(this.page.main.parent())
- })
- }
- this.setup_drag_drop();
-
- this.setup_done = true;
- }
-
- _f.Frm.prototype.setup_drag_drop = function() {
- var me = this;
- $(this.wrapper).on('dragenter dragover', false)
- .on('drop', function (e) {
- var dataTransfer = e.originalEvent.dataTransfer;
- if (!(dataTransfer && dataTransfer.files && dataTransfer.files.length > 0)) {
- return;
- }
-
- e.stopPropagation();
- e.preventDefault();
-
- if(me.doc.__islocal) {
- msgprint(__("Please save before attaching."));
- throw "attach error";
- }
-
- if(me.attachments.max_reached()) {
- msgprint(__("Maximum Attachment Limit for this record reached."));
- throw "attach error";
- }
-
- frappe.upload.upload_file(dataTransfer.files[0], me.attachments.get_args(), {
- callback: function(attachment, r) {
- me.attachments.attachment_uploaded(attachment, r);
- }
- });
- });
- }
-
- _f.Frm.prototype.setup_print_layout = function() {
- this.print_preview = new frappe.ui.form.PrintPreview({
- frm: this
- })
- }
-
- _f.Frm.prototype.print_doc = function() {
- if(this.print_preview.wrapper.is(":visible")) {
- this.hide_print();
- return;
- }
- if(!frappe.model.can_print(this.doc.doctype, cur_frm)) {
- msgprint(__("You are not allowed to print this document"));
- return;
- }
-
- if(this.doc.docstatus==2) {
- msgprint(__("Cannot print cancelled documents"));
- return;
- }
- this.print_preview.refresh_print_options().trigger("change");
- this.page.set_view("print");
- }
-
- _f.Frm.prototype.hide_print = function() {
- if(this.setup_done && this.page.current_view_name==="print") {
- this.page.set_view(this.page.previous_view_name==="print" ?
- "main" : (this.page.previous_view_name || "main"));
- }
- }
-
- _f.Frm.prototype.watch_model_updates = function() {
- // watch model updates
- var me = this;
-
- // on main doc
- frappe.model.on(me.doctype, "*", function(fieldname, value, doc) {
- // set input
- if(doc.name===me.docname) {
- me.dirty();
- me.fields_dict[fieldname]
- && me.fields_dict[fieldname].refresh(fieldname);
-
- me.layout.refresh_dependency();
- me.script_manager.trigger(fieldname, doc.doctype, doc.name);
- }
- })
-
- // on table fields
- var table_fields = frappe.get_children("DocType", me.doctype, "fields", {fieldtype:"Table"});
-
- // using $.each to preserve df via closure
- $.each(table_fields, function(i, df) {
- frappe.model.on(df.options, "*", function(fieldname, value, doc) {
- if(doc.parent===me.docname && doc.parentfield===df.fieldname) {
- me.dirty();
- me.fields_dict[df.fieldname].grid.set_value(fieldname, value, doc);
- me.script_manager.trigger(fieldname, doc.doctype, doc.name);
- }
- });
- });
- }
-
- _f.Frm.prototype.setup_std_layout = function() {
- this.form_wrapper = $('<div></div>').appendTo(this.layout_main);
- this.body = $('<div></div>').appendTo(this.form_wrapper);
-
- // only tray
- this.meta.section_style='Simple'; // always simple!
-
- // layout
- this.layout = new frappe.ui.form.Layout({
- parent: this.body,
- doctype: this.doctype,
- frm: this,
- });
- this.layout.make();
-
- this.fields_dict = this.layout.fields_dict;
- this.fields = this.layout.fields_list;
-
- this.dashboard = new frappe.ui.form.Dashboard({
- frm: this,
- });
-
- // state
- this.states = new frappe.ui.form.States({
- frm: this
- });
- }
-
- // email the form
- _f.Frm.prototype.email_doc = function(message) {
- new frappe.views.CommunicationComposer({
- doc: this.doc,
- frm: this,
- subject: __(this.meta.name) + ': ' + this.docname,
- recipients: this.doc.email || this.doc.email_id || this.doc.contact_email,
- attach_document_print: true,
- message: message,
- real_name: this.doc.real_name || this.doc.contact_display || this.doc.contact_name
- });
- }
-
- // rename the form
- _f.Frm.prototype.rename_doc = function() {
- frappe.model.rename_doc(this.doctype, this.docname);
- }
-
- _f.Frm.prototype.share_doc = function() {
- this.shared.show();
- }
-
- // notify this form of renamed records
- _f.Frm.prototype.rename_notify = function(dt, old, name) {
- // from form
- if(this.meta.istable)
- return;
-
- if(this.docname == old)
- this.docname = name;
- else
- return;
-
- // cleanup
- if(this && this.opendocs[old]) {
- // delete docfield copy
- frappe.meta.docfield_copy[dt][name] = frappe.meta.docfield_copy[dt][old];
- delete frappe.meta.docfield_copy[dt][old];
- }
-
- delete this.opendocs[old];
- this.opendocs[name] = true;
-
- if(this.meta.in_dialog || !this.in_form) {
- return;
- }
-
- frappe.re_route[window.location.hash] = '#Form/' + encodeURIComponent(this.doctype) + '/' + encodeURIComponent(name);
- frappe.set_route('Form', this.doctype, name);
- }
-
- // SETUP
-
- _f.Frm.prototype.setup_meta = function(doctype) {
- this.meta = frappe.get_doc('DocType',this.doctype);
- this.perm = frappe.perm.get_perm(this.doctype); // for create
- if(this.meta.istable) { this.meta.in_dialog = 1 }
- }
-
- _f.Frm.prototype.refresh_header = function() {
- // set title
- // main title
- if(!this.meta.in_dialog || this.in_form) {
- frappe.utils.set_title(this.meta.issingle ? this.doctype : this.docname);
- }
-
- if(frappe.ui.toolbar.recent)
- frappe.ui.toolbar.recent.add(this.doctype, this.docname, 1);
-
- // show / hide buttons
- if(this.toolbar) {
- this.toolbar.refresh();
- }
-
- this.clear_custom_buttons();
-
- this.show_web_link();
- }
-
- _f.Frm.prototype.show_web_link = function() {
- var doc = this.doc, me = this;
- if(!doc.__islocal && doc.__onload && doc.__onload.is_website_generator) {
- me.web_link && me.web_link.remove();
- if(doc.__onload.published) {
- me.web_link = me.sidebar.add_user_action("See on Website",
- function() {}).attr("href", "/" + doc.__onload.website_route).attr("target", "_blank");
- }
- }
- }
-
- _f.Frm.prototype.check_doc_perm = function() {
- // get perm
- var dt = this.parent_doctype?this.parent_doctype : this.doctype;
- this.perm = frappe.perm.get_perm(dt, this.doc);
-
- if(!this.perm[0].read) {
- return 0;
- }
- return 1
- }
-
- _f.Frm.prototype.refresh = function(docname) {
- // record switch
- if(docname) {
- if(this.docname != docname && (!this.meta.in_dialog || this.in_form) &&
- !this.meta.istable) {
- scroll(0, 0);
- this.hide_print();
- }
- frappe.ui.form.close_grid_form();
- this.docname = docname;
- }
-
- cur_frm = this;
-
- if(this.docname) { // document to show
-
- // set the doc
- this.doc = frappe.get_doc(this.doctype, this.docname);
-
- // check permissions
- if(!this.check_doc_perm()) {
- frappe.show_not_permitted(__(this.doctype) + " " + __(this.docname));
- return;
- }
-
- // read only (workflow)
- this.read_only = frappe.workflow.is_read_only(this.doctype, this.docname);
-
- // check if doctype is already open
- if (!this.opendocs[this.docname]) {
- this.check_doctype_conflict(this.docname);
- } else {
- if(this.doc && (!this.doc.__unsaved) && this.doc.__last_sync_on &&
- (new Date() - this.doc.__last_sync_on) > (this.refresh_if_stale_for * 1000)) {
- this.reload_doc();
- return;
- }
- }
-
- // do setup
- if(!this.setup_done) this.setup();
-
- // load the record for the first time, if not loaded (call 'onload')
- cur_frm.cscript.is_onload = false;
- if(!this.opendocs[this.docname]) {
- cur_frm.cscript.is_onload = true;
- this.setnewdoc();
- } else {
- this.render_form();
- }
-
- // if print format is shown, refresh the format
- if(this.print_preview.wrapper.is(":visible")) {
- this.print_preview.preview();
- }
- }
- }
-
- _f.Frm.prototype.render_form = function() {
- if(!this.meta.istable) {
- this.layout.doc = this.doc;
- this.layout.attach_doc_and_docfields()
-
- this.sidebar = new frappe.ui.form.Sidebar({
- frm: this,
- page: this.page
- });
-
- // header must be refreshed before client methods
- // because add_custom_button
- this.refresh_header();
-
- // call trigger
- this.script_manager.trigger("refresh");
-
- // trigger global trigger
- // to use this
- $(document).trigger('form_refresh');
-
- // fields
- this.refresh_fields();
-
-
- // call onload post render for callbacks to be fired
- if(this.cscript.is_onload) {
- this.script_manager.trigger("onload_post_render");
- }
-
- // focus on first input
-
- if(this.doc.docstatus==0) {
- var first = this.form_wrapper.find('.form-layout-row :input:first');
- if(!in_list(["Date", "Datetime"], first.attr("data-fieldtype"))) {
- first.focus();
- }
- }
-
- } else {
- this.refresh_header();
- }
-
- $(cur_frm.wrapper).trigger('render_complete');
-
- }
-
- _f.Frm.prototype.refresh_field = function(fname) {
- cur_frm.fields_dict[fname] && cur_frm.fields_dict[fname].refresh
- && cur_frm.fields_dict[fname].refresh();
- }
-
- _f.Frm.prototype.refresh_fields = function() {
- this.layout.refresh(this.doc);
- this.layout.primary_button = $(this.wrapper).find(".btn-primary");
-
- // cleanup activities after refresh
- this.cleanup_refresh(this);
- }
-
-
- _f.Frm.prototype.cleanup_refresh = function() {
- var me = this;
- if(me.fields_dict['amended_from']) {
- if (me.doc.amended_from) {
- unhide_field('amended_from');
- if (me.fields_dict['amendment_date']) unhide_field('amendment_date');
- } else {
- hide_field('amended_from');
- if (me.fields_dict['amendment_date']) hide_field('amendment_date');
- }
- }
-
- if(me.fields_dict['trash_reason']) {
- if(me.doc.trash_reason && me.doc.docstatus == 2) {
- unhide_field('trash_reason');
- } else {
- hide_field('trash_reason');
- }
- }
-
- if(me.meta.autoname && me.meta.autoname.substr(0,6)=='field:' && !me.doc.__islocal) {
- var fn = me.meta.autoname.substr(6);
- cur_frm.toggle_display(fn, false);
- }
-
- if(me.meta.autoname=="naming_series:" && !me.doc.__islocal) {
- cur_frm.toggle_display("naming_series", false);
- }
- }
-
- _f.Frm.prototype.setnewdoc = function() {
- // moved this call to refresh function
- // this.check_doctype_conflict(docname);
- var me = this;
-
- // hide any open grid
- this.script_manager.trigger("before_load", this.doctype, this.docname, function() {
- me.script_manager.trigger("onload");
- me.opendocs[me.docname] = true;
- me.render_form();
- if(frappe.route_options) {
- $.each(frappe.route_options, function(fieldname, value) {
- try {
- me.set_value(fieldname, value);
- } catch (e) {
- // pass - see error log
- }
- });
-
- frappe.route_options = null;
- }
- frappe.breadcrumbs.add(me.meta.module, me.doctype)
- })
-
- }
-
- _f.Frm.prototype.runscript = function(scriptname, callingfield, onrefresh) {
- var me = this;
- if(this.docname) {
- // send to run
- if(callingfield)
- $(callingfield.input).set_working();
-
- frappe.call({
- method: "runserverobj",
- args: {'docs':this.doc, 'method':scriptname },
- btn: callingfield.$input,
- callback: function(r) {
- if(!r.exc) {
- if(onrefresh) {
- onrefresh(r);
- }
-
- me.refresh_fields();
- }
- }
- });
- }
- }
-
- _f.Frm.prototype.copy_doc = function(onload, from_amend) {
- this.validate_form_action("Create");
- var newdoc = frappe.model.copy_doc(this.doc, from_amend);
-
- newdoc.idx = null;
- if(onload)onload(newdoc);
- loaddoc(newdoc.doctype, newdoc.name);
- }
-
- _f.Frm.prototype.reload_doc = function() {
- this.check_doctype_conflict(this.docname);
-
- var me = this;
- var onsave = function(r, rtxt) {
- me.refresh();
- }
-
- if(!me.doc.__islocal) {
- frappe.model.remove_from_locals(me.doctype, me.docname);
- frappe.model.with_doc(me.doctype, me.docname, function() {
- me.refresh();
- })
- }
- }
-
- var validated;
- _f.Frm.prototype.save = function(save_action, callback, btn, on_error) {
- btn && $(btn).prop("disabled", true);
- $(document.activeElement).blur();
-
- frappe.ui.form.close_grid_form();
-
- // let any pending js process finish
- var me = this;
- setTimeout(function() { me._save(save_action, callback, btn, on_error) }, 100);
- }
-
- _f.Frm.prototype._save = function(save_action, callback, btn, on_error) {
- var me = this;
- if(!save_action) save_action = "Save";
- this.validate_form_action(save_action);
-
- if((!this.meta.in_dialog || this.in_form) && !this.meta.istable)
- scroll(0, 0);
-
- var after_save = function(r) {
- if(!r.exc) {
- me.script_manager.trigger("after_save");
- me.refresh();
- } else {
- if(on_error)
- on_error();
- }
- callback && callback(r);
-
- if(frappe._from_link) {
- if(me.doctype===frappe._from_link.df.options) {
- frappe._from_link.parse_validate_and_set_in_model(me.docname);
- frappe.set_route("Form", frappe._from_link.frm.doctype, frappe._from_link.frm.docname);
- setTimeout(function() { scroll(0, frappe._from_link_scrollY); }, 100);
- }
- frappe._from_link = null;
- }
- }
-
- if(save_action != "Update") {
- // validate
- validated = true;
- $.when(this.script_manager.trigger("validate"), this.script_manager.trigger("before_save"))
- .done(function() {
- // done is called after all ajaxes in validate & before_save are completed :)
-
- if(!validated) {
- if(on_error)
- on_error();
- return;
- }
-
- frappe.ui.form.save(me, save_action, after_save, btn);
- });
-
- } else {
- frappe.ui.form.save(me, save_action, after_save, btn);
- }
- }
-
-
- _f.Frm.prototype.savesubmit = function(btn, callback, on_error) {
- var me = this;
- this.validate_form_action("Submit");
- frappe.confirm(__("Permanently Submit {0}?", [this.docname]), function() {
- validated = true;
- me.script_manager.trigger("before_submit").done(function() {
- if(!validated) {
- if(on_error)
- on_error();
- return;
- }
-
- me.save('Submit', function(r) {
- if(!r.exc) {
- callback && callback();
- me.script_manager.trigger("on_submit");
- }
- }, btn, on_error);
- });
- }, on_error);
- };
-
- _f.Frm.prototype.savecancel = function(btn, callback, on_error) {
- var me = this;
- this.validate_form_action('Cancel');
- frappe.confirm(__("Permanently Cancel {0}?", [this.docname]), function() {
- validated = true;
- me.script_manager.trigger("before_cancel").done(function() {
- if(!validated) {
- if(on_error)
- on_error();
- return;
- }
-
- var after_cancel = function(r) {
- if(!r.exc) {
- me.refresh();
- callback && callback();
- me.script_manager.trigger("after_cancel");
- } else {
- on_error();
- }
- }
- frappe.ui.form.save(me, "cancel", after_cancel, btn);
- });
- }, on_error);
- }
-
- // delete the record
- _f.Frm.prototype.savetrash = function() {
- this.validate_form_action("Delete");
- frappe.model.delete_doc(this.doctype, this.docname, function(r) {
- window.history.back();
- })
- }
-
- _f.Frm.prototype.amend_doc = function() {
- if(!this.fields_dict['amended_from']) {
- alert('"amended_from" field must be present to do an amendment.');
- return;
- }
- this.validate_form_action("Amend");
- var me = this;
- var fn = function(newdoc) {
- newdoc.amended_from = me.docname;
- if(me.fields_dict && me.fields_dict['amendment_date'])
- newdoc.amendment_date = dateutil.obj_to_str(new Date());
- }
- this.copy_doc(fn, 1);
- }
-
- _f.Frm.prototype.disable_save = function() {
- // IMPORTANT: this function should be called in refresh event
- this.save_disabled = true;
- this.page.clear_primary_action();
- }
-
- _f.Frm.prototype.enable_save = function() {
- this.save_disabled = false;
- this.toolbar.set_primary_action();
- }
-
- _f.Frm.prototype.save_or_update = function() {
- if(this.save_disabled) return;
-
- if(this.doc.docstatus===0) {
- this.save();
- } else if(this.doc.docstatus===1 && this.doc.__unsaved) {
- this.save("Update");
- }
- }
-
- _f.get_value = function(dt, dn, fn) {
- if(locals[dt] && locals[dt][dn])
- return locals[dt][dn][fn];
- }
-
- _f.Frm.prototype.dirty = function() {
- this.doc.__unsaved = 1;
- $(this.wrapper).trigger('dirty');
- }
-
- _f.Frm.prototype.get_docinfo = function() {
- return frappe.model.docinfo[this.doctype][this.docname];
- }
-
- _f.Frm.prototype.reload_docinfo = function(callback) {
- var me = this;
- frappe.call({
- method: "frappe.desk.form.load.get_docinfo",
- args: {
- doctype: me.doctype,
- name: me.doc.name
- },
- callback: function(r) {
- // docinfo will be synced
- if(callback) callback(r.docinfo);
- me.comments.refresh();
- me.assign_to.refresh();
- me.attachments.refresh();
- }
- })
- }
-
-
- _f.Frm.prototype.get_perm = function(permlevel, access_type) {
- return this.perm[permlevel] ? this.perm[permlevel][access_type] : null;
- }
-
-
- _f.Frm.prototype.set_intro = function(txt, append) {
- frappe.utils.set_intro(this, this.body, txt, append);
- }
-
- _f.Frm.prototype.set_footnote = function(txt) {
- frappe.utils.set_footnote(this, this.body, txt);
- }
-
-
- _f.Frm.prototype.add_custom_button = function(label, fn, icon, toolbar_or_class) {
- this.page.add_inner_button(label, fn);
- }
-
- _f.Frm.prototype.clear_custom_buttons = function() {
- this.page.inner_toolbar.empty().addClass("hide");
- this.page.clear_user_actions();
- }
-
- _f.Frm.prototype.add_fetch = function(link_field, src_field, tar_field) {
- if(!this.fetch_dict[link_field]) {
- this.fetch_dict[link_field] = {'columns':[], 'fields':[]}
- }
- this.fetch_dict[link_field].columns.push(src_field);
- this.fetch_dict[link_field].fields.push(tar_field);
- }
-
- _f.Frm.prototype.set_print_heading = function(txt) {
- this.pformat[cur_frm.docname] = txt;
- }
-
- _f.Frm.prototype.action_perm_type_map = {
- "Create": "create",
- "Save": "write",
- "Submit": "submit",
- "Update": "submit",
- "Cancel": "cancel",
- "Amend": "amend",
- "Delete": "delete"
- };
-
- _f.Frm.prototype.validate_form_action = function(action) {
- var perm_to_check = this.action_perm_type_map[action];
-
- if (!this.perm[0][perm_to_check]) {
- frappe.throw (__("No permission to '{0}' {1}", [__(action), __(this.doc.doctype)]));
- }
- };
-
- _f.Frm.prototype.get_handlers = function(fieldname, doctype, docname) {
- return this.script_manager.get_handlers(fieldname, doctype || this.doctype, docname || this.docname)
- }
|