Files
schuetz3-erpnext/erpnext/patches/v11_0/make_italian_localization_fields.py
2024-03-27 16:06:04 +05:30

44 lines
1.1 KiB
Python

# Copyright (c) 2017, Frappe and Contributors
# License: GNU General Public License v3. See license.txt
import frappe
from erpnext.regional.italy import state_codes
from erpnext.regional.italy.setup import make_custom_fields, setup_report
def execute():
company = frappe.get_all("Company", filters={"country": "Italy"})
if not company:
return
frappe.reload_doc("regional", "report", "electronic_invoice_register")
make_custom_fields()
setup_report()
# Set state codes
condition = ""
for state, code in state_codes.items():
condition += f" when {frappe.db.escape(state)} then {frappe.db.escape(code)}"
if condition:
condition = f"state_code = (case state {condition} end),"
frappe.db.sql(
f"""
UPDATE tabAddress set {condition} country_code = UPPER(ifnull((select code
from `tabCountry` where name = `tabAddress`.country), ''))
where country_code is null and state_code is null
"""
)
frappe.db.sql(
"""
UPDATE `tabSales Invoice Item` si, `tabSales Order` so
set si.customer_po_no = so.po_no, si.customer_po_date = so.po_date
WHERE
si.sales_order = so.name and so.po_no is not null
"""
)