From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/l10n_in/views/account_invoice_views.xml | 33 +++++++++++++ addons/l10n_in/views/account_journal_views.xml | 19 ++++++++ addons/l10n_in/views/account_tax_views.xml | 13 +++++ addons/l10n_in/views/port_code_views.xml | 48 +++++++++++++++++++ addons/l10n_in/views/product_template_view.xml | 16 +++++++ addons/l10n_in/views/report_invoice.xml | 56 ++++++++++++++++++++++ addons/l10n_in/views/report_template.xml | 38 +++++++++++++++ addons/l10n_in/views/res_company_view.xml | 16 +++++++ addons/l10n_in/views/res_config_settings_views.xml | 26 ++++++++++ addons/l10n_in/views/res_country_state_view.xml | 15 ++++++ addons/l10n_in/views/res_partner_views.xml | 17 +++++++ addons/l10n_in/views/uom_uom_views.xml | 13 +++++ 12 files changed, 310 insertions(+) create mode 100644 addons/l10n_in/views/account_invoice_views.xml create mode 100644 addons/l10n_in/views/account_journal_views.xml create mode 100644 addons/l10n_in/views/account_tax_views.xml create mode 100644 addons/l10n_in/views/port_code_views.xml create mode 100644 addons/l10n_in/views/product_template_view.xml create mode 100644 addons/l10n_in/views/report_invoice.xml create mode 100644 addons/l10n_in/views/report_template.xml create mode 100644 addons/l10n_in/views/res_company_view.xml create mode 100644 addons/l10n_in/views/res_config_settings_views.xml create mode 100644 addons/l10n_in/views/res_country_state_view.xml create mode 100644 addons/l10n_in/views/res_partner_views.xml create mode 100644 addons/l10n_in/views/uom_uom_views.xml (limited to 'addons/l10n_in/views') diff --git a/addons/l10n_in/views/account_invoice_views.xml b/addons/l10n_in/views/account_invoice_views.xml new file mode 100644 index 00000000..f2f55f34 --- /dev/null +++ b/addons/l10n_in/views/account_invoice_views.xml @@ -0,0 +1,33 @@ + + + + account.move.form.inherit.l10n.in + account.move + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_in/views/account_journal_views.xml b/addons/l10n_in/views/account_journal_views.xml new file mode 100644 index 00000000..34e47136 --- /dev/null +++ b/addons/l10n_in/views/account_journal_views.xml @@ -0,0 +1,19 @@ + + + + account.journal.form.inherit.l10n.in + account.journal + + + + {'invisible': ['|', '&', ('country_code', '!=', 'IN'), ('type', '!=', 'cash'), '&', ('country_code', '=', 'IN'), ('type', 'not in', ['bank', 'cash', 'sale', 'purchase'])]} + + + {'invisible': ['|', '&', ('country_code', '!=', 'IN'), ('type', '!=', 'cash'), '&', ('country_code', '=', 'IN'), ('type', 'not in', ['bank', 'cash', 'sale', 'purchase'])]} + + + + + + + diff --git a/addons/l10n_in/views/account_tax_views.xml b/addons/l10n_in/views/account_tax_views.xml new file mode 100644 index 00000000..a108bda3 --- /dev/null +++ b/addons/l10n_in/views/account_tax_views.xml @@ -0,0 +1,13 @@ + + + + account.tax.form.inherit.l10n.in + account.tax + + + + + + + + diff --git a/addons/l10n_in/views/port_code_views.xml b/addons/l10n_in/views/port_code_views.xml new file mode 100644 index 00000000..68c20ef5 --- /dev/null +++ b/addons/l10n_in/views/port_code_views.xml @@ -0,0 +1,48 @@ + + + + + l10n_in.port.code.form + l10n_in.port.code + +
+ + + + + + + + + +
+
+
+ + + l10n_in.port.code.tree + l10n_in.port.code + + + + + + + + + + + l10n_in.port.code.search + l10n_in.port.code + + + + + + + + + + + +
diff --git a/addons/l10n_in/views/product_template_view.xml b/addons/l10n_in/views/product_template_view.xml new file mode 100644 index 00000000..7e632ee8 --- /dev/null +++ b/addons/l10n_in/views/product_template_view.xml @@ -0,0 +1,16 @@ + + + + + l10n_in.product.template.form.hsn_code + product.template + + + + + + + + + + diff --git a/addons/l10n_in/views/report_invoice.xml b/addons/l10n_in/views/report_invoice.xml new file mode 100644 index 00000000..f77aa013 --- /dev/null +++ b/addons/l10n_in/views/report_invoice.xml @@ -0,0 +1,56 @@ + + + + + diff --git a/addons/l10n_in/views/report_template.xml b/addons/l10n_in/views/report_template.xml new file mode 100644 index 00000000..3786d1f1 --- /dev/null +++ b/addons/l10n_in/views/report_template.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/addons/l10n_in/views/res_company_view.xml b/addons/l10n_in/views/res_company_view.xml new file mode 100644 index 00000000..abbf8d4c --- /dev/null +++ b/addons/l10n_in/views/res_company_view.xml @@ -0,0 +1,16 @@ + + + + + l10n.in.view.company.form + res.company + + + + + GSTIN + + + + + diff --git a/addons/l10n_in/views/res_config_settings_views.xml b/addons/l10n_in/views/res_config_settings_views.xml new file mode 100644 index 00000000..5b4208cd --- /dev/null +++ b/addons/l10n_in/views/res_config_settings_views.xml @@ -0,0 +1,26 @@ + + + + res.config.settings.form.inherit.l10n_in + res.config.settings + + +
+
+
+ +
+
+
+
+
+
+
+
diff --git a/addons/l10n_in/views/res_country_state_view.xml b/addons/l10n_in/views/res_country_state_view.xml new file mode 100644 index 00000000..bdac8ff6 --- /dev/null +++ b/addons/l10n_in/views/res_country_state_view.xml @@ -0,0 +1,15 @@ + + + + + l10n.in.res.country.state.form.inhert + res.country.state + + + + + + + + + diff --git a/addons/l10n_in/views/res_partner_views.xml b/addons/l10n_in/views/res_partner_views.xml new file mode 100644 index 00000000..98e112c0 --- /dev/null +++ b/addons/l10n_in/views/res_partner_views.xml @@ -0,0 +1,17 @@ + + + + l10n.in.res.partner.vat.inherit + res.partner + + + + + {'required':[('l10n_in_gst_treatment', 'in', ['regular', 'composition', 'special_economic_zone', 'deemed_export'])], 'readonly': [('parent_id', '!=', False)]} + + + + + + + diff --git a/addons/l10n_in/views/uom_uom_views.xml b/addons/l10n_in/views/uom_uom_views.xml new file mode 100644 index 00000000..237ce736 --- /dev/null +++ b/addons/l10n_in/views/uom_uom_views.xml @@ -0,0 +1,13 @@ + + + + uom.uom.form + uom.uom + + + + + + + + -- cgit v1.2.3