2021-12-07 09:21:05 +00:00
|
|
|
# Copyright (c) 2020, Wahni Green Technologies and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
import frappe
|
|
|
|
from frappe.model.utils.rename_field import rename_field
|
|
|
|
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
company = frappe.get_all('Company', filters = {'country': 'Saudi Arabia'})
|
|
|
|
if not company:
|
|
|
|
return
|
|
|
|
|
2021-12-07 09:51:51 +00:00
|
|
|
if frappe.db.exists('DocType', 'Sales Invoice'):
|
|
|
|
frappe.reload_doc('accounts', 'doctype', 'sales_invoice', force=True)
|
|
|
|
if frappe.db.has_column('Sales Invoice', 'qr_code'):
|
|
|
|
rename_field('Sales Invoice', 'qr_code', 'ksa_einv_qr')
|