Hi Guys,
I am filling supplier quotation through supplier portal and i found that supplier can fill only rate field and other fields are not visible to supplier.
So, how can we make more fields like lead time visible to supplier while filling the supplier quotation.
Thanks
Rushikesh C
NCP
February 28, 2024, 8:35am
3
Hi @rushikeshmufc ,
Requires lots of customization if you want the check it and modify it according to the scenario.
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
import frappe
from frappe import _
from frappe.utils import formatdate
from erpnext.controllers.website_list_for_contact import get_customers_suppliers
def get_context(context):
context.no_cache = 1
context.show_sidebar = True
context.doc = frappe.get_doc(frappe.form_dict.doctype, frappe.form_dict.name)
context.parents = frappe.form_dict.parents
context.doc.supplier = get_supplier()
context.doc.rfq_links = get_link_quotation(context.doc.supplier, context.doc.name)
unauthorized_user(context.doc.supplier)
update_supplier_details(context)
This file has been truncated. show original
…
Thank You!
@NCP
Thanks for replying
can we do some scripting at client side and enter in supplier quotation doctype connections?
If yes, then can you please share me code.
NCP
February 28, 2024, 9:38am
5
If you’re asking about using client script to make more fields visible on the web, it might not be possible with client script.
@NCP
Then how can we overcome this issue. Where to i have to do the changes. Can you please explain me?
NCP
February 28, 2024, 9:42am
7
I’ve already shared this in the post. Trying it out yourself is the best way for you to learn.
Hi @rushikeshmufc ,
Requires lots of customization if you want the check it and modify it according to the scenario.
…
Thank You!
@NCP
Thanks brother for your help.