Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates/New release #66

Merged
merged 9 commits into from
Sep 24, 2024
53 changes: 53 additions & 0 deletions Privacy Policy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
**Privacy Policy**

**Navari Limited** ("Company", "we", "us", or "our") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our services, including our website [Navari Limted](https://navari.co.ke/), our application (Burundi Compliance App), and any other related services that link to this Privacy Policy.

**1. Information We Collect**

**Personal Information You Provide:** We collect personal information you provide when you interact with our services, or contact us. This includes:

- **Login Credentials:** username and password required for accessing OBR (Office Burundais des Recettes) services.

**Automatically Collected Information:** We don't collect information about your device and usage of our services. We only collect the necessary information to be sent to OBR, either from stock or invoices.

**2. How We Use Your Information**

We process your information to:

- **Provide and Manage Services:** We provide you with our compliance services.
- **Compliance and Legal Requirements:** Ensure adherence to tax regulations by processing and transmitting data to OBR.

**3. Information Sharing**

We may share your information:

- **With OBR:** To fulfill the legal requirements of tax compliance, such as sending sales invoices and tracking stock movements.
- **With Third-Party Service Providers:** For services such as server maintenance. These providers are bound by confidentiality agreements and are not permitted to use your information for any purpose other than providing services to us.
- **In Case of Business Transfers:** If Navari Limited is involved in a merger, sale, or acquisition, your information may be transferred as part of that transaction.

**4. Data Retention**

We retain your personal information for as long as necessary to fulfil the purposes outlined in this privacy policy unless a longer retention period is required or permitted by law. Once the retention period expires, your data will be deleted or anonymized.

**5. Security of Your Information**

We implement organizational and technical security measures to protect your data. However, no method of transmission over the Internet or electronic storage is 100% secure. We cannot guarantee the absolute security of your information.

**6. Minors**

Our services are not intended for individuals under 18 years of age. We do not knowingly collect personal information from children under 18. If we discover that we have inadvertently gathered such data, we will take immediate steps to delete it.

**7. Your Privacy Rights**

You may review, update, or delete your personal information at any time by uninstalling the app from your site.

**8. Do-Not-Track Features**

We do not currently respond to Do-Not-Track signals or any other mechanism that allows consumers to opt out of tracking on the web.

**9. Contact Us**

If you have any questions or concerns about this privacy policy, please contact us at:

**Navari Limited**
Email: [email protected]
52 changes: 52 additions & 0 deletions Terms and Conditions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
## Terms and Conditions of Service**

**1. Introduction**

Welcome to Burundi Compliance, a service provided by Navari Limited ("Company", "we", "our", or "us"). By using our service, you agree to be bound by the following terms and conditions ("Terms of Service", "Terms"). Please read these terms carefully before using our service.

**2. Acceptance of Terms**

By accessing or using Burundi Compliance, you agree to comply with and be bound by these Terms. If you do not agree to these Terms, you must not access or use our service.

**3. Changes to Terms**

We reserve the right to modify these Terms at any time. Any changes will be effective immediately upon posting to our website or service. Your continued use of the service following any such changes constitutes your acceptance of the new Terms.

**4. Service Description**

Burundi Compliance is an open-source project designed to assist businesses in complying with regulatory requirements specific to Burundi. The service may include, but is not limited to, tools, documentation, and software that help with compliance management.

**5. User Responsibilities**

- You are responsible for ensuring that your use of Burundi Compliance complies with all applicable laws and regulations.
- You must not use the service for any illegal or unauthorized purpose.
- You agree not to reproduce, duplicate, copy, sell, resell, or exploit any portion of the service without express written permission from Navari Limited.

**6. Intellectual Property**

All content, including but not limited to software, documentation, graphics, and logos associated with Burundi Compliance, is the property of Navari Limited or its licensors and is protected by intellectual property laws. Unauthorized use of such content is prohibited.

**7. Data Privacy**

We respect your privacy and are committed to protecting your personal information. Please review our [Privacy Policy](https://github.com/navariltd/burundi-compliance/blob/develop/Privacy%20Policy.md), which outlines how we collect, use, and safeguard your data.

**8. Limitation of Liability**

Navari Limited shall not be liable for any direct, indirect, incidental, special, or consequential damages arising out of or in connection with your use of Burundi Compliance. This includes, but is not limited to, any loss of data, profits, or business opportunities.

**9. Termination**

We reserve the right to suspend or terminate your access to Burundi Compliance at any time, with or without cause, and with or without notice. Upon termination, you must cease all use of the service and delete any copies of the software or materials you have obtained through the service.

**10. Governing Law**

These Terms are governed by and construed in accordance with the laws of Burundi. Any disputes arising under these Terms shall be subject to the exclusive jurisdiction of the courts of Burundi.

**11. Contact Information**

If you have any questions or concerns regarding these Terms, please contact us at:

Navari Limited
7th Floor, Block I Eden Square Complex, Chiromo Road.
P.O Box 856-00606 Nairobi, Kenya
Email: [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,52 @@ function showInvoiceDetailsDialog(result, doctype) {
dialog.show();
}


function set_gst_category_query(frm) {
if (frm.doc.customer_type||frm.doc.supplier_type === 'Company') {
frm.set_query('custom_gst_category', function() {
return {
filters: {
'name': ['!=', 'Unregistered']
}
};
});
} else {
frm.set_query('custom_gst_category', function() {
return {
filters: {
'name': ['!=', 'UN']
}
};
});
}
}

frappe.ui.form.on('Customer', {
refresh: function(frm){
get_tin(frm)
}})
refresh: function(frm) {
get_tin(frm);
set_gst_category_query(frm);
},
customer_type: function(frm) {
set_gst_category_query(frm);
}
});

frappe.ui.form.on('Supplier', {

refresh: function(frm){
get_tin(frm)
}})
set_gst_category_query(frm);
},
supplier_type: function(frm) {
set_gst_category_query(frm);
}

})

frappe.ui.form.on('Company', {

refresh: function(frm){
get_tin(frm)
}})
}})

Loading
Loading