[fix] [minor] added price list in supplier form and filtered customer and supplier for selling and buying respectively
diff --git a/buying/doctype/supplier/supplier.js b/buying/doctype/supplier/supplier.js
index f258eb7..82b477b 100644
--- a/buying/doctype/supplier/supplier.js
+++ b/buying/doctype/supplier/supplier.js
@@ -91,4 +91,10 @@
// note: render_contact_row is defined in contact_control.js
}
cur_frm.contact_list.run();
+}
+
+cur_frm.fields_dict['default_price_list'].get_query = function(doc,cdt,cdn) {
+ return{
+ filters:{'buying_or_selling': "Buying"}
+ }
}
\ No newline at end of file
diff --git a/buying/doctype/supplier/supplier.txt b/buying/doctype/supplier/supplier.txt
index e5a3486..5c722f1 100644
--- a/buying/doctype/supplier/supplier.txt
+++ b/buying/doctype/supplier/supplier.txt
@@ -2,7 +2,7 @@
{
"creation": "2013-01-10 16:34:11",
"docstatus": 0,
- "modified": "2013-11-03 14:01:43",
+ "modified": "2013-11-19 11:31:28",
"modified_by": "Administrator",
"owner": "Administrator"
},
@@ -155,6 +155,13 @@
},
{
"doctype": "DocField",
+ "fieldname": "default_price_list",
+ "fieldtype": "Link",
+ "label": "Price List",
+ "options": "Price List"
+ },
+ {
+ "doctype": "DocField",
"fieldname": "default_currency",
"fieldtype": "Link",
"label": "Default Currency",
diff --git a/selling/doctype/customer/customer.js b/selling/doctype/customer/customer.js
index ea1e93d..e4a9a2b 100644
--- a/selling/doctype/customer/customer.js
+++ b/selling/doctype/customer/customer.js
@@ -110,7 +110,7 @@
cur_frm.fields_dict['customer_group'].get_query = function(doc,dt,dn) {
return{
filters:{'is_group': 'No'}
- }
+ }
}
@@ -119,3 +119,9 @@
query:"controllers.queries.lead_query"
}
}
+
+cur_frm.fields_dict['default_price_list'].get_query = function(doc,cdt,cdn) {
+ return{
+ filters:{'buying_or_selling': "Selling"}
+ }
+}