brotherton-erpnext/erpnext/patches/v13_0/update_asset_quantity_field.py
2022-03-28 18:52:46 +05:30

9 lines
209 B
Python

import frappe
def execute():
if frappe.db.count("Asset"):
frappe.reload_doc("assets", "doctype", "Asset")
asset = frappe.qb.DocType("Asset")
frappe.qb.update(asset).set(asset.asset_quantity, 1).run()