[fixes] fieldtype, message fixes on Payment Request

This commit is contained in:
Saurabh 2015-12-17 10:11:12 +05:30
parent cb98d9ec5f
commit db7a56b453
3 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,5 @@
cur_frm.add_fetch("payment_gateway", "payment_account", "payment_account")
frappe.ui.form.on("Payment Request", "onload", function(frm, dt, dn){ frappe.ui.form.on("Payment Request", "onload", function(frm, dt, dn){
frappe.call({ frappe.call({
method:"erpnext.accounts.doctype.payment_request.payment_request.get_print_format_list", method:"erpnext.accounts.doctype.payment_request.payment_request.get_print_format_list",

View File

@ -161,7 +161,7 @@
"bold": 0, "bold": 0,
"collapsible": 0, "collapsible": 0,
"fieldname": "payment_account", "fieldname": "payment_account",
"fieldtype": "Read Only", "fieldtype": "Link",
"hidden": 0, "hidden": 0,
"ignore_user_permissions": 0, "ignore_user_permissions": 0,
"in_filter": 0, "in_filter": 0,
@ -169,7 +169,7 @@
"label": "Payment Account", "label": "Payment Account",
"length": 0, "length": 0,
"no_copy": 0, "no_copy": 0,
"options": "payment_gateway.payment_account", "options": "Account",
"permlevel": 0, "permlevel": 0,
"precision": "", "precision": "",
"print_hide": 0, "print_hide": 0,
@ -410,7 +410,7 @@
"issingle": 0, "issingle": 0,
"istable": 0, "istable": 0,
"max_attachments": 0, "max_attachments": 0,
"modified": "2015-12-17 09:41:59.801913", "modified": "2015-12-17 10:08:48.333171",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Accounts", "module": "Accounts",
"name": "Payment Request", "name": "Payment Request",

View File

@ -300,7 +300,7 @@ erpnext.selling.SellingController = erpnext.TransactionController.extend({
}, },
callback: function(r) { callback: function(r) {
if(!r.exc){ if(!r.exc){
frappe.msgprint(__("payment Request generated")) frappe.msgprint(__("Payment Request generated"))
} }
} }
}) })