2020-06-15 12:08:47 +00:00
|
|
|
# Copyright (c) 2017, Frappe and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2020-06-15 12:08:47 +00:00
|
|
|
import frappe
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2020-06-15 12:08:47 +00:00
|
|
|
|
|
|
|
def execute():
|
|
|
|
frappe.reload_doc('buying', 'doctype', 'request_for_quotation_item')
|
|
|
|
|
2020-06-18 09:13:31 +00:00
|
|
|
frappe.db.sql("""UPDATE `tabRequest for Quotation Item`
|
2020-06-15 12:08:47 +00:00
|
|
|
SET
|
2020-06-18 09:13:31 +00:00
|
|
|
stock_uom = uom,
|
|
|
|
conversion_factor = 1,
|
|
|
|
stock_qty = qty""")
|