Merge pull request #38199 from frappe/mergify/bp/version-15-hotfix/pr-37963
fix: Supplier Quotation fields (backport #37963)
This commit is contained in:
		
						commit
						7622a2791e
					
				| @ -31,7 +31,12 @@ from erpnext.accounts.utils import get_fiscal_year | |||||||
| from erpnext.exceptions import InvalidAccountCurrency, PartyDisabled, PartyFrozen | from erpnext.exceptions import InvalidAccountCurrency, PartyDisabled, PartyFrozen | ||||||
| from erpnext.utilities.regional import temporary_flag | from erpnext.utilities.regional import temporary_flag | ||||||
| 
 | 
 | ||||||
| PURCHASE_TRANSACTION_TYPES = {"Purchase Order", "Purchase Receipt", "Purchase Invoice"} | PURCHASE_TRANSACTION_TYPES = { | ||||||
|  | 	"Supplier Quotation", | ||||||
|  | 	"Purchase Order", | ||||||
|  | 	"Purchase Receipt", | ||||||
|  | 	"Purchase Invoice", | ||||||
|  | } | ||||||
| SALES_TRANSACTION_TYPES = { | SALES_TRANSACTION_TYPES = { | ||||||
| 	"Quotation", | 	"Quotation", | ||||||
| 	"Sales Order", | 	"Sales Order", | ||||||
|  | |||||||
| @ -9,6 +9,8 @@ | |||||||
|  "field_order": [ |  "field_order": [ | ||||||
|   "naming_series", |   "naming_series", | ||||||
|   "company", |   "company", | ||||||
|  |   "billing_address", | ||||||
|  |   "billing_address_display", | ||||||
|   "vendor", |   "vendor", | ||||||
|   "column_break1", |   "column_break1", | ||||||
|   "transaction_date", |   "transaction_date", | ||||||
| @ -292,13 +294,25 @@ | |||||||
|    "fieldtype": "Check", |    "fieldtype": "Check", | ||||||
|    "label": "Send Document Print", |    "label": "Send Document Print", | ||||||
|    "print_hide": 1 |    "print_hide": 1 | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "billing_address", | ||||||
|  |    "fieldtype": "Link", | ||||||
|  |    "label": "Company Billing Address", | ||||||
|  |    "options": "Address" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "billing_address_display", | ||||||
|  |    "fieldtype": "Small Text", | ||||||
|  |    "label": "Billing Address Details", | ||||||
|  |    "read_only": 1 | ||||||
|   } |   } | ||||||
|  ], |  ], | ||||||
|  "icon": "fa fa-shopping-cart", |  "icon": "fa fa-shopping-cart", | ||||||
|  "index_web_pages_for_search": 1, |  "index_web_pages_for_search": 1, | ||||||
|  "is_submittable": 1, |  "is_submittable": 1, | ||||||
|  "links": [], |  "links": [], | ||||||
|  "modified": "2023-08-09 12:20:26.850623", |  "modified": "2023-11-06 12:45:28.898706", | ||||||
|  "modified_by": "Administrator", |  "modified_by": "Administrator", | ||||||
|  "module": "Buying", |  "module": "Buying", | ||||||
|  "name": "Request for Quotation", |  "name": "Request for Quotation", | ||||||
|  | |||||||
| @ -83,6 +83,7 @@ | |||||||
|   "pricing_rule_details", |   "pricing_rule_details", | ||||||
|   "pricing_rules", |   "pricing_rules", | ||||||
|   "address_and_contact_tab", |   "address_and_contact_tab", | ||||||
|  |   "supplier_address_section", | ||||||
|   "supplier_address", |   "supplier_address", | ||||||
|   "address_display", |   "address_display", | ||||||
|   "column_break_72", |   "column_break_72", | ||||||
| @ -90,6 +91,14 @@ | |||||||
|   "contact_display", |   "contact_display", | ||||||
|   "contact_mobile", |   "contact_mobile", | ||||||
|   "contact_email", |   "contact_email", | ||||||
|  |   "shipping_address_section", | ||||||
|  |   "shipping_address", | ||||||
|  |   "column_break_zjaq", | ||||||
|  |   "shipping_address_display", | ||||||
|  |   "company_billing_address_section", | ||||||
|  |   "billing_address", | ||||||
|  |   "column_break_gcth", | ||||||
|  |   "billing_address_display", | ||||||
|   "terms_tab", |   "terms_tab", | ||||||
|   "tc_name", |   "tc_name", | ||||||
|   "terms", |   "terms", | ||||||
| @ -843,6 +852,55 @@ | |||||||
|    "fieldtype": "Data", |    "fieldtype": "Data", | ||||||
|    "label": "Named Place" |    "label": "Named Place" | ||||||
|   }, |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "shipping_address", | ||||||
|  |    "fieldtype": "Link", | ||||||
|  |    "label": "Shipping Address", | ||||||
|  |    "options": "Address", | ||||||
|  |    "print_hide": 1 | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "fieldname": "column_break_zjaq", | ||||||
|  |     "fieldtype": "Column Break" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "shipping_address_display", | ||||||
|  |    "fieldtype": "Small Text", | ||||||
|  |    "label": "Shipping Address Details", | ||||||
|  |    "print_hide": 1, | ||||||
|  |    "read_only": 1 | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "shipping_address_section", | ||||||
|  |    "fieldtype": "Section Break", | ||||||
|  |    "label": "Shipping Address" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "supplier_address_section", | ||||||
|  |    "fieldtype": "Section Break", | ||||||
|  |    "label": "Supplier Address" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "company_billing_address_section", | ||||||
|  |    "fieldtype": "Section Break", | ||||||
|  |    "label": "Company Billing Address" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "billing_address", | ||||||
|  |    "fieldtype": "Link", | ||||||
|  |    "label": "Company Billing Address", | ||||||
|  |    "options": "Address" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "column_break_gcth", | ||||||
|  |    "fieldtype": "Column Break" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |    "fieldname": "billing_address_display", | ||||||
|  |    "fieldtype": "Small Text", | ||||||
|  |    "label": "Billing Address Details", | ||||||
|  |    "read_only": 1 | ||||||
|  |   }, | ||||||
|   { |   { | ||||||
|    "fieldname": "cost_center", |    "fieldname": "cost_center", | ||||||
|    "fieldtype": "Link", |    "fieldtype": "Link", | ||||||
| @ -870,7 +928,7 @@ | |||||||
|  "index_web_pages_for_search": 1, |  "index_web_pages_for_search": 1, | ||||||
|  "is_submittable": 1, |  "is_submittable": 1, | ||||||
|  "links": [], |  "links": [], | ||||||
|  "modified": "2023-11-17 12:34:30.083077", |  "modified": "2023-11-20 11:15:30.083077", | ||||||
|  "modified_by": "Administrator", |  "modified_by": "Administrator", | ||||||
|  "module": "Buying", |  "module": "Buying", | ||||||
|  "name": "Supplier Quotation", |  "name": "Supplier Quotation", | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
| frappe.provide("erpnext.utils"); | frappe.provide("erpnext.utils"); | ||||||
| 
 | 
 | ||||||
| const SALES_DOCTYPES = ['Quotation', 'Sales Order', 'Delivery Note', 'Sales Invoice']; | const SALES_DOCTYPES = ['Quotation', 'Sales Order', 'Delivery Note', 'Sales Invoice']; | ||||||
| const PURCHASE_DOCTYPES = ['Purchase Order', 'Purchase Receipt', 'Purchase Invoice']; | const PURCHASE_DOCTYPES = ['Supplier Quotation','Purchase Order', 'Purchase Receipt', 'Purchase Invoice']; | ||||||
| 
 | 
 | ||||||
| erpnext.utils.get_party_details = function(frm, method, args, callback) { | erpnext.utils.get_party_details = function(frm, method, args, callback) { | ||||||
| 	if (!method) { | 	if (!method) { | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user