From 64de0d06ad2a61120b9a64450bceaa9ca5de36a2 Mon Sep 17 00:00:00 2001 From: Smit Vora Date: Sun, 26 Jun 2022 11:56:06 +0530 Subject: [PATCH] patch: remove custom field creation patch --- erpnext/patches.txt | 1 - .../v12_0/create_taxable_value_field.py | 24 ------------------- 2 files changed, 25 deletions(-) delete mode 100644 erpnext/patches/v12_0/create_taxable_value_field.py diff --git a/erpnext/patches.txt b/erpnext/patches.txt index d877cf59198..d1577e53dc1 100644 --- a/erpnext/patches.txt +++ b/erpnext/patches.txt @@ -232,7 +232,6 @@ erpnext.patches.v13_0.rename_membership_settings_to_non_profit_settings erpnext.patches.v13_0.setup_gratuity_rule_for_india_and_uae erpnext.patches.v13_0.setup_uae_vat_fields execute:frappe.db.set_value('System Settings', None, 'app_name', 'ERPNext') -erpnext.patches.v12_0.create_taxable_value_field erpnext.patches.v12_0.purchase_receipt_status erpnext.patches.v13_0.fix_non_unique_represents_company erpnext.patches.v12_0.add_document_type_field_for_italy_einvoicing diff --git a/erpnext/patches/v12_0/create_taxable_value_field.py b/erpnext/patches/v12_0/create_taxable_value_field.py deleted file mode 100644 index ad953032e7c..00000000000 --- a/erpnext/patches/v12_0/create_taxable_value_field.py +++ /dev/null @@ -1,24 +0,0 @@ -import frappe -from frappe.custom.doctype.custom_field.custom_field import create_custom_fields - - -def execute(): - company = frappe.get_all("Company", filters={"country": "India"}) - if not company: - return - - custom_fields = { - "Sales Invoice Item": [ - dict( - fieldname="taxable_value", - label="Taxable Value", - fieldtype="Currency", - insert_after="base_net_amount", - hidden=1, - options="Company:company:default_currency", - print_hide=1, - ) - ] - } - - create_custom_fields(custom_fields, update=True)