brotherton-erpnext/erpnext/patches/v13_0/update_asset_quantity_field.py
2022-01-19 18:27:19 +05:30

8 lines
208 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()