2017-12-12 09:10:52 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2021-08-26 02:35:59 +00:00
|
|
|
import frappe
|
|
|
|
from frappe.permissions import add_permission, update_permission_property
|
|
|
|
from erpnext.regional.saudi_arabia.wizard.operations.setup_ksa_vat_setting import (
|
|
|
|
create_ksa_vat_setting,
|
2022-03-28 13:22:46 +00:00
|
|
|
)
|
2021-11-08 11:44:03 +00:00
|
|
|
from frappe.custom.doctype.custom_field.custom_field import create_custom_fields
|
2017-12-12 09:10:52 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2017-12-12 09:10:52 +00:00
|
|
|
def setup(company=None, patch=True):
|
|
|
|
add_print_formats()
|
2021-08-26 02:35:59 +00:00
|
|
|
add_permissions()
|
2021-10-30 14:18:45 +00:00
|
|
|
make_custom_fields()
|
2021-08-26 02:35:59 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2022-01-06 13:12:56 +00:00
|
|
|
def add_print_formats():
|
|
|
|
frappe.reload_doc("regional", "print_format", "detailed_tax_invoice", force=True)
|
|
|
|
frappe.reload_doc("regional", "print_format", "simplified_tax_invoice", force=True)
|
|
|
|
frappe.reload_doc("regional", "print_format", "tax_invoice", force=True)
|
|
|
|
frappe.reload_doc("regional", "print_format", "ksa_vat_invoice", force=True)
|
|
|
|
frappe.reload_doc("regional", "print_format", "ksa_pos_invoice", force=True)
|
|
|
|
|
|
|
|
for d in (
|
|
|
|
"Simplified Tax Invoice",
|
|
|
|
"Detailed Tax Invoice",
|
|
|
|
"Tax Invoice",
|
|
|
|
"KSA VAT Invoice",
|
|
|
|
"KSA POS Invoice",
|
|
|
|
):
|
|
|
|
frappe.db.set_value("Print Format", d, "disabled", 0)
|
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2022-01-06 13:12:56 +00:00
|
|
|
def add_permissions():
|
|
|
|
"""Add Permissions for KSA VAT Setting."""
|
|
|
|
add_permission("KSA VAT Setting", "All", 0)
|
|
|
|
for role in ("Accounts Manager", "Accounts User", "System Manager"):
|
|
|
|
add_permission("KSA VAT Setting", role, 0)
|
|
|
|
update_permission_property("KSA VAT Setting", role, 0, "write", 1)
|
|
|
|
update_permission_property("KSA VAT Setting", role, 0, "create", 1)
|
|
|
|
|
|
|
|
"""Enable KSA VAT Report"""
|
|
|
|
frappe.db.set_value("Report", "KSA VAT", "disabled", 0)
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2022-01-06 13:12:56 +00:00
|
|
|
|
2022-01-06 12:45:40 +00:00
|
|
|
def make_custom_fields():
|
2022-01-06 13:12:56 +00:00
|
|
|
"""Create Custom fields
|
|
|
|
- QR code Image file
|
|
|
|
- Company Name in Arabic
|
|
|
|
- Address in Arabic
|
|
|
|
"""
|
2022-01-06 12:45:40 +00:00
|
|
|
is_zero_rated = dict(
|
|
|
|
fieldname="is_zero_rated",
|
|
|
|
label="Is Zero Rated",
|
|
|
|
fieldtype="Check",
|
|
|
|
fetch_from="item_code.is_zero_rated",
|
|
|
|
insert_after="description",
|
|
|
|
print_hide=1,
|
|
|
|
)
|
2022-01-06 13:18:02 +00:00
|
|
|
|
2022-01-06 12:45:40 +00:00
|
|
|
is_exempt = dict(
|
|
|
|
fieldname="is_exempt",
|
|
|
|
label="Is Exempt",
|
|
|
|
fieldtype="Check",
|
|
|
|
fetch_from="item_code.is_exempt",
|
|
|
|
insert_after="is_zero_rated",
|
|
|
|
print_hide=1,
|
|
|
|
)
|
|
|
|
|
|
|
|
purchase_invoice_fields = [
|
|
|
|
dict(
|
|
|
|
fieldname="company_trn",
|
|
|
|
label="Company TRN",
|
|
|
|
fieldtype="Read Only",
|
|
|
|
insert_after="shipping_address",
|
|
|
|
fetch_from="company.tax_id",
|
|
|
|
print_hide=1,
|
|
|
|
),
|
|
|
|
dict(
|
|
|
|
fieldname="supplier_name_in_arabic",
|
|
|
|
label="Supplier Name in Arabic",
|
|
|
|
fieldtype="Read Only",
|
|
|
|
insert_after="supplier_name",
|
|
|
|
fetch_from="supplier.supplier_name_in_arabic",
|
|
|
|
print_hide=1,
|
2022-03-28 13:22:46 +00:00
|
|
|
),
|
2022-01-06 12:45:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
sales_invoice_fields = [
|
|
|
|
dict(
|
|
|
|
fieldname="company_trn",
|
|
|
|
label="Company TRN",
|
|
|
|
fieldtype="Read Only",
|
|
|
|
insert_after="company_address",
|
|
|
|
fetch_from="company.tax_id",
|
|
|
|
print_hide=1,
|
|
|
|
),
|
|
|
|
dict(
|
|
|
|
fieldname="customer_name_in_arabic",
|
|
|
|
label="Customer Name in Arabic",
|
|
|
|
fieldtype="Read Only",
|
|
|
|
insert_after="customer_name",
|
2022-01-06 13:12:56 +00:00
|
|
|
fetch_from="customer.customer_name_in_arabic",
|
|
|
|
print_hide=1,
|
|
|
|
),
|
|
|
|
dict(
|
|
|
|
fieldname="ksa_einv_qr",
|
|
|
|
label="KSA E-Invoicing QR",
|
|
|
|
fieldtype="Attach Image",
|
|
|
|
read_only=1,
|
|
|
|
no_copy=1,
|
|
|
|
hidden=1,
|
2022-03-28 13:22:46 +00:00
|
|
|
),
|
2022-01-06 12:45:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
custom_fields = {
|
|
|
|
"Item": [is_zero_rated, is_exempt],
|
|
|
|
"Customer": [
|
|
|
|
dict(
|
|
|
|
fieldname="customer_name_in_arabic",
|
|
|
|
label="Customer Name in Arabic",
|
|
|
|
fieldtype="Data",
|
|
|
|
insert_after="customer_name",
|
2022-03-28 13:22:46 +00:00
|
|
|
),
|
|
|
|
],
|
2022-01-06 12:45:40 +00:00
|
|
|
"Supplier": [
|
2022-03-28 13:22:46 +00:00
|
|
|
dict(
|
2022-01-06 12:45:40 +00:00
|
|
|
fieldname="supplier_name_in_arabic",
|
|
|
|
label="Supplier Name in Arabic",
|
2022-01-06 13:12:56 +00:00
|
|
|
fieldtype="Data",
|
2022-01-06 12:45:40 +00:00
|
|
|
insert_after="supplier_name",
|
|
|
|
),
|
|
|
|
],
|
|
|
|
"Purchase Invoice": purchase_invoice_fields,
|
|
|
|
"Purchase Order": purchase_invoice_fields,
|
|
|
|
"Purchase Receipt": purchase_invoice_fields,
|
|
|
|
"Sales Invoice": sales_invoice_fields,
|
|
|
|
"POS Invoice": sales_invoice_fields,
|
|
|
|
"Sales Order": sales_invoice_fields,
|
|
|
|
"Delivery Note": sales_invoice_fields,
|
|
|
|
"Sales Invoice Item": [is_zero_rated, is_exempt],
|
|
|
|
"POS Invoice Item": [is_zero_rated, is_exempt],
|
|
|
|
"Purchase Invoice Item": [is_zero_rated, is_exempt],
|
|
|
|
"Sales Order Item": [is_zero_rated, is_exempt],
|
|
|
|
"Delivery Note Item": [is_zero_rated, is_exempt],
|
|
|
|
"Quotation Item": [is_zero_rated, is_exempt],
|
|
|
|
"Purchase Order Item": [is_zero_rated, is_exempt],
|
|
|
|
"Purchase Receipt Item": [is_zero_rated, is_exempt],
|
|
|
|
"Supplier Quotation Item": [is_zero_rated, is_exempt],
|
2022-03-28 13:22:46 +00:00
|
|
|
"Address": [
|
2022-01-06 12:45:40 +00:00
|
|
|
dict(
|
|
|
|
fieldname="address_in_arabic",
|
|
|
|
label="Address in Arabic",
|
|
|
|
fieldtype="Data",
|
|
|
|
insert_after="address_line2",
|
2022-03-28 13:22:46 +00:00
|
|
|
)
|
2022-01-06 12:45:40 +00:00
|
|
|
],
|
|
|
|
"Company": [
|
|
|
|
dict(
|
|
|
|
fieldname="company_name_in_arabic",
|
2022-01-06 13:12:56 +00:00
|
|
|
label="Company Name In Arabic",
|
|
|
|
fieldtype="Data",
|
|
|
|
insert_after="company_name",
|
|
|
|
)
|
2021-11-08 11:44:03 +00:00
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2022-02-13 13:54:10 +00:00
|
|
|
create_custom_fields(custom_fields, ignore_validate=True, update=True)
|
2021-11-08 11:44:03 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2021-11-08 11:44:03 +00:00
|
|
|
def update_regional_tax_settings(country, company):
|
|
|
|
create_ksa_vat_setting(company)
|