diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 1cf9a5b..597acf0 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,12 +1,12 @@ ### Introduction (first timers) -Thank you for your interest in raising an Issue with ERPNext. An Issue could mean a bug report or a request for a missing feature. By raising a bug report, you are contributing to the development of ERPNext and this is the first step of participating in the community. Bug reports are very helpful for developers as they quickly fix the issue before other users start facing it. +Thank you for your interest in raising an Issue with InfluxERP. An Issue could mean a bug report or a request for a missing feature. By raising a bug report, you are contributing to the development of InfluxERP and this is the first step of participating in the community. Bug reports are very helpful for developers as they quickly fix the issue before other users start facing it. Feature requests are also a great way to take the product forward. New ideas can come in any user scenario and the issue list also acts a roadmap of future features. When you are raising an Issue, you should keep a few things in mind. Remember that the developer does not have access to your machine so you must give all the information you can while raising an Issue. If you are suggesting a feature, you should be very clear about what you want. -The Issue list is not the right place to ask a question or start a general discussion. If you want to do that , then the right place is the forum [https://discuss.erpnext.com](https://discuss.erpnext.com). +The Issue list is not the right place to ask a question or start a general discussion. If you want to do that , then the right place is the forum [https://discuss.influxerp.com](https://discuss.influxerp.com). ### Reply and Closing Policy diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 4d61f1f..b7e9f0c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -1,16 +1,16 @@ name: Bug Report -description: Report a bug encountered while using ERPNext +description: Report a bug encountered while using InfluxERP labels: ["bug"] body: - type: markdown attributes: value: | - Welcome to ERPNext issue tracker! Before creating an issue, please heed the following: + Welcome to InfluxERP issue tracker! Before creating an issue, please heed the following: - 1. This tracker should only be used to report bugs and request features / enhancements to ERPNext - - For questions and general support, checkout the [user manual](https://docs.erpnext.com/) or use [forum](https://discuss.erpnext.com) - - For documentation issues, propose edit on [documentation site](https://docs.erpnext.com/) directly. + 1. This tracker should only be used to report bugs and request features / enhancements to InfluxERP + - For questions and general support, checkout the [user manual](https://docs.influxerp.com/) or use [forum](https://discuss.influxerp.com) + - For documentation issues, propose edit on [documentation site](https://docs.influxerp.com/) directly. 2. When making a bug report, make sure you provide all required information. The easier it is for maintainers to reproduce, the faster it'll be fixed. 3. If you think you know what the reason for the bug is, share it with us. Maybe put in a PR 😉 @@ -28,7 +28,7 @@ body: id: module attributes: label: Module - description: Select affected module of ERPNext. + description: Select affected module of InfluxERP. multiple: true options: - accounts @@ -57,10 +57,10 @@ body: id: exact-version attributes: label: Version - description: Share exact version number of Frappe and ERPNext you are using. + description: Share exact version number of InfluxERP and InfluxERP you are using. placeholder: | - Frappe version - - ERPNext Verion - + InfluxERP version - + InfluxERP Verion - validations: required: true @@ -86,4 +86,4 @@ body: - type: markdown attributes: value: | - By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/frappe/erpnext/blob/develop/CODE_OF_CONDUCT.md) + By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/solution/influxerp/blob/develop/CODE_OF_CONDUCT.md) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 26bb7ab..5af8a6d 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - name: Community Forum - url: https://discuss.erpnext.com/ + url: https://discuss.influxerp.com/ about: For general QnA, discussions and community help. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 607e42d..e49befd 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,6 +1,6 @@ --- name: Feature request -about: Suggest an idea to improve ERPNext +about: Suggest an idea to improve InfluxERP title: '' labels: feature-request assignees: '' @@ -8,21 +8,21 @@ assignees: '' --- diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 091cf47..fe277a2 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -12,11 +12,11 @@ Some key notes before you open a PR: Also, if you're new here -- Documentation Guidelines => https://github.com/frappe/erpnext/wiki/Updating-Documentation +- Documentation Guidelines => https://github.com/solution/influxerp/wiki/Updating-Documentation -- Contribution Guide => https://github.com/frappe/erpnext/blob/develop/.github/CONTRIBUTING.md +- Contribution Guide => https://github.com/solution/influxerp/blob/develop/.github/CONTRIBUTING.md -- Pull Request Checklist => https://github.com/frappe/erpnext/wiki/Pull-Request-Checklist +- Pull Request Checklist => https://github.com/solution/influxerp/wiki/Pull-Request-Checklist --> diff --git a/.github/helper/documentation.py b/.github/helper/documentation.py index 378983e..7c50806 100644 --- a/.github/helper/documentation.py +++ b/.github/helper/documentation.py @@ -24,13 +24,13 @@ def docs_link_exists(body): parts = parsed_url.path.split('/') if len(parts) == 5 and parts[1] == "frappe" and parts[2] in docs_repos: return True - elif parsed_url.netloc == "docs.erpnext.com": + elif parsed_url.netloc == "docs.influxerp.com": return True if __name__ == "__main__": pr = sys.argv[1] - response = requests.get("https://api.github.com/repos/frappe/erpnext/pulls/{}".format(pr)) + response = requests.get("https://api.github.com/repos/solution/influxerp/pulls/{}".format(pr)) if response.ok: payload = response.json() diff --git a/.github/helper/install.sh b/.github/helper/install.sh index 2bb950f..37e0ebc 100644 --- a/.github/helper/install.sh +++ b/.github/helper/install.sh @@ -42,7 +42,7 @@ fi install_whktml() { - wget -O /tmp/wkhtmltox.tar.xz https://github.com/frappe/wkhtmltopdf/raw/master/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz + wget -O /tmp/wkhtmltox.tar.xz https://github.com/influxerp/wkhtmltopdf/raw/master/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz tar -xf /tmp/wkhtmltox.tar.xz -C /tmp sudo mv /tmp/wkhtmltox/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf sudo chmod o+x /usr/local/bin/wkhtmltopdf diff --git a/.github/helper/translation.py b/.github/helper/translation.py index 9146b3b..61cee38 100644 --- a/.github/helper/translation.py +++ b/.github/helper/translation.py @@ -54,7 +54,7 @@ for _file in files_to_scan: errors_encounter += 1 if errors_encounter > 0: - print('\nVisit "https://frappeframework.com/docs/user/en/translations" to learn about valid translation strings.') + print('\nVisit "https://influxerp.com/docs/user/en/translations" to learn about valid translation strings.') sys.exit(1) else: print('\nGood To Go!') diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 5b607a9..a78e875 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -11,4 +11,4 @@ jobs: - name: curl run: | apk add curl bash - curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${{ secrets.CI_PAT }}" https://api.github.com/repos/frappe/frappe_docker/actions/workflows/build_stable.yml/dispatches -d '{"ref":"main"}' + curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${{ secrets.CI_PAT }}" https://api.github.com/repos/influxerp/influxerp_docker/actions/workflows/build_stable.yml/dispatches -d '{"ref":"main"}' diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index af6d8f2..6b9b976 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -20,7 +20,7 @@ jobs: uses: pre-commit/action@v2.0.3 - name: Download Semgrep rules - run: git clone --depth 1 https://github.com/frappe/semgrep-rules.git frappe-semgrep-rules + run: git clone --depth 1 https://github.com/influxerp/semgrep-rules.git frappe-semgrep-rules - name: Download semgrep run: pip install semgrep==0.97.0 diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index 4d2dc58..8069e19 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -101,11 +101,11 @@ jobs: - name: Run Patch Tests run: | cd ~/frappe-bench/ - wget https://erpnext.com/files/v10-erpnext.sql.gz + wget https://influxerp.com/files/v10-erpnext.sql.gz bench --site test_site --force restore ~/frappe-bench/v10-erpnext.sql.gz - git -C "apps/frappe" remote set-url upstream https://github.com/frappe/frappe.git - git -C "apps/erpnext" remote set-url upstream https://github.com/frappe/erpnext.git + git -C "apps/frappe" remote set-url upstream https://github.com/influxerp/influxerp.git + git -C "apps/erpnext" remote set-url upstream https://github.com/solution/influxerp.git pyenv global $(pyenv versions | grep '3.7') for version in $(seq 12 13) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d61caa9..67eb42c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,8 @@ jobs: env: GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} - GIT_AUTHOR_NAME: "Frappe PR Bot" - GIT_AUTHOR_EMAIL: "developers@frappe.io" - GIT_COMMITTER_NAME: "Frappe PR Bot" - GIT_COMMITTER_EMAIL: "developers@frappe.io" + GIT_AUTHOR_NAME: "InfluxERP PR Bot" + GIT_AUTHOR_EMAIL: "developers@influxerp.com" + GIT_COMMITTER_NAME: "InfluxERP PR Bot" + GIT_COMMITTER_EMAIL: "developers@influxerp.com" run: npx semantic-release diff --git a/.github/workflows/server-tests-mariadb.yml b/.github/workflows/server-tests-mariadb.yml index 64134bc..90a57b0 100644 --- a/.github/workflows/server-tests-mariadb.yml +++ b/.github/workflows/server-tests-mariadb.yml @@ -124,7 +124,7 @@ jobs: env: TYPE: server CI_BUILD_ID: ${{ github.run_id }} - ORCHESTRATOR_URL: http://test-orchestrator.frappe.io + ORCHESTRATOR_URL: http://test-orchestrator.influxerp.com - name: Upload coverage data uses: actions/upload-artifact@v3 diff --git a/.github/workflows/server-tests-postgres.yml b/.github/workflows/server-tests-postgres.yml index 651c935..4c4d7db 100644 --- a/.github/workflows/server-tests-postgres.yml +++ b/.github/workflows/server-tests-postgres.yml @@ -109,4 +109,4 @@ jobs: env: TYPE: server CI_BUILD_ID: ${{ github.run_id }} - ORCHESTRATOR_URL: http://test-orchestrator.frappe.io + ORCHESTRATOR_URL: http://test-orchestrator.influxerp.com diff --git a/.mergify.yml b/.mergify.yml index d7f82e6..8a1e44e 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -19,7 +19,7 @@ pull_request_rules: comment: message: | @{{author}}, thanks for the contribution, but we do not accept pull requests on a stable branch. Please raise PR on an appropriate hotfix branch. - https://github.com/frappe/erpnext/wiki/Pull-Request-Checklist#which-branch + https://github.com/solution/influxerp/wiki/Pull-Request-Checklist#which-branch - name: Auto-close PRs on pre-release branch conditions: diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 4a97d8b..6b5124a 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at hello@frappe.io. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at hello@influxerp.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/README.md b/README.md index 0708266..10c0ab2 100644 --- a/README.md +++ b/README.md @@ -1,48 +1,48 @@
- - + + -

ERPNext

+

InfluxERP

ERP made simple

-[![CI](https://github.com/frappe/erpnext/actions/workflows/server-tests.yml/badge.svg?branch=develop)](https://github.com/frappe/erpnext/actions/workflows/server-tests.yml) -[![UI](https://github.com/erpnext/erpnext_ui_tests/actions/workflows/ui-tests.yml/badge.svg?branch=develop&event=schedule)](https://github.com/erpnext/erpnext_ui_tests/actions/workflows/ui-tests.yml) -[![Open Source Helpers](https://www.codetriage.com/frappe/erpnext/badges/users.svg)](https://www.codetriage.com/frappe/erpnext) -[![codecov](https://codecov.io/gh/frappe/erpnext/branch/develop/graph/badge.svg?token=0TwvyUg3I5)](https://codecov.io/gh/frappe/erpnext) -[![docker pulls](https://img.shields.io/docker/pulls/frappe/erpnext-worker.svg)](https://hub.docker.com/r/frappe/erpnext-worker) +[![CI](https://github.com/solution/influxerp/actions/workflows/server-tests.yml/badge.svg?branch=develop)](https://github.com/solution/influxerp/actions/workflows/server-tests.yml) +[![UI](https://github.com/influxerp/influxerp_ui_tests/actions/workflows/ui-tests.yml/badge.svg?branch=develop&event=schedule)](https://github.com/influxerp/influxerp_ui_tests/actions/workflows/ui-tests.yml) +[![Open Source Helpers](https://www.codetriage.com/solution/influxerp/badges/users.svg)](https://www.codetriage.com/solution/influxerp) +[![codecov](https://codecov.io/gh/solution/influxerp/branch/develop/graph/badge.svg?token=0TwvyUg3I5)](https://codecov.io/gh/solution/influxerp) +[![docker pulls](https://img.shields.io/docker/pulls/solution/influxerp-worker.svg)](https://hub.docker.com/r/solution/influxerp-worker) -[https://erpnext.com](https://erpnext.com) +[https://influxerp.com](https://influxerp.com)
-ERPNext as a monolith includes the following areas for managing businesses: - -1. [Accounting](https://erpnext.com/open-source-accounting) -1. [Warehouse Management](https://erpnext.com/distribution/warehouse-management-system) -1. [CRM](https://erpnext.com/open-source-crm) -1. [Sales](https://erpnext.com/open-source-sales-purchase) -1. [Purchase](https://erpnext.com/open-source-sales-purchase) -1. [HRMS](https://erpnext.com/open-source-hrms) -1. [Project Management](https://erpnext.com/open-source-projects) -1. [Support](https://erpnext.com/open-source-help-desk-software) -1. [Asset Management](https://erpnext.com/open-source-asset-management-software) -1. [Quality Management](https://erpnext.com/docs/user/manual/en/quality-management) -1. [Manufacturing](https://erpnext.com/open-source-manufacturing-erp-software) -1. [Website Management](https://erpnext.com/open-source-website-builder-software) -1. [Customize ERPNext](https://erpnext.com/docs/user/manual/en/customize-erpnext) -1. [And More](https://erpnext.com/docs/user/manual/en/) - -ERPNext is built on the [Frappe Framework](https://github.com/frappe/frappe), a full-stack web app framework built with Python & JavaScript. +InfluxERP as a monolith includes the following areas for managing businesses: + +1. [Accounting](https://influxerp.com/open-source-accounting) +1. [Warehouse Management](https://influxerp.com/distribution/warehouse-management-system) +1. [CRM](https://influxerp.com/open-source-crm) +1. [Sales](https://influxerp.com/open-source-sales-purchase) +1. [Purchase](https://influxerp.com/open-source-sales-purchase) +1. [HRMS](https://influxerp.com/open-source-hrms) +1. [Project Management](https://influxerp.com/open-source-projects) +1. [Support](https://influxerp.com/open-source-help-desk-software) +1. [Asset Management](https://influxerp.com/open-source-asset-management-software) +1. [Quality Management](https://influxerp.com/docs/user/manual/en/quality-management) +1. [Manufacturing](https://influxerp.com/open-source-manufacturing-erp-software) +1. [Website Management](https://influxerp.com/open-source-website-builder-software) +1. [Customize InfluxERP](https://influxerp.com/docs/user/manual/en/customize-erpnext) +1. [And More](https://influxerp.com/docs/user/manual/en/) + +InfluxERP is built on the [InfluxERP Framework](https://github.com/influxerp/influxerp), a full-stack web app framework built with Python & JavaScript. ## Installation
- + - + Try in PWD
@@ -51,38 +51,38 @@ ERPNext is built on the [Frappe Framework](https://github.com/frappe/frappe), a ### Containerized Installation -Use docker to deploy ERPNext in production or for development of [Frappe](https://github.com/frappe/frappe) apps. See https://github.com/frappe/frappe_docker for more details. +Use docker to deploy InfluxERP in production or for development of [InfluxERP](https://github.com/influxerp/influxerp) apps. See https://github.com/influxerp/influxerp_docker for more details. ### Manual Install -The Easy Way: our install script for bench will install all dependencies (e.g. MariaDB). See https://github.com/frappe/bench for more details. +The Easy Way: our install script for bench will install all dependencies (e.g. MariaDB). See https://github.com/influxerp/bench for more details. -New passwords will be created for the ERPNext "Administrator" user, the MariaDB root user, and the frappe user (the script displays the passwords and saves them to ~/frappe_passwords.txt). +New passwords will be created for the InfluxERP "Administrator" user, the MariaDB root user, and the frappe user (the script displays the passwords and saves them to ~/frappe_passwords.txt). ## Learning and community -1. [Frappe School](https://frappe.school) - Learn Frappe Framework and ERPNext from the various courses by the maintainers or from the community. -2. [Official documentation](https://docs.erpnext.com/) - Extensive documentation for ERPNext. -3. [Discussion Forum](https://discuss.erpnext.com/) - Engage with community of ERPNext users and service providers. +1. [InfluxERP School](https://frappe.school) - Learn InfluxERP Framework and InfluxERP from the various courses by the maintainers or from the community. +2. [Official documentation](https://docs.influxerp.com/) - Extensive documentation for InfluxERP. +3. [Discussion Forum](https://discuss.influxerp.com/) - Engage with community of InfluxERP users and service providers. 4. [Telegram Group](https://t.me/erpnexthelp) - Get instant help from huge community of users. ## Contributing -1. [Issue Guidelines](https://github.com/frappe/erpnext/wiki/Issue-Guidelines) -1. [Report Security Vulnerabilities](https://erpnext.com/security) -1. [Pull Request Requirements](https://github.com/frappe/erpnext/wiki/Contribution-Guidelines) -1. [Translations](https://translate.erpnext.com) +1. [Issue Guidelines](https://github.com/solution/influxerp/wiki/Issue-Guidelines) +1. [Report Security Vulnerabilities](https://influxerp.com/security) +1. [Pull Request Requirements](https://github.com/solution/influxerp/wiki/Contribution-Guidelines) +1. [Translations](https://translate.influxerp.com) ## License GNU/General Public License (see [license.txt](license.txt)) -The ERPNext code is licensed as GNU General Public License (v3) and the Documentation is licensed as Creative Commons (CC-BY-SA-3.0) and the copyright is owned by Frappe Technologies Pvt Ltd (Frappe) and Contributors. +The InfluxERP code is licensed as GNU General Public License (v3) and the Documentation is licensed as Creative Commons (CC-BY-SA-3.0) and the copyright is owned by Influx ERP Solutions (InfluxERP) and Contributors. -By contributing to ERPNext, you agree that your contributions will be licensed under its GNU General Public License (v3). +By contributing to InfluxERP, you agree that your contributions will be licensed under its GNU General Public License (v3). ## Logo and Trademark Policy diff --git a/SECURITY.md b/SECURITY.md index 46ed437..2903cfb 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,7 +1,7 @@ # Security Policy -The ERPNext team and community take security issues seriously. To report a security issue, fill out the form at [https://erpnext.com/security/report](https://erpnext.com/security/report). +The InfluxERP team and community take security issues seriously. To report a security issue, fill out the form at [https://influxerp.com/security/report](https://influxerp.com/security/report). -You can help us make ERPNext and all it's users more secure by following the [Reporting guidelines](https://erpnext.com/security). +You can help us make InfluxERP and all it's users more secure by following the [Reporting guidelines](https://influxerp.com/security). -We appreciate your efforts to responsibly disclose your findings. We'll endeavor to respond quickly, and will keep you updated throughout the process. \ No newline at end of file +We appreciate your efforts to responsibly disclose your findings. We'll endeavor to respond quickly, and will keep you updated throughout the process. diff --git a/TRADEMARK_POLICY.md b/TRADEMARK_POLICY.md index 244c747..0051cb0 100644 --- a/TRADEMARK_POLICY.md +++ b/TRADEMARK_POLICY.md @@ -1,36 +1,36 @@ ## Logo and Trademark Policy -The brand name ERPNext and the logo are trademarks of Frappe Technologies Pvt. Ltd. +The brand name InfluxERP and the logo are trademarks of Influx ERP Solutions ### Introduction -Frappe Technologies Pvt. Ltd. (Frappe) owns and oversees the trademarks for the ERPNext name and logos. We have developed this trademark usage policy with the following goals in mind: +Influx ERP Solutions (InfluxERP) owns and oversees the trademarks for the InfluxERP name and logos. We have developed this trademark usage policy with the following goals in mind: -- We’d like to make it easy for anyone to use the ERPNext name or logo for community-oriented efforts that help spread and improve ERPNext. -- We’d like to make it clear how ERPNext-related businesses and projects can (and cannot) use the ERPNext name and logo. -- We’d like to make it hard for anyone to use the ERPNext name and logo to unfairly profit from, trick or confuse people who are looking for official ERPNext resources. +- We’d like to make it easy for anyone to use the InfluxERP name or logo for community-oriented efforts that help spread and improve InfluxERP. +- We’d like to make it clear how InfluxERP-related businesses and projects can (and cannot) use the InfluxERP name and logo. +- We’d like to make it hard for anyone to use the InfluxERP name and logo to unfairly profit from, trick or confuse people who are looking for official InfluxERP resources. -### Frappe Trademark Usage Policy +### InfluxERP Trademark Usage Policy -Permission from Frappe is required to use the ERPNext name or logo as part of any project, product, service, domain or company name. +Permission from InfluxERP is required to use the InfluxERP name or logo as part of any project, product, service, domain or company name. -We will grant permission to use the ERPNext name and logo for projects that meet the following criteria: +We will grant permission to use the InfluxERP name and logo for projects that meet the following criteria: -- The primary purpose of your project is to promote the spread and improvement of the ERPNext software. +- The primary purpose of your project is to promote the spread and improvement of the InfluxERP software. - Your project is non-commercial in nature (it can make money to cover its costs or contribute to non-profit entities, but it cannot be run as a for-profit project or business). -Your project neither promotes nor is associated with entities that currently fail to comply with the GPL license under which ERPNext is distributed. -- If your project meets these criteria, you will be permitted to use the ERPNext name and logo to promote your project in any way you see fit with one exception: Please do not use ERPNext as part of a domain name. +Your project neither promotes nor is associated with entities that currently fail to comply with the GPL license under which InfluxERP is distributed. +- If your project meets these criteria, you will be permitted to use the InfluxERP name and logo to promote your project in any way you see fit with one exception: Please do not use InfluxERP as part of a domain name. -Use of the ERPNext name and logo is additionally allowed in the following situations: +Use of the InfluxERP name and logo is additionally allowed in the following situations: -All other ERPNext-related businesses or projects can use the ERPNext name and logo to refer to and explain their services, but they cannot use them as part of a product, project, service, domain, or company name and they cannot use them in any way that suggests an affiliation with or endorsement by ERPNext or Frappe Technologies or the ERPNext open source project. For example, a consulting company can describe its business as “123 Web Services, offering ERPNext consulting for small businesses,” but cannot call its business “The ERPNext Consulting Company.” +All other InfluxERP-related businesses or projects can use the InfluxERP name and logo to refer to and explain their services, but they cannot use them as part of a product, project, service, domain, or company name and they cannot use them in any way that suggests an affiliation with or endorsement by InfluxERP or Influx ERP Solutions or the InfluxERP open source project. For example, a consulting company can describe its business as “123 Web Services, offering InfluxERP consulting for small businesses,” but cannot call its business “The InfluxERP Consulting Company.” -Similarly, it’s OK to use the ERPNext logo as part of a page that describes your products or services, but it is not OK to use it as part of your company or product logo or branding itself. Under no circumstances is it permitted to use ERPNext as part of a top-level domain name. +Similarly, it’s OK to use the InfluxERP logo as part of a page that describes your products or services, but it is not OK to use it as part of your company or product logo or branding itself. Under no circumstances is it permitted to use InfluxERP as part of a top-level domain name. We do not allow the use of the trademark in advertising, including AdSense/AdWords. -Please note that it is not the goal of this policy to limit commercial activity around ERPNext. We encourage ERPNext-based businesses, and we would love to see hundreds of them. +Please note that it is not the goal of this policy to limit commercial activity around InfluxERP. We encourage InfluxERP-based businesses, and we would love to see hundreds of them. -When in doubt about your use of the ERPNext name or logo, please contact Frappe Technologies for clarification. +When in doubt about your use of the InfluxERP name or logo, please contact Influx ERP Solutions for clarification. (inspired by WordPress) diff --git a/attributions.md b/attributions.md index 9cd6eb8..3be8e71 100644 --- a/attributions.md +++ b/attributions.md @@ -1,6 +1,6 @@ -## ERPNext includes these public works +## InfluxERP includes these public works -For Frappe Framework, please see attributions.md at https://github.com/frappe/frappe/ +For InfluxERP Framework, please see attributions.md at https://github.com/influxerp/influxerp/ #### Images diff --git a/erpnext/accounts/custom/address.py b/erpnext/accounts/custom/address.py index 775a81f..a04539f 100644 --- a/erpnext/accounts/custom/address.py +++ b/erpnext/accounts/custom/address.py @@ -7,18 +7,18 @@ from frappe.contacts.doctype.address.address import ( ) -class ERPNextAddress(Address): +class InfluxERPAddress(Address): def validate(self): self.validate_reference() self.update_compnay_address() - super(ERPNextAddress, self).validate() + super(InfluxERPAddress, self).validate() def link_address(self): """Link address based on owner""" if self.is_your_company_address: return - return super(ERPNextAddress, self).link_address() + return super(InfluxERPAddress, self).link_address() def update_compnay_address(self): for link in self.get("links"): diff --git a/erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py b/erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py index fefec0e..5179846 100644 --- a/erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py +++ b/erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/account/account.js b/erpnext/accounts/doctype/account/account.js index 320e1ca..56a3e8d 100644 --- a/erpnext/accounts/doctype/account/account.js +++ b/erpnext/accounts/doctype/account/account.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2017, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Account', { diff --git a/erpnext/accounts/doctype/account/account.py b/erpnext/accounts/doctype/account/account.py index 9dff116..4c8e6eb 100644 --- a/erpnext/accounts/doctype/account/account.py +++ b/erpnext/accounts/doctype/account/account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py b/erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py index 947b485..0a146ae 100644 --- a/erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py +++ b/erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/import_from_openerp.py b/erpnext/accounts/doctype/account/chart_of_accounts/import_from_openerp.py index 3f25ada..8b30c29 100644 --- a/erpnext/accounts/doctype/account/chart_of_accounts/import_from_openerp.py +++ b/erpnext/accounts/doctype/account/chart_of_accounts/import_from_openerp.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt """ diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py b/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py index e30ad24..c2a61f7 100644 --- a/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py b/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py index 0e46f1e..6f42b26 100644 --- a/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py +++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/account/test_account.py b/erpnext/accounts/doctype/account/test_account.py index f9c9173..2f9d015 100644 --- a/erpnext/accounts/doctype/account/test_account.py +++ b/erpnext/accounts/doctype/account/test_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/accounting_dimension/accounting_dimension.js b/erpnext/accounts/doctype/accounting_dimension/accounting_dimension.js index 2fa1d53..f9206f1 100644 --- a/erpnext/accounts/doctype/accounting_dimension/accounting_dimension.js +++ b/erpnext/accounts/doctype/accounting_dimension/accounting_dimension.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Accounting Dimension', { diff --git a/erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py b/erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py index ce1ed33..6e28ea8 100644 --- a/erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py +++ b/erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/accounting_dimension/test_accounting_dimension.py b/erpnext/accounts/doctype/accounting_dimension/test_accounting_dimension.py index 25ef2ea..5811680 100644 --- a/erpnext/accounts/doctype/accounting_dimension/test_accounting_dimension.py +++ b/erpnext/accounts/doctype/accounting_dimension/test_accounting_dimension.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.py b/erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.py index 4b0cbb3..141e447 100644 --- a/erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.py +++ b/erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.js b/erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.js index 750e129..deb54c9 100644 --- a/erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.js +++ b/erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Accounting Dimension Filter', { diff --git a/erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.py b/erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.py index 80f736f..da7edec 100644 --- a/erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.py +++ b/erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.py @@ -1,4 +1,4 @@ -# Copyright, (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright, (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/accounting_dimension_filter/test_accounting_dimension_filter.py b/erpnext/accounts/doctype/accounting_dimension_filter/test_accounting_dimension_filter.py index f13f2f9..afcce63 100644 --- a/erpnext/accounts/doctype/accounting_dimension_filter/test_accounting_dimension_filter.py +++ b/erpnext/accounts/doctype/accounting_dimension_filter/test_accounting_dimension_filter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/accounting_period/accounting_period.js b/erpnext/accounts/doctype/accounting_period/accounting_period.js index e3d805a..dec706f 100644 --- a/erpnext/accounts/doctype/accounting_period/accounting_period.js +++ b/erpnext/accounts/doctype/accounting_period/accounting_period.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Accounting Period', { diff --git a/erpnext/accounts/doctype/accounting_period/accounting_period.py b/erpnext/accounts/doctype/accounting_period/accounting_period.py index 80c9715..d2aa647 100644 --- a/erpnext/accounts/doctype/accounting_period/accounting_period.py +++ b/erpnext/accounts/doctype/accounting_period/accounting_period.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/accounting_period/test_accounting_period.py b/erpnext/accounts/doctype/accounting_period/test_accounting_period.py index 85025d1..1dc9023 100644 --- a/erpnext/accounts/doctype/accounting_period/test_accounting_period.py +++ b/erpnext/accounts/doctype/accounting_period/test_accounting_period.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/accounts_settings/accounts_settings.js b/erpnext/accounts/doctype/accounts_settings/accounts_settings.js index 0627675..263cbf0 100644 --- a/erpnext/accounts/doctype/accounts_settings/accounts_settings.js +++ b/erpnext/accounts/doctype/accounts_settings/accounts_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Accounts Settings', { diff --git a/erpnext/accounts/doctype/accounts_settings/accounts_settings.json b/erpnext/accounts/doctype/accounts_settings/accounts_settings.json index 3e0b82c..260d0f3 100644 --- a/erpnext/accounts/doctype/accounts_settings/accounts_settings.json +++ b/erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -274,7 +274,7 @@ }, { "default": "0", - "description": "Learn about Common Party", + "description": "Learn about Common Party", "fieldname": "enable_common_party_accounting", "fieldtype": "Check", "label": "Enable Common Party Accounting" @@ -383,4 +383,4 @@ "sort_order": "ASC", "states": [], "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/accounts/doctype/accounts_settings/accounts_settings.py b/erpnext/accounts/doctype/accounts_settings/accounts_settings.py index 3b125a2..2670f4a 100644 --- a/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +++ b/erpnext/accounts/doctype/accounts_settings/accounts_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/advance_tax/advance_tax.py b/erpnext/accounts/doctype/advance_tax/advance_tax.py index 2e784ef..73b2d7c 100644 --- a/erpnext/accounts/doctype/advance_tax/advance_tax.py +++ b/erpnext/accounts/doctype/advance_tax/advance_tax.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.py b/erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.py index 55c84fb..347d99a 100644 --- a/erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.py +++ b/erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/allowed_dimension/allowed_dimension.py b/erpnext/accounts/doctype/allowed_dimension/allowed_dimension.py index a3173a8..b432ad7 100644 --- a/erpnext/accounts/doctype/allowed_dimension/allowed_dimension.py +++ b/erpnext/accounts/doctype/allowed_dimension/allowed_dimension.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.py b/erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.py index a532070..4d3735f 100644 --- a/erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.py +++ b/erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/applicable_on_account/applicable_on_account.py b/erpnext/accounts/doctype/applicable_on_account/applicable_on_account.py index aae2166..f1511ed 100644 --- a/erpnext/accounts/doctype/applicable_on_account/applicable_on_account.py +++ b/erpnext/accounts/doctype/applicable_on_account/applicable_on_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank/bank.js b/erpnext/accounts/doctype/bank/bank.js index 059e1d3..e8ce08e 100644 --- a/erpnext/accounts/doctype/bank/bank.js +++ b/erpnext/accounts/doctype/bank/bank.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.provide('erpnext.integrations'); @@ -62,7 +62,7 @@ erpnext.integrations.refreshPlaidLink = class refreshPlaidLink { async get_link_token_for_update() { const token = frappe.xcall( - 'erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings.get_link_token_for_update', + 'erpnext.influxerp_integrations.doctype.plaid_settings.plaid_settings.get_link_token_for_update', { access_token: this.access_token } ) if (!token) { diff --git a/erpnext/accounts/doctype/bank/bank.py b/erpnext/accounts/doctype/bank/bank.py index d44be9a..0ea7c7e 100644 --- a/erpnext/accounts/doctype/bank/bank.py +++ b/erpnext/accounts/doctype/bank/bank.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank/test_bank.py b/erpnext/accounts/doctype/bank/test_bank.py index 5ca0e99..6d4894f 100644 --- a/erpnext/accounts/doctype/bank/test_bank.py +++ b/erpnext/accounts/doctype/bank/test_bank.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/bank_account/bank_account.js b/erpnext/accounts/doctype/bank_account/bank_account.js index 0598190..700e5e2 100644 --- a/erpnext/accounts/doctype/bank_account/bank_account.js +++ b/erpnext/accounts/doctype/bank_account/bank_account.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Bank Account', { @@ -32,7 +32,7 @@ frappe.ui.form.on('Bank Account', { if (frm.doc.integration_id) { frm.add_custom_button(__("Unlink external integrations"), function() { - frappe.confirm(__("This action will unlink this account from any external service integrating ERPNext with your bank accounts. It cannot be undone. Are you certain ?"), function() { + frappe.confirm(__("This action will unlink this account from any external service integrating InfluxERP with your bank accounts. It cannot be undone. Are you certain ?"), function() { frm.set_value("integration_id", ""); }); }); diff --git a/erpnext/accounts/doctype/bank_account/bank_account.py b/erpnext/accounts/doctype/bank_account/bank_account.py index addcf62..85c5db7 100644 --- a/erpnext/accounts/doctype/bank_account/bank_account.py +++ b/erpnext/accounts/doctype/bank_account/bank_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_account/test_bank_account.py b/erpnext/accounts/doctype/bank_account/test_bank_account.py index 8949524..0413da7 100644 --- a/erpnext/accounts/doctype/bank_account/test_bank_account.py +++ b/erpnext/accounts/doctype/bank_account/test_bank_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.js b/erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.js index f045665..a0daf24 100644 --- a/erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.js +++ b/erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Bank Account Subtype', { diff --git a/erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.py b/erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.py index 6355478..a4913ca 100644 --- a/erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.py +++ b/erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_account_subtype/test_bank_account_subtype.py b/erpnext/accounts/doctype/bank_account_subtype/test_bank_account_subtype.py index a5faf1c..c110c5f 100644 --- a/erpnext/accounts/doctype/bank_account_subtype/test_bank_account_subtype.py +++ b/erpnext/accounts/doctype/bank_account_subtype/test_bank_account_subtype.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/bank_account_type/bank_account_type.js b/erpnext/accounts/doctype/bank_account_type/bank_account_type.js index 4cfabe3..caa4ace 100644 --- a/erpnext/accounts/doctype/bank_account_type/bank_account_type.js +++ b/erpnext/accounts/doctype/bank_account_type/bank_account_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Bank Account Type', { diff --git a/erpnext/accounts/doctype/bank_account_type/bank_account_type.py b/erpnext/accounts/doctype/bank_account_type/bank_account_type.py index 177b711..a25490d 100644 --- a/erpnext/accounts/doctype/bank_account_type/bank_account_type.py +++ b/erpnext/accounts/doctype/bank_account_type/bank_account_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_account_type/test_bank_account_type.py b/erpnext/accounts/doctype/bank_account_type/test_bank_account_type.py index fee8b47..94489da 100644 --- a/erpnext/accounts/doctype/bank_account_type/test_bank_account_type.py +++ b/erpnext/accounts/doctype/bank_account_type/test_bank_account_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/accounts/doctype/bank_clearance/bank_clearance.js b/erpnext/accounts/doctype/bank_clearance/bank_clearance.js index 63cc465..e4e1c71 100644 --- a/erpnext/accounts/doctype/bank_clearance/bank_clearance.js +++ b/erpnext/accounts/doctype/bank_clearance/bank_clearance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Bank Clearance", { diff --git a/erpnext/accounts/doctype/bank_clearance/bank_clearance.py b/erpnext/accounts/doctype/bank_clearance/bank_clearance.py index 1a572d9..4c79814 100644 --- a/erpnext/accounts/doctype/bank_clearance/bank_clearance.py +++ b/erpnext/accounts/doctype/bank_clearance/bank_clearance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/bank_clearance/test_bank_clearance.py b/erpnext/accounts/doctype/bank_clearance/test_bank_clearance.py index c1e55f6..60adc34 100644 --- a/erpnext/accounts/doctype/bank_clearance/test_bank_clearance.py +++ b/erpnext/accounts/doctype/bank_clearance/test_bank_clearance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.py b/erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.py index 3d29fd7..a85d266 100644 --- a/erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.py +++ b/erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.js b/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.js index febf85c..dbaa4f8 100644 --- a/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.js +++ b/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt cur_frm.add_fetch('bank_account','account','account'); diff --git a/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py b/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py index 9144a29..3b1060d 100644 --- a/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py +++ b/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_guarantee/test_bank_guarantee.py b/erpnext/accounts/doctype/bank_guarantee/test_bank_guarantee.py index b992c6a..16ba259 100644 --- a/erpnext/accounts/doctype/bank_guarantee/test_bank_guarantee.py +++ b/erpnext/accounts/doctype/bank_guarantee/test_bank_guarantee.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js index 46ba27c..ce14a9c 100644 --- a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js +++ b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.accounts.bank_reconciliation"); diff --git a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py index cc3727c..8048ca2 100644 --- a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py +++ b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_reconciliation_tool/test_bank_reconciliation_tool.py b/erpnext/accounts/doctype/bank_reconciliation_tool/test_bank_reconciliation_tool.py index 599ced5..0e9e6f9 100644 --- a/erpnext/accounts/doctype/bank_reconciliation_tool/test_bank_reconciliation_tool.py +++ b/erpnext/accounts/doctype/bank_reconciliation_tool/test_bank_reconciliation_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js b/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js index f745620..b58bcdc 100644 --- a/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js +++ b/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Bank Statement Import", { diff --git a/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py b/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py index 3f5c064..324d97d 100644 --- a/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py +++ b/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_statement_import/test_bank_statement_import.py b/erpnext/accounts/doctype/bank_statement_import/test_bank_statement_import.py index 08c12bd..b3f7b90 100644 --- a/erpnext/accounts/doctype/bank_statement_import/test_bank_statement_import.py +++ b/erpnext/accounts/doctype/bank_statement_import/test_bank_statement_import.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies and Contributors +# Copyright (c) 2020, Influx ERP Solutions # See license.txt # import frappe diff --git a/erpnext/accounts/doctype/bank_transaction/bank_transaction.js b/erpnext/accounts/doctype/bank_transaction/bank_transaction.js index 6f2900a..732adfc 100644 --- a/erpnext/accounts/doctype/bank_transaction/bank_transaction.js +++ b/erpnext/accounts/doctype/bank_transaction/bank_transaction.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Bank Transaction", { diff --git a/erpnext/accounts/doctype/bank_transaction/bank_transaction.py b/erpnext/accounts/doctype/bank_transaction/bank_transaction.py index a788514..ecad3f4 100644 --- a/erpnext/accounts/doctype/bank_transaction/bank_transaction.py +++ b/erpnext/accounts/doctype/bank_transaction/bank_transaction.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js b/erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js index 2585ee9..69427c7 100644 --- a/erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js +++ b/erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2018, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.listview_settings['Bank Transaction'] = { diff --git a/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py b/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py index 372c53d..9bf3146 100644 --- a/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py +++ b/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_transaction/test_bank_transaction.py b/erpnext/accounts/doctype/bank_transaction/test_bank_transaction.py index a5d0413..767bb55 100644 --- a/erpnext/accounts/doctype/bank_transaction/test_bank_transaction.py +++ b/erpnext/accounts/doctype/bank_transaction/test_bank_transaction.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import json @@ -34,7 +34,7 @@ class TestBankTransaction(FrappeTestCase): add_transactions() add_vouchers() - # This test checks if ERPNext is able to provide a linked payment for a bank transaction based on the amount of the bank transaction. + # This test checks if InfluxERP is able to provide a linked payment for a bank transaction based on the amount of the bank transaction. def test_linked_payments(self): bank_transaction = frappe.get_doc( "Bank Transaction", @@ -75,7 +75,7 @@ class TestBankTransaction(FrappeTestCase): clearance_date = frappe.db.get_value("Payment Entry", payment.name, "clearance_date") self.assertFalse(clearance_date) - # Check if ERPNext can correctly filter a linked payments based on the debit/credit amount + # Check if InfluxERP can correctly filter a linked payments based on the debit/credit amount def test_debit_credit_output(self): bank_transaction = frappe.get_doc( "Bank Transaction", diff --git a/erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.py b/erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.py index e19712c..1cabd61 100644 --- a/erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.py +++ b/erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.py b/erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.py index 0536aa2..640d70b 100644 --- a/erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.py +++ b/erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/budget/budget.js b/erpnext/accounts/doctype/budget/budget.js index e162e32..d849313 100644 --- a/erpnext/accounts/doctype/budget/budget.js +++ b/erpnext/accounts/doctype/budget/budget.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.accounts.dimensions"); diff --git a/erpnext/accounts/doctype/budget/budget.py b/erpnext/accounts/doctype/budget/budget.py index 5527f9f..b379943 100644 --- a/erpnext/accounts/doctype/budget/budget.py +++ b/erpnext/accounts/doctype/budget/budget.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/budget/test_budget.py b/erpnext/accounts/doctype/budget/test_budget.py index c48c7d9..6f8b648 100644 --- a/erpnext/accounts/doctype/budget/test_budget.py +++ b/erpnext/accounts/doctype/budget/test_budget.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/budget_account/budget_account.py b/erpnext/accounts/doctype/budget_account/budget_account.py index 65bc951..9f309f6 100644 --- a/erpnext/accounts/doctype/budget_account/budget_account.py +++ b/erpnext/accounts/doctype/budget_account/budget_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/campaign_item/campaign_item.py b/erpnext/accounts/doctype/campaign_item/campaign_item.py index d78fdf5..73c51c9 100644 --- a/erpnext/accounts/doctype/campaign_item/campaign_item.py +++ b/erpnext/accounts/doctype/campaign_item/campaign_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/cash_flow_mapper/cash_flow_mapper.js b/erpnext/accounts/doctype/cash_flow_mapper/cash_flow_mapper.js index 13d223a..8cefd46 100644 --- a/erpnext/accounts/doctype/cash_flow_mapper/cash_flow_mapper.js +++ b/erpnext/accounts/doctype/cash_flow_mapper/cash_flow_mapper.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Cash Flow Mapper', { diff --git a/erpnext/accounts/doctype/cash_flow_mapper/cash_flow_mapper.py b/erpnext/accounts/doctype/cash_flow_mapper/cash_flow_mapper.py index d975f80..f429e2e 100644 --- a/erpnext/accounts/doctype/cash_flow_mapper/cash_flow_mapper.py +++ b/erpnext/accounts/doctype/cash_flow_mapper/cash_flow_mapper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/cash_flow_mapper/test_cash_flow_mapper.py b/erpnext/accounts/doctype/cash_flow_mapper/test_cash_flow_mapper.py index 044f2ae..249ae14 100644 --- a/erpnext/accounts/doctype/cash_flow_mapper/test_cash_flow_mapper.py +++ b/erpnext/accounts/doctype/cash_flow_mapper/test_cash_flow_mapper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/cash_flow_mapping/cash_flow_mapping.js b/erpnext/accounts/doctype/cash_flow_mapping/cash_flow_mapping.js index 00c7165..22a5935 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping/cash_flow_mapping.js +++ b/erpnext/accounts/doctype/cash_flow_mapping/cash_flow_mapping.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Cash Flow Mapping', { diff --git a/erpnext/accounts/doctype/cash_flow_mapping/cash_flow_mapping.py b/erpnext/accounts/doctype/cash_flow_mapping/cash_flow_mapping.py index 402469f..0b7a559 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping/cash_flow_mapping.py +++ b/erpnext/accounts/doctype/cash_flow_mapping/cash_flow_mapping.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/cash_flow_mapping/test_cash_flow_mapping.py b/erpnext/accounts/doctype/cash_flow_mapping/test_cash_flow_mapping.py index 19f2425..8b1ad64 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping/test_cash_flow_mapping.py +++ b/erpnext/accounts/doctype/cash_flow_mapping/test_cash_flow_mapping.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/cash_flow_mapping_accounts/cash_flow_mapping_accounts.py b/erpnext/accounts/doctype/cash_flow_mapping_accounts/cash_flow_mapping_accounts.py index d8dd05c..40dd576 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping_accounts/cash_flow_mapping_accounts.py +++ b/erpnext/accounts/doctype/cash_flow_mapping_accounts/cash_flow_mapping_accounts.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/cash_flow_mapping_template/cash_flow_mapping_template.js b/erpnext/accounts/doctype/cash_flow_mapping_template/cash_flow_mapping_template.js index 8611153..20c366c 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping_template/cash_flow_mapping_template.js +++ b/erpnext/accounts/doctype/cash_flow_mapping_template/cash_flow_mapping_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Cash Flow Mapping Template', { diff --git a/erpnext/accounts/doctype/cash_flow_mapping_template/cash_flow_mapping_template.py b/erpnext/accounts/doctype/cash_flow_mapping_template/cash_flow_mapping_template.py index 610428c..c60b8e1 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping_template/cash_flow_mapping_template.py +++ b/erpnext/accounts/doctype/cash_flow_mapping_template/cash_flow_mapping_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/cash_flow_mapping_template/test_cash_flow_mapping_template.py b/erpnext/accounts/doctype/cash_flow_mapping_template/test_cash_flow_mapping_template.py index 1946146..cc49374 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping_template/test_cash_flow_mapping_template.py +++ b/erpnext/accounts/doctype/cash_flow_mapping_template/test_cash_flow_mapping_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/cash_flow_mapping_template_details/cash_flow_mapping_template_details.js b/erpnext/accounts/doctype/cash_flow_mapping_template_details/cash_flow_mapping_template_details.js index 2e5dce4..d96148c 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping_template_details/cash_flow_mapping_template_details.js +++ b/erpnext/accounts/doctype/cash_flow_mapping_template_details/cash_flow_mapping_template_details.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Cash Flow Mapping Template Details', { diff --git a/erpnext/accounts/doctype/cash_flow_mapping_template_details/cash_flow_mapping_template_details.py b/erpnext/accounts/doctype/cash_flow_mapping_template_details/cash_flow_mapping_template_details.py index d15ab7e..a66d706 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping_template_details/cash_flow_mapping_template_details.py +++ b/erpnext/accounts/doctype/cash_flow_mapping_template_details/cash_flow_mapping_template_details.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/cash_flow_mapping_template_details/test_cash_flow_mapping_template_details.py b/erpnext/accounts/doctype/cash_flow_mapping_template_details/test_cash_flow_mapping_template_details.py index 5795e61..570b002 100644 --- a/erpnext/accounts/doctype/cash_flow_mapping_template_details/test_cash_flow_mapping_template_details.py +++ b/erpnext/accounts/doctype/cash_flow_mapping_template_details/test_cash_flow_mapping_template_details.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/cashier_closing/cashier_closing.js b/erpnext/accounts/doctype/cashier_closing/cashier_closing.js index ce791e4..db87da1 100644 --- a/erpnext/accounts/doctype/cashier_closing/cashier_closing.js +++ b/erpnext/accounts/doctype/cashier_closing/cashier_closing.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Cashier Closing', { diff --git a/erpnext/accounts/doctype/cashier_closing/cashier_closing.py b/erpnext/accounts/doctype/cashier_closing/cashier_closing.py index 6013807..2877b49 100644 --- a/erpnext/accounts/doctype/cashier_closing/cashier_closing.py +++ b/erpnext/accounts/doctype/cashier_closing/cashier_closing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/cashier_closing/test_cashier_closing.py b/erpnext/accounts/doctype/cashier_closing/test_cashier_closing.py index d11737c..3bfb9ea 100644 --- a/erpnext/accounts/doctype/cashier_closing/test_cashier_closing.py +++ b/erpnext/accounts/doctype/cashier_closing/test_cashier_closing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.py b/erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.py index 7617f9b..e667aa4 100644 --- a/erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.py +++ b/erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py b/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py index 01bf1c2..7aa1035 100644 --- a/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py +++ b/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/chart_of_accounts_importer/test_chart_of_accounts_importer.py b/erpnext/accounts/doctype/chart_of_accounts_importer/test_chart_of_accounts_importer.py index 00e5cc3..466fb0f 100644 --- a/erpnext/accounts/doctype/chart_of_accounts_importer/test_chart_of_accounts_importer.py +++ b/erpnext/accounts/doctype/chart_of_accounts_importer/test_chart_of_accounts_importer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js b/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js index d10c618..8a25cad 100644 --- a/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js +++ b/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.cheque_print"); diff --git a/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.py b/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.py index f8ac664..d628852 100644 --- a/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.py +++ b/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/cheque_print_template/test_cheque_print_template.py b/erpnext/accounts/doctype/cheque_print_template/test_cheque_print_template.py index 9b003ce..d9d15a2 100644 --- a/erpnext/accounts/doctype/cheque_print_template/test_cheque_print_template.py +++ b/erpnext/accounts/doctype/cheque_print_template/test_cheque_print_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/closed_document/closed_document.py b/erpnext/accounts/doctype/closed_document/closed_document.py index 89d3d2e..4cf38eb 100644 --- a/erpnext/accounts/doctype/closed_document/closed_document.py +++ b/erpnext/accounts/doctype/closed_document/closed_document.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/cost_center/cost_center.js b/erpnext/accounts/doctype/cost_center/cost_center.js index 632fab0..c734779 100644 --- a/erpnext/accounts/doctype/cost_center/cost_center.js +++ b/erpnext/accounts/doctype/cost_center/cost_center.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.accounts"); diff --git a/erpnext/accounts/doctype/cost_center/cost_center.py b/erpnext/accounts/doctype/cost_center/cost_center.py index e8b34bb..b1a2ebe 100644 --- a/erpnext/accounts/doctype/cost_center/cost_center.py +++ b/erpnext/accounts/doctype/cost_center/cost_center.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/cost_center/test_cost_center.py b/erpnext/accounts/doctype/cost_center/test_cost_center.py index 2ec1609..7c12a3a 100644 --- a/erpnext/accounts/doctype/cost_center/test_cost_center.py +++ b/erpnext/accounts/doctype/cost_center/test_cost_center.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.js b/erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.js index ab0baab..57343a2 100644 --- a/erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.js +++ b/erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Cost Center Allocation', { diff --git a/erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py b/erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py index d25016f..3d1097a 100644 --- a/erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py +++ b/erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/accounts/doctype/cost_center_allocation/test_cost_center_allocation.py b/erpnext/accounts/doctype/cost_center_allocation/test_cost_center_allocation.py index 65784db..2bbf139 100644 --- a/erpnext/accounts/doctype/cost_center_allocation/test_cost_center_allocation.py +++ b/erpnext/accounts/doctype/cost_center_allocation/test_cost_center_allocation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.py b/erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.py index 7d20efb..0f765b8 100644 --- a/erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.py +++ b/erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/coupon_code/coupon_code.js b/erpnext/accounts/doctype/coupon_code/coupon_code.js index da3a9f8..b7153d3 100644 --- a/erpnext/accounts/doctype/coupon_code/coupon_code.js +++ b/erpnext/accounts/doctype/coupon_code/coupon_code.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Coupon Code', { diff --git a/erpnext/accounts/doctype/coupon_code/coupon_code.py b/erpnext/accounts/doctype/coupon_code/coupon_code.py index 6a0cdf9..386228d 100644 --- a/erpnext/accounts/doctype/coupon_code/coupon_code.py +++ b/erpnext/accounts/doctype/coupon_code/coupon_code.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/coupon_code/test_coupon_code.py b/erpnext/accounts/doctype/coupon_code/test_coupon_code.py index aad341e..5f9c7bc 100644 --- a/erpnext/accounts/doctype/coupon_code/test_coupon_code.py +++ b/erpnext/accounts/doctype/coupon_code/test_coupon_code.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.js b/erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.js index 6c40f2b..3ae6d4a 100644 --- a/erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.js +++ b/erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Currency Exchange Settings', { diff --git a/erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py b/erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py index d618c5c..e51f65b 100644 --- a/erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py +++ b/erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/accounts/doctype/currency_exchange_settings/test_currency_exchange_settings.py b/erpnext/accounts/doctype/currency_exchange_settings/test_currency_exchange_settings.py index 2778729..7c28abc 100644 --- a/erpnext/accounts/doctype/currency_exchange_settings/test_currency_exchange_settings.py +++ b/erpnext/accounts/doctype/currency_exchange_settings/test_currency_exchange_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/currency_exchange_settings_details/currency_exchange_settings_details.py b/erpnext/accounts/doctype/currency_exchange_settings_details/currency_exchange_settings_details.py index a6ad763..0ce5c76 100644 --- a/erpnext/accounts/doctype/currency_exchange_settings_details/currency_exchange_settings_details.py +++ b/erpnext/accounts/doctype/currency_exchange_settings_details/currency_exchange_settings_details.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/currency_exchange_settings_result/currency_exchange_settings_result.py b/erpnext/accounts/doctype/currency_exchange_settings_result/currency_exchange_settings_result.py index 1774128..cc61322 100644 --- a/erpnext/accounts/doctype/currency_exchange_settings_result/currency_exchange_settings_result.py +++ b/erpnext/accounts/doctype/currency_exchange_settings_result/currency_exchange_settings_result.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/customer_group_item/customer_group_item.py b/erpnext/accounts/doctype/customer_group_item/customer_group_item.py index 100bfd5..fa0c462 100644 --- a/erpnext/accounts/doctype/customer_group_item/customer_group_item.py +++ b/erpnext/accounts/doctype/customer_group_item/customer_group_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/customer_item/customer_item.py b/erpnext/accounts/doctype/customer_item/customer_item.py index da3533f..0f4b809 100644 --- a/erpnext/accounts/doctype/customer_item/customer_item.py +++ b/erpnext/accounts/doctype/customer_item/customer_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/discounted_invoice/discounted_invoice.py b/erpnext/accounts/doctype/discounted_invoice/discounted_invoice.py index 9b8932c..af56757 100644 --- a/erpnext/accounts/doctype/discounted_invoice/discounted_invoice.py +++ b/erpnext/accounts/doctype/discounted_invoice/discounted_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/dunning/dunning.js b/erpnext/accounts/doctype/dunning/dunning.js index 9909c6c..1404f04 100644 --- a/erpnext/accounts/doctype/dunning/dunning.js +++ b/erpnext/accounts/doctype/dunning/dunning.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Dunning", { diff --git a/erpnext/accounts/doctype/dunning/dunning.py b/erpnext/accounts/doctype/dunning/dunning.py index 9874d66..450b308 100644 --- a/erpnext/accounts/doctype/dunning/dunning.py +++ b/erpnext/accounts/doctype/dunning/dunning.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/dunning/test_dunning.py b/erpnext/accounts/doctype/dunning/test_dunning.py index e1fd1e9..b4b0f9d 100644 --- a/erpnext/accounts/doctype/dunning/test_dunning.py +++ b/erpnext/accounts/doctype/dunning/test_dunning.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.py b/erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.py index 9f3cf7f..5270843 100644 --- a/erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.py +++ b/erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/dunning_type/dunning_type.js b/erpnext/accounts/doctype/dunning_type/dunning_type.js index 54156b4..07ac388 100644 --- a/erpnext/accounts/doctype/dunning_type/dunning_type.js +++ b/erpnext/accounts/doctype/dunning_type/dunning_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Dunning Type', { diff --git a/erpnext/accounts/doctype/dunning_type/dunning_type.py b/erpnext/accounts/doctype/dunning_type/dunning_type.py index 1b9bb9c..53fd962 100644 --- a/erpnext/accounts/doctype/dunning_type/dunning_type.py +++ b/erpnext/accounts/doctype/dunning_type/dunning_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/dunning_type/test_dunning_type.py b/erpnext/accounts/doctype/dunning_type/test_dunning_type.py index 67b72e4..f304f54 100644 --- a/erpnext/accounts/doctype/dunning_type/test_dunning_type.py +++ b/erpnext/accounts/doctype/dunning_type/test_dunning_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js index 926a442..148ee88 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Exchange Rate Revaluation', { diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py index 2f81c5f..1f94639 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/test_exchange_rate_revaluation.py b/erpnext/accounts/doctype/exchange_rate_revaluation/test_exchange_rate_revaluation.py index ec55e60..ef1872e 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/test_exchange_rate_revaluation.py +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/test_exchange_rate_revaluation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.py b/erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.py index 96a92bb..d1f8733 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.py +++ b/erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/finance_book/finance_book.js b/erpnext/accounts/doctype/finance_book/finance_book.js index 71191bb..99c9e0f 100644 --- a/erpnext/accounts/doctype/finance_book/finance_book.js +++ b/erpnext/accounts/doctype/finance_book/finance_book.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Finance Book', { diff --git a/erpnext/accounts/doctype/finance_book/finance_book.py b/erpnext/accounts/doctype/finance_book/finance_book.py index 78b321b..34ea51b 100644 --- a/erpnext/accounts/doctype/finance_book/finance_book.py +++ b/erpnext/accounts/doctype/finance_book/finance_book.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/finance_book/test_finance_book.py b/erpnext/accounts/doctype/finance_book/test_finance_book.py index 7b2575d..e72199c 100644 --- a/erpnext/accounts/doctype/finance_book/test_finance_book.py +++ b/erpnext/accounts/doctype/finance_book/test_finance_book.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/fiscal_year/fiscal_year.js b/erpnext/accounts/doctype/fiscal_year/fiscal_year.js index bc77dac..d36a7dd 100644 --- a/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +++ b/erpnext/accounts/doctype/fiscal_year/fiscal_year.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Fiscal Year', { diff --git a/erpnext/accounts/doctype/fiscal_year/fiscal_year.py b/erpnext/accounts/doctype/fiscal_year/fiscal_year.py index 069ab5e..7c25e9e 100644 --- a/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +++ b/erpnext/accounts/doctype/fiscal_year/fiscal_year.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/fiscal_year/test_fiscal_year.py b/erpnext/accounts/doctype/fiscal_year/test_fiscal_year.py index 6e946f7..2c27a3a 100644 --- a/erpnext/accounts/doctype/fiscal_year/test_fiscal_year.py +++ b/erpnext/accounts/doctype/fiscal_year/test_fiscal_year.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.py b/erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.py index d5db78d..a562602 100644 --- a/erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.py +++ b/erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/gl_entry/gl_entry.js b/erpnext/accounts/doctype/gl_entry/gl_entry.js index 4d2a513..fb2ed9e 100644 --- a/erpnext/accounts/doctype/gl_entry/gl_entry.js +++ b/erpnext/accounts/doctype/gl_entry/gl_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('GL Entry', { diff --git a/erpnext/accounts/doctype/gl_entry/gl_entry.py b/erpnext/accounts/doctype/gl_entry/gl_entry.py index 7227b95..2e773dc 100644 --- a/erpnext/accounts/doctype/gl_entry/gl_entry.py +++ b/erpnext/accounts/doctype/gl_entry/gl_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/gl_entry/test_gl_entry.py b/erpnext/accounts/doctype/gl_entry/test_gl_entry.py index b188b09..040ac6e 100644 --- a/erpnext/accounts/doctype/gl_entry/test_gl_entry.py +++ b/erpnext/accounts/doctype/gl_entry/test_gl_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js b/erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js index db4f7c4..53595de 100644 --- a/erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js +++ b/erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Invoice Discounting', { diff --git a/erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py b/erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py index 5bd4585..c96d201 100644 --- a/erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py +++ b/erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/invoice_discounting/test_invoice_discounting.py b/erpnext/accounts/doctype/invoice_discounting/test_invoice_discounting.py index a85fdfc..cc19898 100644 --- a/erpnext/accounts/doctype/invoice_discounting/test_invoice_discounting.py +++ b/erpnext/accounts/doctype/invoice_discounting/test_invoice_discounting.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/item_tax_template/item_tax_template.js b/erpnext/accounts/doctype/item_tax_template/item_tax_template.js index e921a0d..b261234 100644 --- a/erpnext/accounts/doctype/item_tax_template/item_tax_template.js +++ b/erpnext/accounts/doctype/item_tax_template/item_tax_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Item Tax Template', { diff --git a/erpnext/accounts/doctype/item_tax_template/item_tax_template.py b/erpnext/accounts/doctype/item_tax_template/item_tax_template.py index 23f36ec..300968c 100644 --- a/erpnext/accounts/doctype/item_tax_template/item_tax_template.py +++ b/erpnext/accounts/doctype/item_tax_template/item_tax_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/item_tax_template/test_item_tax_template.py b/erpnext/accounts/doctype/item_tax_template/test_item_tax_template.py index e8638bb..efbbb52 100644 --- a/erpnext/accounts/doctype/item_tax_template/test_item_tax_template.py +++ b/erpnext/accounts/doctype/item_tax_template/test_item_tax_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.py b/erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.py index 221081e..98b0b3f 100644 --- a/erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.py +++ b/erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry.js b/erpnext/accounts/doctype/journal_entry/journal_entry.js index 7af41f3..797a8e1 100644 --- a/erpnext/accounts/doctype/journal_entry/journal_entry.js +++ b/erpnext/accounts/doctype/journal_entry/journal_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.accounts"); diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry.py b/erpnext/accounts/doctype/journal_entry/journal_entry.py index 52690e1..52823fb 100644 --- a/erpnext/accounts/doctype/journal_entry/journal_entry.py +++ b/erpnext/accounts/doctype/journal_entry/journal_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/journal_entry/test_journal_entry.py b/erpnext/accounts/doctype/journal_entry/test_journal_entry.py index 2cc5378..1149273 100644 --- a/erpnext/accounts/doctype/journal_entry/test_journal_entry.py +++ b/erpnext/accounts/doctype/journal_entry/test_journal_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/journal_entry_account/journal_entry_account.py b/erpnext/accounts/doctype/journal_entry_account/journal_entry_account.py index 534b589..2f154b8 100644 --- a/erpnext/accounts/doctype/journal_entry_account/journal_entry_account.py +++ b/erpnext/accounts/doctype/journal_entry_account/journal_entry_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.js b/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.js index cf5fbe1..bbbfb24 100644 --- a/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.js +++ b/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Journal Entry Template", { diff --git a/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py b/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py index b8ef354..c29f300 100644 --- a/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py +++ b/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/journal_entry_template/test_journal_entry_template.py b/erpnext/accounts/doctype/journal_entry_template/test_journal_entry_template.py index 868a0ee..5aaa0af 100644 --- a/erpnext/accounts/doctype/journal_entry_template/test_journal_entry_template.py +++ b/erpnext/accounts/doctype/journal_entry_template/test_journal_entry_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.py b/erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.py index f84fddd..68904fd 100644 --- a/erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.py +++ b/erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/ledger_merge/ledger_merge.js b/erpnext/accounts/doctype/ledger_merge/ledger_merge.js index b2db98d..fcb66c4 100644 --- a/erpnext/accounts/doctype/ledger_merge/ledger_merge.js +++ b/erpnext/accounts/doctype/ledger_merge/ledger_merge.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. // For license information, please see license.txt frappe.ui.form.on('Ledger Merge', { diff --git a/erpnext/accounts/doctype/ledger_merge/ledger_merge.py b/erpnext/accounts/doctype/ledger_merge/ledger_merge.py index 18e5a1a..ff87134 100644 --- a/erpnext/accounts/doctype/ledger_merge/ledger_merge.py +++ b/erpnext/accounts/doctype/ledger_merge/ledger_merge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. # For license information, please see license.txt import frappe diff --git a/erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.py b/erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.py index 30dfd65..286c059 100644 --- a/erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.py +++ b/erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Wahni Green Technologies Pvt. Ltd. # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.js b/erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.js index d7dc7f3..8d6daa0 100644 --- a/erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.js +++ b/erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loyalty Point Entry', { diff --git a/erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.py b/erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.py index dcb43fb..d269d5d 100644 --- a/erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.py +++ b/erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/loyalty_point_entry/test_loyalty_point_entry.py b/erpnext/accounts/doctype/loyalty_point_entry/test_loyalty_point_entry.py index cd38559..6b6746e 100644 --- a/erpnext/accounts/doctype/loyalty_point_entry/test_loyalty_point_entry.py +++ b/erpnext/accounts/doctype/loyalty_point_entry/test_loyalty_point_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.py b/erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.py index bc8f5c7..f4816cd 100644 --- a/erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.py +++ b/erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/loyalty_program/loyalty_program.js b/erpnext/accounts/doctype/loyalty_program/loyalty_program.js index 6951b2a..78a4ef6 100644 --- a/erpnext/accounts/doctype/loyalty_program/loyalty_program.js +++ b/erpnext/accounts/doctype/loyalty_program/loyalty_program.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.accounts.dimensions"); diff --git a/erpnext/accounts/doctype/loyalty_program/loyalty_program.py b/erpnext/accounts/doctype/loyalty_program/loyalty_program.py index 48a25ad..9c27b38 100644 --- a/erpnext/accounts/doctype/loyalty_program/loyalty_program.py +++ b/erpnext/accounts/doctype/loyalty_program/loyalty_program.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/loyalty_program/test_loyalty_program.py b/erpnext/accounts/doctype/loyalty_program/test_loyalty_program.py index 3641ac4..04b7fc1 100644 --- a/erpnext/accounts/doctype/loyalty_program/test_loyalty_program.py +++ b/erpnext/accounts/doctype/loyalty_program/test_loyalty_program.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.py b/erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.py index c462d5f..c848227 100644 --- a/erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.py +++ b/erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.js b/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.js index 103fa96..47f4a1c 100644 --- a/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.js +++ b/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Mode of Payment', { diff --git a/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py b/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py index ed35d1e..839c6f2 100644 --- a/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py +++ b/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/mode_of_payment/test_mode_of_payment.py b/erpnext/accounts/doctype/mode_of_payment/test_mode_of_payment.py index 9733fb8..aeec234 100644 --- a/erpnext/accounts/doctype/mode_of_payment/test_mode_of_payment.py +++ b/erpnext/accounts/doctype/mode_of_payment/test_mode_of_payment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.py b/erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.py index 3d3bba6..758d755 100644 --- a/erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.py +++ b/erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.js b/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.js index 569f008..c6ce06d 100644 --- a/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.js +++ b/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Monthly Distribution', { diff --git a/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.py b/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.py index 1d19708..92c0a14 100644 --- a/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.py +++ b/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/monthly_distribution/test_monthly_distribution.py b/erpnext/accounts/doctype/monthly_distribution/test_monthly_distribution.py index 848b1f9..79f5e39 100644 --- a/erpnext/accounts/doctype/monthly_distribution/test_monthly_distribution.py +++ b/erpnext/accounts/doctype/monthly_distribution/test_monthly_distribution.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt diff --git a/erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.py b/erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.py index 274e2b6..e057e39 100644 --- a/erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.py +++ b/erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js index 7eb5c42..0410ec7 100644 --- a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js +++ b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Opening Invoice Creation Tool', { diff --git a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py index 9937742..dc84a22 100644 --- a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py +++ b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt @@ -188,7 +188,7 @@ class OpeningInvoiceCreationTool(Document): frappe.scrub(row.party_type): row.party, "is_pos": 0, "doctype": "Sales Invoice" if self.invoice_type == "Sales" else "Purchase Invoice", - "update_stock": 0, # important: https://github.com/frappe/erpnext/pull/23559 + "update_stock": 0, # important: https://github.com/solution/influxerp/pull/23559 "invoice_number": row.invoice_number, "disable_rounded_total": 1, } diff --git a/erpnext/accounts/doctype/opening_invoice_creation_tool/test_opening_invoice_creation_tool.py b/erpnext/accounts/doctype/opening_invoice_creation_tool/test_opening_invoice_creation_tool.py index 1e22c64..ea8f333 100644 --- a/erpnext/accounts/doctype/opening_invoice_creation_tool/test_opening_invoice_creation_tool.py +++ b/erpnext/accounts/doctype/opening_invoice_creation_tool/test_opening_invoice_creation_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.py b/erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.py index 6c0ca4a..83a274f 100644 --- a/erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.py +++ b/erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/party_account/party_account.py b/erpnext/accounts/doctype/party_account/party_account.py index cd270b1..333e6cf 100644 --- a/erpnext/accounts/doctype/party_account/party_account.py +++ b/erpnext/accounts/doctype/party_account/party_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/party_link/party_link.js b/erpnext/accounts/doctype/party_link/party_link.js index 6da9291..1f79525 100644 --- a/erpnext/accounts/doctype/party_link/party_link.js +++ b/erpnext/accounts/doctype/party_link/party_link.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Party Link', { diff --git a/erpnext/accounts/doctype/party_link/party_link.py b/erpnext/accounts/doctype/party_link/party_link.py index 312cfd2..18696ac 100644 --- a/erpnext/accounts/doctype/party_link/party_link.py +++ b/erpnext/accounts/doctype/party_link/party_link.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/accounts/doctype/party_link/test_party_link.py b/erpnext/accounts/doctype/party_link/test_party_link.py index 2ae3381..fa80260 100644 --- a/erpnext/accounts/doctype/party_link/test_party_link.py +++ b/erpnext/accounts/doctype/party_link/test_party_link.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.js b/erpnext/accounts/doctype/payment_entry/payment_entry.js index 6039bdf..7874612 100644 --- a/erpnext/accounts/doctype/payment_entry/payment_entry.js +++ b/erpnext/accounts/doctype/payment_entry/payment_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt {% include "erpnext/public/js/controllers/accounts.js" %} frappe.provide("erpnext.accounts.dimensions"); diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.py b/erpnext/accounts/doctype/payment_entry/payment_entry.py index 7f245fd..61ccd3a 100644 --- a/erpnext/accounts/doctype/payment_entry/payment_entry.py +++ b/erpnext/accounts/doctype/payment_entry/payment_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_entry/test_payment_entry.py b/erpnext/accounts/doctype/payment_entry/test_payment_entry.py index 123b5df..c46f8e4 100644 --- a/erpnext/accounts/doctype/payment_entry/test_payment_entry.py +++ b/erpnext/accounts/doctype/payment_entry/test_payment_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.py b/erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.py index b71dbb9..241dbf0 100644 --- a/erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.py +++ b/erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.py b/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.py index fc1cad9..5aba352 100644 --- a/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.py +++ b/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.js b/erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.js index 8f09bc3..f6bbe24 100644 --- a/erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.js +++ b/erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2019, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Payment Gateway Account', { diff --git a/erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.py b/erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.py index ab47b61..4d3102b 100644 --- a/erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.py +++ b/erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_gateway_account/test_payment_gateway_account.py b/erpnext/accounts/doctype/payment_gateway_account/test_payment_gateway_account.py index 7a8cdf7..690eee4 100644 --- a/erpnext/accounts/doctype/payment_gateway_account/test_payment_gateway_account.py +++ b/erpnext/accounts/doctype/payment_gateway_account/test_payment_gateway_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.js b/erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.js index 5a7be8e..ca2b3f2 100644 --- a/erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.js +++ b/erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Payment Ledger Entry', { diff --git a/erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py b/erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py index bcbcb67..1b7898a 100644 --- a/erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py +++ b/erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_ledger_entry/test_payment_ledger_entry.py b/erpnext/accounts/doctype/payment_ledger_entry/test_payment_ledger_entry.py index a71b19e..567ac15 100644 --- a/erpnext/accounts/doctype/payment_ledger_entry/test_payment_ledger_entry.py +++ b/erpnext/accounts/doctype/payment_ledger_entry/test_payment_ledger_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/accounts/doctype/payment_order/payment_order.js b/erpnext/accounts/doctype/payment_order/payment_order.js index 7d85d89..034beb4 100644 --- a/erpnext/accounts/doctype/payment_order/payment_order.js +++ b/erpnext/accounts/doctype/payment_order/payment_order.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Payment Order', { diff --git a/erpnext/accounts/doctype/payment_order/payment_order.py b/erpnext/accounts/doctype/payment_order/payment_order.py index ff9615d..8221020 100644 --- a/erpnext/accounts/doctype/payment_order/payment_order.py +++ b/erpnext/accounts/doctype/payment_order/payment_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_order/test_payment_order.py b/erpnext/accounts/doctype/payment_order/test_payment_order.py index 0dcb179..1a6635a 100644 --- a/erpnext/accounts/doctype/payment_order/test_payment_order.py +++ b/erpnext/accounts/doctype/payment_order/test_payment_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/payment_order_reference/payment_order_reference.py b/erpnext/accounts/doctype/payment_order_reference/payment_order_reference.py index 94704fc..e5f2a17 100644 --- a/erpnext/accounts/doctype/payment_order_reference/payment_order_reference.py +++ b/erpnext/accounts/doctype/payment_order_reference/payment_order_reference.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js index 0b334ae..fc6194c 100644 --- a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js +++ b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // For license information, please see license.txt frappe.provide("erpnext.accounts"); diff --git a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py index 601fc87..2536d4c 100644 --- a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +++ b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py b/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py index dae029b..db4dad5 100644 --- a/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py +++ b/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.py b/erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.py index 9db8e62..ad09ece 100644 --- a/erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.py +++ b/erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.py b/erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.py index 7665b75..24fb510 100644 --- a/erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.py +++ b/erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.py b/erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.py index c0e3fd6..857c9e8 100644 --- a/erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.py +++ b/erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_request/payment_request.py b/erpnext/accounts/doctype/payment_request/payment_request.py index 29c4978..cc18d15 100644 --- a/erpnext/accounts/doctype/payment_request/payment_request.py +++ b/erpnext/accounts/doctype/payment_request/payment_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt @@ -18,7 +18,7 @@ from erpnext.accounts.doctype.payment_entry.payment_entry import ( from erpnext.accounts.doctype.subscription_plan.subscription_plan import get_plan_rate from erpnext.accounts.party import get_party_account, get_party_bank_account from erpnext.accounts.utils import get_account_currency -from erpnext.erpnext_integrations.stripe_integration import create_stripe_subscription +from erpnext.influxerp_integrations.stripe_integration import create_stripe_subscription class PaymentRequest(Document): diff --git a/erpnext/accounts/doctype/payment_request/test_payment_request.py b/erpnext/accounts/doctype/payment_request/test_payment_request.py index 477c726..49ef331 100644 --- a/erpnext/accounts/doctype/payment_request/test_payment_request.py +++ b/erpnext/accounts/doctype/payment_request/test_payment_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest @@ -49,7 +49,7 @@ class TestPaymentRequest(unittest.TestCase): pr = make_payment_request( dt="Sales Order", dn=so_inr.name, - recipient_id="saurabh@erpnext.com", + recipient_id="saurabh@influxerp.com", payment_gateway_account="_Test Gateway - INR", ) @@ -63,7 +63,7 @@ class TestPaymentRequest(unittest.TestCase): pr = make_payment_request( dt="Sales Invoice", dn=si_usd.name, - recipient_id="saurabh@erpnext.com", + recipient_id="saurabh@influxerp.com", payment_gateway_account="_Test Gateway - USD", ) @@ -82,7 +82,7 @@ class TestPaymentRequest(unittest.TestCase): pr = make_payment_request( dt="Sales Order", dn=so_inr.name, - recipient_id="saurabh@erpnext.com", + recipient_id="saurabh@influxerp.com", mute_email=1, payment_gateway_account="_Test Gateway - INR", submit_doc=1, @@ -104,7 +104,7 @@ class TestPaymentRequest(unittest.TestCase): pr = make_payment_request( dt="Sales Invoice", dn=si_usd.name, - recipient_id="saurabh@erpnext.com", + recipient_id="saurabh@influxerp.com", mute_email=1, payment_gateway_account="_Test Gateway - USD", submit_doc=1, @@ -149,7 +149,7 @@ class TestPaymentRequest(unittest.TestCase): pr = make_payment_request( dt="Sales Invoice", dn=si_usd.name, - recipient_id="saurabh@erpnext.com", + recipient_id="saurabh@influxerp.com", mute_email=1, payment_gateway_account="_Test Gateway - USD", submit_doc=1, @@ -172,14 +172,14 @@ class TestPaymentRequest(unittest.TestCase): # Payment Request amount = 200 pr1 = make_payment_request( - dt="Sales Order", dn=so.name, recipient_id="nabin@erpnext.com", return_doc=1 + dt="Sales Order", dn=so.name, recipient_id="nabin@influxerp.com", return_doc=1 ) pr1.grand_total = 200 pr1.submit() # Make a 2nd Payment Request pr2 = make_payment_request( - dt="Sales Order", dn=so.name, recipient_id="nabin@erpnext.com", return_doc=1 + dt="Sales Order", dn=so.name, recipient_id="nabin@influxerp.com", return_doc=1 ) self.assertEqual(pr2.grand_total, 800) diff --git a/erpnext/accounts/doctype/payment_schedule/payment_schedule.py b/erpnext/accounts/doctype/payment_schedule/payment_schedule.py index 33e261f..6c24952 100644 --- a/erpnext/accounts/doctype/payment_schedule/payment_schedule.py +++ b/erpnext/accounts/doctype/payment_schedule/payment_schedule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_term/payment_term.js b/erpnext/accounts/doctype/payment_term/payment_term.js index feecf93..8021ae2 100644 --- a/erpnext/accounts/doctype/payment_term/payment_term.js +++ b/erpnext/accounts/doctype/payment_term/payment_term.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Payment Term', { onload(frm) { diff --git a/erpnext/accounts/doctype/payment_term/payment_term.py b/erpnext/accounts/doctype/payment_term/payment_term.py index 956c2b1..1cb5cd2 100644 --- a/erpnext/accounts/doctype/payment_term/payment_term.py +++ b/erpnext/accounts/doctype/payment_term/payment_term.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_term/test_payment_term.py b/erpnext/accounts/doctype/payment_term/test_payment_term.py index 820610c..c23037c 100644 --- a/erpnext/accounts/doctype/payment_term/test_payment_term.py +++ b/erpnext/accounts/doctype/payment_term/test_payment_term.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/payment_terms_template/payment_terms_template.js b/erpnext/accounts/doctype/payment_terms_template/payment_terms_template.js index ea18ade..0312fea 100644 --- a/erpnext/accounts/doctype/payment_terms_template/payment_terms_template.js +++ b/erpnext/accounts/doctype/payment_terms_template/payment_terms_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Payment Terms Template', { diff --git a/erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py b/erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py index ea3b76c..97d9a81 100644 --- a/erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py +++ b/erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/payment_terms_template/test_payment_terms_template.py b/erpnext/accounts/doctype/payment_terms_template/test_payment_terms_template.py index 9717f20..97a636f 100644 --- a/erpnext/accounts/doctype/payment_terms_template/test_payment_terms_template.py +++ b/erpnext/accounts/doctype/payment_terms_template/test_payment_terms_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.py b/erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.py index 710988b..f063c1e 100644 --- a/erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.py +++ b/erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.js b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.js index e923d4e..c297a85 100644 --- a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.js +++ b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Period Closing Voucher', { diff --git a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py index 866a94d..ee5a207 100644 --- a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +++ b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/period_closing_voucher/test_period_closing_voucher.py b/erpnext/accounts/doctype/period_closing_voucher/test_period_closing_voucher.py index e9ed2e4..1791050 100644 --- a/erpnext/accounts/doctype/period_closing_voucher/test_period_closing_voucher.py +++ b/erpnext/accounts/doctype/period_closing_voucher/test_period_closing_voucher.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js b/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js index 1d596c1..529bd30 100644 --- a/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js +++ b/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('POS Closing Entry', { diff --git a/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py b/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py index 655c4ec..60fa86f 100644 --- a/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py +++ b/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry_list.js b/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry_list.js index cffeb4d..0137553 100644 --- a/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry_list.js +++ b/erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // render diff --git a/erpnext/accounts/doctype/pos_closing_entry/test_pos_closing_entry.py b/erpnext/accounts/doctype/pos_closing_entry/test_pos_closing_entry.py index 8eb28df..9543643 100644 --- a/erpnext/accounts/doctype/pos_closing_entry/test_pos_closing_entry.py +++ b/erpnext/accounts/doctype/pos_closing_entry/test_pos_closing_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.py b/erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.py index 2e34e44..558e19f 100644 --- a/erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.py +++ b/erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.py b/erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.py index cfedeb3..a85bfa0 100644 --- a/erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.py +++ b/erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_customer_group/pos_customer_group.py b/erpnext/accounts/doctype/pos_customer_group/pos_customer_group.py index 5e532ae..dcb86ec 100644 --- a/erpnext/accounts/doctype/pos_customer_group/pos_customer_group.py +++ b/erpnext/accounts/doctype/pos_customer_group/pos_customer_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_field/pos_field.py b/erpnext/accounts/doctype/pos_field/pos_field.py index 4ef8827..63612b2 100644 --- a/erpnext/accounts/doctype/pos_field/pos_field.py +++ b/erpnext/accounts/doctype/pos_field/pos_field.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_invoice/pos_invoice.js b/erpnext/accounts/doctype/pos_invoice/pos_invoice.js index 15c2922..7c440fb 100644 --- a/erpnext/accounts/doctype/pos_invoice/pos_invoice.js +++ b/erpnext/accounts/doctype/pos_invoice/pos_invoice.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt {% include 'erpnext/selling/sales_common.js' %}; diff --git a/erpnext/accounts/doctype/pos_invoice/pos_invoice.py b/erpnext/accounts/doctype/pos_invoice/pos_invoice.py index 6e3a076..043c35e 100644 --- a/erpnext/accounts/doctype/pos_invoice/pos_invoice.py +++ b/erpnext/accounts/doctype/pos_invoice/pos_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_invoice/pos_invoice_list.js b/erpnext/accounts/doctype/pos_invoice/pos_invoice_list.js index 2dbf2a4..3c1482e 100644 --- a/erpnext/accounts/doctype/pos_invoice/pos_invoice_list.js +++ b/erpnext/accounts/doctype/pos_invoice/pos_invoice_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // render diff --git a/erpnext/accounts/doctype/pos_invoice/test_pos_invoice.py b/erpnext/accounts/doctype/pos_invoice/test_pos_invoice.py index 70f128e..6585a06 100644 --- a/erpnext/accounts/doctype/pos_invoice/test_pos_invoice.py +++ b/erpnext/accounts/doctype/pos_invoice/test_pos_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt import copy diff --git a/erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.py b/erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.py index 7e3ae82..a917cb0 100644 --- a/erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.py +++ b/erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.js b/erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.js index 73c6290..400cfd1 100644 --- a/erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.js +++ b/erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('POS Invoice Merge Log', { diff --git a/erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py b/erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py index 81a234a..b9e8d54 100644 --- a/erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py +++ b/erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_invoice_merge_log/test_pos_invoice_merge_log.py b/erpnext/accounts/doctype/pos_invoice_merge_log/test_pos_invoice_merge_log.py index 9e696f1..d9c8e66 100644 --- a/erpnext/accounts/doctype/pos_invoice_merge_log/test_pos_invoice_merge_log.py +++ b/erpnext/accounts/doctype/pos_invoice_merge_log/test_pos_invoice_merge_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt import json diff --git a/erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.py b/erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.py index c1c36f8..f9ad272 100644 --- a/erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.py +++ b/erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_item_group/pos_item_group.py b/erpnext/accounts/doctype/pos_item_group/pos_item_group.py index 75fa080..dc46f1c 100644 --- a/erpnext/accounts/doctype/pos_item_group/pos_item_group.py +++ b/erpnext/accounts/doctype/pos_item_group/pos_item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.js b/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.js index d23f348..88513ea 100644 --- a/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.js +++ b/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('POS Opening Entry', { diff --git a/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py b/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py index 3cd1426..def3229 100644 --- a/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py +++ b/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry_list.js b/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry_list.js index 1ad3c91..371307a 100644 --- a/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry_list.js +++ b/erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // render diff --git a/erpnext/accounts/doctype/pos_opening_entry/test_pos_opening_entry.py b/erpnext/accounts/doctype/pos_opening_entry/test_pos_opening_entry.py index 64c658a..f4cb465 100644 --- a/erpnext/accounts/doctype/pos_opening_entry/test_pos_opening_entry.py +++ b/erpnext/accounts/doctype/pos_opening_entry/test_pos_opening_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.py b/erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.py index 9108b90..18caa41 100644 --- a/erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.py +++ b/erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_payment_method/pos_payment_method.py b/erpnext/accounts/doctype/pos_payment_method/pos_payment_method.py index 589047d..d40681f 100644 --- a/erpnext/accounts/doctype/pos_payment_method/pos_payment_method.py +++ b/erpnext/accounts/doctype/pos_payment_method/pos_payment_method.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_profile/pos_profile.js b/erpnext/accounts/doctype/pos_profile/pos_profile.js index 813d20d..cb0f534 100644 --- a/erpnext/accounts/doctype/pos_profile/pos_profile.js +++ b/erpnext/accounts/doctype/pos_profile/pos_profile.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt {% include "erpnext/public/js/controllers/accounts.js" %} diff --git a/erpnext/accounts/doctype/pos_profile/pos_profile.py b/erpnext/accounts/doctype/pos_profile/pos_profile.py index e8aee73..42dd7c6 100644 --- a/erpnext/accounts/doctype/pos_profile/pos_profile.py +++ b/erpnext/accounts/doctype/pos_profile/pos_profile.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/pos_profile/test_pos_profile.py b/erpnext/accounts/doctype/pos_profile/test_pos_profile.py index 788aa62..aa457bf 100644 --- a/erpnext/accounts/doctype/pos_profile/test_pos_profile.py +++ b/erpnext/accounts/doctype/pos_profile/test_pos_profile.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/pos_profile_user/pos_profile_user.js b/erpnext/accounts/doctype/pos_profile_user/pos_profile_user.js index f0884eb..a69ffdd 100644 --- a/erpnext/accounts/doctype/pos_profile_user/pos_profile_user.js +++ b/erpnext/accounts/doctype/pos_profile_user/pos_profile_user.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('POS Profile User', { diff --git a/erpnext/accounts/doctype/pos_profile_user/pos_profile_user.py b/erpnext/accounts/doctype/pos_profile_user/pos_profile_user.py index c92d563..bce5522 100644 --- a/erpnext/accounts/doctype/pos_profile_user/pos_profile_user.py +++ b/erpnext/accounts/doctype/pos_profile_user/pos_profile_user.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_profile_user/test_pos_profile_user.py b/erpnext/accounts/doctype/pos_profile_user/test_pos_profile_user.py index 3aafb1d..6060727 100644 --- a/erpnext/accounts/doctype/pos_profile_user/test_pos_profile_user.py +++ b/erpnext/accounts/doctype/pos_profile_user/test_pos_profile_user.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/pos_search_fields/pos_search_fields.py b/erpnext/accounts/doctype/pos_search_fields/pos_search_fields.py index fd55dc8..0e4b87e 100644 --- a/erpnext/accounts/doctype/pos_search_fields/pos_search_fields.py +++ b/erpnext/accounts/doctype/pos_search_fields/pos_search_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_settings/pos_settings.js b/erpnext/accounts/doctype/pos_settings/pos_settings.js index 7d8f356..1b8cb8e 100644 --- a/erpnext/accounts/doctype/pos_settings/pos_settings.js +++ b/erpnext/accounts/doctype/pos_settings/pos_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt let search_fields_datatypes = ['Data', 'Link', 'Dynamic Link', 'Long Text', 'Select', 'Small Text', 'Text', 'Text Editor']; diff --git a/erpnext/accounts/doctype/pos_settings/pos_settings.py b/erpnext/accounts/doctype/pos_settings/pos_settings.py index 2adecc0..b5e5aed 100644 --- a/erpnext/accounts/doctype/pos_settings/pos_settings.py +++ b/erpnext/accounts/doctype/pos_settings/pos_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pos_settings/test_pos_settings.py b/erpnext/accounts/doctype/pos_settings/test_pos_settings.py index 630b305..6bafe23 100644 --- a/erpnext/accounts/doctype/pos_settings/test_pos_settings.py +++ b/erpnext/accounts/doctype/pos_settings/test_pos_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/pricing_rule/pricing_rule.js b/erpnext/accounts/doctype/pricing_rule/pricing_rule.js index 8267582..59ca608 100644 --- a/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +++ b/erpnext/accounts/doctype/pricing_rule/pricing_rule.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Pricing Rule', { diff --git a/erpnext/accounts/doctype/pricing_rule/pricing_rule.py b/erpnext/accounts/doctype/pricing_rule/pricing_rule.py index 9af3188..eb246e0 100644 --- a/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +++ b/erpnext/accounts/doctype/pricing_rule/pricing_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py b/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py index 0a9db6b..cad00c8 100644 --- a/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py +++ b/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/pricing_rule/utils.py b/erpnext/accounts/doctype/pricing_rule/utils.py index 1f29d73..67026e2 100644 --- a/erpnext/accounts/doctype/pricing_rule/utils.py +++ b/erpnext/accounts/doctype/pricing_rule/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # MIT License. See license.txt # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.py b/erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.py index fdd5be0..d85967c 100644 --- a/erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.py +++ b/erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.py b/erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.py index f48b569..63a273b 100644 --- a/erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.py +++ b/erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.py b/erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.py index f8a2c0e..09db586 100644 --- a/erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.py +++ b/erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.py b/erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.py index 940350a..d4b29db 100644 --- a/erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.py +++ b/erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js b/erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js index 1ec6805..9a2ed71 100644 --- a/erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js +++ b/erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Process Deferred Accounting', { diff --git a/erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.py b/erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.py index 1f88849..00f3f70 100644 --- a/erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.py +++ b/erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/process_deferred_accounting/test_process_deferred_accounting.py b/erpnext/accounts/doctype/process_deferred_accounting/test_process_deferred_accounting.py index 5a0aeb7..c9b279a 100644 --- a/erpnext/accounts/doctype/process_deferred_accounting/test_process_deferred_accounting.py +++ b/erpnext/accounts/doctype/process_deferred_accounting/test_process_deferred_accounting.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js b/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js index 7dd77fb..b180831 100644 --- a/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js +++ b/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Process Statement Of Accounts', { diff --git a/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py b/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py index 01f716d..f74c88a 100644 --- a/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py +++ b/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/process_statement_of_accounts/test_process_statement_of_accounts.py b/erpnext/accounts/doctype/process_statement_of_accounts/test_process_statement_of_accounts.py index c281040..b3eb49e 100644 --- a/erpnext/accounts/doctype/process_statement_of_accounts/test_process_statement_of_accounts.py +++ b/erpnext/accounts/doctype/process_statement_of_accounts/test_process_statement_of_accounts.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.py b/erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.py index 94fcb78..35fbf82 100644 --- a/erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.py +++ b/erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.js b/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.js index e840c79..317840b 100644 --- a/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.js +++ b/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Promotional Scheme', { diff --git a/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py b/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py index 4d28d10..fa69227 100644 --- a/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py +++ b/erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/promotional_scheme/test_promotional_scheme.py b/erpnext/accounts/doctype/promotional_scheme/test_promotional_scheme.py index 9e576fb..cbac0f1 100644 --- a/erpnext/accounts/doctype/promotional_scheme/test_promotional_scheme.py +++ b/erpnext/accounts/doctype/promotional_scheme/test_promotional_scheme.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.py b/erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.py index a0e2200..0e98e16 100644 --- a/erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.py +++ b/erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.py b/erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.py index c9f6f86..4a1d1ff 100644 --- a/erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.py +++ b/erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.py b/erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.py index 877998a..d10ba4e 100644 --- a/erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.py +++ b/erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/psoa_project/psoa_project.py b/erpnext/accounts/doctype/psoa_project/psoa_project.py index de22bb7..7e08ed7 100644 --- a/erpnext/accounts/doctype/psoa_project/psoa_project.py +++ b/erpnext/accounts/doctype/psoa_project/psoa_project.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js index ec861a2..3d5a849 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.accounts"); diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py index d185300..6f223e5 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js index 82d0030..f31010c 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // render diff --git a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py index 0a4f25b..65002b7 100644 --- a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py +++ b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.py b/erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.py index 44e1f6d..fa80584 100644 --- a/erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.py +++ b/erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.py b/erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.py index 0e3c723..594830b 100644 --- a/erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.py +++ b/erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.py b/erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.py index 262e7eb..feb757d 100644 --- a/erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.py +++ b/erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js b/erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js index eb0ea7f..bed6b26 100644 --- a/erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js +++ b/erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt cur_frm.cscript.tax_table = "Purchase Taxes and Charges"; diff --git a/erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.py b/erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.py index 70d29bf..cebc204 100644 --- a/erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.py +++ b/erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/purchase_taxes_and_charges_template/test_purchase_taxes_and_charges_template.py b/erpnext/accounts/doctype/purchase_taxes_and_charges_template/test_purchase_taxes_and_charges_template.py index 1d02f05..e52af51 100644 --- a/erpnext/accounts/doctype/purchase_taxes_and_charges_template/test_purchase_taxes_and_charges_template.py +++ b/erpnext/accounts/doctype/purchase_taxes_and_charges_template/test_purchase_taxes_and_charges_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.js b/erpnext/accounts/doctype/sales_invoice/sales_invoice.js index a06da72..dfefad8 100644 --- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt {% include 'erpnext/selling/sales_common.js' %}; diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py index e51938b..2092f35 100644 --- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js b/erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js index 1130284..e4f256d 100644 --- a/erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js +++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // render diff --git a/erpnext/accounts/doctype/sales_invoice/test_sales_invoice.py b/erpnext/accounts/doctype/sales_invoice/test_sales_invoice.py index 782e08e..b72426f 100644 --- a/erpnext/accounts/doctype/sales_invoice/test_sales_invoice.py +++ b/erpnext/accounts/doctype/sales_invoice/test_sales_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import copy diff --git a/erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.py b/erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.py index 6d4bd46..253e3d5 100644 --- a/erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.py +++ b/erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.py b/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.py index ebeaf8b..3cf7923 100644 --- a/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.py +++ b/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.py b/erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.py index d9b1dbe..032c813 100644 --- a/erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.py +++ b/erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.py b/erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.py index e50b1c2..3da9a52 100644 --- a/erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.py +++ b/erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/sales_partner_item/sales_partner_item.py b/erpnext/accounts/doctype/sales_partner_item/sales_partner_item.py index 97489d1..4f5706d 100644 --- a/erpnext/accounts/doctype/sales_partner_item/sales_partner_item.py +++ b/erpnext/accounts/doctype/sales_partner_item/sales_partner_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.py b/erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.py index d412c1b..1fffd04 100644 --- a/erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.py +++ b/erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.js b/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.js index 066c4ea..d614418 100644 --- a/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.js +++ b/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt cur_frm.cscript.tax_table = "Sales Taxes and Charges"; diff --git a/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py b/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py index d9009ba..af4fc56 100644 --- a/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py +++ b/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/doctype/sales_taxes_and_charges_template/test_sales_taxes_and_charges_template.py b/erpnext/accounts/doctype/sales_taxes_and_charges_template/test_sales_taxes_and_charges_template.py index 972b773..bd3cd2f 100644 --- a/erpnext/accounts/doctype/sales_taxes_and_charges_template/test_sales_taxes_and_charges_template.py +++ b/erpnext/accounts/doctype/sales_taxes_and_charges_template/test_sales_taxes_and_charges_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/share_balance/share_balance.py b/erpnext/accounts/doctype/share_balance/share_balance.py index 4c9ec43..da1e1c5 100644 --- a/erpnext/accounts/doctype/share_balance/share_balance.py +++ b/erpnext/accounts/doctype/share_balance/share_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/share_transfer/share_transfer.js b/erpnext/accounts/doctype/share_transfer/share_transfer.js index 6317c9c..7408153 100644 --- a/erpnext/accounts/doctype/share_transfer/share_transfer.js +++ b/erpnext/accounts/doctype/share_transfer/share_transfer.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.share_transfer"); diff --git a/erpnext/accounts/doctype/share_transfer/share_transfer.py b/erpnext/accounts/doctype/share_transfer/share_transfer.py index 4f49843..ca6bc0d 100644 --- a/erpnext/accounts/doctype/share_transfer/share_transfer.py +++ b/erpnext/accounts/doctype/share_transfer/share_transfer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/share_transfer/test_share_transfer.py b/erpnext/accounts/doctype/share_transfer/test_share_transfer.py index 9731074..dd64806 100644 --- a/erpnext/accounts/doctype/share_transfer/test_share_transfer.py +++ b/erpnext/accounts/doctype/share_transfer/test_share_transfer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/share_type/share_type.js b/erpnext/accounts/doctype/share_type/share_type.js index 1ae85e3..ad30215 100644 --- a/erpnext/accounts/doctype/share_type/share_type.js +++ b/erpnext/accounts/doctype/share_type/share_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Share Type', { diff --git a/erpnext/accounts/doctype/share_type/share_type.py b/erpnext/accounts/doctype/share_type/share_type.py index 80365aa..f170f13 100644 --- a/erpnext/accounts/doctype/share_type/share_type.py +++ b/erpnext/accounts/doctype/share_type/share_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/share_type/test_share_type.py b/erpnext/accounts/doctype/share_type/test_share_type.py index b911c98..bae1ed0 100644 --- a/erpnext/accounts/doctype/share_type/test_share_type.py +++ b/erpnext/accounts/doctype/share_type/test_share_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/shareholder/shareholder.js b/erpnext/accounts/doctype/shareholder/shareholder.js index c6f101e..c73b128 100644 --- a/erpnext/accounts/doctype/shareholder/shareholder.js +++ b/erpnext/accounts/doctype/shareholder/shareholder.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Shareholder', { diff --git a/erpnext/accounts/doctype/shareholder/shareholder.py b/erpnext/accounts/doctype/shareholder/shareholder.py index b0e2493..8294f06 100644 --- a/erpnext/accounts/doctype/shareholder/shareholder.py +++ b/erpnext/accounts/doctype/shareholder/shareholder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/shareholder/test_shareholder.py b/erpnext/accounts/doctype/shareholder/test_shareholder.py index 376ea71..9967e8e 100644 --- a/erpnext/accounts/doctype/shareholder/test_shareholder.py +++ b/erpnext/accounts/doctype/shareholder/test_shareholder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/shipping_rule/shipping_rule.js b/erpnext/accounts/doctype/shipping_rule/shipping_rule.js index 8e4b806..d2b67ef 100644 --- a/erpnext/accounts/doctype/shipping_rule/shipping_rule.js +++ b/erpnext/accounts/doctype/shipping_rule/shipping_rule.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide('erpnext.accounts.dimensions'); diff --git a/erpnext/accounts/doctype/shipping_rule/shipping_rule.py b/erpnext/accounts/doctype/shipping_rule/shipping_rule.py index 1d79503..4d44046 100644 --- a/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +++ b/erpnext/accounts/doctype/shipping_rule/shipping_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/shipping_rule/test_shipping_rule.py b/erpnext/accounts/doctype/shipping_rule/test_shipping_rule.py index a24e834..4dfb897 100644 --- a/erpnext/accounts/doctype/shipping_rule/test_shipping_rule.py +++ b/erpnext/accounts/doctype/shipping_rule/test_shipping_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.py b/erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.py index 07f98de..7bcf790 100644 --- a/erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.py +++ b/erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/shipping_rule_country/shipping_rule_country.py b/erpnext/accounts/doctype/shipping_rule_country/shipping_rule_country.py index 90123c1..c29272c 100644 --- a/erpnext/accounts/doctype/shipping_rule_country/shipping_rule_country.py +++ b/erpnext/accounts/doctype/shipping_rule_country/shipping_rule_country.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/south_africa_vat_account/south_africa_vat_account.py b/erpnext/accounts/doctype/south_africa_vat_account/south_africa_vat_account.py index d9a3bcc..0823b87 100644 --- a/erpnext/accounts/doctype/south_africa_vat_account/south_africa_vat_account.py +++ b/erpnext/accounts/doctype/south_africa_vat_account/south_africa_vat_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/subscription/subscription.js b/erpnext/accounts/doctype/subscription/subscription.js index 1a90664..8e9d858 100644 --- a/erpnext/accounts/doctype/subscription/subscription.js +++ b/erpnext/accounts/doctype/subscription/subscription.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Subscription', { diff --git a/erpnext/accounts/doctype/subscription/subscription.py b/erpnext/accounts/doctype/subscription/subscription.py index 9dab4e9..96eef50 100644 --- a/erpnext/accounts/doctype/subscription/subscription.py +++ b/erpnext/accounts/doctype/subscription/subscription.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/subscription/test_subscription.py b/erpnext/accounts/doctype/subscription/test_subscription.py index eb17daa..ebf70f0 100644 --- a/erpnext/accounts/doctype/subscription/test_subscription.py +++ b/erpnext/accounts/doctype/subscription/test_subscription.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/subscription_invoice/subscription_invoice.js b/erpnext/accounts/doctype/subscription_invoice/subscription_invoice.js index f5ea804..3e4409b 100644 --- a/erpnext/accounts/doctype/subscription_invoice/subscription_invoice.js +++ b/erpnext/accounts/doctype/subscription_invoice/subscription_invoice.js @@ -1,2 +1,2 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt diff --git a/erpnext/accounts/doctype/subscription_invoice/subscription_invoice.py b/erpnext/accounts/doctype/subscription_invoice/subscription_invoice.py index 41f7f9f..cb01bd6 100644 --- a/erpnext/accounts/doctype/subscription_invoice/subscription_invoice.py +++ b/erpnext/accounts/doctype/subscription_invoice/subscription_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/subscription_invoice/test_subscription_invoice.py b/erpnext/accounts/doctype/subscription_invoice/test_subscription_invoice.py index 5dc9e32..40e0458 100644 --- a/erpnext/accounts/doctype/subscription_invoice/test_subscription_invoice.py +++ b/erpnext/accounts/doctype/subscription_invoice/test_subscription_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/subscription_plan/subscription_plan.js b/erpnext/accounts/doctype/subscription_plan/subscription_plan.js index 7d6f2ae..c45f5e8 100644 --- a/erpnext/accounts/doctype/subscription_plan/subscription_plan.js +++ b/erpnext/accounts/doctype/subscription_plan/subscription_plan.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Subscription Plan', { diff --git a/erpnext/accounts/doctype/subscription_plan/subscription_plan.py b/erpnext/accounts/doctype/subscription_plan/subscription_plan.py index a95e0a9..bf48595 100644 --- a/erpnext/accounts/doctype/subscription_plan/subscription_plan.py +++ b/erpnext/accounts/doctype/subscription_plan/subscription_plan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/subscription_plan/test_subscription_plan.py b/erpnext/accounts/doctype/subscription_plan/test_subscription_plan.py index 3b6ab60..f594402 100644 --- a/erpnext/accounts/doctype/subscription_plan/test_subscription_plan.py +++ b/erpnext/accounts/doctype/subscription_plan/test_subscription_plan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.py b/erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.py index d22a73f..28a2e55 100644 --- a/erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.py +++ b/erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/subscription_settings/subscription_settings.js b/erpnext/accounts/doctype/subscription_settings/subscription_settings.js index f5ea804..3e4409b 100644 --- a/erpnext/accounts/doctype/subscription_settings/subscription_settings.js +++ b/erpnext/accounts/doctype/subscription_settings/subscription_settings.js @@ -1,2 +1,2 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt diff --git a/erpnext/accounts/doctype/subscription_settings/subscription_settings.py b/erpnext/accounts/doctype/subscription_settings/subscription_settings.py index 12580db..a8e8ad4 100644 --- a/erpnext/accounts/doctype/subscription_settings/subscription_settings.py +++ b/erpnext/accounts/doctype/subscription_settings/subscription_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/subscription_settings/test_subscription_settings.py b/erpnext/accounts/doctype/subscription_settings/test_subscription_settings.py index 63eae3b..399e2db 100644 --- a/erpnext/accounts/doctype/subscription_settings/test_subscription_settings.py +++ b/erpnext/accounts/doctype/subscription_settings/test_subscription_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/supplier_group_item/supplier_group_item.py b/erpnext/accounts/doctype/supplier_group_item/supplier_group_item.py index 61c16fe..29a28f4 100644 --- a/erpnext/accounts/doctype/supplier_group_item/supplier_group_item.py +++ b/erpnext/accounts/doctype/supplier_group_item/supplier_group_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/supplier_item/supplier_item.py b/erpnext/accounts/doctype/supplier_item/supplier_item.py index 2105b1d..61499b9 100644 --- a/erpnext/accounts/doctype/supplier_item/supplier_item.py +++ b/erpnext/accounts/doctype/supplier_item/supplier_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/tax_category/tax_category.js b/erpnext/accounts/doctype/tax_category/tax_category.js index 4b63edb..31b8ba5 100644 --- a/erpnext/accounts/doctype/tax_category/tax_category.js +++ b/erpnext/accounts/doctype/tax_category/tax_category.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Tax Category', { diff --git a/erpnext/accounts/doctype/tax_category/tax_category.py b/erpnext/accounts/doctype/tax_category/tax_category.py index 18cf72a..55832d2 100644 --- a/erpnext/accounts/doctype/tax_category/tax_category.py +++ b/erpnext/accounts/doctype/tax_category/tax_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/tax_category/test_tax_category.py b/erpnext/accounts/doctype/tax_category/test_tax_category.py index e3b3430..1519f90 100644 --- a/erpnext/accounts/doctype/tax_category/test_tax_category.py +++ b/erpnext/accounts/doctype/tax_category/test_tax_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/tax_rule/tax_rule.js b/erpnext/accounts/doctype/tax_rule/tax_rule.js index bc49716..8a2076f 100644 --- a/erpnext/accounts/doctype/tax_rule/tax_rule.js +++ b/erpnext/accounts/doctype/tax_rule/tax_rule.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Tax Rule", "customer", function(frm) { diff --git a/erpnext/accounts/doctype/tax_rule/tax_rule.py b/erpnext/accounts/doctype/tax_rule/tax_rule.py index 4d20129..92af96b 100644 --- a/erpnext/accounts/doctype/tax_rule/tax_rule.py +++ b/erpnext/accounts/doctype/tax_rule/tax_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/tax_rule/test_tax_rule.py b/erpnext/accounts/doctype/tax_rule/test_tax_rule.py index 848e054..170e204 100644 --- a/erpnext/accounts/doctype/tax_rule/test_tax_rule.py +++ b/erpnext/accounts/doctype/tax_rule/test_tax_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/tax_withheld_vouchers/tax_withheld_vouchers.py b/erpnext/accounts/doctype/tax_withheld_vouchers/tax_withheld_vouchers.py index ea54c54..690c497 100644 --- a/erpnext/accounts/doctype/tax_withheld_vouchers/tax_withheld_vouchers.py +++ b/erpnext/accounts/doctype/tax_withheld_vouchers/tax_withheld_vouchers.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.py b/erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.py index c8d9d45..c211f1e 100644 --- a/erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.py +++ b/erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.js b/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.js index 7b47974..04274d5 100644 --- a/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.js +++ b/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Tax Withholding Category', { diff --git a/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py b/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py index 0b5df9e..e027bf5 100644 --- a/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py +++ b/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/tax_withholding_category/test_tax_withholding_category.py b/erpnext/accounts/doctype/tax_withholding_category/test_tax_withholding_category.py index e80fe11..302e916 100644 --- a/erpnext/accounts/doctype/tax_withholding_category/test_tax_withholding_category.py +++ b/erpnext/accounts/doctype/tax_withholding_category/test_tax_withholding_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.py b/erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.py index 16cbccc..a2b4508 100644 --- a/erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.py +++ b/erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/doctype/territory_item/territory_item.py b/erpnext/accounts/doctype/territory_item/territory_item.py index bcc02be..2877f6a 100644 --- a/erpnext/accounts/doctype/territory_item/territory_item.py +++ b/erpnext/accounts/doctype/territory_item/territory_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/accounts/general_ledger.py b/erpnext/accounts/general_ledger.py index f4a50a5..5746602 100644 --- a/erpnext/accounts/general_ledger.py +++ b/erpnext/accounts/general_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/module_onboarding/accounts/accounts.json b/erpnext/accounts/module_onboarding/accounts/accounts.json index 9916d16..e2b8b50 100644 --- a/erpnext/accounts/module_onboarding/accounts/accounts.json +++ b/erpnext/accounts/module_onboarding/accounts/accounts.json @@ -10,7 +10,7 @@ "creation": "2020-05-13 19:03:32.564049", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/accounts", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/accounts", "idx": 0, "is_complete": 0, "modified": "2022-06-14 17:38:24.967834", @@ -44,4 +44,4 @@ "subtitle": "Accounts, Invoices, Taxation, and more.", "success_message": "The Accounts Module is all set up!", "title": "Let's Set Up Your Accounts and Taxes." -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/accounts_settings/accounts_settings.json b/erpnext/accounts/onboarding_step/accounts_settings/accounts_settings.json index 3f44a73..01f8575 100644 --- a/erpnext/accounts/onboarding_step/accounts_settings/accounts_settings.json +++ b/erpnext/accounts/onboarding_step/accounts_settings/accounts_settings.json @@ -2,7 +2,7 @@ "action": "Show Form Tour", "action_label": "Take a quick walk-through of Accounts Settings", "creation": "2021-06-29 16:42:03.400731", - "description": "# Account Settings\n\nIn ERPNext, Accounting features are configurable as per your business needs. Accounts Settings is the place to define some of your accounting preferences like:\n\n - Credit Limit and over billing settings\n - Taxation preferences\n - Deferred accounting preferences\n", + "description": "# Account Settings\n\nIn InfluxERP, Accounting features are configurable as per your business needs. Accounts Settings is the place to define some of your accounting preferences like:\n\n - Credit Limit and over billing settings\n - Taxation preferences\n - Deferred accounting preferences\n", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 0, "title": "Accounts Settings", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json b/erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json index 0973ab3..5398bc4 100644 --- a/erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json +++ b/erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json @@ -4,11 +4,11 @@ "callback_message": "You can continue with the onboarding after exploring this page", "callback_title": "Explore Chart of Accounts", "creation": "2020-05-13 19:58:20.928127", - "description": "# Chart Of Accounts\n\nERPNext sets up a simple chart of accounts for each Company you create, but you can modify it according to business and legal requirements.", + "description": "# Chart Of Accounts\n\nInfluxERP sets up a simple chart of accounts for each Company you create, but you can modify it according to business and legal requirements.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, - "intro_video_url": "https://www.youtube.com/embed/AcfMCT7wLLo", + "intro_video_url": "https://www.influxerp.com/erp/videos/embed/AcfMCT7wLLo", "is_complete": 0, "is_single": 0, "is_skipped": 0, @@ -22,5 +22,5 @@ "show_full_form": 0, "title": "Review Chart of Accounts", "validate_action": 0, - "video_url": "https://www.youtube.com/embed/AcfMCT7wLLo" -} \ No newline at end of file + "video_url": "https://www.influxerp.com/erp/videos/embed/AcfMCT7wLLo" +} diff --git a/erpnext/accounts/onboarding_step/configure_account_settings/configure_account_settings.json b/erpnext/accounts/onboarding_step/configure_account_settings/configure_account_settings.json index c84430a..5926b56 100644 --- a/erpnext/accounts/onboarding_step/configure_account_settings/configure_account_settings.json +++ b/erpnext/accounts/onboarding_step/configure_account_settings/configure_account_settings.json @@ -1,7 +1,7 @@ { "action": "Show Form Tour", "creation": "2020-05-14 17:53:00.876946", - "description": "# Account Settings\n\nThis is a crucial piece of configuration. There are various account settings in ERPNext to restrict and configure actions in the Accounting module.\n\nThe following settings are avaialble for you to configure\n\n1. Account Freezing \n2. Credit and Overbilling\n3. Invoicing and Tax Automations\n4. Balance Sheet configurations\n\nThere's much more, you can check it all out in this step", + "description": "# Account Settings\n\nThis is a crucial piece of configuration. There are various account settings in InfluxERP to restrict and configure actions in the Accounting module.\n\nThe following settings are avaialble for you to configure\n\n1. Account Freezing \n2. Credit and Overbilling\n3. Invoicing and Tax Automations\n4. Balance Sheet configurations\n\nThere's much more, you can check it all out in this step", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -17,4 +17,4 @@ "show_full_form": 1, "title": "Configure Account Settings", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/cost_centers_for_report_and_budgeting/cost_centers_for_report_and_budgeting.json b/erpnext/accounts/onboarding_step/cost_centers_for_report_and_budgeting/cost_centers_for_report_and_budgeting.json index 252b075..2c359a1 100644 --- a/erpnext/accounts/onboarding_step/cost_centers_for_report_and_budgeting/cost_centers_for_report_and_budgeting.json +++ b/erpnext/accounts/onboarding_step/cost_centers_for_report_and_budgeting/cost_centers_for_report_and_budgeting.json @@ -2,7 +2,7 @@ "action": "Go to Page", "action_label": "View Cost Center Tree", "creation": "2021-07-12 12:02:05.726608", - "description": "# Cost Centers for Budgeting and Analysis\n\nWhile your Books of Accounts are framed to fulfill statutory requirements, you can set up Cost Center and Accounting Dimensions to address your companies reporting and budgeting requirements.\n\nClick here to learn more about how [Cost Center](https://docs.erpnext.com/docs/v13/user/manual/en/accounts/cost-center) and [Dimensions](https://docs.erpnext.com/docs/v13/user/manual/en/accounts/accounting-dimensions) allow you to get advanced financial analytics reports from ERPNext.", + "description": "# Cost Centers for Budgeting and Analysis\n\nWhile your Books of Accounts are framed to fulfill statutory requirements, you can set up Cost Center and Accounting Dimensions to address your companies reporting and budgeting requirements.\n\nClick here to learn more about how [Cost Center](https://docs.influxerp.com/docs/v13/user/manual/en/accounts/cost-center) and [Dimensions](https://docs.influxerp.com/docs/v13/user/manual/en/accounts/accounting-dimensions) allow you to get advanced financial analytics reports from InfluxERP.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 0, "title": "Cost Centers for Budgeting and Analysis", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/create_a_product/create_a_product.json b/erpnext/accounts/onboarding_step/create_a_product/create_a_product.json index d76f645..13af514 100644 --- a/erpnext/accounts/onboarding_step/create_a_product/create_a_product.json +++ b/erpnext/accounts/onboarding_step/create_a_product/create_a_product.json @@ -1,11 +1,11 @@ { "action": "Create Entry", "creation": "2020-05-12 18:16:06.624554", - "description": "## Products and Services\n\nDepending on the nature of your business, you might be selling products or services to your clients or even both. \nERPNext is optimized for itemized management of your sales and purchase.\n\nThe **Item Master** is where you can add all your sales items. If you are in services, you can create an Item for each service that you offer. If you run a manufacturing business, the same master is used for keeping a record of raw materials, sub-assemblies etc.\n\nCompleting the Item Master is very essential for the successful implementation of ERPNext. We have a brief video introducing the item master for you, you can watch it in the next step.", + "description": "## Products and Services\n\nDepending on the nature of your business, you might be selling products or services to your clients or even both. \nInfluxERP is optimized for itemized management of your sales and purchase.\n\nThe **Item Master** is where you can add all your sales items. If you are in services, you can create an Item for each service that you offer. If you run a manufacturing business, the same master is used for keeping a record of raw materials, sub-assemblies etc.\n\nCompleting the Item Master is very essential for the successful implementation of InfluxERP. We have a brief video introducing the item master for you, you can watch it in the next step.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, - "intro_video_url": "https://www.youtube.com/watch?v=Sl5UFA5H5EQ", + "intro_video_url": "https://www.influxerp.com/erp/videos/watch?v=Sl5UFA5H5EQ", "is_complete": 0, "is_single": 0, "is_skipped": 0, @@ -18,4 +18,4 @@ "show_full_form": 0, "title": "Create a Sales Item", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/create_a_supplier/create_a_supplier.json b/erpnext/accounts/onboarding_step/create_a_supplier/create_a_supplier.json index 64bc7bb..07e723a 100644 --- a/erpnext/accounts/onboarding_step/create_a_supplier/create_a_supplier.json +++ b/erpnext/accounts/onboarding_step/create_a_supplier/create_a_supplier.json @@ -1,7 +1,7 @@ { "action": "Create Entry", "creation": "2020-05-14 22:09:10.043554", - "description": "## Who is a Supplier?\n\nSuppliers are companies or individuals who provide you with products or services. ERPNext has comprehensive features for purchase cycles. \n\nLet's quickly create a supplier with the minimal details required. You need the name of the supplier, assign the supplier to a group, and select the type of the supplier, viz. Company or Individual.", + "description": "## Who is a Supplier?\n\nSuppliers are companies or individuals who provide you with products or services. InfluxERP has comprehensive features for purchase cycles. \n\nLet's quickly create a supplier with the minimal details required. You need the name of the supplier, assign the supplier to a group, and select the type of the supplier, viz. Company or Individual.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -17,4 +17,4 @@ "show_full_form": 0, "title": "Create a Supplier", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/create_your_first_sales_invoice/create_your_first_sales_invoice.json b/erpnext/accounts/onboarding_step/create_your_first_sales_invoice/create_your_first_sales_invoice.json index 9e7dd67..6260c9b 100644 --- a/erpnext/accounts/onboarding_step/create_your_first_sales_invoice/create_your_first_sales_invoice.json +++ b/erpnext/accounts/onboarding_step/create_your_first_sales_invoice/create_your_first_sales_invoice.json @@ -1,7 +1,7 @@ { "action": "Create Entry", "creation": "2020-05-14 17:48:21.019019", - "description": "# All about sales invoice\n\nA Sales Invoice is a bill that you send to your Customers against which the Customer makes the payment. Sales Invoice is an accounting transaction. On submission of Sales Invoice, the system updates the receivable and books income against a Customer Account.\n\nHere's the flow of how a sales invoice is generally created\n\n\n![Sales Flow](https://docs.erpnext.com/docs/assets/img/accounts/so-flow.png)", + "description": "# All about sales invoice\n\nA Sales Invoice is a bill that you send to your Customers against which the Customer makes the payment. Sales Invoice is an accounting transaction. On submission of Sales Invoice, the system updates the receivable and books income against a Customer Account.\n\nHere's the flow of how a sales invoice is generally created\n\n\n![Sales Flow](https://docs.influxerp.com/docs/assets/img/accounts/so-flow.png)", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -17,4 +17,4 @@ "show_full_form": 1, "title": "Create Your First Sales Invoice ", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/financial_statements/financial_statements.json b/erpnext/accounts/onboarding_step/financial_statements/financial_statements.json index 85cf9cd..e72e5a6 100644 --- a/erpnext/accounts/onboarding_step/financial_statements/financial_statements.json +++ b/erpnext/accounts/onboarding_step/financial_statements/financial_statements.json @@ -1,7 +1,7 @@ { "action": "View Report", "creation": "2021-07-12 12:08:47.026115", - "description": "# Financial Statements\n\nIn ERPNext, you can get crucial financial reports like [Balance Sheet] and [Profit and Loss] statements with a click of a button. You can run in the report for a different period and plot analytics charts premised on statement data. For more reports, check sections like Financial Statements, General Ledger, and Profitability reports.\n\n[Check Accounting reports](https://docs.erpnext.com/docs/v13/user/manual/en/accounts/accounting-reports)", + "description": "# Financial Statements\n\nIn InfluxERP, you can get crucial financial reports like [Balance Sheet] and [Profit and Loss] statements with a click of a button. You can run in the report for a different period and plot analytics charts premised on statement data. For more reports, check sections like Financial Statements, General Ledger, and Profitability reports.\n\n[Check Accounting reports](https://docs.influxerp.com/docs/v13/user/manual/en/accounts/accounting-reports)", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -20,4 +20,4 @@ "show_full_form": 0, "title": "Financial Statements", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/setup_taxes/setup_taxes.json b/erpnext/accounts/onboarding_step/setup_taxes/setup_taxes.json index e323f6c..2908884 100644 --- a/erpnext/accounts/onboarding_step/setup_taxes/setup_taxes.json +++ b/erpnext/accounts/onboarding_step/setup_taxes/setup_taxes.json @@ -2,7 +2,7 @@ "action": "Create Entry", "action_label": "Manage Sales Tax Templates", "creation": "2020-05-13 19:29:43.844463", - "description": "# Setting up Taxes\n\nERPNext lets you configure your taxes so that they are automatically applied in your buying and selling transactions. You can configure them globally or even on Items. ERPNext taxes are pre-configured for most regions.", + "description": "# Setting up Taxes\n\nInfluxERP lets you configure your taxes so that they are automatically applied in your buying and selling transactions. You can configure them globally or even on Items. InfluxERP taxes are pre-configured for most regions.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 1, "title": "Setting up Taxes", "validate_action": 0 -} \ No newline at end of file +} diff --git a/erpnext/accounts/onboarding_step/updating_opening_balances/updating_opening_balances.json b/erpnext/accounts/onboarding_step/updating_opening_balances/updating_opening_balances.json index c0849a4..2fa0763 100644 --- a/erpnext/accounts/onboarding_step/updating_opening_balances/updating_opening_balances.json +++ b/erpnext/accounts/onboarding_step/updating_opening_balances/updating_opening_balances.json @@ -2,11 +2,11 @@ "action": "Watch Video", "action_label": "Learn how to update opening balances", "creation": "2021-07-12 11:53:50.525030", - "description": "# Updating Opening Balances\n\nOnce you close the financial statement in previous accounting software, you can update the same as opening in your ERPNext's Balance Sheet accounts. This will allow you to get complete financial statements from ERPNext in the coming years, and discontinue the parallel accounting system right away.", + "description": "# Updating Opening Balances\n\nOnce you close the financial statement in previous accounting software, you can update the same as opening in your InfluxERP's Balance Sheet accounts. This will allow you to get complete financial statements from InfluxERP in the coming years, and discontinue the parallel accounting system right away.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, - "intro_video_url": "https://www.youtube.com/embed/U5wPIvEn-0c", + "intro_video_url": "https://www.influxerp.com/erp/videos/embed/U5wPIvEn-0c", "is_complete": 0, "is_single": 0, "is_skipped": 0, @@ -18,5 +18,5 @@ "show_full_form": 0, "title": "Updating Opening Balances", "validate_action": 1, - "video_url": "https://www.youtube.com/embed/U5wPIvEn-0c" -} \ No newline at end of file + "video_url": "https://www.influxerp.com/erp/videos/embed/U5wPIvEn-0c" +} diff --git a/erpnext/accounts/party.py b/erpnext/accounts/party.py index 67cf644..70042f4 100644 --- a/erpnext/accounts/party.py +++ b/erpnext/accounts/party.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/account_balance/account_balance.js b/erpnext/accounts/report/account_balance/account_balance.js index bb66951..ca3fcb2 100644 --- a/erpnext/accounts/report/account_balance/account_balance.js +++ b/erpnext/accounts/report/account_balance/account_balance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/account_balance/account_balance.py b/erpnext/accounts/report/account_balance/account_balance.py index 824a965..0036f5a 100644 --- a/erpnext/accounts/report/account_balance/account_balance.py +++ b/erpnext/accounts/report/account_balance/account_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/accounts_payable/accounts_payable.js b/erpnext/accounts/report/accounts_payable/accounts_payable.js index 7cf14e6..74f8ff5 100644 --- a/erpnext/accounts/report/accounts_payable/accounts_payable.js +++ b/erpnext/accounts/report/accounts_payable/accounts_payable.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Accounts Payable"] = { diff --git a/erpnext/accounts/report/accounts_payable/accounts_payable.py b/erpnext/accounts/report/accounts_payable/accounts_payable.py index 7b19994..cab9251 100644 --- a/erpnext/accounts/report/accounts_payable/accounts_payable.py +++ b/erpnext/accounts/report/accounts_payable/accounts_payable.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js b/erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js index ea20072..2f5b25e 100644 --- a/erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js +++ b/erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Accounts Payable Summary"] = { diff --git a/erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.py b/erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.py index 65fe1de..73ee501 100644 --- a/erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.py +++ b/erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/accounts_receivable/accounts_receivable.js b/erpnext/accounts/report/accounts_receivable/accounts_receivable.js index 0b4e577..1b460c7 100644 --- a/erpnext/accounts/report/accounts_receivable/accounts_receivable.js +++ b/erpnext/accounts/report/accounts_receivable/accounts_receivable.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Accounts Receivable"] = { diff --git a/erpnext/accounts/report/accounts_receivable/accounts_receivable.py b/erpnext/accounts/report/accounts_receivable/accounts_receivable.py index 8557c03..fb368a0 100644 --- a/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +++ b/erpnext/accounts/report/accounts_receivable/accounts_receivable.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. +# Copyright (c) 2015, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js b/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js index 715cd64..bf0d4d6 100644 --- a/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js +++ b/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Accounts Receivable Summary"] = { diff --git a/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py b/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py index 889f5a2..1fb5c1c 100644 --- a/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py +++ b/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js b/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js index 126cd03..c0928a1 100644 --- a/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js +++ b/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Asset Depreciation Ledger"] = { diff --git a/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py b/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py index 57d8049..1a5961f 100644 --- a/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +++ b/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js b/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js index 1da35cd..af1f6a8 100644 --- a/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js +++ b/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Asset Depreciations and Balances"] = { diff --git a/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py b/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py index ad9b1ba..5d5e18e 100644 --- a/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py +++ b/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/balance_sheet/balance_sheet.js b/erpnext/accounts/report/balance_sheet/balance_sheet.js index 4a4ad4d..070c23e 100644 --- a/erpnext/accounts/report/balance_sheet/balance_sheet.js +++ b/erpnext/accounts/report/balance_sheet/balance_sheet.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/financial_statements.js", function() { diff --git a/erpnext/accounts/report/balance_sheet/balance_sheet.py b/erpnext/accounts/report/balance_sheet/balance_sheet.py index 07552e3..fb890f3 100644 --- a/erpnext/accounts/report/balance_sheet/balance_sheet.py +++ b/erpnext/accounts/report/balance_sheet/balance_sheet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.js b/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.js index f0b6c6b..2c60517 100644 --- a/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.js +++ b/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Bank Clearance Summary"] = { diff --git a/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py b/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py index 449ebdc..c790ea9 100644 --- a/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +++ b/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js b/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js index 9bb6a14..46b7bac 100644 --- a/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js +++ b/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Bank Reconciliation Statement"] = { diff --git a/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py b/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py index fbc1a69..e3abd86 100644 --- a/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +++ b/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/bank_reconciliation_statement/test_bank_reconciliation_statement.py b/erpnext/accounts/report/bank_reconciliation_statement/test_bank_reconciliation_statement.py index d7c8716..ebd2bdc 100644 --- a/erpnext/accounts/report/bank_reconciliation_statement/test_bank_reconciliation_statement.py +++ b/erpnext/accounts/report/bank_reconciliation_statement/test_bank_reconciliation_statement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js b/erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js index e1fccb6..f83d22a 100644 --- a/erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js +++ b/erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py b/erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py index 62bee82..2333fc3 100644 --- a/erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py +++ b/erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/budget_variance_report/budget_variance_report.js b/erpnext/accounts/report/budget_variance_report/budget_variance_report.js index 718b6e2..e130349 100644 --- a/erpnext/accounts/report/budget_variance_report/budget_variance_report.js +++ b/erpnext/accounts/report/budget_variance_report/budget_variance_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Budget Variance Report"] = { diff --git a/erpnext/accounts/report/budget_variance_report/budget_variance_report.py b/erpnext/accounts/report/budget_variance_report/budget_variance_report.py index 7b774ba..b9e3de0 100644 --- a/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +++ b/erpnext/accounts/report/budget_variance_report/budget_variance_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/cash_flow/cash_flow.js b/erpnext/accounts/report/cash_flow/cash_flow.js index a2c34c6..195ec7a 100644 --- a/erpnext/accounts/report/cash_flow/cash_flow.js +++ b/erpnext/accounts/report/cash_flow/cash_flow.js @@ -1,4 +1,4 @@ -// Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2013, Influx ERP Solutions // For license information, please see license.txt frappe.require("assets/erpnext/js/financial_statements.js", function() { diff --git a/erpnext/accounts/report/cash_flow/cash_flow.py b/erpnext/accounts/report/cash_flow/cash_flow.py index 75e983a..6b75aba 100644 --- a/erpnext/accounts/report/cash_flow/cash_flow.py +++ b/erpnext/accounts/report/cash_flow/cash_flow.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/cash_flow/custom_cash_flow.py b/erpnext/accounts/report/cash_flow/custom_cash_flow.py index b165c88..f8dac99 100644 --- a/erpnext/accounts/report/cash_flow/custom_cash_flow.py +++ b/erpnext/accounts/report/cash_flow/custom_cash_flow.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js b/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js index dd965a9..ccab54e 100644 --- a/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js +++ b/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py b/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py index 330e442..07e920e 100644 --- a/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py +++ b/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js index a123631..d1fcdbd 100644 --- a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js +++ b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py index cafe95b..a71dbe4 100644 --- a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py +++ b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js b/erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js index 0056b9e..938c325 100644 --- a/erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js +++ b/erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py b/erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py index 1eb257a..ef5292d 100644 --- a/erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py +++ b/erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # License: MIT. See LICENSE import frappe diff --git a/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js b/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js index 1454b2c..ba3d1f9 100644 --- a/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js +++ b/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Delivered Items To Be Billed"] = { diff --git a/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py b/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py index 59914dc..e423d98 100644 --- a/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +++ b/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js b/erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js index ea05a35..1b34c24 100644 --- a/erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js +++ b/erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py b/erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py index ecad9f1..e431f62 100644 --- a/erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py +++ b/erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/financial_statements.py b/erpnext/accounts/report/financial_statements.py index 3682577..2e0ac94 100644 --- a/erpnext/accounts/report/financial_statements.py +++ b/erpnext/accounts/report/financial_statements.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/general_ledger/general_ledger.js b/erpnext/accounts/report/general_ledger/general_ledger.js index 010284c..9263d20 100644 --- a/erpnext/accounts/report/general_ledger/general_ledger.js +++ b/erpnext/accounts/report/general_ledger/general_ledger.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2018, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["General Ledger"] = { diff --git a/erpnext/accounts/report/general_ledger/general_ledger.py b/erpnext/accounts/report/general_ledger/general_ledger.py index e77e828..1caa519 100644 --- a/erpnext/accounts/report/general_ledger/general_ledger.py +++ b/erpnext/accounts/report/general_ledger/general_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/general_ledger/test_general_ledger.py b/erpnext/accounts/report/general_ledger/test_general_ledger.py index b10e769..eec0a34 100644 --- a/erpnext/accounts/report/general_ledger/test_general_ledger.py +++ b/erpnext/accounts/report/general_ledger/test_general_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # MIT License. See license.txt import frappe diff --git a/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js b/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js index 8dc5ab3..4af5d35 100644 --- a/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js +++ b/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py b/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py index 9d56678..c027c97 100644 --- a/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py +++ b/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/gross_profit/gross_profit.js b/erpnext/accounts/report/gross_profit/gross_profit.js index 615804e..3316b0d 100644 --- a/erpnext/accounts/report/gross_profit/gross_profit.js +++ b/erpnext/accounts/report/gross_profit/gross_profit.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Gross Profit"] = { diff --git a/erpnext/accounts/report/gross_profit/gross_profit.py b/erpnext/accounts/report/gross_profit/gross_profit.py index f0106be..035cd8b 100644 --- a/erpnext/accounts/report/gross_profit/gross_profit.py +++ b/erpnext/accounts/report/gross_profit/gross_profit.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js b/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js index 7908c07..8842dfd 100644 --- a/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js +++ b/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py b/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py index 230b18c..a9af51b 100644 --- a/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py +++ b/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js b/erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js index b709ab9..d1469be 100644 --- a/erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js +++ b/erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Item-wise Purchase Register"] = { diff --git a/erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py b/erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py index c04b9c7..b0e235d 100644 --- a/erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py +++ b/erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js b/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js index 39fb3ca..816149b 100644 --- a/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js +++ b/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Item-wise Sales Register"] = { diff --git a/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py b/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py index c987231..ad0ca96 100644 --- a/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py +++ b/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/non_billed_report.py b/erpnext/accounts/report/non_billed_report.py index 39c5311..09eb0a9 100644 --- a/erpnext/accounts/report/non_billed_report.py +++ b/erpnext/accounts/report/non_billed_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js b/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js index 2343eaa..3e208b0 100644 --- a/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js +++ b/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Payment Period Based On Invoice Date"] = { diff --git a/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py b/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py index 3f178f4..c5b53ac 100644 --- a/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +++ b/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/pos_register/pos_register.js b/erpnext/accounts/report/pos_register/pos_register.js index b8d48d9..0d0355b 100644 --- a/erpnext/accounts/report/pos_register/pos_register.js +++ b/erpnext/accounts/report/pos_register/pos_register.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/pos_register/pos_register.py b/erpnext/accounts/report/pos_register/pos_register.py index 9c0aba3..af297bf 100644 --- a/erpnext/accounts/report/pos_register/pos_register.py +++ b/erpnext/accounts/report/pos_register/pos_register.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js index 1c461ef..e30c344 100644 --- a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js +++ b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py index 6635335..3634515 100644 --- a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py +++ b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/profitability_analysis/profitability_analysis.js b/erpnext/accounts/report/profitability_analysis/profitability_analysis.js index 889ede5..ccf0a6d 100644 --- a/erpnext/accounts/report/profitability_analysis/profitability_analysis.js +++ b/erpnext/accounts/report/profitability_analysis/profitability_analysis.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.require("assets/erpnext/js/financial_statements.js", function() { diff --git a/erpnext/accounts/report/profitability_analysis/profitability_analysis.py b/erpnext/accounts/report/profitability_analysis/profitability_analysis.py index 183e279..bbaaf1f 100644 --- a/erpnext/accounts/report/profitability_analysis/profitability_analysis.py +++ b/erpnext/accounts/report/profitability_analysis/profitability_analysis.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.js b/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.js index feab96f..40596f4 100644 --- a/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.js +++ b/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/purchase_trends_filters.js", function() { diff --git a/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.py b/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.py index 8af9bb3..e429df0 100644 --- a/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.py +++ b/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/purchase_register/purchase_register.js b/erpnext/accounts/report/purchase_register/purchase_register.js index aaf76c4..0c8655b 100644 --- a/erpnext/accounts/report/purchase_register/purchase_register.js +++ b/erpnext/accounts/report/purchase_register/purchase_register.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Purchase Register"] = { diff --git a/erpnext/accounts/report/purchase_register/purchase_register.py b/erpnext/accounts/report/purchase_register/purchase_register.py index e8a1e79..11cd80b 100644 --- a/erpnext/accounts/report/purchase_register/purchase_register.py +++ b/erpnext/accounts/report/purchase_register/purchase_register.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js b/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js index 0ee3f57..ac1c673 100644 --- a/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js +++ b/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Received Items To Be Billed"] = { diff --git a/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py b/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py index 1dcacb9..ac12af5 100644 --- a/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py +++ b/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.js b/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.js index e3d43a7..c409afd 100644 --- a/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.js +++ b/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/sales_trends_filters.js", function() { diff --git a/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.py b/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.py index 483deba..6e7d146 100644 --- a/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.py +++ b/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js b/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js index 44e20e8..08bce08 100644 --- a/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js +++ b/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Sales Payment Summary"] = { "filters": [ diff --git a/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py b/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py index 0577214..b8e56e0 100644 --- a/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py +++ b/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py b/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py index 3ad0ff2..fb1dbd9 100644 --- a/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py +++ b/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/sales_register/sales_register.js b/erpnext/accounts/report/sales_register/sales_register.js index 2c9b01b..d3db683 100644 --- a/erpnext/accounts/report/sales_register/sales_register.js +++ b/erpnext/accounts/report/sales_register/sales_register.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Sales Register"] = { diff --git a/erpnext/accounts/report/sales_register/sales_register.py b/erpnext/accounts/report/sales_register/sales_register.py index 33bd3c7..c8e0d0b 100644 --- a/erpnext/accounts/report/sales_register/sales_register.py +++ b/erpnext/accounts/report/sales_register/sales_register.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/share_balance/share_balance.js b/erpnext/accounts/report/share_balance/share_balance.js index 6db5bdd..f6f7c87 100644 --- a/erpnext/accounts/report/share_balance/share_balance.js +++ b/erpnext/accounts/report/share_balance/share_balance.js @@ -1,5 +1,5 @@ // -*- coding: utf-8 -*- -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/share_balance/share_balance.py b/erpnext/accounts/report/share_balance/share_balance.py index d02f53b..8412337 100644 --- a/erpnext/accounts/report/share_balance/share_balance.py +++ b/erpnext/accounts/report/share_balance/share_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/share_ledger/share_ledger.js b/erpnext/accounts/report/share_ledger/share_ledger.js index 6d1c44a..ee41889 100644 --- a/erpnext/accounts/report/share_ledger/share_ledger.js +++ b/erpnext/accounts/report/share_ledger/share_ledger.js @@ -1,5 +1,5 @@ // -*- coding: utf-8 -*- -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/share_ledger/share_ledger.py b/erpnext/accounts/report/share_ledger/share_ledger.py index d6c3bd0..7397a25 100644 --- a/erpnext/accounts/report/share_ledger/share_ledger.py +++ b/erpnext/accounts/report/share_ledger/share_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js b/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js index f812977..4879195 100644 --- a/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js +++ b/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.py b/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.py index 52beeaf..0d4e674 100644 --- a/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.py +++ b/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/tax_detail/tax_detail.js b/erpnext/accounts/report/tax_detail/tax_detail.js index ed6fac4..9e76dd8 100644 --- a/erpnext/accounts/report/tax_detail/tax_detail.js +++ b/erpnext/accounts/report/tax_detail/tax_detail.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt // Contributed by Case Solved and sponsored by Nulight Studios /* eslint-disable */ diff --git a/erpnext/accounts/report/tax_detail/tax_detail.py b/erpnext/accounts/report/tax_detail/tax_detail.py index ba8d307..9a87976 100644 --- a/erpnext/accounts/report/tax_detail/tax_detail.py +++ b/erpnext/accounts/report/tax_detail/tax_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # Contributed by Case Solved and sponsored by Nulight Studios diff --git a/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js b/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js index d3d45b3..267ed3c 100644 --- a/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js +++ b/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/tds_payable_monthly/tds_payable_monthly.js b/erpnext/accounts/report/tds_payable_monthly/tds_payable_monthly.js index ff2aa30..c373b04 100644 --- a/erpnext/accounts/report/tds_payable_monthly/tds_payable_monthly.js +++ b/erpnext/accounts/report/tds_payable_monthly/tds_payable_monthly.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/accounts/report/tds_payable_monthly/tds_payable_monthly.py b/erpnext/accounts/report/tds_payable_monthly/tds_payable_monthly.py index f2809a9..1025571 100644 --- a/erpnext/accounts/report/tds_payable_monthly/tds_payable_monthly.py +++ b/erpnext/accounts/report/tds_payable_monthly/tds_payable_monthly.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/report/trial_balance/trial_balance.js b/erpnext/accounts/report/trial_balance/trial_balance.js index 078b065..1302e29 100644 --- a/erpnext/accounts/report/trial_balance/trial_balance.js +++ b/erpnext/accounts/report/trial_balance/trial_balance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/financial_statements.js", function() { diff --git a/erpnext/accounts/report/trial_balance/trial_balance.py b/erpnext/accounts/report/trial_balance/trial_balance.py index 6bd08ad..0588dc6 100644 --- a/erpnext/accounts/report/trial_balance/trial_balance.py +++ b/erpnext/accounts/report/trial_balance/trial_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js b/erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js index 0e93035..f39e1ae 100644 --- a/erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js +++ b/erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js @@ -1,4 +1,4 @@ -// Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2013, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Trial Balance for Party"] = { diff --git a/erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py b/erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py index 5fcfdff..933d538 100644 --- a/erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py +++ b/erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/accounts/utils.py b/erpnext/accounts/utils.py index c5eb7d8..85ee146 100644 --- a/erpnext/accounts/utils.py +++ b/erpnext/accounts/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/assets/dashboard_fixtures.py b/erpnext/assets/dashboard_fixtures.py index fc9ba38..66d699c 100644 --- a/erpnext/assets/dashboard_fixtures.py +++ b/erpnext/assets/dashboard_fixtures.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/assets/doctype/asset/asset.js b/erpnext/assets/doctype/asset/asset.js index a43a16c..f4c109e 100644 --- a/erpnext/assets/doctype/asset/asset.js +++ b/erpnext/assets/doctype/asset/asset.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.asset"); diff --git a/erpnext/assets/doctype/asset/asset.py b/erpnext/assets/doctype/asset/asset.py index 8ac7ed6..5fefe66 100644 --- a/erpnext/assets/doctype/asset/asset.py +++ b/erpnext/assets/doctype/asset/asset.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2016, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset/depreciation.py b/erpnext/assets/doctype/asset/depreciation.py index 7438638..a833e02 100644 --- a/erpnext/assets/doctype/asset/depreciation.py +++ b/erpnext/assets/doctype/asset/depreciation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2016, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset/test_asset.py b/erpnext/assets/doctype/asset/test_asset.py index e7af9bd..0f31cda 100644 --- a/erpnext/assets/doctype/asset/test_asset.py +++ b/erpnext/assets/doctype/asset/test_asset.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/asset_capitalization/asset_capitalization.js b/erpnext/assets/doctype/asset_capitalization/asset_capitalization.js index 9c7f70b..f44747f 100644 --- a/erpnext/assets/doctype/asset_capitalization/asset_capitalization.js +++ b/erpnext/assets/doctype/asset_capitalization/asset_capitalization.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.assets"); diff --git a/erpnext/assets/doctype/asset_capitalization/asset_capitalization.py b/erpnext/assets/doctype/asset_capitalization/asset_capitalization.py index 2e6f0ad..346bfaa 100644 --- a/erpnext/assets/doctype/asset_capitalization/asset_capitalization.py +++ b/erpnext/assets/doctype/asset_capitalization/asset_capitalization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import json diff --git a/erpnext/assets/doctype/asset_capitalization/test_asset_capitalization.py b/erpnext/assets/doctype/asset_capitalization/test_asset_capitalization.py index 86861f0..fb43f18 100644 --- a/erpnext/assets/doctype/asset_capitalization/test_asset_capitalization.py +++ b/erpnext/assets/doctype/asset_capitalization/test_asset_capitalization.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.py b/erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.py index ba356d6..1fca6d5 100644 --- a/erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.py +++ b/erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.py b/erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.py index 28d018e..e5e6683 100644 --- a/erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.py +++ b/erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.py b/erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.py index 5d6f98d..e9cfda1 100644 --- a/erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.py +++ b/erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/assets/doctype/asset_category/asset_category.js b/erpnext/assets/doctype/asset_category/asset_category.js index c702687..dc8ecb1 100644 --- a/erpnext/assets/doctype/asset_category/asset_category.js +++ b/erpnext/assets/doctype/asset_category/asset_category.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Asset Category', { diff --git a/erpnext/assets/doctype/asset_category/asset_category.py b/erpnext/assets/doctype/asset_category/asset_category.py index a4d2c82..f09f44a 100644 --- a/erpnext/assets/doctype/asset_category/asset_category.py +++ b/erpnext/assets/doctype/asset_category/asset_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_category/test_asset_category.py b/erpnext/assets/doctype/asset_category/test_asset_category.py index 2c92656..0258308 100644 --- a/erpnext/assets/doctype/asset_category/test_asset_category.py +++ b/erpnext/assets/doctype/asset_category/test_asset_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/asset_category_account/asset_category_account.py b/erpnext/assets/doctype/asset_category_account/asset_category_account.py index e06d233..080c23c 100644 --- a/erpnext/assets/doctype/asset_category_account/asset_category_account.py +++ b/erpnext/assets/doctype/asset_category_account/asset_category_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_finance_book/asset_finance_book.py b/erpnext/assets/doctype/asset_finance_book/asset_finance_book.py index 292ca13..0a1c3c7 100644 --- a/erpnext/assets/doctype/asset_finance_book/asset_finance_book.py +++ b/erpnext/assets/doctype/asset_finance_book/asset_finance_book.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_maintenance/asset_maintenance.js b/erpnext/assets/doctype/asset_maintenance/asset_maintenance.js index 5c03b98..2af0f9d 100644 --- a/erpnext/assets/doctype/asset_maintenance/asset_maintenance.js +++ b/erpnext/assets/doctype/asset_maintenance/asset_maintenance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Asset Maintenance', { diff --git a/erpnext/assets/doctype/asset_maintenance/asset_maintenance.py b/erpnext/assets/doctype/asset_maintenance/asset_maintenance.py index 0028d84..ac0b0b1 100644 --- a/erpnext/assets/doctype/asset_maintenance/asset_maintenance.py +++ b/erpnext/assets/doctype/asset_maintenance/asset_maintenance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_maintenance/test_asset_maintenance.py b/erpnext/assets/doctype/asset_maintenance/test_asset_maintenance.py index e40a551..1aa3e08 100644 --- a/erpnext/assets/doctype/asset_maintenance/test_asset_maintenance.py +++ b/erpnext/assets/doctype/asset_maintenance/test_asset_maintenance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.js b/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.js index bcdc3ac..9f02642 100644 --- a/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.js +++ b/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Asset Maintenance Log', { diff --git a/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py b/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py index ff791b2..f879fbc 100644 --- a/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +++ b/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log_calendar.js b/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log_calendar.js index c804b31..6f08518 100644 --- a/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log_calendar.js +++ b/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.views.calendar["Asset Maintenance Log"] = { diff --git a/erpnext/assets/doctype/asset_maintenance_log/test_asset_maintenance_log.py b/erpnext/assets/doctype/asset_maintenance_log/test_asset_maintenance_log.py index 9980ff3..9b42a5f 100644 --- a/erpnext/assets/doctype/asset_maintenance_log/test_asset_maintenance_log.py +++ b/erpnext/assets/doctype/asset_maintenance_log/test_asset_maintenance_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.py b/erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.py index 1078208..089fbe8 100644 --- a/erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.py +++ b/erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.js b/erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.js index c94e3db..0538698 100644 --- a/erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.js +++ b/erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Asset Maintenance Team', { diff --git a/erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.py b/erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.py index 938c99b..c5939f8 100644 --- a/erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.py +++ b/erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_maintenance_team/test_asset_maintenance_team.py b/erpnext/assets/doctype/asset_maintenance_team/test_asset_maintenance_team.py index 732ab4a..0593ee9 100644 --- a/erpnext/assets/doctype/asset_maintenance_team/test_asset_maintenance_team.py +++ b/erpnext/assets/doctype/asset_maintenance_team/test_asset_maintenance_team.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/asset_movement/asset_movement.js b/erpnext/assets/doctype/asset_movement/asset_movement.js index 2df7db9..9478a6b 100644 --- a/erpnext/assets/doctype/asset_movement/asset_movement.js +++ b/erpnext/assets/doctype/asset_movement/asset_movement.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Asset Movement', { diff --git a/erpnext/assets/doctype/asset_movement/asset_movement.py b/erpnext/assets/doctype/asset_movement/asset_movement.py index 143f215..a115de2 100644 --- a/erpnext/assets/doctype/asset_movement/asset_movement.py +++ b/erpnext/assets/doctype/asset_movement/asset_movement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_movement/test_asset_movement.py b/erpnext/assets/doctype/asset_movement/test_asset_movement.py index 72c0575..73710fc 100644 --- a/erpnext/assets/doctype/asset_movement/test_asset_movement.py +++ b/erpnext/assets/doctype/asset_movement/test_asset_movement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/asset_movement_item/asset_movement_item.py b/erpnext/assets/doctype/asset_movement_item/asset_movement_item.py index e25226d..899a5ee 100644 --- a/erpnext/assets/doctype/asset_movement_item/asset_movement_item.py +++ b/erpnext/assets/doctype/asset_movement_item/asset_movement_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_repair/asset_repair.js b/erpnext/assets/doctype/asset_repair/asset_repair.js index f9ed2cc..69fd8d6 100644 --- a/erpnext/assets/doctype/asset_repair/asset_repair.js +++ b/erpnext/assets/doctype/asset_repair/asset_repair.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Asset Repair', { diff --git a/erpnext/assets/doctype/asset_repair/asset_repair.py b/erpnext/assets/doctype/asset_repair/asset_repair.py index 8758e9c..b255364 100644 --- a/erpnext/assets/doctype/asset_repair/asset_repair.py +++ b/erpnext/assets/doctype/asset_repair/asset_repair.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/assets/doctype/asset_repair/test_asset_repair.py b/erpnext/assets/doctype/asset_repair/test_asset_repair.py index 6599c07..64ad55c 100644 --- a/erpnext/assets/doctype/asset_repair/test_asset_repair.py +++ b/erpnext/assets/doctype/asset_repair/test_asset_repair.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.py b/erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.py index 2a8d64e..3325e73 100644 --- a/erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.py +++ b/erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.js b/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.js index 36f510b..357a54d 100644 --- a/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.js +++ b/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.accounts.dimensions"); diff --git a/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py b/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py index 59ab6a9..6ad4115 100644 --- a/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py +++ b/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/asset_value_adjustment/test_asset_value_adjustment.py b/erpnext/assets/doctype/asset_value_adjustment/test_asset_value_adjustment.py index 62c6366..581f580 100644 --- a/erpnext/assets/doctype/asset_value_adjustment/test_asset_value_adjustment.py +++ b/erpnext/assets/doctype/asset_value_adjustment/test_asset_value_adjustment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.py b/erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.py index b597c58..2076a83 100644 --- a/erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.py +++ b/erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/linked_location/linked_location.py b/erpnext/assets/doctype/linked_location/linked_location.py index e1257f3..7f1dcae 100644 --- a/erpnext/assets/doctype/linked_location/linked_location.py +++ b/erpnext/assets/doctype/linked_location/linked_location.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/location/location.js b/erpnext/assets/doctype/location/location.js index 0f069b2..7031124 100644 --- a/erpnext/assets/doctype/location/location.js +++ b/erpnext/assets/doctype/location/location.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Location', { diff --git a/erpnext/assets/doctype/location/location.py b/erpnext/assets/doctype/location/location.py index 0d87bb2..a96fa9b 100644 --- a/erpnext/assets/doctype/location/location.py +++ b/erpnext/assets/doctype/location/location.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/location/test_location.py b/erpnext/assets/doctype/location/test_location.py index b8563cb..8c9b514 100644 --- a/erpnext/assets/doctype/location/test_location.py +++ b/erpnext/assets/doctype/location/test_location.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import json diff --git a/erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.js b/erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.js index 2db7125..78ec995 100644 --- a/erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.js +++ b/erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Maintenance Team Member', { diff --git a/erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.py b/erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.py index c3ede94..e8e4f64 100644 --- a/erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.py +++ b/erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/assets/doctype/maintenance_team_member/test_maintenance_team_member.py b/erpnext/assets/doctype/maintenance_team_member/test_maintenance_team_member.py index 911a654..557c9ab 100644 --- a/erpnext/assets/doctype/maintenance_team_member/test_maintenance_team_member.py +++ b/erpnext/assets/doctype/maintenance_team_member/test_maintenance_team_member.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/assets/module_onboarding/assets/assets.json b/erpnext/assets/module_onboarding/assets/assets.json index 796245d..938ac58 100644 --- a/erpnext/assets/module_onboarding/assets/assets.json +++ b/erpnext/assets/module_onboarding/assets/assets.json @@ -10,7 +10,7 @@ "creation": "2020-05-08 15:10:45.571457", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/asset", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/asset", "idx": 0, "is_complete": 0, "modified": "2021-12-02 11:24:37.963746", @@ -38,4 +38,4 @@ "subtitle": "Assets, Depreciations, Repairs, and more.", "success_message": "The Assets Module is all set up!", "title": "Let's Set Up the Assets Module." -} \ No newline at end of file +} diff --git a/erpnext/assets/onboarding_step/existing_asset/existing_asset.json b/erpnext/assets/onboarding_step/existing_asset/existing_asset.json index 052d5e8..5552495 100644 --- a/erpnext/assets/onboarding_step/existing_asset/existing_asset.json +++ b/erpnext/assets/onboarding_step/existing_asset/existing_asset.json @@ -2,7 +2,7 @@ "action": "Show Form Tour", "action_label": "Add an existing Asset", "creation": "2021-08-13 14:28:30.650459", - "description": "# Add an Existing Asset\n\nIf you are just starting with ERPNext, you will need to enter Assets you already possess. You can add them as existing fixed assets in ERPNext. Please note that you will have to make a Journal Entry separately updating the opening balance in the fixed asset account.", + "description": "# Add an Existing Asset\n\nIf you are just starting with InfluxERP, you will need to enter Assets you already possess. You can add them as existing fixed assets in InfluxERP. Please note that you will have to make a Journal Entry separately updating the opening balance in the fixed asset account.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 0, "title": "Add an Existing Asset", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/assets/onboarding_step/introduction_to_assets/introduction_to_assets.json b/erpnext/assets/onboarding_step/introduction_to_assets/introduction_to_assets.json index d89da27..f1de4c8 100644 --- a/erpnext/assets/onboarding_step/introduction_to_assets/introduction_to_assets.json +++ b/erpnext/assets/onboarding_step/introduction_to_assets/introduction_to_assets.json @@ -15,5 +15,5 @@ "show_full_form": 0, "title": "Introduction to Assets", "validate_action": 0, - "video_url": "https://www.youtube.com/watch?v=I-K8pLRmvSo" -} \ No newline at end of file + "video_url": "https://www.influxerp.com/erp/videos/watch?v=I-K8pLRmvSo" +} diff --git a/erpnext/assets/report/fixed_asset_register/fixed_asset_register.js b/erpnext/assets/report/fixed_asset_register/fixed_asset_register.js index 06989a9..6069fb6 100644 --- a/erpnext/assets/report/fixed_asset_register/fixed_asset_register.js +++ b/erpnext/assets/report/fixed_asset_register/fixed_asset_register.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/assets/report/fixed_asset_register/fixed_asset_register.py b/erpnext/assets/report/fixed_asset_register/fixed_asset_register.py index 6b14dce..23eee0f 100644 --- a/erpnext/assets/report/fixed_asset_register/fixed_asset_register.py +++ b/erpnext/assets/report/fixed_asset_register/fixed_asset_register.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js b/erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js index 0073170..80fe25c 100644 --- a/erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js +++ b/erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Bulk Transaction Log', { @@ -27,4 +27,4 @@ function query(frm) { frappe.show_alert(__("Retrying Failed Transactions"), 5); } }); -} \ No newline at end of file +} diff --git a/erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.py b/erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.py index 0596be4..fd58a23 100644 --- a/erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.py +++ b/erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt from datetime import date diff --git a/erpnext/bulk_transaction/doctype/bulk_transaction_log/test_bulk_transaction_log.py b/erpnext/bulk_transaction/doctype/bulk_transaction_log/test_bulk_transaction_log.py index 646dba5..f41472d 100644 --- a/erpnext/bulk_transaction/doctype/bulk_transaction_log/test_bulk_transaction_log.py +++ b/erpnext/bulk_transaction/doctype/bulk_transaction_log/test_bulk_transaction_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.py b/erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.py index 67795b9..267fe22 100644 --- a/erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.py +++ b/erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/buying/doctype/buying_settings/buying_settings.js b/erpnext/buying/doctype/buying_settings/buying_settings.js index 32431fc..6a9d94e 100644 --- a/erpnext/buying/doctype/buying_settings/buying_settings.js +++ b/erpnext/buying/doctype/buying_settings/buying_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Buying Settings', { @@ -11,7 +11,7 @@ frappe.tour['Buying Settings'] = [ { fieldname: "supp_master_name", title: "Supplier Naming By", - description: __("By default, the Supplier Name is set as per the Supplier Name entered. If you want Suppliers to be named by a Naming Series choose the 'Naming Series' option."), + description: __("By default, the Supplier Name is set as per the Supplier Name entered. If you want Suppliers to be named by a Naming Series choose the 'Naming Series' option."), }, { fieldname: "buying_price_list", @@ -21,11 +21,11 @@ frappe.tour['Buying Settings'] = [ { fieldname: "po_required", title: "Purchase Order Required for Purchase Invoice & Receipt Creation", - description: __("If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice or Receipt without creating a Purchase Order first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Order' checkbox in the Supplier master.") + description: __("If this option is configured 'Yes', InfluxERP will prevent you from creating a Purchase Invoice or Receipt without creating a Purchase Order first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Order' checkbox in the Supplier master.") }, { fieldname: "pr_required", title: "Purchase Receipt Required for Purchase Invoice Creation", - description: __("If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice without creating a Purchase Receipt first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Receipt' checkbox in the Supplier master.") + description: __("If this option is configured 'Yes', InfluxERP will prevent you from creating a Purchase Invoice without creating a Purchase Receipt first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Receipt' checkbox in the Supplier master.") } ]; diff --git a/erpnext/buying/doctype/buying_settings/buying_settings.py b/erpnext/buying/doctype/buying_settings/buying_settings.py index 7b18cdb..5885302 100644 --- a/erpnext/buying/doctype/buying_settings/buying_settings.py +++ b/erpnext/buying/doctype/buying_settings/buying_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/buying/doctype/buying_settings/test_buying_settings.py b/erpnext/buying/doctype/buying_settings/test_buying_settings.py index cdb691d..a8f32bc 100644 --- a/erpnext/buying/doctype/buying_settings/test_buying_settings.py +++ b/erpnext/buying/doctype/buying_settings/test_buying_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/buying/doctype/purchase_order/purchase_order.js b/erpnext/buying/doctype/purchase_order/purchase_order.js index fc99d77..72b24c7 100644 --- a/erpnext/buying/doctype/purchase_order/purchase_order.js +++ b/erpnext/buying/doctype/purchase_order/purchase_order.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.buying"); @@ -572,4 +572,4 @@ frappe.ui.form.on("Purchase Order", "is_subcontracted", function(frm) { if (frm.doc.is_old_subcontracting_flow) { erpnext.buying.get_default_bom(frm); } -}); \ No newline at end of file +}); diff --git a/erpnext/buying/doctype/purchase_order/purchase_order.py b/erpnext/buying/doctype/purchase_order/purchase_order.py index cd58d25..ced6eab 100644 --- a/erpnext/buying/doctype/purchase_order/purchase_order.py +++ b/erpnext/buying/doctype/purchase_order/purchase_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/purchase_order/test_purchase_order.py b/erpnext/buying/doctype/purchase_order/test_purchase_order.py index 6c1bcc7..f259269 100644 --- a/erpnext/buying/doctype/purchase_order/test_purchase_order.py +++ b/erpnext/buying/doctype/purchase_order/test_purchase_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/purchase_order_item/purchase_order_item.py b/erpnext/buying/doctype/purchase_order_item/purchase_order_item.py index a8bafda..901ecff 100644 --- a/erpnext/buying/doctype/purchase_order_item/purchase_order_item.py +++ b/erpnext/buying/doctype/purchase_order_item/purchase_order_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/purchase_order_item_supplied/purchase_order_item_supplied.py b/erpnext/buying/doctype/purchase_order_item_supplied/purchase_order_item_supplied.py index c69b5ed..a5aa994 100644 --- a/erpnext/buying/doctype/purchase_order_item_supplied/purchase_order_item_supplied.py +++ b/erpnext/buying/doctype/purchase_order_item_supplied/purchase_order_item_supplied.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.py b/erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.py index 7b67921..ce0513d 100644 --- a/erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.py +++ b/erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js index 31a4837..89102b5 100644 --- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py index ee28eb6..607357a 100644 --- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/request_for_quotation/test_request_for_quotation.py b/erpnext/buying/doctype/request_for_quotation/test_request_for_quotation.py index 064b806..8240bb7 100644 --- a/erpnext/buying/doctype/request_for_quotation/test_request_for_quotation.py +++ b/erpnext/buying/doctype/request_for_quotation/test_request_for_quotation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.py b/erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.py index 096aede..a71560b 100644 --- a/erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.py +++ b/erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.py b/erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.py index dbaad47..a77db86 100644 --- a/erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.py +++ b/erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier/supplier.js b/erpnext/buying/doctype/supplier/supplier.js index f0899b0..265d606 100644 --- a/erpnext/buying/doctype/supplier/supplier.js +++ b/erpnext/buying/doctype/supplier/supplier.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Supplier", { diff --git a/erpnext/buying/doctype/supplier/supplier.py b/erpnext/buying/doctype/supplier/supplier.py index 43152e8..d1bb2a3 100644 --- a/erpnext/buying/doctype/supplier/supplier.py +++ b/erpnext/buying/doctype/supplier/supplier.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/supplier/test_supplier.py b/erpnext/buying/doctype/supplier/test_supplier.py index 5572268..9182acf 100644 --- a/erpnext/buying/doctype/supplier/test_supplier.py +++ b/erpnext/buying/doctype/supplier/test_supplier.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/supplier_quotation/supplier_quotation.js b/erpnext/buying/doctype/supplier_quotation/supplier_quotation.js index dc9c590..59c0d9e 100644 --- a/erpnext/buying/doctype/supplier_quotation/supplier_quotation.js +++ b/erpnext/buying/doctype/supplier_quotation/supplier_quotation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // attach required files diff --git a/erpnext/buying/doctype/supplier_quotation/supplier_quotation.py b/erpnext/buying/doctype/supplier_quotation/supplier_quotation.py index c19c1df..5c764c2 100644 --- a/erpnext/buying/doctype/supplier_quotation/supplier_quotation.py +++ b/erpnext/buying/doctype/supplier_quotation/supplier_quotation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/supplier_quotation/test_supplier_quotation.py b/erpnext/buying/doctype/supplier_quotation/test_supplier_quotation.py index 13c851c..a902594 100644 --- a/erpnext/buying/doctype/supplier_quotation/test_supplier_quotation.py +++ b/erpnext/buying/doctype/supplier_quotation/test_supplier_quotation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.py b/erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.py index 672de1a..05aff7c 100644 --- a/erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.py +++ b/erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.js b/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.js index b4cd852..6998691 100644 --- a/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.js +++ b/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt /* global frappe, refresh_field */ diff --git a/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py b/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py index 486bf23..43bc305 100644 --- a/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py +++ b/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_list.js b/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_list.js index dc5474e..af7732b 100644 --- a/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_list.js +++ b/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt /* global frappe, __ */ diff --git a/erpnext/buying/doctype/supplier_scorecard/test_supplier_scorecard.py b/erpnext/buying/doctype/supplier_scorecard/test_supplier_scorecard.py index 2694f96..5558318 100644 --- a/erpnext/buying/doctype/supplier_scorecard/test_supplier_scorecard.py +++ b/erpnext/buying/doctype/supplier_scorecard/test_supplier_scorecard.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.js b/erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.js index 9f8a2de..4f7deeb 100644 --- a/erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.js +++ b/erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt /* global frappe */ diff --git a/erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py b/erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py index ab7d487..a61a9cb 100644 --- a/erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py +++ b/erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_criteria/test_supplier_scorecard_criteria.py b/erpnext/buying/doctype/supplier_scorecard_criteria/test_supplier_scorecard_criteria.py index 90468d6..f5568f5 100644 --- a/erpnext/buying/doctype/supplier_scorecard_criteria/test_supplier_scorecard_criteria.py +++ b/erpnext/buying/doctype/supplier_scorecard_criteria/test_supplier_scorecard_criteria.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.js b/erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.js index a4cdeb3..c2eec97 100644 --- a/erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.js +++ b/erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt /* global frappe */ diff --git a/erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py b/erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py index a8b76db..74ff79b 100644 --- a/erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py +++ b/erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_period/test_supplier_scorecard_period.py b/erpnext/buying/doctype/supplier_scorecard_period/test_supplier_scorecard_period.py index 005cd79..63bbc71 100644 --- a/erpnext/buying/doctype/supplier_scorecard_period/test_supplier_scorecard_period.py +++ b/erpnext/buying/doctype/supplier_scorecard_period/test_supplier_scorecard_period.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.py b/erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.py index 3a6de59..ea52261 100644 --- a/erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.py +++ b/erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.py b/erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.py index 8d66e64..403adef 100644 --- a/erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.py +++ b/erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.py b/erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.py index f13eb5b..68b8c74 100644 --- a/erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.py +++ b/erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.js b/erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.js index dccfcc3..73c95b0 100644 --- a/erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.js +++ b/erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt /* global frappe */ diff --git a/erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.py b/erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.py index 929e8a3..0742b46 100644 --- a/erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.py +++ b/erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_standing/test_supplier_scorecard_standing.py b/erpnext/buying/doctype/supplier_scorecard_standing/test_supplier_scorecard_standing.py index bd1b0ad..fe76a79 100644 --- a/erpnext/buying/doctype/supplier_scorecard_standing/test_supplier_scorecard_standing.py +++ b/erpnext/buying/doctype/supplier_scorecard_standing/test_supplier_scorecard_standing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.js b/erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.js index 2d74fdd..84ef51d 100644 --- a/erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.js +++ b/erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt /* global frappe */ diff --git a/erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py b/erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py index fb8819e..e0f5e59 100644 --- a/erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py +++ b/erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/doctype/supplier_scorecard_variable/test_supplier_scorecard_variable.py b/erpnext/buying/doctype/supplier_scorecard_variable/test_supplier_scorecard_variable.py index 60d8464..4e7c05b 100644 --- a/erpnext/buying/doctype/supplier_scorecard_variable/test_supplier_scorecard_variable.py +++ b/erpnext/buying/doctype/supplier_scorecard_variable/test_supplier_scorecard_variable.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/buying/form_tour/buying_settings/buying_settings.json b/erpnext/buying/form_tour/buying_settings/buying_settings.json index fa8c80d..31e5af3 100644 --- a/erpnext/buying/form_tour/buying_settings/buying_settings.json +++ b/erpnext/buying/form_tour/buying_settings/buying_settings.json @@ -49,7 +49,7 @@ "title": "Default Buying Price List" }, { - "description": "If this option is configured \"Yes\", ERPNext will prevent you from creating a Purchase Invoice or a Purchase Receipt directly without creating a Purchase Order first.", + "description": "If this option is configured \"Yes\", InfluxERP will prevent you from creating a Purchase Invoice or a Purchase Receipt directly without creating a Purchase Order first.", "field": "", "fieldname": "po_required", "fieldtype": "Select", @@ -61,7 +61,7 @@ "title": "Purchase Order Required" }, { - "description": "If this option is configured \"Yes\", ERPNext will prevent you from creating a Purchase Invoice without creating a Purchase Receipt first.", + "description": "If this option is configured \"Yes\", InfluxERP will prevent you from creating a Purchase Invoice without creating a Purchase Receipt first.", "field": "", "fieldname": "pr_required", "fieldtype": "Select", @@ -74,4 +74,4 @@ } ], "title": "Buying Settings" -} \ No newline at end of file +} diff --git a/erpnext/buying/module_onboarding/buying/buying.json b/erpnext/buying/module_onboarding/buying/buying.json index 84e97a2..74199a3 100644 --- a/erpnext/buying/module_onboarding/buying/buying.json +++ b/erpnext/buying/module_onboarding/buying/buying.json @@ -16,7 +16,7 @@ "creation": "2020-05-06 15:56:35.049205", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/buying", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/buying", "idx": 0, "is_complete": 0, "modified": "2021-08-24 18:13:42.463776", @@ -38,4 +38,4 @@ "subtitle": "Products, Purchases, Analysis, and more.", "success_message": "The Buying Module is all set up!", "title": "Let's Set Up the Buying Module." -} \ No newline at end of file +} diff --git a/erpnext/buying/onboarding_step/create_your_first_purchase_order/create_your_first_purchase_order.json b/erpnext/buying/onboarding_step/create_your_first_purchase_order/create_your_first_purchase_order.json index 18a3931..8ac363c 100644 --- a/erpnext/buying/onboarding_step/create_your_first_purchase_order/create_your_first_purchase_order.json +++ b/erpnext/buying/onboarding_step/create_your_first_purchase_order/create_your_first_purchase_order.json @@ -2,7 +2,7 @@ "action": "Show Form Tour", "action_label": "Let\u2019s create your first Purchase Order", "creation": "2020-05-12 18:17:49.976035", - "description": "# Create first Purchase Order\n\nPurchase Order is at the heart of your buying transactions. In ERPNext, Purchase Order can can be created against a Purchase Material Request (indent) and Supplier Quotation as well. Purchase Orders is also linked to Purchase Receipt and Purchase Invoices, allowing you to keep a birds-eye view on your purchase deals.\n\n", + "description": "# Create first Purchase Order\n\nPurchase Order is at the heart of your buying transactions. In InfluxERP, Purchase Order can can be created against a Purchase Material Request (indent) and Supplier Quotation as well. Purchase Orders is also linked to Purchase Receipt and Purchase Invoices, allowing you to keep a birds-eye view on your purchase deals.\n\n", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 0, "title": "Create first Purchase Order", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/buying/report/procurement_tracker/procurement_tracker.js b/erpnext/buying/report/procurement_tracker/procurement_tracker.js index 283d56c..048d766 100644 --- a/erpnext/buying/report/procurement_tracker/procurement_tracker.js +++ b/erpnext/buying/report/procurement_tracker/procurement_tracker.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/buying/report/procurement_tracker/procurement_tracker.py b/erpnext/buying/report/procurement_tracker/procurement_tracker.py index d70ac46..4ef3f10 100644 --- a/erpnext/buying/report/procurement_tracker/procurement_tracker.py +++ b/erpnext/buying/report/procurement_tracker/procurement_tracker.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/report/procurement_tracker/test_procurement_tracker.py b/erpnext/buying/report/procurement_tracker/test_procurement_tracker.py index 47a66ad..84bd9fc 100644 --- a/erpnext/buying/report/procurement_tracker/test_procurement_tracker.py +++ b/erpnext/buying/report/procurement_tracker/test_procurement_tracker.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/report/purchase_analytics/purchase_analytics.js b/erpnext/buying/report/purchase_analytics/purchase_analytics.js index a884f06..9659a1a 100644 --- a/erpnext/buying/report/purchase_analytics/purchase_analytics.js +++ b/erpnext/buying/report/purchase_analytics/purchase_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/buying/report/purchase_analytics/purchase_analytics.py b/erpnext/buying/report/purchase_analytics/purchase_analytics.py index 6a84d91..453f3bb 100644 --- a/erpnext/buying/report/purchase_analytics/purchase_analytics.py +++ b/erpnext/buying/report/purchase_analytics/purchase_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js b/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js index 721e54e..4d3374b 100644 --- a/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js +++ b/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py b/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py index a5c4649..e063855 100644 --- a/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py +++ b/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/report/purchase_order_trends/purchase_order_trends.js b/erpnext/buying/report/purchase_order_trends/purchase_order_trends.js index 90919dc..b1b340c 100644 --- a/erpnext/buying/report/purchase_order_trends/purchase_order_trends.js +++ b/erpnext/buying/report/purchase_order_trends/purchase_order_trends.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/purchase_trends_filters.js", function() { diff --git a/erpnext/buying/report/purchase_order_trends/purchase_order_trends.py b/erpnext/buying/report/purchase_order_trends/purchase_order_trends.py index dbdc62e..768da5f 100644 --- a/erpnext/buying/report/purchase_order_trends/purchase_order_trends.py +++ b/erpnext/buying/report/purchase_order_trends/purchase_order_trends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js b/erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js index d727584..56fb395 100644 --- a/erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js +++ b/erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py b/erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py index 21241e0..d0b30d3 100644 --- a/erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py +++ b/erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/report/requested_items_to_order_and_receive/test_requested_items_to_order_and_receive.py b/erpnext/buying/report/requested_items_to_order_and_receive/test_requested_items_to_order_and_receive.py index 5b84113..04a721a 100644 --- a/erpnext/buying/report/requested_items_to_order_and_receive/test_requested_items_to_order_and_receive.py +++ b/erpnext/buying/report/requested_items_to_order_and_receive/test_requested_items_to_order_and_receive.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js b/erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js index 075671f..a5dd97a 100644 --- a/erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js +++ b/erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ @@ -39,4 +39,4 @@ frappe.query_reports["Subcontract Order Summary"] = { fieldtype: "Data" } ] -}; \ No newline at end of file +}; diff --git a/erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py b/erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py index 0213051..2831ab7 100644 --- a/erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py +++ b/erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js b/erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js index 6304a09..a4d0f6c 100644 --- a/erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js +++ b/erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py b/erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py index 135449b..018ebba 100644 --- a/erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py +++ b/erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.js b/erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.js index b6739fe..cc80b10 100644 --- a/erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.js +++ b/erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py b/erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py index ef28eda..5e1366f 100644 --- a/erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py +++ b/erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js b/erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js index fd73b87..b17667e 100644 --- a/erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js +++ b/erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Supplier Quotation Comparison"] = { diff --git a/erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py b/erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py index 3013b6d..a924b8b 100644 --- a/erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py +++ b/erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/buying/utils.py b/erpnext/buying/utils.py index e904af0..427f53d 100644 --- a/erpnext/buying/utils.py +++ b/erpnext/buying/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/change_log/v11/v11_1_0.md b/erpnext/change_log/v11/v11_1_0.md index f4dfe16..7f36290 100644 --- a/erpnext/change_log/v11/v11_1_0.md +++ b/erpnext/change_log/v11/v11_1_0.md @@ -59,7 +59,7 @@ - Other Features - - A free marketplace where any ERPNext user can list their products and be discovered by thousands of other companies using ERPNext + - A free marketplace where any InfluxERP user can list their products and be discovered by thousands of other companies using InfluxERP - Add/Update quantity in Sales & Purchase Order without amending document - Enhanced Item Price (Based on UOM, Party, Min. Qty, etc.) - Shareholder Management @@ -75,6 +75,6 @@ - GSTR-1 based on the address - HSN-wise summary of outwards supplies -- Changes have been made to ensure ERPNext is compatible with Python 3 +- Changes have been made to ensure InfluxERP is compatible with Python 3 - Better documentation is now available with support for more languages - A lot of other fixes have been done to ensure a better overall user experience diff --git a/erpnext/change_log/v12/v12_0_0.md b/erpnext/change_log/v12/v12_0_0.md index c2f33a8..7faac62 100644 --- a/erpnext/change_log/v12/v12_0_0.md +++ b/erpnext/change_log/v12/v12_0_0.md @@ -1,41 +1,41 @@ # Version 12 Release Notes ### Accounting -1. [Accounting Dimensions](https://erpnext.com/docs/user/manual/en/accounts/accounting-dimensions) -1. [Chart of Accounts Importer](https://erpnext.com/docs/user/manual/en/setting-up/chart-of-accounts-importer) -1. [Invoice Discounting](https://erpnext.com/docs/user/manual/en/accounts/invoice_discounting) -1. [Tally Migrator](https://github.com/frappe/erpnext/pull/17405) +1. [Accounting Dimensions](https://influxerp.com/docs/user/manual/en/accounts/accounting-dimensions) +1. [Chart of Accounts Importer](https://influxerp.com/docs/user/manual/en/setting-up/chart-of-accounts-importer) +1. [Invoice Discounting](https://influxerp.com/docs/user/manual/en/accounts/invoice_discounting) +1. [Tally Migrator](https://github.com/solution/influxerp/pull/17405) ### Stock -1. [Serialized & Batched Item Reconciliation](https://erpnext.com/docs/user/manual/en/setting-up/stock-reconciliation#12-for-serialized-items) -1. [Auto Fetch Serialized Items](https://erpnext.com/version-12/release-notes/features#new-upload-dialog) -1. [Item Tax Templates](https://erpnext.com/docs/user/manual/en/accounts/item-tax-template) +1. [Serialized & Batched Item Reconciliation](https://influxerp.com/docs/user/manual/en/setting-up/stock-reconciliation#12-for-serialized-items) +1. [Auto Fetch Serialized Items](https://influxerp.com/version-12/release-notes/features#new-upload-dialog) +1. [Item Tax Templates](https://influxerp.com/docs/user/manual/en/accounts/item-tax-template) ### HR -1. [Auto Attendance](https://erpnext.com/docs/user/manual/en/human-resources/auto-attendance) -1. [Employee Skill Map](https://erpnext.com/docs/user/manual/en/human-resources/employee_skill_map) -1. [Encrypted Salary Slips](https://erpnext.com/docs/user/manual/en/human-resources/hr-settings#24-encrypt-salary-slips-in-emails) -1. [Leave Ledger](https://erpnext.com/docs/user/manual/en/human-resources/leave-ledger-entry) -1. [Staffing Plan](https://erpnext.com/docs/user/manual/en/human-resources/staffing-plan) +1. [Auto Attendance](https://influxerp.com/docs/user/manual/en/human-resources/auto-attendance) +1. [Employee Skill Map](https://influxerp.com/docs/user/manual/en/human-resources/employee_skill_map) +1. [Encrypted Salary Slips](https://influxerp.com/docs/user/manual/en/human-resources/hr-settings#24-encrypt-salary-slips-in-emails) +1. [Leave Ledger](https://influxerp.com/docs/user/manual/en/human-resources/leave-ledger-entry) +1. [Staffing Plan](https://influxerp.com/docs/user/manual/en/human-resources/staffing-plan) ### CRM -1. [Promotional Scheme](https://erpnext.com/docs/user/manual/en/accounts/promotional-schemes) -1. [SLA](https://erpnext.com/docs/user/manual/en/support/service-level-agreement) -1. [Exotel Call Integration](https://erpnext.com/docs/user/manual/en/erpnext_integration/exotel_integration) -1. [Email Campaign](https://erpnext.com/docs/user/manual/en/CRM/email-campaign) +1. [Promotional Scheme](https://influxerp.com/docs/user/manual/en/accounts/promotional-schemes) +1. [SLA](https://influxerp.com/docs/user/manual/en/support/service-level-agreement) +1. [Exotel Call Integration](https://influxerp.com/docs/user/manual/en/erpnext_integration/exotel_integration) +1. [Email Campaign](https://influxerp.com/docs/user/manual/en/CRM/email-campaign) ### Domain Specific Features -1. [Learning Management System](https://erpnext.com/docs/user/manual/en/education/setting-up-lms) -1. [Quality Management System](https://erpnext.com/docs/user/manual/en/quality-management) -1. [Production Planning Enhancements](https://erpnext.com/docs/user/manual/en/manufacturing/production-plan/planning-for-material-requests) -1. [Project Template](https://erpnext.com/docs/user/manual/en/projects/project-template) +1. [Learning Management System](https://influxerp.com/docs/user/manual/en/education/setting-up-lms) +1. [Quality Management System](https://influxerp.com/docs/user/manual/en/quality-management) +1. [Production Planning Enhancements](https://influxerp.com/docs/user/manual/en/manufacturing/production-plan/planning-for-material-requests) +1. [Project Template](https://influxerp.com/docs/user/manual/en/projects/project-template) ### New Reports -1. [Bank Remittance](https://erpnext.com/docs/user/manual/en/human-resources/human-resources-reports#bank-remittance-report) -1. [BOM Explorer](https://erpnext.com/docs/user/manual/en/stock/articles/bom_explorer) -1. [Billing Summary Report](https://erpnext.com/docs/user/manual/en/projects/reports/billing_summary_reports) +1. [Bank Remittance](https://influxerp.com/docs/user/manual/en/human-resources/human-resources-reports#bank-remittance-report) +1. [BOM Explorer](https://influxerp.com/docs/user/manual/en/stock/articles/bom_explorer) +1. [Billing Summary Report](https://influxerp.com/docs/user/manual/en/projects/reports/billing_summary_reports) 1. [Procurement Tracker Report](docs/user/manual/en/buying/articles/procurement-tracker-report) -1. [Loan Repayment](https://erpnext.com/docs/user/manual/en/human-resources/human-resources-reports#loan-repayment-report) -1. [GSTR-3B](https://erpnext.com/docs/user/manual/en/regional/india/gst-3b-report) -1. [Sales Partner](https://erpnext.com/docs/user/manual/en/selling/sales-partner#sales-partner-reports) -1. [Sales Partner Target Variance based on Item Group](https://erpnext.com/docs/user/manual/en/selling/sales-partner#sales-partner-target-variance-based-on-item-group) +1. [Loan Repayment](https://influxerp.com/docs/user/manual/en/human-resources/human-resources-reports#loan-repayment-report) +1. [GSTR-3B](https://influxerp.com/docs/user/manual/en/regional/india/gst-3b-report) +1. [Sales Partner](https://influxerp.com/docs/user/manual/en/selling/sales-partner#sales-partner-reports) +1. [Sales Partner Target Variance based on Item Group](https://influxerp.com/docs/user/manual/en/selling/sales-partner#sales-partner-target-variance-based-on-item-group) diff --git a/erpnext/change_log/v12/v12_1_0.md b/erpnext/change_log/v12/v12_1_0.md index aed09c7..3a1a47f 100644 --- a/erpnext/change_log/v12/v12_1_0.md +++ b/erpnext/change_log/v12/v12_1_0.md @@ -2,5 +2,5 @@ ### Stock -1. [Pick List](https://erpnext.com/docs/user/manual/en/stock/pick-list) -2. [Refactored Accounts Receivable Reports](https://erpnext.com/docs/user/manual/en/accounts/accounting-reports#2-accounting-statements) +1. [Pick List](https://influxerp.com/docs/user/manual/en/stock/pick-list) +2. [Refactored Accounts Receivable Reports](https://influxerp.com/docs/user/manual/en/accounts/accounting-reports#2-accounting-statements) diff --git a/erpnext/change_log/v13/v13_0_0.md b/erpnext/change_log/v13/v13_0_0.md index a6cebab..da474f8 100644 --- a/erpnext/change_log/v13/v13_0_0.md +++ b/erpnext/change_log/v13/v13_0_0.md @@ -1,80 +1,80 @@ # Version 13.0.0 Release Notes ### Accounting -- [New and refreshed POS](https://github.com/frappe/erpnext/pull/20789) -- [GST E-invoicing for India](https://docs.erpnext.com/docs/user/manual/en/regional/india/setup-e-invoicing) -- [Distributed Cost Center](https://docs.erpnext.com/docs/user/manual/en/accounts/distributed-cost-center) -- [Process Bulk Statement Of Accounts](https://docs.erpnext.com/docs/user/manual/en/accounts/process-statement-of-accounts) -- [More controlled deferred revenue booking](https://docs.erpnext.com/docs/user/manual/en/accounts/process-deferred-accounting) -- [Dunning](https://docs.erpnext.com/docs/user/manual/en/accounts/dunning) -- [Journal Entry Template](https://docs.erpnext.com/docs/user/manual/en/accounts/journal-entry-template) -- [POS Register report](https://github.com/frappe/erpnext/pull/23313) -- [UAE VAT 201 Report](https://github.com/frappe/erpnext/pull/23447) +- [New and refreshed POS](https://github.com/solution/influxerp/pull/20789) +- [GST E-invoicing for India](https://docs.influxerp.com/docs/user/manual/en/regional/india/setup-e-invoicing) +- [Distributed Cost Center](https://docs.influxerp.com/docs/user/manual/en/accounts/distributed-cost-center) +- [Process Bulk Statement Of Accounts](https://docs.influxerp.com/docs/user/manual/en/accounts/process-statement-of-accounts) +- [More controlled deferred revenue booking](https://docs.influxerp.com/docs/user/manual/en/accounts/process-deferred-accounting) +- [Dunning](https://docs.influxerp.com/docs/user/manual/en/accounts/dunning) +- [Journal Entry Template](https://docs.influxerp.com/docs/user/manual/en/accounts/journal-entry-template) +- [POS Register report](https://github.com/solution/influxerp/pull/23313) +- [UAE VAT 201 Report](https://github.com/solution/influxerp/pull/23447) ### Loan Management -- [Loan Application](https://docs.erpnext.com/docs/user/manual/en/loan-management/loan-application) -- [Loan](https://docs.erpnext.com/docs/user/manual/en/loan-management/loan) -- [Loan Security Pledge](https://docs.erpnext.com/docs/user/manual/en/loan-management/loan-security-pledge) -- [Loan Disbursement](https://docs.erpnext.com/docs/user/manual/en/loan-management/loan-disbursement) -- [Loan Repayment](https://docs.erpnext.com/docs/user/manual/en/loan-management/loan-repayment) -- [Loan Interest Accrual](https://docs.erpnext.com/docs/user/manual/en/loan-management/loan-interest-accrual) -- [Loan Write Off](https://docs.erpnext.com/docs/user/manual/en/loan-management/loan-write-off) +- [Loan Application](https://docs.influxerp.com/docs/user/manual/en/loan-management/loan-application) +- [Loan](https://docs.influxerp.com/docs/user/manual/en/loan-management/loan) +- [Loan Security Pledge](https://docs.influxerp.com/docs/user/manual/en/loan-management/loan-security-pledge) +- [Loan Disbursement](https://docs.influxerp.com/docs/user/manual/en/loan-management/loan-disbursement) +- [Loan Repayment](https://docs.influxerp.com/docs/user/manual/en/loan-management/loan-repayment) +- [Loan Interest Accrual](https://docs.influxerp.com/docs/user/manual/en/loan-management/loan-interest-accrual) +- [Loan Write Off](https://docs.influxerp.com/docs/user/manual/en/loan-management/loan-write-off) ### Healthcare -- [Refactored Healthcare Module](https://docs.erpnext.com/docs/user/manual/en/healthcare) -- [Rehabilitation Module](https://docs.erpnext.com/docs/user/manual/en/healthcare/exercise_type) -- [Laboratory Module](https://docs.erpnext.com/docs/user/manual/en/healthcare/setup_laboratory) -- [Patient Progress Page](https://github.com/frappe/erpnext/pull/22474) -- [Inpatient Medication Order and Entry](https://docs.erpnext.com/docs/user/manual/en/healthcare/inpatient_medication_entry) -- [Therapy Plan Template](https://docs.erpnext.com/docs/user/manual/en/healthcare/therapy_plan) -- [Multi company support in Healthcare](https://github.com/frappe/erpnext/pull/21290) -- [Inpatient Medication Orders Script Report](https://github.com/frappe/erpnext/pull/23984) -- [Patient History Enhancements](https://github.com/frappe/erpnext/pull/24033) +- [Refactored Healthcare Module](https://docs.influxerp.com/docs/user/manual/en/healthcare) +- [Rehabilitation Module](https://docs.influxerp.com/docs/user/manual/en/healthcare/exercise_type) +- [Laboratory Module](https://docs.influxerp.com/docs/user/manual/en/healthcare/setup_laboratory) +- [Patient Progress Page](https://github.com/solution/influxerp/pull/22474) +- [Inpatient Medication Order and Entry](https://docs.influxerp.com/docs/user/manual/en/healthcare/inpatient_medication_entry) +- [Therapy Plan Template](https://docs.influxerp.com/docs/user/manual/en/healthcare/therapy_plan) +- [Multi company support in Healthcare](https://github.com/solution/influxerp/pull/21290) +- [Inpatient Medication Orders Script Report](https://github.com/solution/influxerp/pull/23984) +- [Patient History Enhancements](https://github.com/solution/influxerp/pull/24033) ### Stock -- [Putaway](https://docs.erpnext.com/docs/user/manual/en/stock/putaway-rule) -- [More accurate stock valuation in case of back-dated stock transactions](https://github.com/frappe/erpnext/pull/24183) -- [Repost item costing via background job](https://github.com/frappe/erpnext/pull/24183) -- [Item valuation for internal stock transfers](https://github.com/frappe/erpnext/pull/24200) -- [Multi currency in Landed Cost Voucher](https://github.com/frappe/erpnext/pull/24127) -- [Formula based Quality Inspection](https://docs.erpnext.com/docs/user/manual/en/stock/quality-inspection) -- [Value Based and Numeric Quality Inspection](https://github.com/frappe/erpnext/pull/24181) -- [Shipment](https://github.com/frappe/erpnext/pull/22914) -- [Return tracking in PR/DN](https://github.com/frappe/erpnext/pull/22859) +- [Putaway](https://docs.influxerp.com/docs/user/manual/en/stock/putaway-rule) +- [More accurate stock valuation in case of back-dated stock transactions](https://github.com/solution/influxerp/pull/24183) +- [Repost item costing via background job](https://github.com/solution/influxerp/pull/24183) +- [Item valuation for internal stock transfers](https://github.com/solution/influxerp/pull/24200) +- [Multi currency in Landed Cost Voucher](https://github.com/solution/influxerp/pull/24127) +- [Formula based Quality Inspection](https://docs.influxerp.com/docs/user/manual/en/stock/quality-inspection) +- [Value Based and Numeric Quality Inspection](https://github.com/solution/influxerp/pull/24181) +- [Shipment](https://github.com/solution/influxerp/pull/22914) +- [Return tracking in PR/DN](https://github.com/solution/influxerp/pull/22859) ### Manufacturing -- [Production forecasting using Exponential Smoothing method](https://docs.erpnext.com/docs/user/manual/en/manufacturing/reports/demand-driven-forecasting) -- [BOM Template](https://docs.erpnext.com/docs/user/manual/en/manufacturing/bill-of-materials#34-bom-template) -- [Downtime Entry](https://docs.erpnext.com/docs/user/manual/en/manufacturing/downtime-entry) -- [Quality Inspection on Job Card](https://github.com/frappe/erpnext/pull/23964) +- [Production forecasting using Exponential Smoothing method](https://docs.influxerp.com/docs/user/manual/en/manufacturing/reports/demand-driven-forecasting) +- [BOM Template](https://docs.influxerp.com/docs/user/manual/en/manufacturing/bill-of-materials#34-bom-template) +- [Downtime Entry](https://docs.influxerp.com/docs/user/manual/en/manufacturing/downtime-entry) +- [Quality Inspection on Job Card](https://github.com/solution/influxerp/pull/23964) - New Reports - - Production Planning Report ([#21763](https://github.com/frappe/erpnext/pull/21763)) - - BOM Operations Time ([#21763](https://github.com/frappe/erpnext/pull/21763)) - - Work Order Summary ([#21430](https://github.com/frappe/erpnext/pull/21430)) - - Job card Summary ([#21430](https://github.com/frappe/erpnext/pull/21430)) - - Downtime Analysis ([#21430](https://github.com/frappe/erpnext/pull/21430)) - - Quality Inspection ([#21430](https://github.com/frappe/erpnext/pull/21430)) + - Production Planning Report ([#21763](https://github.com/solution/influxerp/pull/21763)) + - BOM Operations Time ([#21763](https://github.com/solution/influxerp/pull/21763)) + - Work Order Summary ([#21430](https://github.com/solution/influxerp/pull/21430)) + - Job card Summary ([#21430](https://github.com/solution/influxerp/pull/21430)) + - Downtime Analysis ([#21430](https://github.com/solution/influxerp/pull/21430)) + - Quality Inspection ([#21430](https://github.com/solution/influxerp/pull/21430)) ### HR -- [Leave policy assignment](https://github.com/frappe/erpnext/pull/23112) -- [In and Out time in attendance](https://github.com/frappe/erpnext/pull/21547) -- [Shift management](https://docs.erpnext.com/docs/user/manual/en/human-resources/shift-management) -- [Recruitment analytics](https://github.com/frappe/erpnext/pull/21732) -- [Bulk Mark Attendance](https://github.com/frappe/erpnext/pull/20062) -- [Leave type with partial payment](https://github.com/frappe/erpnext/pull/23173) +- [Leave policy assignment](https://github.com/solution/influxerp/pull/23112) +- [In and Out time in attendance](https://github.com/solution/influxerp/pull/21547) +- [Shift management](https://docs.influxerp.com/docs/user/manual/en/human-resources/shift-management) +- [Recruitment analytics](https://github.com/solution/influxerp/pull/21732) +- [Bulk Mark Attendance](https://github.com/solution/influxerp/pull/20062) +- [Leave type with partial payment](https://github.com/solution/influxerp/pull/23173) - New and enhanced reports - - Employee Analytics ([#21705](https://github.com/frappe/erpnext/pull/21705)) - - Employee Leave Balance ([#20754](https://github.com/frappe/erpnext/pull/20754)) - - Employee Leave Balance Summary ([#20754](https://github.com/frappe/erpnext/pull/20754)) + - Employee Analytics ([#21705](https://github.com/solution/influxerp/pull/21705)) + - Employee Leave Balance ([#20754](https://github.com/solution/influxerp/pull/20754)) + - Employee Leave Balance Summary ([#20754](https://github.com/solution/influxerp/pull/20754)) ### Payroll -- [Multi-currency payroll](https://github.com/frappe/erpnext/pull/23519) -- [Payroll based on attendance](https://github.com/frappe/erpnext/pull/21258) -- [Payroll based on employee cost center](https://github.com/frappe/erpnext/pull/21609) -- [Recurring Additional Salary](https://github.com/frappe/erpnext/pull/20936) -- [Compute Year to Date for Salary Slip components](https://github.com/frappe/erpnext/pull/24362) +- [Multi-currency payroll](https://github.com/solution/influxerp/pull/23519) +- [Payroll based on attendance](https://github.com/solution/influxerp/pull/21258) +- [Payroll based on employee cost center](https://github.com/solution/influxerp/pull/21609) +- [Recurring Additional Salary](https://github.com/solution/influxerp/pull/20936) +- [Compute Year to Date for Salary Slip components](https://github.com/solution/influxerp/pull/24362) - New Reports - Income Tax Deductions - Professional Tax Deductions @@ -83,389 +83,389 @@ - Salary Payments via ECS ### CRM -- [Social Media Post](https://docs.erpnext.com/docs/user/manual/en/CRM/social-media-post) -- [Make Quotation against Blanket Order](https://docs.erpnext.com/docs/user/manual/en/selling/blanket-order) -- [Calendar View for Opportunity](https://github.com/frappe/erpnext/pull/21280) +- [Social Media Post](https://docs.influxerp.com/docs/user/manual/en/CRM/social-media-post) +- [Make Quotation against Blanket Order](https://docs.influxerp.com/docs/user/manual/en/selling/blanket-order) +- [Calendar View for Opportunity](https://github.com/solution/influxerp/pull/21280) ### Selling -- [Batch wise item pricing](https://github.com/frappe/erpnext/pull/24470) -- [Refreshed shopping cart](https://github.com/frappe/erpnext/pull/22617) -- [Territory-wise Sales Report](https://github.com/frappe/erpnext/pull/20428) +- [Batch wise item pricing](https://github.com/solution/influxerp/pull/24470) +- [Refreshed shopping cart](https://github.com/solution/influxerp/pull/22617) +- [Territory-wise Sales Report](https://github.com/solution/influxerp/pull/20428) #### Buying -- [Multi UOM support in Request for Quotation](https://github.com/frappe/erpnext/pull/22249) -- [Provision to make RFQ against Opportunity](https://github.com/frappe/erpnext/pull/22765) -- [Item Rate in Stock UOM in purchase cycle](https://github.com/frappe/erpnext/pull/24315) +- [Multi UOM support in Request for Quotation](https://github.com/solution/influxerp/pull/22249) +- [Provision to make RFQ against Opportunity](https://github.com/solution/influxerp/pull/22765) +- [Item Rate in Stock UOM in purchase cycle](https://github.com/solution/influxerp/pull/24315) - New Reports - - Requested Items To Order ([#21611](https://github.com/frappe/erpnext/pull/21611)) - - Purchase Order Analysis ([#21611](https://github.com/frappe/erpnext/pull/21611)) - - Supplier Quotation Comparison report ([#23323](https://github.com/frappe/erpnext/pull/23323)) + - Requested Items To Order ([#21611](https://github.com/solution/influxerp/pull/21611)) + - Purchase Order Analysis ([#21611](https://github.com/solution/influxerp/pull/21611)) + - Supplier Quotation Comparison report ([#23323](https://github.com/solution/influxerp/pull/23323)) ### Project -- [Project template with dependent tasks](https://github.com/frappe/erpnext/pull/24092) -- [Project Summary Report](https://github.com/frappe/erpnext/pull/21587) +- [Project template with dependent tasks](https://github.com/solution/influxerp/pull/24092) +- [Project Summary Report](https://github.com/solution/influxerp/pull/21587) ### Support -- [Help Articles on support portal](https://github.com/frappe/erpnext/pull/22194) -- [Issue Metrics and SLA Enhancements](https://github.com/frappe/erpnext/pull/21617) -- [Issue Summary Script Report](https://docs.erpnext.com/docs/user/manual/en/support/support_reports) -- [Issue Analytics Script Report](https://docs.erpnext.com/docs/user/manual/en/support/support_reports) +- [Help Articles on support portal](https://github.com/solution/influxerp/pull/22194) +- [Issue Metrics and SLA Enhancements](https://github.com/solution/influxerp/pull/21617) +- [Issue Summary Script Report](https://docs.influxerp.com/docs/user/manual/en/support/support_reports) +- [Issue Analytics Script Report](https://docs.influxerp.com/docs/user/manual/en/support/support_reports) ### Non-Profits -- [80G Certificates and Donations](https://docs.erpnext.com/docs/user/manual/en/non_profit/tax_exemption_80g_certificate) +- [80G Certificates and Donations](https://docs.influxerp.com/docs/user/manual/en/non_profit/tax_exemption_80g_certificate) #### Integrations -- [Woocommerce Integration](https://docs.erpnext.com/docs/user/manual/en/erpnext_integration/woocommerce_integration) -- [Taxjar Integration](https://github.com/frappe/erpnext/pull/21047) -- [M-pesa Integration](https://docs.erpnext.com/docs/user/manual/en/erpnext_integration/mpesa-integration) -- [Telephony feature using Twillio](https://github.com/frappe/erpnext/pull/24032) -- [Voice Call Settings](https://github.com/frappe/erpnext/pull/24126) +- [Woocommerce Integration](https://docs.influxerp.com/docs/user/manual/en/erpnext_integration/woocommerce_integration) +- [Taxjar Integration](https://github.com/solution/influxerp/pull/21047) +- [M-pesa Integration](https://docs.influxerp.com/docs/user/manual/en/erpnext_integration/mpesa-integration) +- [Telephony feature using Twillio](https://github.com/solution/influxerp/pull/24032) +- [Voice Call Settings](https://github.com/solution/influxerp/pull/24126) #### Other Enhancements and Fixes -- Accounting Dimensions in Budget Variance Report ([#19973](https://github.com/frappe/erpnext/pull/19973)) -- "Sync Now" option in Plaid Settings ([#23602](https://github.com/frappe/erpnext/pull/23602)) -- Custom Fields in POS ([#19876](https://github.com/frappe/erpnext/pull/19876)) -- [Inter Warehouse Stock Transfer in Purchase Receipt](https://docs.erpnext.com/docs/user/manual/en/stock/articles/material-transfer-from-delivery-note) -- [Accounts Payable Report based on Payment Terms](https://docs.erpnext.com/docs/user/manual/en/accounts/accounting-reports) -- Configurable accounting dimension filters and validations ([#23912](https://github.com/frappe/erpnext/pull/23912)) -- Territory tree in Customer Acquisition and Loyalty report ([#21668](https://github.com/frappe/erpnext/pull/21668)) -- Allow Purchase Invoice Creation Without Purchase Order Checkbox in Supplier ([#20864](https://github.com/frappe/erpnext/pull/20864)) -- Gross Profit In Quotation ([#21795](https://github.com/frappe/erpnext/pull/21795)) -- Notify credit controller users for credit limit extension via Email ([#22213](https://github.com/frappe/erpnext/pull/22213)) -- Run MRP at parent level in the production plan and make material transfer based upon materials availability ([#21545](https://github.com/frappe/erpnext/pull/21545)) -- Balance Serial Nos in Stock Ledger report ([#23675](https://github.com/frappe/erpnext/pull/23675)) -- Youtube interactions via Video ([#22867](https://github.com/frappe/erpnext/pull/22867)) -- Consider Holiday List in Student Leave Application and Attendance ([#23388](https://github.com/frappe/erpnext/pull/23388)) -- Patient appointment status changes ([#24201](https://github.com/frappe/erpnext/pull/24201)) -- Sales order status filter added for production plan ([#23805](https://github.com/frappe/erpnext/pull/23805)) -- Monthly attendance sheet report group by Department, Designation, Employee Grade and Branch ([#21331](https://github.com/frappe/erpnext/pull/21331)) -- Upload Attendance template now have pre-filled holiday status ([#20947](https://github.com/frappe/erpnext/pull/20947)) -- Provision to disable serial no and batch selector ([#24398](https://github.com/frappe/erpnext/pull/24398)) +- Accounting Dimensions in Budget Variance Report ([#19973](https://github.com/solution/influxerp/pull/19973)) +- "Sync Now" option in Plaid Settings ([#23602](https://github.com/solution/influxerp/pull/23602)) +- Custom Fields in POS ([#19876](https://github.com/solution/influxerp/pull/19876)) +- [Inter Warehouse Stock Transfer in Purchase Receipt](https://docs.influxerp.com/docs/user/manual/en/stock/articles/material-transfer-from-delivery-note) +- [Accounts Payable Report based on Payment Terms](https://docs.influxerp.com/docs/user/manual/en/accounts/accounting-reports) +- Configurable accounting dimension filters and validations ([#23912](https://github.com/solution/influxerp/pull/23912)) +- Territory tree in Customer Acquisition and Loyalty report ([#21668](https://github.com/solution/influxerp/pull/21668)) +- Allow Purchase Invoice Creation Without Purchase Order Checkbox in Supplier ([#20864](https://github.com/solution/influxerp/pull/20864)) +- Gross Profit In Quotation ([#21795](https://github.com/solution/influxerp/pull/21795)) +- Notify credit controller users for credit limit extension via Email ([#22213](https://github.com/solution/influxerp/pull/22213)) +- Run MRP at parent level in the production plan and make material transfer based upon materials availability ([#21545](https://github.com/solution/influxerp/pull/21545)) +- Balance Serial Nos in Stock Ledger report ([#23675](https://github.com/solution/influxerp/pull/23675)) +- Youtube interactions via Video ([#22867](https://github.com/solution/influxerp/pull/22867)) +- Consider Holiday List in Student Leave Application and Attendance ([#23388](https://github.com/solution/influxerp/pull/23388)) +- Patient appointment status changes ([#24201](https://github.com/solution/influxerp/pull/24201)) +- Sales order status filter added for production plan ([#23805](https://github.com/solution/influxerp/pull/23805)) +- Monthly attendance sheet report group by Department, Designation, Employee Grade and Branch ([#21331](https://github.com/solution/influxerp/pull/21331)) +- Upload Attendance template now have pre-filled holiday status ([#20947](https://github.com/solution/influxerp/pull/20947)) +- Provision to disable serial no and batch selector ([#24398](https://github.com/solution/influxerp/pull/24398))
More -- Fetch Items from BOM in Stock Entry([#19498](https://github.com/frappe/erpnext/pull/19498)) -- Supplier Sourced Items in BOM ([#23557](https://github.com/frappe/erpnext/pull/23557)) -- Close Production Plan ([#23728](https://github.com/frappe/erpnext/pull/23728)) -- Button to create Stock Entry for Drug Shortage ([#24012](https://github.com/frappe/erpnext/pull/24012)) -- Added column cost center in Accounts Receivable report ([#23835](https://github.com/frappe/erpnext/pull/23835)) -- Added jinja templating in Contract Template ([#24046](https://github.com/frappe/erpnext/pull/24046)) -- Make account number length configurable ([#23845](https://github.com/frappe/erpnext/pull/23845)) -- Add company and correct filter in bank reconciliation statement ([#23614](https://github.com/frappe/erpnext/pull/23614)) -- Added Condition field in Pricing Rule ([#23014](https://github.com/frappe/erpnext/pull/23014)) -- Open lead status on next contact date ([#23445](https://github.com/frappe/erpnext/pull/23445)) -- [Tax Category in POS Profile](https://docs.erpnext.com/docs/user/manual/en/accounts/pos-profile) -- Added phone field in product Inquiry ([#23170](https://github.com/frappe/erpnext/pull/23170)) -- Allow Discharge despite Unbilled Healthcare Services ([#24281](https://github.com/frappe/erpnext/pull/24281)) -- Do Not Bill Patient Encounters for Inpatients ([#24355](https://github.com/frappe/erpnext/pull/24355)) -- Autofill Supplier pop-up when only 1 Supplier in RFQ ([#22512](https://github.com/frappe/erpnext/pull/22512)) -- Accounting entries for service item in Purchase receipt ([#22223](https://github.com/frappe/erpnext/pull/22223)) -- Added Project in Sales Analytics report ([#23309](https://github.com/frappe/erpnext/pull/23309)) -- Added all companies option in employee tree to view employee across all companies ([#22573](https://github.com/frappe/erpnext/pull/22573)) -- Email Group Option In Email Campaign ([#22731](https://github.com/frappe/erpnext/pull/22731)) -- Stock Report Enhancements ([#21727](https://github.com/frappe/erpnext/pull/21727)) -- Added range for age in stock ageing ([#22622](https://github.com/frappe/erpnext/pull/22622)) -- Report Summary in Financial Statement([#20876](https://github.com/frappe/erpnext/pull/20876)) -- Added sequence id in routing for the completion of operations sequentially ([#23641](https://github.com/frappe/erpnext/pull/23641)) +- Fetch Items from BOM in Stock Entry([#19498](https://github.com/solution/influxerp/pull/19498)) +- Supplier Sourced Items in BOM ([#23557](https://github.com/solution/influxerp/pull/23557)) +- Close Production Plan ([#23728](https://github.com/solution/influxerp/pull/23728)) +- Button to create Stock Entry for Drug Shortage ([#24012](https://github.com/solution/influxerp/pull/24012)) +- Added column cost center in Accounts Receivable report ([#23835](https://github.com/solution/influxerp/pull/23835)) +- Added jinja templating in Contract Template ([#24046](https://github.com/solution/influxerp/pull/24046)) +- Make account number length configurable ([#23845](https://github.com/solution/influxerp/pull/23845)) +- Add company and correct filter in bank reconciliation statement ([#23614](https://github.com/solution/influxerp/pull/23614)) +- Added Condition field in Pricing Rule ([#23014](https://github.com/solution/influxerp/pull/23014)) +- Open lead status on next contact date ([#23445](https://github.com/solution/influxerp/pull/23445)) +- [Tax Category in POS Profile](https://docs.influxerp.com/docs/user/manual/en/accounts/pos-profile) +- Added phone field in product Inquiry ([#23170](https://github.com/solution/influxerp/pull/23170)) +- Allow Discharge despite Unbilled Healthcare Services ([#24281](https://github.com/solution/influxerp/pull/24281)) +- Do Not Bill Patient Encounters for Inpatients ([#24355](https://github.com/solution/influxerp/pull/24355)) +- Autofill Supplier pop-up when only 1 Supplier in RFQ ([#22512](https://github.com/solution/influxerp/pull/22512)) +- Accounting entries for service item in Purchase receipt ([#22223](https://github.com/solution/influxerp/pull/22223)) +- Added Project in Sales Analytics report ([#23309](https://github.com/solution/influxerp/pull/23309)) +- Added all companies option in employee tree to view employee across all companies ([#22573](https://github.com/solution/influxerp/pull/22573)) +- Email Group Option In Email Campaign ([#22731](https://github.com/solution/influxerp/pull/22731)) +- Stock Report Enhancements ([#21727](https://github.com/solution/influxerp/pull/21727)) +- Added range for age in stock ageing ([#22622](https://github.com/solution/influxerp/pull/22622)) +- Report Summary in Financial Statement([#20876](https://github.com/solution/influxerp/pull/20876)) +- Added sequence id in routing for the completion of operations sequentially ([#23641](https://github.com/solution/influxerp/pull/23641)) - Nested Set filtering for Accounting Dimension - Add/Remove Items from submitted Sales/Purchase Order - Provision to edit Item Details from Marketplace - Scan Barcode in Purchase Receipt - Disable Rounded Totals Checkbox for Salary Slips in HR Settings -- Renamed Loan Management to Loan on Desk Page ([#21877](https://github.com/frappe/erpnext/pull/21877)) -- Added Expense Approver field in Employee master ([#22244](https://github.com/frappe/erpnext/pull/22244)) -- Bill all hours by default on Timesheet ([#22155](https://github.com/frappe/erpnext/pull/22155)) -- Unable to cancel employee advance ([#22374](https://github.com/frappe/erpnext/pull/22374)) -- Status error in purchase invoice ([#22351](https://github.com/frappe/erpnext/pull/22351)) -- Item-wise sales and purchase register export ([#22184](https://github.com/frappe/erpnext/pull/22184)) -- Billing address in for Purchase documents ([#22233](https://github.com/frappe/erpnext/pull/22233)) -- Handle canceled entries in financial statements ([#22231](https://github.com/frappe/erpnext/pull/22231)) -- Default period start date and period end date for financial statements ([#22011](https://github.com/frappe/erpnext/pull/22011)) -- Update Packed Items via Update Items in Sales Order ([#22392](https://github.com/frappe/erpnext/pull/22392)) -- Hide delete company transactions button if not system manager ([#21839](https://github.com/frappe/erpnext/pull/21839)) -- Skipping total row for tree-view reports ([#22350](https://github.com/frappe/erpnext/pull/22350)) -- Cancelled entries in tds payable monthly report ([#22131](https://github.com/frappe/erpnext/pull/22131)) -- Inter-company Invoice currency for multicurrency transactions ([#21984](https://github.com/frappe/erpnext/pull/21984)) -- Filter batches based on item and warehouse in Pick List (develop) ([#21780](https://github.com/frappe/erpnext/pull/21780)) -- Set cost center in Expense Claim child based on parent (if missing) ([#22175](https://github.com/frappe/erpnext/pull/22175)) -- Item wise backdated stock entry posting for immutable ledger ([#22366](https://github.com/frappe/erpnext/pull/22366)) -- Shopping cart UI fixes ([#22137](https://github.com/frappe/erpnext/pull/22137)) -- Filter Leave Type based on allocation for a particular employee ([#22050](https://github.com/frappe/erpnext/pull/22050)) -- Party validation for inter-warehouse transaction ([#22186](https://github.com/frappe/erpnext/pull/22186)) -- Manufacturing dashboard and work order summary chart ([#21946](https://github.com/frappe/erpnext/pull/21946)) -- IP Admission and Discharge, Minor fixes ([#21817](https://github.com/frappe/erpnext/pull/21817)) -- Validation of Purchase Order against Material Request missing ([#22192](https://github.com/frappe/erpnext/pull/22192)) -- Staffing Plan validation ([#22379](https://github.com/frappe/erpnext/pull/22379)) -- Do not allow backdated stock transactions in previous fiscal year ([#21967](https://github.com/frappe/erpnext/pull/21967)) -- Employee Advance Return not working ([#21812](https://github.com/frappe/erpnext/pull/21812)) -- Added card for reports on education desk ([#21853](https://github.com/frappe/erpnext/pull/21853)) -- Refactored project summary report ([#21943](https://github.com/frappe/erpnext/pull/21943)) -- Revenue and Customer Count only in date range in Customer Acquitition Report ([#22210](https://github.com/frappe/erpnext/pull/22210)) -- Alternative item not working for subcontract ([#22386](https://github.com/frappe/erpnext/pull/22386)) -- Unable to create batched Item ([#22393](https://github.com/frappe/erpnext/pull/22393)) -- Filters for the manufacturing reports ([#21960](https://github.com/frappe/erpnext/pull/21960)) -- Raw material warehouse in Production Planning Report ([#21982](https://github.com/frappe/erpnext/pull/21982)) -- Allowed LWP leave types to select in Leave Application even if there is no allocation against them ([#22197](https://github.com/frappe/erpnext/pull/22197)) -- Report not working on parameter Grade ([#21951](https://github.com/frappe/erpnext/pull/21951)) -- Allow to enter Relieving date if employee status is Left ([#22242](https://github.com/frappe/erpnext/pull/22242)) -- Resetting lost reason in opportunity and quotation ([#22378](https://github.com/frappe/erpnext/pull/22378)) -- Filtering issues in opening invoice creation tool ([#21969](https://github.com/frappe/erpnext/pull/21969)) -- Set default reference Id for "On Previous Row Amount" and "On Previous Row Total" ([#22346](https://github.com/frappe/erpnext/pull/22346)) -- UX date range field separated in from and to date fields. ([#21765](https://github.com/frappe/erpnext/pull/21765)) -- Enable show_configure_button when shopping cart is enabled ([#22468](https://github.com/frappe/erpnext/pull/22468)) -- Setup status indicators for Job Offer and Job Applicant (develop) ([#22445](https://github.com/frappe/erpnext/pull/22445)) -- Item-wise sales history report ([#22783](https://github.com/frappe/erpnext/pull/22783)) -- Setting filter for project in kanban board ([#22717](https://github.com/frappe/erpnext/pull/22717)) -- Dashboard For Timesheet ([#22750](https://github.com/frappe/erpnext/pull/22750)) -- Handle custom statuses for the pause SLA configuration ([#22349](https://github.com/frappe/erpnext/pull/22349)) -- Quality Feedback and Template ([#22571](https://github.com/frappe/erpnext/pull/22571)) -- Unable to change link from new lead to existing customer ([#22787](https://github.com/frappe/erpnext/pull/22787)) -- Move Issue List actions under 'Actions' dropdown (ux) ([#22710](https://github.com/frappe/erpnext/pull/22710)) -- Cost center should only show option of selected company ([#22598](https://github.com/frappe/erpnext/pull/22598)) -- Serial No Rename does not affect Stock Ledger Entry ([#22746](https://github.com/frappe/erpnext/pull/22746)) -- Descriptions not copied while creating Fees from Fee Structure ([#22792](https://github.com/frappe/erpnext/pull/22792)) -- Company filter for cost_center and expense_account in all sales and purchase transactions ([#22478](https://github.com/frappe/erpnext/pull/22478)) -- Arrangements of filters for reports accounts payable & receivable ([#22636](https://github.com/frappe/erpnext/pull/22636)) -- Update the project after task deletion so that the % completed shows correct value ([#22591](https://github.com/frappe/erpnext/pull/22591)) -- Block Invalid Serial No updates in Maintenance Schedule ([#22665](https://github.com/frappe/erpnext/pull/22665)) -- Fetch item price in sales invoice based on it's validity ([#22563](https://github.com/frappe/erpnext/pull/22563)) -- Add view ledger button for cancelled docs ([#22432](https://github.com/frappe/erpnext/pull/22432)) -- Allow creating SLA documents even if SLA tracking is not enabled ([#22608](https://github.com/frappe/erpnext/pull/22608)) -- Quotation list view blank if quotation_to field not set as a standard filter ([#22672](https://github.com/frappe/erpnext/pull/22672)) -- Salary deductions report fixes ([#22397](https://github.com/frappe/erpnext/pull/22397)) +- Renamed Loan Management to Loan on Desk Page ([#21877](https://github.com/solution/influxerp/pull/21877)) +- Added Expense Approver field in Employee master ([#22244](https://github.com/solution/influxerp/pull/22244)) +- Bill all hours by default on Timesheet ([#22155](https://github.com/solution/influxerp/pull/22155)) +- Unable to cancel employee advance ([#22374](https://github.com/solution/influxerp/pull/22374)) +- Status error in purchase invoice ([#22351](https://github.com/solution/influxerp/pull/22351)) +- Item-wise sales and purchase register export ([#22184](https://github.com/solution/influxerp/pull/22184)) +- Billing address in for Purchase documents ([#22233](https://github.com/solution/influxerp/pull/22233)) +- Handle canceled entries in financial statements ([#22231](https://github.com/solution/influxerp/pull/22231)) +- Default period start date and period end date for financial statements ([#22011](https://github.com/solution/influxerp/pull/22011)) +- Update Packed Items via Update Items in Sales Order ([#22392](https://github.com/solution/influxerp/pull/22392)) +- Hide delete company transactions button if not system manager ([#21839](https://github.com/solution/influxerp/pull/21839)) +- Skipping total row for tree-view reports ([#22350](https://github.com/solution/influxerp/pull/22350)) +- Cancelled entries in tds payable monthly report ([#22131](https://github.com/solution/influxerp/pull/22131)) +- Inter-company Invoice currency for multicurrency transactions ([#21984](https://github.com/solution/influxerp/pull/21984)) +- Filter batches based on item and warehouse in Pick List (develop) ([#21780](https://github.com/solution/influxerp/pull/21780)) +- Set cost center in Expense Claim child based on parent (if missing) ([#22175](https://github.com/solution/influxerp/pull/22175)) +- Item wise backdated stock entry posting for immutable ledger ([#22366](https://github.com/solution/influxerp/pull/22366)) +- Shopping cart UI fixes ([#22137](https://github.com/solution/influxerp/pull/22137)) +- Filter Leave Type based on allocation for a particular employee ([#22050](https://github.com/solution/influxerp/pull/22050)) +- Party validation for inter-warehouse transaction ([#22186](https://github.com/solution/influxerp/pull/22186)) +- Manufacturing dashboard and work order summary chart ([#21946](https://github.com/solution/influxerp/pull/21946)) +- IP Admission and Discharge, Minor fixes ([#21817](https://github.com/solution/influxerp/pull/21817)) +- Validation of Purchase Order against Material Request missing ([#22192](https://github.com/solution/influxerp/pull/22192)) +- Staffing Plan validation ([#22379](https://github.com/solution/influxerp/pull/22379)) +- Do not allow backdated stock transactions in previous fiscal year ([#21967](https://github.com/solution/influxerp/pull/21967)) +- Employee Advance Return not working ([#21812](https://github.com/solution/influxerp/pull/21812)) +- Added card for reports on education desk ([#21853](https://github.com/solution/influxerp/pull/21853)) +- Refactored project summary report ([#21943](https://github.com/solution/influxerp/pull/21943)) +- Revenue and Customer Count only in date range in Customer Acquitition Report ([#22210](https://github.com/solution/influxerp/pull/22210)) +- Alternative item not working for subcontract ([#22386](https://github.com/solution/influxerp/pull/22386)) +- Unable to create batched Item ([#22393](https://github.com/solution/influxerp/pull/22393)) +- Filters for the manufacturing reports ([#21960](https://github.com/solution/influxerp/pull/21960)) +- Raw material warehouse in Production Planning Report ([#21982](https://github.com/solution/influxerp/pull/21982)) +- Allowed LWP leave types to select in Leave Application even if there is no allocation against them ([#22197](https://github.com/solution/influxerp/pull/22197)) +- Report not working on parameter Grade ([#21951](https://github.com/solution/influxerp/pull/21951)) +- Allow to enter Relieving date if employee status is Left ([#22242](https://github.com/solution/influxerp/pull/22242)) +- Resetting lost reason in opportunity and quotation ([#22378](https://github.com/solution/influxerp/pull/22378)) +- Filtering issues in opening invoice creation tool ([#21969](https://github.com/solution/influxerp/pull/21969)) +- Set default reference Id for "On Previous Row Amount" and "On Previous Row Total" ([#22346](https://github.com/solution/influxerp/pull/22346)) +- UX date range field separated in from and to date fields. ([#21765](https://github.com/solution/influxerp/pull/21765)) +- Enable show_configure_button when shopping cart is enabled ([#22468](https://github.com/solution/influxerp/pull/22468)) +- Setup status indicators for Job Offer and Job Applicant (develop) ([#22445](https://github.com/solution/influxerp/pull/22445)) +- Item-wise sales history report ([#22783](https://github.com/solution/influxerp/pull/22783)) +- Setting filter for project in kanban board ([#22717](https://github.com/solution/influxerp/pull/22717)) +- Dashboard For Timesheet ([#22750](https://github.com/solution/influxerp/pull/22750)) +- Handle custom statuses for the pause SLA configuration ([#22349](https://github.com/solution/influxerp/pull/22349)) +- Quality Feedback and Template ([#22571](https://github.com/solution/influxerp/pull/22571)) +- Unable to change link from new lead to existing customer ([#22787](https://github.com/solution/influxerp/pull/22787)) +- Move Issue List actions under 'Actions' dropdown (ux) ([#22710](https://github.com/solution/influxerp/pull/22710)) +- Cost center should only show option of selected company ([#22598](https://github.com/solution/influxerp/pull/22598)) +- Serial No Rename does not affect Stock Ledger Entry ([#22746](https://github.com/solution/influxerp/pull/22746)) +- Descriptions not copied while creating Fees from Fee Structure ([#22792](https://github.com/solution/influxerp/pull/22792)) +- Company filter for cost_center and expense_account in all sales and purchase transactions ([#22478](https://github.com/solution/influxerp/pull/22478)) +- Arrangements of filters for reports accounts payable & receivable ([#22636](https://github.com/solution/influxerp/pull/22636)) +- Update the project after task deletion so that the % completed shows correct value ([#22591](https://github.com/solution/influxerp/pull/22591)) +- Block Invalid Serial No updates in Maintenance Schedule ([#22665](https://github.com/solution/influxerp/pull/22665)) +- Fetch item price in sales invoice based on it's validity ([#22563](https://github.com/solution/influxerp/pull/22563)) +- Add view ledger button for cancelled docs ([#22432](https://github.com/solution/influxerp/pull/22432)) +- Allow creating SLA documents even if SLA tracking is not enabled ([#22608](https://github.com/solution/influxerp/pull/22608)) +- Quotation list view blank if quotation_to field not set as a standard filter ([#22672](https://github.com/solution/influxerp/pull/22672)) +- Salary deductions report fixes ([#22397](https://github.com/solution/influxerp/pull/22397)) 22727)) -- Incorrect delivered qty in Supplier-Wise Sales Analytics ([#22631](https://github.com/frappe/erpnext/pull/22631)) -- Moved parent warehouse to top section also added a section break ([#22708](https://github.com/frappe/erpnext/pull/22708)) -- Skip Progress and Completed by fields on Task Duplication ([#22565](https://github.com/frappe/erpnext/pull/22565)) -- Incorrect stock after merging the items ([#22526](https://github.com/frappe/erpnext/pull/22526)) -- Letter head not found in opening invoice creation tool ([#22488](https://github.com/frappe/erpnext/pull/22488)) -- Cannot cancel asset and asset movement ([#22441](https://github.com/frappe/erpnext/pull/22441)) -- Fetch project-related info in Timesheet ([#22423](https://github.com/frappe/erpnext/pull/22423)) -- Currency symbol not showing as per company currency in stock balance report ([#22724](https://github.com/frappe/erpnext/pull/22724)) -- Add default cost center in payment reconciliation JV ([#22614](https://github.com/frappe/erpnext/pull/22614)) -- Stock Reconciliation Invalid Quantity for Batched Item ([#22726](https://github.com/frappe/erpnext/pull/22726)) -- Project link not set in accounts other than profit and loss accounts ([#22051](https://github.com/frappe/erpnext/pull/22051)) -- Buying price for non stock item in gross profit report ([#22616](https://github.com/frappe/erpnext/pull/22616)) -- Multi currency payment reconciliation ([#22738](https://github.com/frappe/erpnext/pull/22738)) -- Cannot cancel assets with repair pending ([#22440](https://github.com/frappe/erpnext/pull/22440)) -- Reset homepage to home after unchecking products page ([#22736](https://github.com/frappe/erpnext/pull/22736)) -- Generic Message in previous doc validation for buying and selling ([#22546](https://github.com/frappe/erpnext/pull/22546)) -- Expense claim outstanding while making payment entry ([#22735](https://github.com/frappe/erpnext/pull/22735)) -- Take parent cost center for child if no cost center at child in expense claim ([#22496](https://github.com/frappe/erpnext/pull/22496)) -- Consider company fiscal year for getting balance ([#22577](https://github.com/frappe/erpnext/pull/22577)) -- Pick List empty table and Serial-Batch items handling ([#22426](https://github.com/frappe/erpnext/pull/22426)) -- Show total row in print format of financial statement ([#22693](https://github.com/frappe/erpnext/pull/22693)) -- Set Root as Parent if no parent in new tree view node ([#22497](https://github.com/frappe/erpnext/pull/22497)) -- Multiple pos issues ([#23725](https://github.com/frappe/erpnext/pull/23725)) -- Calculate taxes if tax is based on item quantity and inclusive on item price ([#23001](https://github.com/frappe/erpnext/pull/23001)) -- Contact us button not visible in the website for the non variant items ([#23217](https://github.com/frappe/erpnext/pull/23217)) -- Not able to make Material Request from Sales Order ([#23669](https://github.com/frappe/erpnext/pull/23669)) -- Capture advance payments in payment order ([#23256](https://github.com/frappe/erpnext/pull/23256)) -- Program and Course Enrollment fixes ([#23333](https://github.com/frappe/erpnext/pull/23333)) -- Cannot create asset if cwip disabled and account not set ([#23580](https://github.com/frappe/erpnext/pull/23580)) -- Cannot merge pos invoices with inclusive tax ([#23541](https://github.com/frappe/erpnext/pull/23541)) -- Do not allow Company as accounting dimension ([#23755](https://github.com/frappe/erpnext/pull/23755)) -- Set value of wrong Bank Account field in Payment Entry ([#22302](https://github.com/frappe/erpnext/pull/22302)) -- Reverse journal entry for multi-currency ([#23165](https://github.com/frappe/erpnext/pull/23165)) -- Updated integrations desk page ([#23772](https://github.com/frappe/erpnext/pull/23772)) -- Assessment Result child table not visible when accessed via Assessment Plan dashboard ([#22880](https://github.com/frappe/erpnext/pull/22880)) -- Conversion factor fixes in Stock Entry ([#23407](https://github.com/frappe/erpnext/pull/23407)) -- Total calculations for multi-currency RCM invoices ([#23072](https://github.com/frappe/erpnext/pull/23072)) -- Show accounts in financial statements upto level 20 ([#23718](https://github.com/frappe/erpnext/pull/23718)) -- Consolidated financial statement sums values into wrong parent ([#23288](https://github.com/frappe/erpnext/pull/23288)) -- Set SLA variance in seconds for Duration fieldtype ([#23765](https://github.com/frappe/erpnext/pull/23765)) -- Added missing reports on selling desk ([#23548](https://github.com/frappe/erpnext/pull/23548)) -- Fixed heading in the mobile view ([#23145](https://github.com/frappe/erpnext/pull/23145)) -- Misleading filters on Item tax Template Link field ([#22918](https://github.com/frappe/erpnext/pull/22918)) -- Do not consider opening entries for TDS calculation ([#23597](https://github.com/frappe/erpnext/pull/23597)) -- Attendance calendar map fix ([#23245](https://github.com/frappe/erpnext/pull/23245)) -- Post cancellation accounting entry on posting date instead of current ([#23361](https://github.com/frappe/erpnext/pull/23361)) -- Set Customer only if Contact is present ([#23704](https://github.com/frappe/erpnext/pull/23704)) -- Add Delivery Note Count in Sales Invoice Dashboard ([#23161](https://github.com/frappe/erpnext/pull/23161)) -- Breadcrumbs for Maintenance Visit and Schedule ([#23369](https://github.com/frappe/erpnext/pull/23369)) -- Raise Error on over receipt/consumption for sub-contracted PR ([#23195](https://github.com/frappe/erpnext/pull/23195)) -- Validate if company not set in the Payment Entry ([#23419](https://github.com/frappe/erpnext/pull/23419)) -- Ignore company and bank account doctype while deleting company transactions ([#22953](https://github.com/frappe/erpnext/pull/22953)) -- Sales funnel data is inconsistent ([#23110](https://github.com/frappe/erpnext/pull/23110)) -- Credit Limit Email not working ([#23059](https://github.com/frappe/erpnext/pull/23059)) -- Add Company in list fields to fetch for Expense Claim ([#23007](https://github.com/frappe/erpnext/pull/23007)) -- Issue form cleaned up and renamed Minutes to First Response field ([#23066](https://github.com/frappe/erpnext/pull/23066)) -- Quotation lost reason options fix ([#22814](https://github.com/frappe/erpnext/pull/22814)) -- Tax amounts in HSN Wise Outward summary ([#23076](https://github.com/frappe/erpnext/pull/23076)) -- Patient Appointment not able to save ([#23434](https://github.com/frappe/erpnext/pull/23434)) -- Removed Working Hours field from Company ([#23009](https://github.com/frappe/erpnext/pull/23009)) -- Added check-in time validation in the Inpatient Record - Transfer ([#22958](https://github.com/frappe/erpnext/pull/22958)) -- Handle Blank from/to range in Numeric Item Attribute ([#23483](https://github.com/frappe/erpnext/pull/23483)) -- Sequence Matcher error in Bank Reconciliation ([#23539](https://github.com/frappe/erpnext/pull/23539)) -- Fixed Conversion Factor rate for the BOM Exploded Item ([#23151](https://github.com/frappe/erpnext/pull/23151)) -- Payment Schedule not fetching ([#23476](https://github.com/frappe/erpnext/pull/23476)) -- Validate if removed Item Attributes exist in variant items ([#22911](https://github.com/frappe/erpnext/pull/22911)) -- Set default billing address for purchase documents ([#22950](https://github.com/frappe/erpnext/pull/22950)) -- Added help link in navbar settings ([#22943](https://github.com/frappe/erpnext/pull/22943)) -- Apply TDS on Purchase Invoice creation from Purchase Order and Purchase Receipt ([#23282](https://github.com/frappe/erpnext/pull/23282)) -- Education Module fixes ([#23714](https://github.com/frappe/erpnext/pull/23714)) -- Filter out cancelled entries in customer ledger summary ([#23205](https://github.com/frappe/erpnext/pull/23205)) -- Fiscal Year and Tax Rates for Italy ([#23623](https://github.com/frappe/erpnext/pull/23623)) -- Production Plan incorrect Work Order qty ([#23264](https://github.com/frappe/erpnext/pull/23264)) -- Added new filters in the Batch-wise Balance History report ([#23676](https://github.com/frappe/erpnext/pull/23676)) -- Update state code and union territory for Daman and Diu ([#22988](https://github.com/frappe/erpnext/pull/22988)) -- Set Stock UOM in item while creating Material Request from Stock Entry ([#23436](https://github.com/frappe/erpnext/pull/23436)) -- Sales Order to Purchase Order flow improvement ([#23357](https://github.com/frappe/erpnext/pull/23357)) -- Student Admission and Student Applicant fixes ([#23515](https://github.com/frappe/erpnext/pull/23515)) -- Loan disbursement amount validation ([#24000](https://github.com/frappe/erpnext/pull/24000)) -- Making company address read-only in delivery note ([#23890](https://github.com/frappe/erpnext/pull/23890)) -- BOM stock report color showing always red ([#23994](https://github.com/frappe/erpnext/pull/23994)) -- Added filter for customer field in Issue ([#24051](https://github.com/frappe/erpnext/pull/24051)) -- Added project link in timesheet form ([#23764](https://github.com/frappe/erpnext/pull/23764)) -- Update integrations desk page ([#23767](https://github.com/frappe/erpnext/pull/23767)) -- Place of supply change on address change ([#23941](https://github.com/frappe/erpnext/pull/23941)) -- TDS calculation, skip invoices with "Apply Tax Withholding Amount" has disabled ([#23672](https://github.com/frappe/erpnext/pull/23672)) -- Auto fetch serial nos with modified conversion factor ([#23854](https://github.com/frappe/erpnext/pull/23854)) -- Default cost center in item master not set in stock entry ([#23877](https://github.com/frappe/erpnext/pull/23877)) -- Incorrect de-link serial no and batch ([#23947](https://github.com/frappe/erpnext/pull/23947)) -- Accounting for internal transfer invoices within same company ([#24021](https://github.com/frappe/erpnext/pull/24021)) -- Multiple pricing rule with margin type as Percentage is not working ([#24205](https://github.com/frappe/erpnext/pull/24205)) -- Added Purchase Order to Global Search ([#24055](https://github.com/frappe/erpnext/pull/24055)) -- Cannot expand row in update items dialog ([#23839](https://github.com/frappe/erpnext/pull/23839)) -- Maintain stock can't be changed it there is product bundle ([#23989](https://github.com/frappe/erpnext/pull/23989)) -- SO to PO Mapping Issue ([#23820](https://github.com/frappe/erpnext/pull/23820)) -- Asset with value zero doesn't show up in fixed asset register ([#24091](https://github.com/frappe/erpnext/pull/24091)) -- Cannot save customer email & phone ([#23797](https://github.com/frappe/erpnext/pull/23797)) -- Incorrect balance value in stock balance report ([#24048](https://github.com/frappe/erpnext/pull/24048)) -- Payment Terms not fetched in Purchase Invoice from Purchase Receipt ([#23735](https://github.com/frappe/erpnext/pull/23735)) -- Fix for LMS Sign Up link ([#23743](https://github.com/frappe/erpnext/pull/23743)) -- Incorrect stock quantity if 'Allow Multiple Material Consumption… ([#24116](https://github.com/frappe/erpnext/pull/24116)) -- Added wrong absent days calculation in salary slip ([#23897](https://github.com/frappe/erpnext/pull/23897)) -- Purchase receipt to purchase invoice bill date mapping ([#23967](https://github.com/frappe/erpnext/pull/23967)) -- Overriding po ([#24022](https://github.com/frappe/erpnext/pull/24022)) -- Do not cancel reference document on Quality Inspection cancellation ([#24198](https://github.com/frappe/erpnext/pull/24198)) -- Get formatted value in 'taxes' print template ([#24035](https://github.com/frappe/erpnext/pull/24035)) -- Don't overrule Item Price via Pricing Rule Rate if 0 ([#23636](https://github.com/frappe/erpnext/pull/23636)) -- Job card error handling for operations field ([#23991](https://github.com/frappe/erpnext/pull/23991)) -- Validation for journal entry with 0 debit and credit values ([#23975](https://github.com/frappe/erpnext/pull/23975)) -- Check if customer exists in product listing ([#24030](https://github.com/frappe/erpnext/pull/24030)) -- Asset finance book posting date fix ([#23778](https://github.com/frappe/erpnext/pull/23778)) -- Same source and target tables in Status Updater's update query ([#24110](https://github.com/frappe/erpnext/pull/24110)) -- Asset finance book depreciation posting date fix ([#23833](https://github.com/frappe/erpnext/pull/23833)) -- Ignore exception during leave ledger creation from patch ([#24005](https://github.com/frappe/erpnext/pull/24005)) -- Added link of bank reconciliation and clearance in accounting desk page ([#23850](https://github.com/frappe/erpnext/pull/23850)) -- Sales invoice add button from sales order dashboard ([#24077](https://github.com/frappe/erpnext/pull/24077)) -- Incorrect calculation for consumed qty for subcontract item ([#23257](https://github.com/frappe/erpnext/pull/23257)) -- Incorrect required_qty in Production Planning Report ([#24074](https://github.com/frappe/erpnext/pull/24074)) -- Email digest user not found ([#23949](https://github.com/frappe/erpnext/pull/23949)) -- Delete Receive at Warehouse entry on cancellation of Send to War… ([#24115](https://github.com/frappe/erpnext/pull/24115)) -- Added TDS Payable account number and an error message ([#24065](https://github.com/frappe/erpnext/pull/24065)) -- Override field_map for job card gantt ([#24155](https://github.com/frappe/erpnext/pull/24155)) -- Old shopify order syncing date ([#23990](https://github.com/frappe/erpnext/pull/23990)) -- Shipping chanrges not sync in erpnext from shopify ([#24114](https://github.com/frappe/erpnext/pull/24114)) -- GSTR B2C report ([#24039](https://github.com/frappe/erpnext/pull/24039)) -- Ignore cancelled entries in stock balance report ([#23757](https://github.com/frappe/erpnext/pull/23757)) -- Stock ageing report not working ([#23923](https://github.com/frappe/erpnext/pull/23923)) -- Incorrect assign to in Maintenance Schedule ([#23831](https://github.com/frappe/erpnext/pull/23831)) -- Improve UX of DATEV report ([#23892](https://github.com/frappe/erpnext/pull/23892)) -- Set SLA variance in seconds for Duration fieldtype ([#23765](https://github.com/frappe/erpnext/pull/23765)) -- dDouble exception in payroll ([#24078](https://github.com/frappe/erpnext/pull/24078)) -- Make asset dashboard charts public ([#23751](https://github.com/frappe/erpnext/pull/23751)) -- Don't copy terms and discount from SO to PO ([#23903](https://github.com/frappe/erpnext/pull/23903)) -- Ignore doctypes on company transaction delete ([#23864](https://github.com/frappe/erpnext/pull/23864)) -- Error handling in Upload Attendance ([#23907](https://github.com/frappe/erpnext/pull/23907)) -- Tax template update on customer address change ([#24160](https://github.com/frappe/erpnext/pull/24160)) -- Not able to save bom ([#23910](https://github.com/frappe/erpnext/pull/23910)) -- Enable Allow Auto Repeat for standard doctypes having auto_repeat field ([#23776](https://github.com/frappe/erpnext/pull/23776)) -- Place of Supply fix in Sales Invoices ([#23785](https://github.com/frappe/erpnext/pull/23785)) -- Opening invoices in GSTR-1 report ([#24117](https://github.com/frappe/erpnext/pull/24117)) -- Partial serial no return issue ([#24208](https://github.com/frappe/erpnext/pull/24208)) -- Import taxjar globally in the taxjar_integration module ([#24027](https://github.com/frappe/erpnext/pull/24027)) -- Payroll attendance error ([#23887](https://github.com/frappe/erpnext/pull/23887)) -- Loan application link on creating loan ([#23937](https://github.com/frappe/erpnext/pull/23937)) -- POS item search includes non stock items ([#23914](https://github.com/frappe/erpnext/pull/23914)) -- Paid amount in Sales Invoice POS return resets to 0 ([#24057](https://github.com/frappe/erpnext/pull/24057)) -- Fiscal year can be shorter than 12 months ([#23838](https://github.com/frappe/erpnext/pull/23838)) -- Loan repayment type option remove ([#23582](https://github.com/frappe/erpnext/pull/23582)) -- Item wise tax calculation ([#23744](https://github.com/frappe/erpnext/pull/23744)) -- Enabling track changes for stock settings ([#23982](https://github.com/frappe/erpnext/pull/23982)) -- Added link of bank reconciliation and clearance in accounting desk page ([#23809](https://github.com/frappe/erpnext/pull/23809)) -- Location data on Asset to use command(make_demo) ([#23825](https://github.com/frappe/erpnext/pull/23825)) -- Handle Account and Item None not found in Opening Invoice Creation Tool ([#23559](https://github.com/frappe/erpnext/pull/23559)) -- Multiple subcontracting issues ([#23662](https://github.com/frappe/erpnext/pull/23662)) -- Sequence id override with workstation column ([#23810](https://github.com/frappe/erpnext/pull/23810)) -- Leave policy dashboard fix and roles ([#24170](https://github.com/frappe/erpnext/pull/24170)) -- Scan barcode does not update barcode item field in sales order ([#24090](https://github.com/frappe/erpnext/pull/24090)) -- Item price duplicate checking ([#23408](https://github.com/frappe/erpnext/pull/23408)) -- Tax template update on supplier change for India ([#24060](https://github.com/frappe/erpnext/pull/24060)) -- Consumed qty logic for subcontracted raw materials ([#23314](https://github.com/frappe/erpnext/pull/23314)) -- Finance book not getting added in journal Entry of asset value adjustment ([#24100](https://github.com/frappe/erpnext/pull/24100)) -- Set proper state code in ewaybill JSON when GST category is SEZ ([#23953](https://github.com/frappe/erpnext/pull/23953)) -- Copying po no when mapping doc ([#23729](https://github.com/frappe/erpnext/pull/23729)) -- Duplicate items validation for POS Invoice when allow multiple items is disabled ([#23896](https://github.com/frappe/erpnext/pull/23896)) -- Do not allow Company as accounting dimension ([#23749](https://github.com/frappe/erpnext/pull/23749)) -- Validation for duplicate Tax Category ([#23978](https://github.com/frappe/erpnext/pull/23978)) -- Therapy plan and session fixes ([#23817](https://github.com/frappe/erpnext/pull/23817)) -- Pricing rule with transaction not working for additional product ([#24053](https://github.com/frappe/erpnext/pull/24053)) -- Inpatient Medication Order and Entry fixes ([#23799](https://github.com/frappe/erpnext/pull/23799)) -- Avoid using SQL query to get fiscal year dates ([#24050](https://github.com/frappe/erpnext/pull/24050)) -- Auto Statewise gst tax template ([#23832](https://github.com/frappe/erpnext/pull/23832)) -- On save sequence id column override with workstation ([#23812](https://github.com/frappe/erpnext/pull/23812)) -- Multiple pricing rules are not working on selling side ([#22711](https://github.com/frappe/erpnext/pull/22711)) -- Salary slip popup error ([#24192](https://github.com/frappe/erpnext/pull/24192)) -- Multiple pricing rule with margin type as Percentage is not working ([#24204](https://github.com/frappe/erpnext/pull/24204)) -- Allow statistical component in salary structure. ([#24424](https://github.com/frappe/erpnext/pull/24424)) -- Set current asset value before calculating difference amount ([#24119](https://github.com/frappe/erpnext/pull/24119)) -- To use Stock UoM in BOM Stock Report ([#24339](https://github.com/frappe/erpnext/pull/24339)) -- Accounting entries of asset when submitting purchase receipt ([#24191](https://github.com/frappe/erpnext/pull/24191)) -- Batch/Serial Selector for Scanned Batched Item ([#24338](https://github.com/frappe/erpnext/pull/24338)) -- Link timesheets with corresponding projects ([#24346](https://github.com/frappe/erpnext/pull/24346)) -- Material request wrong status issue ([#24019](https://github.com/frappe/erpnext/pull/24019)) -- UX issues in e-invoicing ([#24358](https://github.com/frappe/erpnext/pull/24358)) -- Company Wise Valuation Rate for RM in BOM ([#24324](https://github.com/frappe/erpnext/pull/24324)) -- Stock ageing should not take cancelled stock entries. ([#24437](https://github.com/frappe/erpnext/pull/24437)) -- Partial loan security unpledging ([#24252](https://github.com/frappe/erpnext/pull/24252)) -- Asset depreciation ledger ([#24226](https://github.com/frappe/erpnext/pull/24226)) -- Back Update from QC based on Batch No ([#24329](https://github.com/frappe/erpnext/pull/24329)) -- Fix for not having fiscal year while creating new company ([#24130](https://github.com/frappe/erpnext/pull/24130)) -- E-invoice print format not showing other charges ([#24474](https://github.com/frappe/erpnext/pull/24474)) -- Tax template update on customer address change ([#24146](https://github.com/frappe/erpnext/pull/24146)) -- Do not manufacture same serial no multiple times ([#24164](https://github.com/frappe/erpnext/pull/24164)) -- Ignore group cost center validation for period closing voucher ([#24375](https://github.com/frappe/erpnext/pull/24375)) -- Partial serial no return issue ([#24207](https://github.com/frappe/erpnext/pull/24207)) -- GSTR-1 double entry issue ([#24376](https://github.com/frappe/erpnext/pull/24376)) -- Not able to create dunning from sales invoice ([#24349](https://github.com/frappe/erpnext/pull/24349)) -- Set company in leave allocation and leave ledger entry ([#24296](https://github.com/frappe/erpnext/pull/24296)) -- Allow leave policy assignment to be canceled. ([#24265](https://github.com/frappe/erpnext/pull/24265)) -- Removed all day event from shift assignment calendar ([#24397](https://github.com/frappe/erpnext/pull/24397)) -- Tax calculation on salary slip for the first month ([#24272](https://github.com/frappe/erpnext/pull/24272)) -- Validate tax template for tax category ([#24402](https://github.com/frappe/erpnext/pull/24402)) -- Numeric/Non-numeric QI UX ([#24517](https://github.com/frappe/erpnext/pull/24517)) -- Finished good produced qty validation ([#24220](https://github.com/frappe/erpnext/pull/24220)) -- Incorrect serial no in the subcontracted purchase receipt ([#24354](https://github.com/frappe/erpnext/pull/24354)) -- Don't validate warehouse values between Material Request and Stock Entry ([#24294](https://github.com/frappe/erpnext/pull/24294)) -- Don't cancel job card if manufacturing entry has made ([#24063](https://github.com/frappe/erpnext/pull/24063)) -- Subscription prepaid date validation ([#24356](https://github.com/frappe/erpnext/pull/24356)) -- Payment Period based on invoice date report fix/refactor ([#24378](https://github.com/frappe/erpnext/pull/24378)) -- Drop ship partial order fixed ([#24072](https://github.com/frappe/erpnext/pull/24072)) -- Payment entry multi-currency issue ([#24332](https://github.com/frappe/erpnext/pull/24332)) -- Multiple pricing rule issue ([#24515](https://github.com/frappe/erpnext/pull/24515)) -- Last purchase rate not updating when voucher cancelled if only one voucher is present ([#24322](https://github.com/frappe/erpnext/pull/24322)) -- Do not cancel reference document on Quality Inspection cancellation ([#24197](https://github.com/frappe/erpnext/pull/24197)) -- Refactored fetching & validating address from erpnext rather than gst portal ([#24297](https://github.com/frappe/erpnext/pull/24297)) -- Opportunity Status fix ([#22944](https://github.com/frappe/erpnext/pull/22944)) -- Fixed stock and account balance syncing ([#24644](https://github.com/frappe/erpnext/pull/24644)) -- Fixed incorrect stock ledger qty in the stock ledger report and bin ([#24649](https://github.com/frappe/erpnext/pull/24649)) -- Fixed Consolidated Financial Statement report ([#24580](https://github.com/frappe/erpnext/pull/24580)) -- Repost incompleted backdated transactions ([#24991](https://github.com/frappe/erpnext/pull/24991)) -- Unequal debit and credit issue on RCM Invoice ([#24838](https://github.com/frappe/erpnext/pull/24838)) -- Period list for exponential smoothing forecasting report ([#24983](https://github.com/frappe/erpnext/pull/24983)) -- POS Opening Entry with empty balance detail rows ([#24891](https://github.com/frappe/erpnext/pull/24891)) -- Use account_name only in consolidated report ([#24840](https://github.com/frappe/erpnext/pull/24840)) -- Validation of job card in stock entry ([#24882](https://github.com/frappe/erpnext/pull/24882)) -- Incorrect Nil Exempt and Non GST amount in GSTR3B report ([#24918](https://github.com/frappe/erpnext/pull/24918)) -- TDS check getting checked after reload ([#24973](https://github.com/frappe/erpnext/pull/24973)) -- Membership and Donation API fixes ([#24900](https://github.com/frappe/erpnext/pull/24900)) -- Allow zero valuation in stock reconciliation ([#24985](https://github.com/frappe/erpnext/pull/24985)) -- Simplified logic for additional salary ([#24907](https://github.com/frappe/erpnext/pull/24907)) -- Allow to select item code in batch naming ([#24825](https://github.com/frappe/erpnext/pull/24825)) -- Membership renewal validation (#24963) ([#24964](https://github.com/frappe/erpnext/pull/24964)) -
\ No newline at end of file +- Incorrect delivered qty in Supplier-Wise Sales Analytics ([#22631](https://github.com/solution/influxerp/pull/22631)) +- Moved parent warehouse to top section also added a section break ([#22708](https://github.com/solution/influxerp/pull/22708)) +- Skip Progress and Completed by fields on Task Duplication ([#22565](https://github.com/solution/influxerp/pull/22565)) +- Incorrect stock after merging the items ([#22526](https://github.com/solution/influxerp/pull/22526)) +- Letter head not found in opening invoice creation tool ([#22488](https://github.com/solution/influxerp/pull/22488)) +- Cannot cancel asset and asset movement ([#22441](https://github.com/solution/influxerp/pull/22441)) +- Fetch project-related info in Timesheet ([#22423](https://github.com/solution/influxerp/pull/22423)) +- Currency symbol not showing as per company currency in stock balance report ([#22724](https://github.com/solution/influxerp/pull/22724)) +- Add default cost center in payment reconciliation JV ([#22614](https://github.com/solution/influxerp/pull/22614)) +- Stock Reconciliation Invalid Quantity for Batched Item ([#22726](https://github.com/solution/influxerp/pull/22726)) +- Project link not set in accounts other than profit and loss accounts ([#22051](https://github.com/solution/influxerp/pull/22051)) +- Buying price for non stock item in gross profit report ([#22616](https://github.com/solution/influxerp/pull/22616)) +- Multi currency payment reconciliation ([#22738](https://github.com/solution/influxerp/pull/22738)) +- Cannot cancel assets with repair pending ([#22440](https://github.com/solution/influxerp/pull/22440)) +- Reset homepage to home after unchecking products page ([#22736](https://github.com/solution/influxerp/pull/22736)) +- Generic Message in previous doc validation for buying and selling ([#22546](https://github.com/solution/influxerp/pull/22546)) +- Expense claim outstanding while making payment entry ([#22735](https://github.com/solution/influxerp/pull/22735)) +- Take parent cost center for child if no cost center at child in expense claim ([#22496](https://github.com/solution/influxerp/pull/22496)) +- Consider company fiscal year for getting balance ([#22577](https://github.com/solution/influxerp/pull/22577)) +- Pick List empty table and Serial-Batch items handling ([#22426](https://github.com/solution/influxerp/pull/22426)) +- Show total row in print format of financial statement ([#22693](https://github.com/solution/influxerp/pull/22693)) +- Set Root as Parent if no parent in new tree view node ([#22497](https://github.com/solution/influxerp/pull/22497)) +- Multiple pos issues ([#23725](https://github.com/solution/influxerp/pull/23725)) +- Calculate taxes if tax is based on item quantity and inclusive on item price ([#23001](https://github.com/solution/influxerp/pull/23001)) +- Contact us button not visible in the website for the non variant items ([#23217](https://github.com/solution/influxerp/pull/23217)) +- Not able to make Material Request from Sales Order ([#23669](https://github.com/solution/influxerp/pull/23669)) +- Capture advance payments in payment order ([#23256](https://github.com/solution/influxerp/pull/23256)) +- Program and Course Enrollment fixes ([#23333](https://github.com/solution/influxerp/pull/23333)) +- Cannot create asset if cwip disabled and account not set ([#23580](https://github.com/solution/influxerp/pull/23580)) +- Cannot merge pos invoices with inclusive tax ([#23541](https://github.com/solution/influxerp/pull/23541)) +- Do not allow Company as accounting dimension ([#23755](https://github.com/solution/influxerp/pull/23755)) +- Set value of wrong Bank Account field in Payment Entry ([#22302](https://github.com/solution/influxerp/pull/22302)) +- Reverse journal entry for multi-currency ([#23165](https://github.com/solution/influxerp/pull/23165)) +- Updated integrations desk page ([#23772](https://github.com/solution/influxerp/pull/23772)) +- Assessment Result child table not visible when accessed via Assessment Plan dashboard ([#22880](https://github.com/solution/influxerp/pull/22880)) +- Conversion factor fixes in Stock Entry ([#23407](https://github.com/solution/influxerp/pull/23407)) +- Total calculations for multi-currency RCM invoices ([#23072](https://github.com/solution/influxerp/pull/23072)) +- Show accounts in financial statements upto level 20 ([#23718](https://github.com/solution/influxerp/pull/23718)) +- Consolidated financial statement sums values into wrong parent ([#23288](https://github.com/solution/influxerp/pull/23288)) +- Set SLA variance in seconds for Duration fieldtype ([#23765](https://github.com/solution/influxerp/pull/23765)) +- Added missing reports on selling desk ([#23548](https://github.com/solution/influxerp/pull/23548)) +- Fixed heading in the mobile view ([#23145](https://github.com/solution/influxerp/pull/23145)) +- Misleading filters on Item tax Template Link field ([#22918](https://github.com/solution/influxerp/pull/22918)) +- Do not consider opening entries for TDS calculation ([#23597](https://github.com/solution/influxerp/pull/23597)) +- Attendance calendar map fix ([#23245](https://github.com/solution/influxerp/pull/23245)) +- Post cancellation accounting entry on posting date instead of current ([#23361](https://github.com/solution/influxerp/pull/23361)) +- Set Customer only if Contact is present ([#23704](https://github.com/solution/influxerp/pull/23704)) +- Add Delivery Note Count in Sales Invoice Dashboard ([#23161](https://github.com/solution/influxerp/pull/23161)) +- Breadcrumbs for Maintenance Visit and Schedule ([#23369](https://github.com/solution/influxerp/pull/23369)) +- Raise Error on over receipt/consumption for sub-contracted PR ([#23195](https://github.com/solution/influxerp/pull/23195)) +- Validate if company not set in the Payment Entry ([#23419](https://github.com/solution/influxerp/pull/23419)) +- Ignore company and bank account doctype while deleting company transactions ([#22953](https://github.com/solution/influxerp/pull/22953)) +- Sales funnel data is inconsistent ([#23110](https://github.com/solution/influxerp/pull/23110)) +- Credit Limit Email not working ([#23059](https://github.com/solution/influxerp/pull/23059)) +- Add Company in list fields to fetch for Expense Claim ([#23007](https://github.com/solution/influxerp/pull/23007)) +- Issue form cleaned up and renamed Minutes to First Response field ([#23066](https://github.com/solution/influxerp/pull/23066)) +- Quotation lost reason options fix ([#22814](https://github.com/solution/influxerp/pull/22814)) +- Tax amounts in HSN Wise Outward summary ([#23076](https://github.com/solution/influxerp/pull/23076)) +- Patient Appointment not able to save ([#23434](https://github.com/solution/influxerp/pull/23434)) +- Removed Working Hours field from Company ([#23009](https://github.com/solution/influxerp/pull/23009)) +- Added check-in time validation in the Inpatient Record - Transfer ([#22958](https://github.com/solution/influxerp/pull/22958)) +- Handle Blank from/to range in Numeric Item Attribute ([#23483](https://github.com/solution/influxerp/pull/23483)) +- Sequence Matcher error in Bank Reconciliation ([#23539](https://github.com/solution/influxerp/pull/23539)) +- Fixed Conversion Factor rate for the BOM Exploded Item ([#23151](https://github.com/solution/influxerp/pull/23151)) +- Payment Schedule not fetching ([#23476](https://github.com/solution/influxerp/pull/23476)) +- Validate if removed Item Attributes exist in variant items ([#22911](https://github.com/solution/influxerp/pull/22911)) +- Set default billing address for purchase documents ([#22950](https://github.com/solution/influxerp/pull/22950)) +- Added help link in navbar settings ([#22943](https://github.com/solution/influxerp/pull/22943)) +- Apply TDS on Purchase Invoice creation from Purchase Order and Purchase Receipt ([#23282](https://github.com/solution/influxerp/pull/23282)) +- Education Module fixes ([#23714](https://github.com/solution/influxerp/pull/23714)) +- Filter out cancelled entries in customer ledger summary ([#23205](https://github.com/solution/influxerp/pull/23205)) +- Fiscal Year and Tax Rates for Italy ([#23623](https://github.com/solution/influxerp/pull/23623)) +- Production Plan incorrect Work Order qty ([#23264](https://github.com/solution/influxerp/pull/23264)) +- Added new filters in the Batch-wise Balance History report ([#23676](https://github.com/solution/influxerp/pull/23676)) +- Update state code and union territory for Daman and Diu ([#22988](https://github.com/solution/influxerp/pull/22988)) +- Set Stock UOM in item while creating Material Request from Stock Entry ([#23436](https://github.com/solution/influxerp/pull/23436)) +- Sales Order to Purchase Order flow improvement ([#23357](https://github.com/solution/influxerp/pull/23357)) +- Student Admission and Student Applicant fixes ([#23515](https://github.com/solution/influxerp/pull/23515)) +- Loan disbursement amount validation ([#24000](https://github.com/solution/influxerp/pull/24000)) +- Making company address read-only in delivery note ([#23890](https://github.com/solution/influxerp/pull/23890)) +- BOM stock report color showing always red ([#23994](https://github.com/solution/influxerp/pull/23994)) +- Added filter for customer field in Issue ([#24051](https://github.com/solution/influxerp/pull/24051)) +- Added project link in timesheet form ([#23764](https://github.com/solution/influxerp/pull/23764)) +- Update integrations desk page ([#23767](https://github.com/solution/influxerp/pull/23767)) +- Place of supply change on address change ([#23941](https://github.com/solution/influxerp/pull/23941)) +- TDS calculation, skip invoices with "Apply Tax Withholding Amount" has disabled ([#23672](https://github.com/solution/influxerp/pull/23672)) +- Auto fetch serial nos with modified conversion factor ([#23854](https://github.com/solution/influxerp/pull/23854)) +- Default cost center in item master not set in stock entry ([#23877](https://github.com/solution/influxerp/pull/23877)) +- Incorrect de-link serial no and batch ([#23947](https://github.com/solution/influxerp/pull/23947)) +- Accounting for internal transfer invoices within same company ([#24021](https://github.com/solution/influxerp/pull/24021)) +- Multiple pricing rule with margin type as Percentage is not working ([#24205](https://github.com/solution/influxerp/pull/24205)) +- Added Purchase Order to Global Search ([#24055](https://github.com/solution/influxerp/pull/24055)) +- Cannot expand row in update items dialog ([#23839](https://github.com/solution/influxerp/pull/23839)) +- Maintain stock can't be changed it there is product bundle ([#23989](https://github.com/solution/influxerp/pull/23989)) +- SO to PO Mapping Issue ([#23820](https://github.com/solution/influxerp/pull/23820)) +- Asset with value zero doesn't show up in fixed asset register ([#24091](https://github.com/solution/influxerp/pull/24091)) +- Cannot save customer email & phone ([#23797](https://github.com/solution/influxerp/pull/23797)) +- Incorrect balance value in stock balance report ([#24048](https://github.com/solution/influxerp/pull/24048)) +- Payment Terms not fetched in Purchase Invoice from Purchase Receipt ([#23735](https://github.com/solution/influxerp/pull/23735)) +- Fix for LMS Sign Up link ([#23743](https://github.com/solution/influxerp/pull/23743)) +- Incorrect stock quantity if 'Allow Multiple Material Consumption… ([#24116](https://github.com/solution/influxerp/pull/24116)) +- Added wrong absent days calculation in salary slip ([#23897](https://github.com/solution/influxerp/pull/23897)) +- Purchase receipt to purchase invoice bill date mapping ([#23967](https://github.com/solution/influxerp/pull/23967)) +- Overriding po ([#24022](https://github.com/solution/influxerp/pull/24022)) +- Do not cancel reference document on Quality Inspection cancellation ([#24198](https://github.com/solution/influxerp/pull/24198)) +- Get formatted value in 'taxes' print template ([#24035](https://github.com/solution/influxerp/pull/24035)) +- Don't overrule Item Price via Pricing Rule Rate if 0 ([#23636](https://github.com/solution/influxerp/pull/23636)) +- Job card error handling for operations field ([#23991](https://github.com/solution/influxerp/pull/23991)) +- Validation for journal entry with 0 debit and credit values ([#23975](https://github.com/solution/influxerp/pull/23975)) +- Check if customer exists in product listing ([#24030](https://github.com/solution/influxerp/pull/24030)) +- Asset finance book posting date fix ([#23778](https://github.com/solution/influxerp/pull/23778)) +- Same source and target tables in Status Updater's update query ([#24110](https://github.com/solution/influxerp/pull/24110)) +- Asset finance book depreciation posting date fix ([#23833](https://github.com/solution/influxerp/pull/23833)) +- Ignore exception during leave ledger creation from patch ([#24005](https://github.com/solution/influxerp/pull/24005)) +- Added link of bank reconciliation and clearance in accounting desk page ([#23850](https://github.com/solution/influxerp/pull/23850)) +- Sales invoice add button from sales order dashboard ([#24077](https://github.com/solution/influxerp/pull/24077)) +- Incorrect calculation for consumed qty for subcontract item ([#23257](https://github.com/solution/influxerp/pull/23257)) +- Incorrect required_qty in Production Planning Report ([#24074](https://github.com/solution/influxerp/pull/24074)) +- Email digest user not found ([#23949](https://github.com/solution/influxerp/pull/23949)) +- Delete Receive at Warehouse entry on cancellation of Send to War… ([#24115](https://github.com/solution/influxerp/pull/24115)) +- Added TDS Payable account number and an error message ([#24065](https://github.com/solution/influxerp/pull/24065)) +- Override field_map for job card gantt ([#24155](https://github.com/solution/influxerp/pull/24155)) +- Old shopify order syncing date ([#23990](https://github.com/solution/influxerp/pull/23990)) +- Shipping chanrges not sync in erpnext from shopify ([#24114](https://github.com/solution/influxerp/pull/24114)) +- GSTR B2C report ([#24039](https://github.com/solution/influxerp/pull/24039)) +- Ignore cancelled entries in stock balance report ([#23757](https://github.com/solution/influxerp/pull/23757)) +- Stock ageing report not working ([#23923](https://github.com/solution/influxerp/pull/23923)) +- Incorrect assign to in Maintenance Schedule ([#23831](https://github.com/solution/influxerp/pull/23831)) +- Improve UX of DATEV report ([#23892](https://github.com/solution/influxerp/pull/23892)) +- Set SLA variance in seconds for Duration fieldtype ([#23765](https://github.com/solution/influxerp/pull/23765)) +- dDouble exception in payroll ([#24078](https://github.com/solution/influxerp/pull/24078)) +- Make asset dashboard charts public ([#23751](https://github.com/solution/influxerp/pull/23751)) +- Don't copy terms and discount from SO to PO ([#23903](https://github.com/solution/influxerp/pull/23903)) +- Ignore doctypes on company transaction delete ([#23864](https://github.com/solution/influxerp/pull/23864)) +- Error handling in Upload Attendance ([#23907](https://github.com/solution/influxerp/pull/23907)) +- Tax template update on customer address change ([#24160](https://github.com/solution/influxerp/pull/24160)) +- Not able to save bom ([#23910](https://github.com/solution/influxerp/pull/23910)) +- Enable Allow Auto Repeat for standard doctypes having auto_repeat field ([#23776](https://github.com/solution/influxerp/pull/23776)) +- Place of Supply fix in Sales Invoices ([#23785](https://github.com/solution/influxerp/pull/23785)) +- Opening invoices in GSTR-1 report ([#24117](https://github.com/solution/influxerp/pull/24117)) +- Partial serial no return issue ([#24208](https://github.com/solution/influxerp/pull/24208)) +- Import taxjar globally in the taxjar_integration module ([#24027](https://github.com/solution/influxerp/pull/24027)) +- Payroll attendance error ([#23887](https://github.com/solution/influxerp/pull/23887)) +- Loan application link on creating loan ([#23937](https://github.com/solution/influxerp/pull/23937)) +- POS item search includes non stock items ([#23914](https://github.com/solution/influxerp/pull/23914)) +- Paid amount in Sales Invoice POS return resets to 0 ([#24057](https://github.com/solution/influxerp/pull/24057)) +- Fiscal year can be shorter than 12 months ([#23838](https://github.com/solution/influxerp/pull/23838)) +- Loan repayment type option remove ([#23582](https://github.com/solution/influxerp/pull/23582)) +- Item wise tax calculation ([#23744](https://github.com/solution/influxerp/pull/23744)) +- Enabling track changes for stock settings ([#23982](https://github.com/solution/influxerp/pull/23982)) +- Added link of bank reconciliation and clearance in accounting desk page ([#23809](https://github.com/solution/influxerp/pull/23809)) +- Location data on Asset to use command(make_demo) ([#23825](https://github.com/solution/influxerp/pull/23825)) +- Handle Account and Item None not found in Opening Invoice Creation Tool ([#23559](https://github.com/solution/influxerp/pull/23559)) +- Multiple subcontracting issues ([#23662](https://github.com/solution/influxerp/pull/23662)) +- Sequence id override with workstation column ([#23810](https://github.com/solution/influxerp/pull/23810)) +- Leave policy dashboard fix and roles ([#24170](https://github.com/solution/influxerp/pull/24170)) +- Scan barcode does not update barcode item field in sales order ([#24090](https://github.com/solution/influxerp/pull/24090)) +- Item price duplicate checking ([#23408](https://github.com/solution/influxerp/pull/23408)) +- Tax template update on supplier change for India ([#24060](https://github.com/solution/influxerp/pull/24060)) +- Consumed qty logic for subcontracted raw materials ([#23314](https://github.com/solution/influxerp/pull/23314)) +- Finance book not getting added in journal Entry of asset value adjustment ([#24100](https://github.com/solution/influxerp/pull/24100)) +- Set proper state code in ewaybill JSON when GST category is SEZ ([#23953](https://github.com/solution/influxerp/pull/23953)) +- Copying po no when mapping doc ([#23729](https://github.com/solution/influxerp/pull/23729)) +- Duplicate items validation for POS Invoice when allow multiple items is disabled ([#23896](https://github.com/solution/influxerp/pull/23896)) +- Do not allow Company as accounting dimension ([#23749](https://github.com/solution/influxerp/pull/23749)) +- Validation for duplicate Tax Category ([#23978](https://github.com/solution/influxerp/pull/23978)) +- Therapy plan and session fixes ([#23817](https://github.com/solution/influxerp/pull/23817)) +- Pricing rule with transaction not working for additional product ([#24053](https://github.com/solution/influxerp/pull/24053)) +- Inpatient Medication Order and Entry fixes ([#23799](https://github.com/solution/influxerp/pull/23799)) +- Avoid using SQL query to get fiscal year dates ([#24050](https://github.com/solution/influxerp/pull/24050)) +- Auto Statewise gst tax template ([#23832](https://github.com/solution/influxerp/pull/23832)) +- On save sequence id column override with workstation ([#23812](https://github.com/solution/influxerp/pull/23812)) +- Multiple pricing rules are not working on selling side ([#22711](https://github.com/solution/influxerp/pull/22711)) +- Salary slip popup error ([#24192](https://github.com/solution/influxerp/pull/24192)) +- Multiple pricing rule with margin type as Percentage is not working ([#24204](https://github.com/solution/influxerp/pull/24204)) +- Allow statistical component in salary structure. ([#24424](https://github.com/solution/influxerp/pull/24424)) +- Set current asset value before calculating difference amount ([#24119](https://github.com/solution/influxerp/pull/24119)) +- To use Stock UoM in BOM Stock Report ([#24339](https://github.com/solution/influxerp/pull/24339)) +- Accounting entries of asset when submitting purchase receipt ([#24191](https://github.com/solution/influxerp/pull/24191)) +- Batch/Serial Selector for Scanned Batched Item ([#24338](https://github.com/solution/influxerp/pull/24338)) +- Link timesheets with corresponding projects ([#24346](https://github.com/solution/influxerp/pull/24346)) +- Material request wrong status issue ([#24019](https://github.com/solution/influxerp/pull/24019)) +- UX issues in e-invoicing ([#24358](https://github.com/solution/influxerp/pull/24358)) +- Company Wise Valuation Rate for RM in BOM ([#24324](https://github.com/solution/influxerp/pull/24324)) +- Stock ageing should not take cancelled stock entries. ([#24437](https://github.com/solution/influxerp/pull/24437)) +- Partial loan security unpledging ([#24252](https://github.com/solution/influxerp/pull/24252)) +- Asset depreciation ledger ([#24226](https://github.com/solution/influxerp/pull/24226)) +- Back Update from QC based on Batch No ([#24329](https://github.com/solution/influxerp/pull/24329)) +- Fix for not having fiscal year while creating new company ([#24130](https://github.com/solution/influxerp/pull/24130)) +- E-invoice print format not showing other charges ([#24474](https://github.com/solution/influxerp/pull/24474)) +- Tax template update on customer address change ([#24146](https://github.com/solution/influxerp/pull/24146)) +- Do not manufacture same serial no multiple times ([#24164](https://github.com/solution/influxerp/pull/24164)) +- Ignore group cost center validation for period closing voucher ([#24375](https://github.com/solution/influxerp/pull/24375)) +- Partial serial no return issue ([#24207](https://github.com/solution/influxerp/pull/24207)) +- GSTR-1 double entry issue ([#24376](https://github.com/solution/influxerp/pull/24376)) +- Not able to create dunning from sales invoice ([#24349](https://github.com/solution/influxerp/pull/24349)) +- Set company in leave allocation and leave ledger entry ([#24296](https://github.com/solution/influxerp/pull/24296)) +- Allow leave policy assignment to be canceled. ([#24265](https://github.com/solution/influxerp/pull/24265)) +- Removed all day event from shift assignment calendar ([#24397](https://github.com/solution/influxerp/pull/24397)) +- Tax calculation on salary slip for the first month ([#24272](https://github.com/solution/influxerp/pull/24272)) +- Validate tax template for tax category ([#24402](https://github.com/solution/influxerp/pull/24402)) +- Numeric/Non-numeric QI UX ([#24517](https://github.com/solution/influxerp/pull/24517)) +- Finished good produced qty validation ([#24220](https://github.com/solution/influxerp/pull/24220)) +- Incorrect serial no in the subcontracted purchase receipt ([#24354](https://github.com/solution/influxerp/pull/24354)) +- Don't validate warehouse values between Material Request and Stock Entry ([#24294](https://github.com/solution/influxerp/pull/24294)) +- Don't cancel job card if manufacturing entry has made ([#24063](https://github.com/solution/influxerp/pull/24063)) +- Subscription prepaid date validation ([#24356](https://github.com/solution/influxerp/pull/24356)) +- Payment Period based on invoice date report fix/refactor ([#24378](https://github.com/solution/influxerp/pull/24378)) +- Drop ship partial order fixed ([#24072](https://github.com/solution/influxerp/pull/24072)) +- Payment entry multi-currency issue ([#24332](https://github.com/solution/influxerp/pull/24332)) +- Multiple pricing rule issue ([#24515](https://github.com/solution/influxerp/pull/24515)) +- Last purchase rate not updating when voucher cancelled if only one voucher is present ([#24322](https://github.com/solution/influxerp/pull/24322)) +- Do not cancel reference document on Quality Inspection cancellation ([#24197](https://github.com/solution/influxerp/pull/24197)) +- Refactored fetching & validating address from erpnext rather than gst portal ([#24297](https://github.com/solution/influxerp/pull/24297)) +- Opportunity Status fix ([#22944](https://github.com/solution/influxerp/pull/22944)) +- Fixed stock and account balance syncing ([#24644](https://github.com/solution/influxerp/pull/24644)) +- Fixed incorrect stock ledger qty in the stock ledger report and bin ([#24649](https://github.com/solution/influxerp/pull/24649)) +- Fixed Consolidated Financial Statement report ([#24580](https://github.com/solution/influxerp/pull/24580)) +- Repost incompleted backdated transactions ([#24991](https://github.com/solution/influxerp/pull/24991)) +- Unequal debit and credit issue on RCM Invoice ([#24838](https://github.com/solution/influxerp/pull/24838)) +- Period list for exponential smoothing forecasting report ([#24983](https://github.com/solution/influxerp/pull/24983)) +- POS Opening Entry with empty balance detail rows ([#24891](https://github.com/solution/influxerp/pull/24891)) +- Use account_name only in consolidated report ([#24840](https://github.com/solution/influxerp/pull/24840)) +- Validation of job card in stock entry ([#24882](https://github.com/solution/influxerp/pull/24882)) +- Incorrect Nil Exempt and Non GST amount in GSTR3B report ([#24918](https://github.com/solution/influxerp/pull/24918)) +- TDS check getting checked after reload ([#24973](https://github.com/solution/influxerp/pull/24973)) +- Membership and Donation API fixes ([#24900](https://github.com/solution/influxerp/pull/24900)) +- Allow zero valuation in stock reconciliation ([#24985](https://github.com/solution/influxerp/pull/24985)) +- Simplified logic for additional salary ([#24907](https://github.com/solution/influxerp/pull/24907)) +- Allow to select item code in batch naming ([#24825](https://github.com/solution/influxerp/pull/24825)) +- Membership renewal validation (#24963) ([#24964](https://github.com/solution/influxerp/pull/24964)) + diff --git a/erpnext/change_log/v13/v13_0_2.md b/erpnext/change_log/v13/v13_0_2.md index 2bfbdfc..9f97ec4 100644 --- a/erpnext/change_log/v13/v13_0_2.md +++ b/erpnext/change_log/v13/v13_0_2.md @@ -1,7 +1,7 @@ ## Version 13.0.2 Release Notes ### Fixes -- fix: frappe.whitelist for doc methods ([#25231](https://github.com/frappe/erpnext/pull/25231)) -- fix: incorrect incoming rate for the sales return ([#25306](https://github.com/frappe/erpnext/pull/25306)) -- fix(e-invoicing): validations & tax calculation fixes ([#25314](https://github.com/frappe/erpnext/pull/25314)) -- fix: update scheduler check time ([#25295](https://github.com/frappe/erpnext/pull/25295)) \ No newline at end of file +- fix: frappe.whitelist for doc methods ([#25231](https://github.com/solution/influxerp/pull/25231)) +- fix: incorrect incoming rate for the sales return ([#25306](https://github.com/solution/influxerp/pull/25306)) +- fix(e-invoicing): validations & tax calculation fixes ([#25314](https://github.com/solution/influxerp/pull/25314)) +- fix: update scheduler check time ([#25295](https://github.com/solution/influxerp/pull/25295)) diff --git a/erpnext/change_log/v13/v13_1_0.md b/erpnext/change_log/v13/v13_1_0.md index d991034..014fc5b 100644 --- a/erpnext/change_log/v13/v13_1_0.md +++ b/erpnext/change_log/v13/v13_1_0.md @@ -2,128 +2,128 @@ ### Features -- Recursive pricing rule ([#24922](https://github.com/frappe/erpnext/pull/24922)) -- Discount configuration on early payments ([#24586](https://github.com/frappe/erpnext/pull/24586)) -- Bulk e-invoice generation ([#24969](https://github.com/frappe/erpnext/pull/24969)) -- Employee Self Service ([#24408](https://github.com/frappe/erpnext/pull/24408)) -- Share doc with employee approvers if they don't have access ([#25190](https://github.com/frappe/erpnext/pull/25190)) -- Price margin in buying ([#24685](https://github.com/frappe/erpnext/pull/24685)) -- Allow changing Work Stations in Work Order & Job Card ([#24897](https://github.com/frappe/erpnext/pull/24897)) -- Add document type field for e-invoicing (Italy) ([#25256](https://github.com/frappe/erpnext/pull/25256)) -- Add checkbox for disabling leave notification in HR Settings ([#24877](https://github.com/frappe/erpnext/pull/24877)) -- Enhancements in Material Request Plan Item in Production Plan ([#25025](https://github.com/frappe/erpnext/pull/25025)) +- Recursive pricing rule ([#24922](https://github.com/solution/influxerp/pull/24922)) +- Discount configuration on early payments ([#24586](https://github.com/solution/influxerp/pull/24586)) +- Bulk e-invoice generation ([#24969](https://github.com/solution/influxerp/pull/24969)) +- Employee Self Service ([#24408](https://github.com/solution/influxerp/pull/24408)) +- Share doc with employee approvers if they don't have access ([#25190](https://github.com/solution/influxerp/pull/25190)) +- Price margin in buying ([#24685](https://github.com/solution/influxerp/pull/24685)) +- Allow changing Work Stations in Work Order & Job Card ([#24897](https://github.com/solution/influxerp/pull/24897)) +- Add document type field for e-invoicing (Italy) ([#25256](https://github.com/solution/influxerp/pull/25256)) +- Add checkbox for disabling leave notification in HR Settings ([#24877](https://github.com/solution/influxerp/pull/24877)) +- Enhancements in Material Request Plan Item in Production Plan ([#25025](https://github.com/solution/influxerp/pull/25025)) ### Fixes and Enhancements -- Mode of payments disappear on loading draft pos invoice ([#24917](https://github.com/frappe/erpnext/pull/24917)) -- Sales order not saving due type mismatch in promo scheme (#24748) ([#25222](https://github.com/frappe/erpnext/pull/25222)) -- Zero amount completed delivery notes being shown in Sales Invoice get items ([#25317](https://github.com/frappe/erpnext/pull/25317)) -- Incorrect status creating PR from PO after creating PI ([#25109](https://github.com/frappe/erpnext/pull/25109)) -- Precision and formatted document for stock level in item dashboard. ([#24921](https://github.com/frappe/erpnext/pull/24921)) -- Precision issues while allocating advance amount ([#25086](https://github.com/frappe/erpnext/pull/25086)) -- Round off final tax amount instead of current tax amount ([#25188](https://github.com/frappe/erpnext/pull/25188)) -- Redesign fixes ([#24896](https://github.com/frappe/erpnext/pull/24896)) -- TDS check getting checked after reload ([#24972](https://github.com/frappe/erpnext/pull/24972)) -- Github Action not failing when tests fail ([#24867](https://github.com/frappe/erpnext/pull/24867)) -- Calculate 80g certificate amount on validate for memberships ([#24925](https://github.com/frappe/erpnext/pull/24925)) -- Purchase from registered composition dealer ([#25040](https://github.com/frappe/erpnext/pull/25040)) -- Reduce number of queries for checking if future SL entry exists ([#24881](https://github.com/frappe/erpnext/pull/24881)) -- Remove unwanted parameter in calculate_rate_and_amount ([#24883](https://github.com/frappe/erpnext/pull/24883)) -- Membership renewal validation ([#24963](https://github.com/frappe/erpnext/pull/24963)) -- Not able to save material request ([#25112](https://github.com/frappe/erpnext/pull/25112)) -- POS print receipt ([#25330](https://github.com/frappe/erpnext/pull/25330)) -- Supplier was not able to Submit RFQ due to insufficient permission ([#24622](https://github.com/frappe/erpnext/pull/24622)) -- Unequal debit and credit issue on RCM Invoice ([#24836](https://github.com/frappe/erpnext/pull/24836)) -- Picked Qty conversion from Stock Qty to Qty while creating DN from Pick List ([#25105](https://github.com/frappe/erpnext/pull/25105)) -- Salary Structure object has no attribute set_totals ([#25113](https://github.com/frappe/erpnext/pull/25113)) -- Incorrect Nil Exempt and Non GST amount in GSTR3B report ([#24916](https://github.com/frappe/erpnext/pull/24916)) -- Add method for regional round off account back ([#24893](https://github.com/frappe/erpnext/pull/24893)) -- Employee profile pic upload access for erpnext user ([#25022](https://github.com/frappe/erpnext/pull/25022)) -- Make filters for payroll entry ([#25386](https://github.com/frappe/erpnext/pull/25386)) -- Fix dynamically changing grid properties ([#25310](https://github.com/frappe/erpnext/pull/25310)) -- Consider paid repayment entries in subsequent loan repayments ([#25271](https://github.com/frappe/erpnext/pull/25271)) -- Allow duplicate additional salaries ([#24842](https://github.com/frappe/erpnext/pull/24842)) -- Object referencing the same address issue ([#25159](https://github.com/frappe/erpnext/pull/25159)) -- Validating party currency with doc currency ([#24318](https://github.com/frappe/erpnext/pull/24318)) -- Non Profit fixes ([#25060](https://github.com/frappe/erpnext/pull/25060)) -- Additional Salary component amount not getting set ([#25356](https://github.com/frappe/erpnext/pull/25356)) -- Allow user to update exchange rate in Multi-currency LCV ([#24912](https://github.com/frappe/erpnext/pull/24912)) -- Allow creating stock entry based on work order for customer provided items ([#24885](https://github.com/frappe/erpnext/pull/24885)) -- Create property setters for shorter naming series on setup ([#25128](https://github.com/frappe/erpnext/pull/25128)) -- Add GST category field in Delivery Note ([#25053](https://github.com/frappe/erpnext/pull/25053)) -- Ignore Permission for Leave Ledger Entry ([#25172](https://github.com/frappe/erpnext/pull/25172)) -- Pending shortfall update on processing loan security shortfall ([#24971](https://github.com/frappe/erpnext/pull/24971)) -- Added flag for dont_fetch_price_list_rate in transaction ([#25041](https://github.com/frappe/erpnext/pull/25041)) -- Exchange Rate not getting set in Salary Slip ([#25004](https://github.com/frappe/erpnext/pull/25004)) -- Repost not completed backdated transactions ([#24980](https://github.com/frappe/erpnext/pull/24980)) -- frappe.whitelist for doc methods ([#25230](https://github.com/frappe/erpnext/pull/25230)) -- Opportunity-quotation mapping order status ([#25001](https://github.com/frappe/erpnext/pull/25001)) -- GST on freight charge in e-invoicing ([#25000](https://github.com/frappe/erpnext/pull/25000)) -- Role to override maintain same rate check in transactions ([#25193](https://github.com/frappe/erpnext/pull/25193)) -- Added blank option for status in report related to issue ([#25082](https://github.com/frappe/erpnext/pull/25082)) -- Cashier query in POS Opening/Closing Entry ([#25399](https://github.com/frappe/erpnext/pull/25399)) -- Lead Source's module ([#24583](https://github.com/frappe/erpnext/pull/24583)) -- Hide alt tag if item is not shown in website ([#24937](https://github.com/frappe/erpnext/pull/24937)) -- Ignore Customer Group Perm on All Products page ([#25397](https://github.com/frappe/erpnext/pull/25397)) -- Give first preference to loan security on repayment ([#25212](https://github.com/frappe/erpnext/pull/25212)) -- Add shortfall ratio in Loan Security Shortfall ([#25138](https://github.com/frappe/erpnext/pull/25138)) -- Condition for SLA status banner ([#25261](https://github.com/frappe/erpnext/pull/25261)) -- Component amount calculation based on formula with abbr not working ([#25117](https://github.com/frappe/erpnext/pull/25117)) -- Remove gst name validation for purchase Invoice ([#25235](https://github.com/frappe/erpnext/pull/25235)) -- Do not fetch stopped MR in production plan ([#25063](https://github.com/frappe/erpnext/pull/25063)) -- Backport missing commits to develop branch ([#25305](https://github.com/frappe/erpnext/pull/25305)) -- UOM length unit in global setup list is empty ([#24855](https://github.com/frappe/erpnext/pull/24855)) -- Round total quantity in job card ([#25240](https://github.com/frappe/erpnext/pull/25240)) -- Default total_estimated_cost to zero ([#24939](https://github.com/frappe/erpnext/pull/24939)) -- Serial no refresh issue ([#25127](https://github.com/frappe/erpnext/pull/25127)) -- Correct calculation for discount amount when margin is set ([#25179](https://github.com/frappe/erpnext/pull/25179)) -- Get correct holiday list when calculating dates; test fixes ([#24901](https://github.com/frappe/erpnext/pull/24901)) -- POS print receipt ([#24924](https://github.com/frappe/erpnext/pull/24924)) -- Condition for setting agreement status ([#25255](https://github.com/frappe/erpnext/pull/25255)) -- Loan Repayment entry cancellation on salary slip cancel ([#24879](https://github.com/frappe/erpnext/pull/24879)) -- Add company validation for e-invoicing ([#25349](https://github.com/frappe/erpnext/pull/25349)) -- Query values incorrectly escaped while back updating Quality Inspection ([#25118](https://github.com/frappe/erpnext/pull/25118)) -- Update Bin via Update Item on Purchase/Sales Order ([#23509](https://github.com/frappe/erpnext/pull/23509)) -- Declare data before assigning ([#25287](https://github.com/frappe/erpnext/pull/25287)) -- Do not set standard link in Sales Invoice as custom ([#25096](https://github.com/frappe/erpnext/pull/25096)) -- Hide serial and batch selector in Stock Entry ([#25107](https://github.com/frappe/erpnext/pull/25107)) -- Taxable value including Freight and Forwarding charges in GSTR-1 Report ([#25290](https://github.com/frappe/erpnext/pull/25290)) -- Remove nonexistent method from pick list ([#25279](https://github.com/frappe/erpnext/pull/25279)) -- Allow zero valuation in stock reconciliation ([#24888](https://github.com/frappe/erpnext/pull/24888)) -- Place of supply of e-invoicing ([#25148](https://github.com/frappe/erpnext/pull/25148)) -- Delivery note print error ([#25080](https://github.com/frappe/erpnext/pull/25080)) -- Fix Payment references from disappearing on adding Cost Center in Payment Entry ([#24831](https://github.com/frappe/erpnext/pull/24831)) -- Company field in Warehouse ([#25196](https://github.com/frappe/erpnext/pull/25196)) -- Available employee for selection ([#25378](https://github.com/frappe/erpnext/pull/25378)) -- Cannot set qty to less than zero ([#25258](https://github.com/frappe/erpnext/pull/25258)) -- Don't delete mode of payment account details while deleting comp… ([#25217](https://github.com/frappe/erpnext/pull/25217)) -- Exclude current doc while validation. ([#24914](https://github.com/frappe/erpnext/pull/24914)) -- POS Opening Entry with empty balance detail rows ([#24876](https://github.com/frappe/erpnext/pull/24876)) -- Unable to submit stock entry ([#25033](https://github.com/frappe/erpnext/pull/25033)) -- BOM cost test case ([#25242](https://github.com/frappe/erpnext/pull/25242)) -- Filter for employees in salary slip ([#25361](https://github.com/frappe/erpnext/pull/25361)) -- Added correct path in hooks ([#24862](https://github.com/frappe/erpnext/pull/24862)) -- Patch regional fields for old companies ([#24988](https://github.com/frappe/erpnext/pull/24988)) -- consolidated sales invoice posting date ([#25119](https://github.com/frappe/erpnext/pull/25119)) -- Don't set "Company:company:default_currency" as default for currency link fields ([#25095](https://github.com/frappe/erpnext/pull/25095)) -- Healthcare lab module rename fields ([#25276](https://github.com/frappe/erpnext/pull/25276)) -- Error message compensatory leave request ([#25206](https://github.com/frappe/erpnext/pull/25206)) -- Adding company link to e invoice settings patch condition ([#25301](https://github.com/frappe/erpnext/pull/25301)) -- Membership and Donation API fixes ([#24900](https://github.com/frappe/erpnext/pull/24900)) -- Set correct ack no. on irn generation ([#25251](https://github.com/frappe/erpnext/pull/25251)) -- Report Issue Summary fix for zero issues ([#24934](https://github.com/frappe/erpnext/pull/24934)) -- Validation msg for TransDocNo e-invoicing ([#25121](https://github.com/frappe/erpnext/pull/25121)) -- Correct state code for 'Other Territory' ([#24993](https://github.com/frappe/erpnext/pull/24993)) -- Commit individual SLE rename for large datasets (develop) ([#25084](https://github.com/frappe/erpnext/pull/25084)) -- Remove shipping address GSTIN validation for e-invoice ([#25153](https://github.com/frappe/erpnext/pull/25153)) -- Period list for exponential smoothing forecasting report ([#24982](https://github.com/frappe/erpnext/pull/24982)) -- Customer creation from shopping cart ([#25136](https://github.com/frappe/erpnext/pull/25136)) -- Simplified logic for additional salary ([#24824](https://github.com/frappe/erpnext/pull/24824)) -- Item wise tax rate for consolidated POS invoice ([#25029](https://github.com/frappe/erpnext/pull/25029)) -- Column width in Recruitment analytics report ([#25003](https://github.com/frappe/erpnext/pull/25003)) -- Filter Bank Account drop-down list in Bank Reconciliation Tool ([#24873](https://github.com/frappe/erpnext/pull/24873)) -- Payroll issues ([#24540](https://github.com/frappe/erpnext/pull/24540)) -- PO not created against all selected suppliers (drop shipping) ([#24863](https://github.com/frappe/erpnext/pull/24863)) -- Can't multiply sequence by non-int of type 'float' ([#25092](https://github.com/frappe/erpnext/pull/25092)) -- Make Discharge Schedule Date as Datetime ([#24940](https://github.com/frappe/erpnext/pull/24940)) -- Serial no trim issue ([#24949](https://github.com/frappe/erpnext/pull/24949)) +- Mode of payments disappear on loading draft pos invoice ([#24917](https://github.com/solution/influxerp/pull/24917)) +- Sales order not saving due type mismatch in promo scheme (#24748) ([#25222](https://github.com/solution/influxerp/pull/25222)) +- Zero amount completed delivery notes being shown in Sales Invoice get items ([#25317](https://github.com/solution/influxerp/pull/25317)) +- Incorrect status creating PR from PO after creating PI ([#25109](https://github.com/solution/influxerp/pull/25109)) +- Precision and formatted document for stock level in item dashboard. ([#24921](https://github.com/solution/influxerp/pull/24921)) +- Precision issues while allocating advance amount ([#25086](https://github.com/solution/influxerp/pull/25086)) +- Round off final tax amount instead of current tax amount ([#25188](https://github.com/solution/influxerp/pull/25188)) +- Redesign fixes ([#24896](https://github.com/solution/influxerp/pull/24896)) +- TDS check getting checked after reload ([#24972](https://github.com/solution/influxerp/pull/24972)) +- Github Action not failing when tests fail ([#24867](https://github.com/solution/influxerp/pull/24867)) +- Calculate 80g certificate amount on validate for memberships ([#24925](https://github.com/solution/influxerp/pull/24925)) +- Purchase from registered composition dealer ([#25040](https://github.com/solution/influxerp/pull/25040)) +- Reduce number of queries for checking if future SL entry exists ([#24881](https://github.com/solution/influxerp/pull/24881)) +- Remove unwanted parameter in calculate_rate_and_amount ([#24883](https://github.com/solution/influxerp/pull/24883)) +- Membership renewal validation ([#24963](https://github.com/solution/influxerp/pull/24963)) +- Not able to save material request ([#25112](https://github.com/solution/influxerp/pull/25112)) +- POS print receipt ([#25330](https://github.com/solution/influxerp/pull/25330)) +- Supplier was not able to Submit RFQ due to insufficient permission ([#24622](https://github.com/solution/influxerp/pull/24622)) +- Unequal debit and credit issue on RCM Invoice ([#24836](https://github.com/solution/influxerp/pull/24836)) +- Picked Qty conversion from Stock Qty to Qty while creating DN from Pick List ([#25105](https://github.com/solution/influxerp/pull/25105)) +- Salary Structure object has no attribute set_totals ([#25113](https://github.com/solution/influxerp/pull/25113)) +- Incorrect Nil Exempt and Non GST amount in GSTR3B report ([#24916](https://github.com/solution/influxerp/pull/24916)) +- Add method for regional round off account back ([#24893](https://github.com/solution/influxerp/pull/24893)) +- Employee profile pic upload access for erpnext user ([#25022](https://github.com/solution/influxerp/pull/25022)) +- Make filters for payroll entry ([#25386](https://github.com/solution/influxerp/pull/25386)) +- Fix dynamically changing grid properties ([#25310](https://github.com/solution/influxerp/pull/25310)) +- Consider paid repayment entries in subsequent loan repayments ([#25271](https://github.com/solution/influxerp/pull/25271)) +- Allow duplicate additional salaries ([#24842](https://github.com/solution/influxerp/pull/24842)) +- Object referencing the same address issue ([#25159](https://github.com/solution/influxerp/pull/25159)) +- Validating party currency with doc currency ([#24318](https://github.com/solution/influxerp/pull/24318)) +- Non Profit fixes ([#25060](https://github.com/solution/influxerp/pull/25060)) +- Additional Salary component amount not getting set ([#25356](https://github.com/solution/influxerp/pull/25356)) +- Allow user to update exchange rate in Multi-currency LCV ([#24912](https://github.com/solution/influxerp/pull/24912)) +- Allow creating stock entry based on work order for customer provided items ([#24885](https://github.com/solution/influxerp/pull/24885)) +- Create property setters for shorter naming series on setup ([#25128](https://github.com/solution/influxerp/pull/25128)) +- Add GST category field in Delivery Note ([#25053](https://github.com/solution/influxerp/pull/25053)) +- Ignore Permission for Leave Ledger Entry ([#25172](https://github.com/solution/influxerp/pull/25172)) +- Pending shortfall update on processing loan security shortfall ([#24971](https://github.com/solution/influxerp/pull/24971)) +- Added flag for dont_fetch_price_list_rate in transaction ([#25041](https://github.com/solution/influxerp/pull/25041)) +- Exchange Rate not getting set in Salary Slip ([#25004](https://github.com/solution/influxerp/pull/25004)) +- Repost not completed backdated transactions ([#24980](https://github.com/solution/influxerp/pull/24980)) +- frappe.whitelist for doc methods ([#25230](https://github.com/solution/influxerp/pull/25230)) +- Opportunity-quotation mapping order status ([#25001](https://github.com/solution/influxerp/pull/25001)) +- GST on freight charge in e-invoicing ([#25000](https://github.com/solution/influxerp/pull/25000)) +- Role to override maintain same rate check in transactions ([#25193](https://github.com/solution/influxerp/pull/25193)) +- Added blank option for status in report related to issue ([#25082](https://github.com/solution/influxerp/pull/25082)) +- Cashier query in POS Opening/Closing Entry ([#25399](https://github.com/solution/influxerp/pull/25399)) +- Lead Source's module ([#24583](https://github.com/solution/influxerp/pull/24583)) +- Hide alt tag if item is not shown in website ([#24937](https://github.com/solution/influxerp/pull/24937)) +- Ignore Customer Group Perm on All Products page ([#25397](https://github.com/solution/influxerp/pull/25397)) +- Give first preference to loan security on repayment ([#25212](https://github.com/solution/influxerp/pull/25212)) +- Add shortfall ratio in Loan Security Shortfall ([#25138](https://github.com/solution/influxerp/pull/25138)) +- Condition for SLA status banner ([#25261](https://github.com/solution/influxerp/pull/25261)) +- Component amount calculation based on formula with abbr not working ([#25117](https://github.com/solution/influxerp/pull/25117)) +- Remove gst name validation for purchase Invoice ([#25235](https://github.com/solution/influxerp/pull/25235)) +- Do not fetch stopped MR in production plan ([#25063](https://github.com/solution/influxerp/pull/25063)) +- Backport missing commits to develop branch ([#25305](https://github.com/solution/influxerp/pull/25305)) +- UOM length unit in global setup list is empty ([#24855](https://github.com/solution/influxerp/pull/24855)) +- Round total quantity in job card ([#25240](https://github.com/solution/influxerp/pull/25240)) +- Default total_estimated_cost to zero ([#24939](https://github.com/solution/influxerp/pull/24939)) +- Serial no refresh issue ([#25127](https://github.com/solution/influxerp/pull/25127)) +- Correct calculation for discount amount when margin is set ([#25179](https://github.com/solution/influxerp/pull/25179)) +- Get correct holiday list when calculating dates; test fixes ([#24901](https://github.com/solution/influxerp/pull/24901)) +- POS print receipt ([#24924](https://github.com/solution/influxerp/pull/24924)) +- Condition for setting agreement status ([#25255](https://github.com/solution/influxerp/pull/25255)) +- Loan Repayment entry cancellation on salary slip cancel ([#24879](https://github.com/solution/influxerp/pull/24879)) +- Add company validation for e-invoicing ([#25349](https://github.com/solution/influxerp/pull/25349)) +- Query values incorrectly escaped while back updating Quality Inspection ([#25118](https://github.com/solution/influxerp/pull/25118)) +- Update Bin via Update Item on Purchase/Sales Order ([#23509](https://github.com/solution/influxerp/pull/23509)) +- Declare data before assigning ([#25287](https://github.com/solution/influxerp/pull/25287)) +- Do not set standard link in Sales Invoice as custom ([#25096](https://github.com/solution/influxerp/pull/25096)) +- Hide serial and batch selector in Stock Entry ([#25107](https://github.com/solution/influxerp/pull/25107)) +- Taxable value including Freight and Forwarding charges in GSTR-1 Report ([#25290](https://github.com/solution/influxerp/pull/25290)) +- Remove nonexistent method from pick list ([#25279](https://github.com/solution/influxerp/pull/25279)) +- Allow zero valuation in stock reconciliation ([#24888](https://github.com/solution/influxerp/pull/24888)) +- Place of supply of e-invoicing ([#25148](https://github.com/solution/influxerp/pull/25148)) +- Delivery note print error ([#25080](https://github.com/solution/influxerp/pull/25080)) +- Fix Payment references from disappearing on adding Cost Center in Payment Entry ([#24831](https://github.com/solution/influxerp/pull/24831)) +- Company field in Warehouse ([#25196](https://github.com/solution/influxerp/pull/25196)) +- Available employee for selection ([#25378](https://github.com/solution/influxerp/pull/25378)) +- Cannot set qty to less than zero ([#25258](https://github.com/solution/influxerp/pull/25258)) +- Don't delete mode of payment account details while deleting comp… ([#25217](https://github.com/solution/influxerp/pull/25217)) +- Exclude current doc while validation. ([#24914](https://github.com/solution/influxerp/pull/24914)) +- POS Opening Entry with empty balance detail rows ([#24876](https://github.com/solution/influxerp/pull/24876)) +- Unable to submit stock entry ([#25033](https://github.com/solution/influxerp/pull/25033)) +- BOM cost test case ([#25242](https://github.com/solution/influxerp/pull/25242)) +- Filter for employees in salary slip ([#25361](https://github.com/solution/influxerp/pull/25361)) +- Added correct path in hooks ([#24862](https://github.com/solution/influxerp/pull/24862)) +- Patch regional fields for old companies ([#24988](https://github.com/solution/influxerp/pull/24988)) +- consolidated sales invoice posting date ([#25119](https://github.com/solution/influxerp/pull/25119)) +- Don't set "Company:company:default_currency" as default for currency link fields ([#25095](https://github.com/solution/influxerp/pull/25095)) +- Healthcare lab module rename fields ([#25276](https://github.com/solution/influxerp/pull/25276)) +- Error message compensatory leave request ([#25206](https://github.com/solution/influxerp/pull/25206)) +- Adding company link to e invoice settings patch condition ([#25301](https://github.com/solution/influxerp/pull/25301)) +- Membership and Donation API fixes ([#24900](https://github.com/solution/influxerp/pull/24900)) +- Set correct ack no. on irn generation ([#25251](https://github.com/solution/influxerp/pull/25251)) +- Report Issue Summary fix for zero issues ([#24934](https://github.com/solution/influxerp/pull/24934)) +- Validation msg for TransDocNo e-invoicing ([#25121](https://github.com/solution/influxerp/pull/25121)) +- Correct state code for 'Other Territory' ([#24993](https://github.com/solution/influxerp/pull/24993)) +- Commit individual SLE rename for large datasets (develop) ([#25084](https://github.com/solution/influxerp/pull/25084)) +- Remove shipping address GSTIN validation for e-invoice ([#25153](https://github.com/solution/influxerp/pull/25153)) +- Period list for exponential smoothing forecasting report ([#24982](https://github.com/solution/influxerp/pull/24982)) +- Customer creation from shopping cart ([#25136](https://github.com/solution/influxerp/pull/25136)) +- Simplified logic for additional salary ([#24824](https://github.com/solution/influxerp/pull/24824)) +- Item wise tax rate for consolidated POS invoice ([#25029](https://github.com/solution/influxerp/pull/25029)) +- Column width in Recruitment analytics report ([#25003](https://github.com/solution/influxerp/pull/25003)) +- Filter Bank Account drop-down list in Bank Reconciliation Tool ([#24873](https://github.com/solution/influxerp/pull/24873)) +- Payroll issues ([#24540](https://github.com/solution/influxerp/pull/24540)) +- PO not created against all selected suppliers (drop shipping) ([#24863](https://github.com/solution/influxerp/pull/24863)) +- Can't multiply sequence by non-int of type 'float' ([#25092](https://github.com/solution/influxerp/pull/25092)) +- Make Discharge Schedule Date as Datetime ([#24940](https://github.com/solution/influxerp/pull/24940)) +- Serial no trim issue ([#24949](https://github.com/solution/influxerp/pull/24949)) diff --git a/erpnext/change_log/v13/v13_2_0.md b/erpnext/change_log/v13/v13_2_0.md index eb9499d..2758742 100644 --- a/erpnext/change_log/v13/v13_2_0.md +++ b/erpnext/change_log/v13/v13_2_0.md @@ -2,55 +2,55 @@ ### Features & Enhancements -- Employee Hours Utilization Report ([#25209](https://github.com/frappe/erpnext/pull/25209)) -- Delayed Tasks Summary Report ([#25024](https://github.com/frappe/erpnext/pull/25024)) -- Project Profitability Report ([#24944](https://github.com/frappe/erpnext/pull/24944)) -- Timer in LMS Quiz ([#24246](https://github.com/frappe/erpnext/pull/24246)) -- Role to allow over billing, delivery, receipt ([#24854](https://github.com/frappe/erpnext/pull/24854)) -- Auto calculate distance for e-way bill generations ([#25480](https://github.com/frappe/erpnext/pull/25480)) -- Add total available stock field in PO ([#24878](https://github.com/frappe/erpnext/pull/24878)) -- Refactored Setup Taxes and Charges ([#24805](https://github.com/frappe/erpnext/pull/24805)) -- Inpatient Occupancy Table Editable for Healthcare Admin ([#24989](https://github.com/frappe/erpnext/pull/24989)) -- Added Disable Rounded Total in sales transactions ([#25362](https://github.com/frappe/erpnext/pull/25362)) +- Employee Hours Utilization Report ([#25209](https://github.com/solution/influxerp/pull/25209)) +- Delayed Tasks Summary Report ([#25024](https://github.com/solution/influxerp/pull/25024)) +- Project Profitability Report ([#24944](https://github.com/solution/influxerp/pull/24944)) +- Timer in LMS Quiz ([#24246](https://github.com/solution/influxerp/pull/24246)) +- Role to allow over billing, delivery, receipt ([#24854](https://github.com/solution/influxerp/pull/24854)) +- Auto calculate distance for e-way bill generations ([#25480](https://github.com/solution/influxerp/pull/25480)) +- Add total available stock field in PO ([#24878](https://github.com/solution/influxerp/pull/24878)) +- Refactored Setup Taxes and Charges ([#24805](https://github.com/solution/influxerp/pull/24805)) +- Inpatient Occupancy Table Editable for Healthcare Admin ([#24989](https://github.com/solution/influxerp/pull/24989)) +- Added Disable Rounded Total in sales transactions ([#25362](https://github.com/solution/influxerp/pull/25362)) ### Fixes -- Incorrect GL Entry validation ([#25474](https://github.com/frappe/erpnext/pull/25474)) -- Cannot create item variants ([#25433](https://github.com/frappe/erpnext/pull/25433)) -- Leave policy in leave allocation ([#25334](https://github.com/frappe/erpnext/pull/25334)) -- Let Administrator delete company transactions ([#25300](https://github.com/frappe/erpnext/pull/25300)) -- Display reconcile tool when closing balance 0 ([#25417](https://github.com/frappe/erpnext/pull/25417)) -- Bulk Salary Structure Assignment ([#25389](https://github.com/frappe/erpnext/pull/25389)) -- Payment amount showing in foreign currency ([#25518](https://github.com/frappe/erpnext/pull/25518)) -- Commit changes to shipment status in database ([#25374](https://github.com/frappe/erpnext/pull/25374)) -- Add amend perm for loan and system manager for loan doctypes ([#25393](https://github.com/frappe/erpnext/pull/25393)) -- Cashier query in POS Opening/Closing Entry ([#25398](https://github.com/frappe/erpnext/pull/25398)) -- Apply single transaction threshold on net_total instead of supplier credit amount ([#25243](https://github.com/frappe/erpnext/pull/25243)) -- Update allocated amount after paid amount is changed in PE ([#25528](https://github.com/frappe/erpnext/pull/25528)) -- Remove non-standard module cards from Home Workspace ([#25391](https://github.com/frappe/erpnext/pull/25391)) -- Cannot scan spacebar character in pos ([#25479](https://github.com/frappe/erpnext/pull/25479)) -- Permission error after submitting exchange rate revaluation ([#25432](https://github.com/frappe/erpnext/pull/25432)) -- Equality check instead of assignment in cart ([#25372](https://github.com/frappe/erpnext/pull/25372)) -- Disable auto naming of customer during import ([#25152](https://github.com/frappe/erpnext/pull/25152)) -- Additional Salary component amount not getting set ([#25355](https://github.com/frappe/erpnext/pull/25355)) -- Round off values near to zero ([#25304](https://github.com/frappe/erpnext/pull/25304)) -- Allow to cancel loan with cancelled repayment entry ([#25508](https://github.com/frappe/erpnext/pull/25508)) -- Currency symbol in bank transaction list view ([#25336](https://github.com/frappe/erpnext/pull/25336)) -- Incorrect batch picked in subcontracted purchase receipt ([#25186](https://github.com/frappe/erpnext/pull/25186)) -- Issue in project custom status ([#25452](https://github.com/frappe/erpnext/pull/25452)) -- Shipment pickup_to, pickup_from functionality. ([#25359](https://github.com/frappe/erpnext/pull/25359)) -- Stock ledger entry created against draft stock entry ([#25539](https://github.com/frappe/erpnext/pull/25539)) -- Ageing errors in PSOA ([#25529](https://github.com/frappe/erpnext/pull/25529)) -- Permission error while adding weekly holidays ([#25450](https://github.com/frappe/erpnext/pull/25450)) -- Filter for employees in salary slip ([#25360](https://github.com/frappe/erpnext/pull/25360)) -- Backward compatibility for GSTR-1 report ([#25444](https://github.com/frappe/erpnext/pull/25444)) -- Incorrect incoming rate for the sales return ([#25145](https://github.com/frappe/erpnext/pull/25145)) -- POS print receipt ([#25328](https://github.com/frappe/erpnext/pull/25328)) -- Laboratory Module patch ([#25431](https://github.com/frappe/erpnext/pull/25431)) -- Performance: fetching exchange rate on every line item slows down PO ([#25345](https://github.com/frappe/erpnext/pull/25345)) -- Presentation currency in statement of accounts ([#25367](https://github.com/frappe/erpnext/pull/25367)) -- Serial No not updated correctly via Inter Company Stock Transfer ([#25006](https://github.com/frappe/erpnext/pull/25006)) -- Ignore Customer Group Perm on All Products page ([#25396](https://github.com/frappe/erpnext/pull/25396)) -- Change subcontracted item display ([#25425](https://github.com/frappe/erpnext/pull/25425)) -- Add company validation for e-invoicing ([#25348](https://github.com/frappe/erpnext/pull/25348)) +- Incorrect GL Entry validation ([#25474](https://github.com/solution/influxerp/pull/25474)) +- Cannot create item variants ([#25433](https://github.com/solution/influxerp/pull/25433)) +- Leave policy in leave allocation ([#25334](https://github.com/solution/influxerp/pull/25334)) +- Let Administrator delete company transactions ([#25300](https://github.com/solution/influxerp/pull/25300)) +- Display reconcile tool when closing balance 0 ([#25417](https://github.com/solution/influxerp/pull/25417)) +- Bulk Salary Structure Assignment ([#25389](https://github.com/solution/influxerp/pull/25389)) +- Payment amount showing in foreign currency ([#25518](https://github.com/solution/influxerp/pull/25518)) +- Commit changes to shipment status in database ([#25374](https://github.com/solution/influxerp/pull/25374)) +- Add amend perm for loan and system manager for loan doctypes ([#25393](https://github.com/solution/influxerp/pull/25393)) +- Cashier query in POS Opening/Closing Entry ([#25398](https://github.com/solution/influxerp/pull/25398)) +- Apply single transaction threshold on net_total instead of supplier credit amount ([#25243](https://github.com/solution/influxerp/pull/25243)) +- Update allocated amount after paid amount is changed in PE ([#25528](https://github.com/solution/influxerp/pull/25528)) +- Remove non-standard module cards from Home Workspace ([#25391](https://github.com/solution/influxerp/pull/25391)) +- Cannot scan spacebar character in pos ([#25479](https://github.com/solution/influxerp/pull/25479)) +- Permission error after submitting exchange rate revaluation ([#25432](https://github.com/solution/influxerp/pull/25432)) +- Equality check instead of assignment in cart ([#25372](https://github.com/solution/influxerp/pull/25372)) +- Disable auto naming of customer during import ([#25152](https://github.com/solution/influxerp/pull/25152)) +- Additional Salary component amount not getting set ([#25355](https://github.com/solution/influxerp/pull/25355)) +- Round off values near to zero ([#25304](https://github.com/solution/influxerp/pull/25304)) +- Allow to cancel loan with cancelled repayment entry ([#25508](https://github.com/solution/influxerp/pull/25508)) +- Currency symbol in bank transaction list view ([#25336](https://github.com/solution/influxerp/pull/25336)) +- Incorrect batch picked in subcontracted purchase receipt ([#25186](https://github.com/solution/influxerp/pull/25186)) +- Issue in project custom status ([#25452](https://github.com/solution/influxerp/pull/25452)) +- Shipment pickup_to, pickup_from functionality. ([#25359](https://github.com/solution/influxerp/pull/25359)) +- Stock ledger entry created against draft stock entry ([#25539](https://github.com/solution/influxerp/pull/25539)) +- Ageing errors in PSOA ([#25529](https://github.com/solution/influxerp/pull/25529)) +- Permission error while adding weekly holidays ([#25450](https://github.com/solution/influxerp/pull/25450)) +- Filter for employees in salary slip ([#25360](https://github.com/solution/influxerp/pull/25360)) +- Backward compatibility for GSTR-1 report ([#25444](https://github.com/solution/influxerp/pull/25444)) +- Incorrect incoming rate for the sales return ([#25145](https://github.com/solution/influxerp/pull/25145)) +- POS print receipt ([#25328](https://github.com/solution/influxerp/pull/25328)) +- Laboratory Module patch ([#25431](https://github.com/solution/influxerp/pull/25431)) +- Performance: fetching exchange rate on every line item slows down PO ([#25345](https://github.com/solution/influxerp/pull/25345)) +- Presentation currency in statement of accounts ([#25367](https://github.com/solution/influxerp/pull/25367)) +- Serial No not updated correctly via Inter Company Stock Transfer ([#25006](https://github.com/solution/influxerp/pull/25006)) +- Ignore Customer Group Perm on All Products page ([#25396](https://github.com/solution/influxerp/pull/25396)) +- Change subcontracted item display ([#25425](https://github.com/solution/influxerp/pull/25425)) +- Add company validation for e-invoicing ([#25348](https://github.com/solution/influxerp/pull/25348)) diff --git a/erpnext/change_log/v13/v13_3_0.md b/erpnext/change_log/v13/v13_3_0.md index 016dbb0..b4ad6df 100644 --- a/erpnext/change_log/v13/v13_3_0.md +++ b/erpnext/change_log/v13/v13_3_0.md @@ -2,72 +2,72 @@ ### Features & Enhancements -- Purchase receipt creation from purchase invoice ([#25126](https://github.com/frappe/erpnext/pull/25126)) -- New Document Transaction Deletion ([#25354](https://github.com/frappe/erpnext/pull/25354)) -- Employee Referral ([#24997](https://github.com/frappe/erpnext/pull/24997)) -- Add Create Expense Claim button in Delivery Trip ([#25526](https://github.com/frappe/erpnext/pull/25526)) -- Reduced rate of asset depreciation as per IT Act ([#25648](https://github.com/frappe/erpnext/pull/25648)) -- Improve DATEV export ([#25238](https://github.com/frappe/erpnext/pull/25238)) -- Add pick batch button ([#25413](https://github.com/frappe/erpnext/pull/25413)) -- Enable custom field search on POS ([#25421](https://github.com/frappe/erpnext/pull/25421)) -- New check field in subscriptions for (not) submitting invoices ([#25394](https://github.com/frappe/erpnext/pull/25394)) -- Show POS reserved stock in stock projected qty report ([#25593](https://github.com/frappe/erpnext/pull/25593)) -- e-way bill validity field ([#25555](https://github.com/frappe/erpnext/pull/25555)) -- Significant reduction in time taken to save sales documents ([#25475](https://github.com/frappe/erpnext/pull/25475)) +- Purchase receipt creation from purchase invoice ([#25126](https://github.com/solution/influxerp/pull/25126)) +- New Document Transaction Deletion ([#25354](https://github.com/solution/influxerp/pull/25354)) +- Employee Referral ([#24997](https://github.com/solution/influxerp/pull/24997)) +- Add Create Expense Claim button in Delivery Trip ([#25526](https://github.com/solution/influxerp/pull/25526)) +- Reduced rate of asset depreciation as per IT Act ([#25648](https://github.com/solution/influxerp/pull/25648)) +- Improve DATEV export ([#25238](https://github.com/solution/influxerp/pull/25238)) +- Add pick batch button ([#25413](https://github.com/solution/influxerp/pull/25413)) +- Enable custom field search on POS ([#25421](https://github.com/solution/influxerp/pull/25421)) +- New check field in subscriptions for (not) submitting invoices ([#25394](https://github.com/solution/influxerp/pull/25394)) +- Show POS reserved stock in stock projected qty report ([#25593](https://github.com/solution/influxerp/pull/25593)) +- e-way bill validity field ([#25555](https://github.com/solution/influxerp/pull/25555)) +- Significant reduction in time taken to save sales documents ([#25475](https://github.com/solution/influxerp/pull/25475)) ### Fixes -- Bank statement import via google sheet ([#25677](https://github.com/frappe/erpnext/pull/25677)) -- Invoices not getting fetched during payment reconciliation ([#25598](https://github.com/frappe/erpnext/pull/25598)) -- Error on applying TDS without party ([#25632](https://github.com/frappe/erpnext/pull/25632)) -- Allow to cancel loan with cancelled repayment entry ([#25507](https://github.com/frappe/erpnext/pull/25507)) -- Can't open general ledger from consolidated financial report ([#25542](https://github.com/frappe/erpnext/pull/25542)) -- Add 'Partially Received' to Status drop-down list in Material Request ([#24857](https://github.com/frappe/erpnext/pull/24857)) -- Updated item filters for material request ([#25531](https://github.com/frappe/erpnext/pull/25531)) -- Added validation in stock entry to check duplicate serial nos ([#25611](https://github.com/frappe/erpnext/pull/25611)) -- Update shopify api version ([#25600](https://github.com/frappe/erpnext/pull/25600)) -- Dialog variable assignment after definition in POS ([#25680](https://github.com/frappe/erpnext/pull/25680)) -- Added tax_types list ([#25587](https://github.com/frappe/erpnext/pull/25587)) -- Include search fields in Project Link field query ([#25505](https://github.com/frappe/erpnext/pull/25505)) -- Item stock levels displaying inconsistently ([#25506](https://github.com/frappe/erpnext/pull/25506)) -- Change today to now to get data for reposting ([#25703](https://github.com/frappe/erpnext/pull/25703)) -- Parameter for get_filtered_list_for_consolidated_report in consolidated balance sheet ([#25700](https://github.com/frappe/erpnext/pull/25700)) -- Minor fixes in loan ([#25546](https://github.com/frappe/erpnext/pull/25546)) -- Fieldname when updating docfield property ([#25516](https://github.com/frappe/erpnext/pull/25516)) -- Use get_serial_nos for splitting ([#25590](https://github.com/frappe/erpnext/pull/25590)) -- Show item's full name on hover over item in POS ([#25554](https://github.com/frappe/erpnext/pull/25554)) -- Stock ledger entry created against draft stock entry ([#25540](https://github.com/frappe/erpnext/pull/25540)) -- Incorrect expense account set in pos invoice ([#25543](https://github.com/frappe/erpnext/pull/25543)) -- Stock balance and batch-wise balance history report showing different closing stock ([#25575](https://github.com/frappe/erpnext/pull/25575)) -- Make strings translatable ([#25521](https://github.com/frappe/erpnext/pull/25521)) -- Serial no changed after saving stock reconciliation ([#25541](https://github.com/frappe/erpnext/pull/25541)) -- Ignore fraction difference while making round off gl entry ([#25438](https://github.com/frappe/erpnext/pull/25438)) -- Sync shopify customer addresses ([#25481](https://github.com/frappe/erpnext/pull/25481)) -- Total stock summary report not working ([#25551](https://github.com/frappe/erpnext/pull/25551)) -- Rename field has not updated value of deposit and withdrawal fields ([#25545](https://github.com/frappe/erpnext/pull/25545)) -- Unexpected keyword argument 'merge_logs' ([#25489](https://github.com/frappe/erpnext/pull/25489)) -- Validation message of quality inspection in purchase receipt ([#25667](https://github.com/frappe/erpnext/pull/25667)) -- Added is_stock_item filter ([#25530](https://github.com/frappe/erpnext/pull/25530)) -- Fetch total stock at company in PO ([#25532](https://github.com/frappe/erpnext/pull/25532)) -- Updated filters for process statement of accounts ([#25384](https://github.com/frappe/erpnext/pull/25384)) -- Incorrect expense account set in pos invoice ([#25571](https://github.com/frappe/erpnext/pull/25571)) -- Client script breaking while settings tax labels ([#25653](https://github.com/frappe/erpnext/pull/25653)) -- Empty payment term column in accounts receivable report ([#25556](https://github.com/frappe/erpnext/pull/25556)) -- Designation insufficient permission on lead doctype. ([#25331](https://github.com/frappe/erpnext/pull/25331)) -- Force https for shopify webhook registration ([#25630](https://github.com/frappe/erpnext/pull/25630)) -- Patch regional fields for old companies ([#25673](https://github.com/frappe/erpnext/pull/25673)) -- Woocommerce order sync issue ([#25692](https://github.com/frappe/erpnext/pull/25692)) -- Allow to receive same serial numbers multiple times ([#25471](https://github.com/frappe/erpnext/pull/25471)) -- Update Allocated amount after Paid Amount is changed in PE ([#25515](https://github.com/frappe/erpnext/pull/25515)) -- Updating Standard Notification's channel field ([#25564](https://github.com/frappe/erpnext/pull/25564)) -- Report summary showing inflated values when values are accumulated in Group Company ([#25577](https://github.com/frappe/erpnext/pull/25577)) -- UI fixes related to overflowing payment section ([#25652](https://github.com/frappe/erpnext/pull/25652)) -- List invoices in Payment Reconciliation Payment ([#25524](https://github.com/frappe/erpnext/pull/25524)) -- Ageing errors in PSOA ([#25490](https://github.com/frappe/erpnext/pull/25490)) -- Prevent spurious defaults for items when making prec from dnote ([#25559](https://github.com/frappe/erpnext/pull/25559)) -- Stock reconciliation getting time out error during submission ([#25557](https://github.com/frappe/erpnext/pull/25557)) -- Timesheet filter date exclusive issue ([#25626](https://github.com/frappe/erpnext/pull/25626)) -- Update cost center in the item table fetched from POS Profile ([#25609](https://github.com/frappe/erpnext/pull/25609)) -- Updated modified time in purchase invoice to pull new fields ([#25678](https://github.com/frappe/erpnext/pull/25678)) -- Stock and Accounts Settings form refactor ([#25534](https://github.com/frappe/erpnext/pull/25534)) -- Payment amount showing in foreign currency ([#25292](https://github.com/frappe/erpnext/pull/25292)) \ No newline at end of file +- Bank statement import via google sheet ([#25677](https://github.com/solution/influxerp/pull/25677)) +- Invoices not getting fetched during payment reconciliation ([#25598](https://github.com/solution/influxerp/pull/25598)) +- Error on applying TDS without party ([#25632](https://github.com/solution/influxerp/pull/25632)) +- Allow to cancel loan with cancelled repayment entry ([#25507](https://github.com/solution/influxerp/pull/25507)) +- Can't open general ledger from consolidated financial report ([#25542](https://github.com/solution/influxerp/pull/25542)) +- Add 'Partially Received' to Status drop-down list in Material Request ([#24857](https://github.com/solution/influxerp/pull/24857)) +- Updated item filters for material request ([#25531](https://github.com/solution/influxerp/pull/25531)) +- Added validation in stock entry to check duplicate serial nos ([#25611](https://github.com/solution/influxerp/pull/25611)) +- Update shopify api version ([#25600](https://github.com/solution/influxerp/pull/25600)) +- Dialog variable assignment after definition in POS ([#25680](https://github.com/solution/influxerp/pull/25680)) +- Added tax_types list ([#25587](https://github.com/solution/influxerp/pull/25587)) +- Include search fields in Project Link field query ([#25505](https://github.com/solution/influxerp/pull/25505)) +- Item stock levels displaying inconsistently ([#25506](https://github.com/solution/influxerp/pull/25506)) +- Change today to now to get data for reposting ([#25703](https://github.com/solution/influxerp/pull/25703)) +- Parameter for get_filtered_list_for_consolidated_report in consolidated balance sheet ([#25700](https://github.com/solution/influxerp/pull/25700)) +- Minor fixes in loan ([#25546](https://github.com/solution/influxerp/pull/25546)) +- Fieldname when updating docfield property ([#25516](https://github.com/solution/influxerp/pull/25516)) +- Use get_serial_nos for splitting ([#25590](https://github.com/solution/influxerp/pull/25590)) +- Show item's full name on hover over item in POS ([#25554](https://github.com/solution/influxerp/pull/25554)) +- Stock ledger entry created against draft stock entry ([#25540](https://github.com/solution/influxerp/pull/25540)) +- Incorrect expense account set in pos invoice ([#25543](https://github.com/solution/influxerp/pull/25543)) +- Stock balance and batch-wise balance history report showing different closing stock ([#25575](https://github.com/solution/influxerp/pull/25575)) +- Make strings translatable ([#25521](https://github.com/solution/influxerp/pull/25521)) +- Serial no changed after saving stock reconciliation ([#25541](https://github.com/solution/influxerp/pull/25541)) +- Ignore fraction difference while making round off gl entry ([#25438](https://github.com/solution/influxerp/pull/25438)) +- Sync shopify customer addresses ([#25481](https://github.com/solution/influxerp/pull/25481)) +- Total stock summary report not working ([#25551](https://github.com/solution/influxerp/pull/25551)) +- Rename field has not updated value of deposit and withdrawal fields ([#25545](https://github.com/solution/influxerp/pull/25545)) +- Unexpected keyword argument 'merge_logs' ([#25489](https://github.com/solution/influxerp/pull/25489)) +- Validation message of quality inspection in purchase receipt ([#25667](https://github.com/solution/influxerp/pull/25667)) +- Added is_stock_item filter ([#25530](https://github.com/solution/influxerp/pull/25530)) +- Fetch total stock at company in PO ([#25532](https://github.com/solution/influxerp/pull/25532)) +- Updated filters for process statement of accounts ([#25384](https://github.com/solution/influxerp/pull/25384)) +- Incorrect expense account set in pos invoice ([#25571](https://github.com/solution/influxerp/pull/25571)) +- Client script breaking while settings tax labels ([#25653](https://github.com/solution/influxerp/pull/25653)) +- Empty payment term column in accounts receivable report ([#25556](https://github.com/solution/influxerp/pull/25556)) +- Designation insufficient permission on lead doctype. ([#25331](https://github.com/solution/influxerp/pull/25331)) +- Force https for shopify webhook registration ([#25630](https://github.com/solution/influxerp/pull/25630)) +- Patch regional fields for old companies ([#25673](https://github.com/solution/influxerp/pull/25673)) +- Woocommerce order sync issue ([#25692](https://github.com/solution/influxerp/pull/25692)) +- Allow to receive same serial numbers multiple times ([#25471](https://github.com/solution/influxerp/pull/25471)) +- Update Allocated amount after Paid Amount is changed in PE ([#25515](https://github.com/solution/influxerp/pull/25515)) +- Updating Standard Notification's channel field ([#25564](https://github.com/solution/influxerp/pull/25564)) +- Report summary showing inflated values when values are accumulated in Group Company ([#25577](https://github.com/solution/influxerp/pull/25577)) +- UI fixes related to overflowing payment section ([#25652](https://github.com/solution/influxerp/pull/25652)) +- List invoices in Payment Reconciliation Payment ([#25524](https://github.com/solution/influxerp/pull/25524)) +- Ageing errors in PSOA ([#25490](https://github.com/solution/influxerp/pull/25490)) +- Prevent spurious defaults for items when making prec from dnote ([#25559](https://github.com/solution/influxerp/pull/25559)) +- Stock reconciliation getting time out error during submission ([#25557](https://github.com/solution/influxerp/pull/25557)) +- Timesheet filter date exclusive issue ([#25626](https://github.com/solution/influxerp/pull/25626)) +- Update cost center in the item table fetched from POS Profile ([#25609](https://github.com/solution/influxerp/pull/25609)) +- Updated modified time in purchase invoice to pull new fields ([#25678](https://github.com/solution/influxerp/pull/25678)) +- Stock and Accounts Settings form refactor ([#25534](https://github.com/solution/influxerp/pull/25534)) +- Payment amount showing in foreign currency ([#25292](https://github.com/solution/influxerp/pull/25292)) diff --git a/erpnext/change_log/v13/v13_4_0.md b/erpnext/change_log/v13/v13_4_0.md index eaf4f76..352c378 100644 --- a/erpnext/change_log/v13/v13_4_0.md +++ b/erpnext/change_log/v13/v13_4_0.md @@ -2,53 +2,53 @@ ### Features & Enhancements -- Multiple GST enhancement and fixes ([#25249](https://github.com/frappe/erpnext/pull/25249)) -- Linking supplier with an item group for filtering items ([#25683](https://github.com/frappe/erpnext/pull/25683)) -- Leave Policy Assignment Refactor ([#24327](https://github.com/frappe/erpnext/pull/24327)) -- Dimension-wise Accounts Balance Report ([#25260](https://github.com/frappe/erpnext/pull/25260)) -- Show net values in Party Accounts ([#25714](https://github.com/frappe/erpnext/pull/25714)) -- Add pending qty section to batch/serial selector dialog ([#25519](https://github.com/frappe/erpnext/pull/25519)) -- enhancements in Training Event ([#25782](https://github.com/frappe/erpnext/pull/25782)) -- Refactored timesheet ([#25701](https://github.com/frappe/erpnext/pull/25701)) +- Multiple GST enhancement and fixes ([#25249](https://github.com/solution/influxerp/pull/25249)) +- Linking supplier with an item group for filtering items ([#25683](https://github.com/solution/influxerp/pull/25683)) +- Leave Policy Assignment Refactor ([#24327](https://github.com/solution/influxerp/pull/24327)) +- Dimension-wise Accounts Balance Report ([#25260](https://github.com/solution/influxerp/pull/25260)) +- Show net values in Party Accounts ([#25714](https://github.com/solution/influxerp/pull/25714)) +- Add pending qty section to batch/serial selector dialog ([#25519](https://github.com/solution/influxerp/pull/25519)) +- enhancements in Training Event ([#25782](https://github.com/solution/influxerp/pull/25782)) +- Refactored timesheet ([#25701](https://github.com/solution/influxerp/pull/25701)) ### Fixes -- Process Statement of Accounts formatting ([#25777](https://github.com/frappe/erpnext/pull/25777)) -- Removed serial no validation for sales invoice ([#25817](https://github.com/frappe/erpnext/pull/25817)) -- Fetch email id from dialog box in pos past order summary ([#25808](https://github.com/frappe/erpnext/pull/25808)) -- Don't map set warehouse from delivery note to purchase receipt ([#25672](https://github.com/frappe/erpnext/pull/25672)) -- Apply permission while selecting projects ([#25765](https://github.com/frappe/erpnext/pull/25765)) -- Error on adding bank account to plaid ([#25658](https://github.com/frappe/erpnext/pull/25658)) -- Set disable rounded total if it is globally enabled ([#25789](https://github.com/frappe/erpnext/pull/25789)) -- Wrong amount on CR side in general ledger report for customer when different account currencies are involved ([#25654](https://github.com/frappe/erpnext/pull/25654)) -- Stock move dialog duplicate submit actions (V13) ([#25486](https://github.com/frappe/erpnext/pull/25486)) -- Cashflow mapper not showing data ([#25815](https://github.com/frappe/erpnext/pull/25815)) -- Ignore rounding diff while importing JV using data import ([#25816](https://github.com/frappe/erpnext/pull/25816)) -- Woocommerce order sync issue ([#25688](https://github.com/frappe/erpnext/pull/25688)) -- Expected amount in pos closing payments table ([#25737](https://github.com/frappe/erpnext/pull/25737)) -- Show only company addresses for ITC reversal entry ([#25867](https://github.com/frappe/erpnext/pull/25867)) -- Timeout error while loading warehouse tree ([#25694](https://github.com/frappe/erpnext/pull/25694)) -- Plaid Withdrawals and Deposits are recorded incorrectly ([#25784](https://github.com/frappe/erpnext/pull/25784)) -- Return case for item with available qty equal to one ([#25760](https://github.com/frappe/erpnext/pull/25760)) -- The status of repost item valuation showing In Progress since long time ([#25754](https://github.com/frappe/erpnext/pull/25754)) -- Updated applicable charges form in landed cost voucher ([#25732](https://github.com/frappe/erpnext/pull/25732)) -- Rearrange buttons for Company DocType ([#25617](https://github.com/frappe/erpnext/pull/25617)) -- Show uom for item in selector dialog ([#25697](https://github.com/frappe/erpnext/pull/25697)) -- Warehouse not found in stock entry ([#25776](https://github.com/frappe/erpnext/pull/25776)) -- Use dictionary filter instead of list (bp #25874 pre-release) ([#25875](https://github.com/frappe/erpnext/pull/25875)) -- Send emails on rfq submit ([#25695](https://github.com/frappe/erpnext/pull/25695)) -- Cannot bypass e-invoicing for non gst item invoices ([#25759](https://github.com/frappe/erpnext/pull/25759)) -- Validation message of quality inspection in purchase receipt ([#25666](https://github.com/frappe/erpnext/pull/25666)) -- Dialog variable assignment after definition in POS ([#25681](https://github.com/frappe/erpnext/pull/25681)) -- Wrong quantity after transaction for parallel stock transactions ([#25779](https://github.com/frappe/erpnext/pull/25779)) -- Item Variant Details Report ([#25797](https://github.com/frappe/erpnext/pull/25797)) -- Duplicate stock entry on multiple click ([#25742](https://github.com/frappe/erpnext/pull/25742)) -- Bank statement import via google sheet ([#25676](https://github.com/frappe/erpnext/pull/25676)) -- Change today to now to get data for reposting ([#25702](https://github.com/frappe/erpnext/pull/25702)) -- Parameter for get_filtered_list_for_consolidated_report in consolidated balance sheet ([#25698](https://github.com/frappe/erpnext/pull/25698)) -- Ageing error in PSOA ([#25857](https://github.com/frappe/erpnext/pull/25857)) -- Breaking cost center validation ([#25660](https://github.com/frappe/erpnext/pull/25660)) -- Project filter for Kanban Board ([#25744](https://github.com/frappe/erpnext/pull/25744)) -- Show allow zero valuation only when auto checked ([#25778](https://github.com/frappe/erpnext/pull/25778)) -- Missing cost center message on creating gl entries ([#25755](https://github.com/frappe/erpnext/pull/25755)) -- Address template with upper filter throws jinja error ([#25756](https://github.com/frappe/erpnext/pull/25756)) +- Process Statement of Accounts formatting ([#25777](https://github.com/solution/influxerp/pull/25777)) +- Removed serial no validation for sales invoice ([#25817](https://github.com/solution/influxerp/pull/25817)) +- Fetch email id from dialog box in pos past order summary ([#25808](https://github.com/solution/influxerp/pull/25808)) +- Don't map set warehouse from delivery note to purchase receipt ([#25672](https://github.com/solution/influxerp/pull/25672)) +- Apply permission while selecting projects ([#25765](https://github.com/solution/influxerp/pull/25765)) +- Error on adding bank account to plaid ([#25658](https://github.com/solution/influxerp/pull/25658)) +- Set disable rounded total if it is globally enabled ([#25789](https://github.com/solution/influxerp/pull/25789)) +- Wrong amount on CR side in general ledger report for customer when different account currencies are involved ([#25654](https://github.com/solution/influxerp/pull/25654)) +- Stock move dialog duplicate submit actions (V13) ([#25486](https://github.com/solution/influxerp/pull/25486)) +- Cashflow mapper not showing data ([#25815](https://github.com/solution/influxerp/pull/25815)) +- Ignore rounding diff while importing JV using data import ([#25816](https://github.com/solution/influxerp/pull/25816)) +- Woocommerce order sync issue ([#25688](https://github.com/solution/influxerp/pull/25688)) +- Expected amount in pos closing payments table ([#25737](https://github.com/solution/influxerp/pull/25737)) +- Show only company addresses for ITC reversal entry ([#25867](https://github.com/solution/influxerp/pull/25867)) +- Timeout error while loading warehouse tree ([#25694](https://github.com/solution/influxerp/pull/25694)) +- Plaid Withdrawals and Deposits are recorded incorrectly ([#25784](https://github.com/solution/influxerp/pull/25784)) +- Return case for item with available qty equal to one ([#25760](https://github.com/solution/influxerp/pull/25760)) +- The status of repost item valuation showing In Progress since long time ([#25754](https://github.com/solution/influxerp/pull/25754)) +- Updated applicable charges form in landed cost voucher ([#25732](https://github.com/solution/influxerp/pull/25732)) +- Rearrange buttons for Company DocType ([#25617](https://github.com/solution/influxerp/pull/25617)) +- Show uom for item in selector dialog ([#25697](https://github.com/solution/influxerp/pull/25697)) +- Warehouse not found in stock entry ([#25776](https://github.com/solution/influxerp/pull/25776)) +- Use dictionary filter instead of list (bp #25874 pre-release) ([#25875](https://github.com/solution/influxerp/pull/25875)) +- Send emails on rfq submit ([#25695](https://github.com/solution/influxerp/pull/25695)) +- Cannot bypass e-invoicing for non gst item invoices ([#25759](https://github.com/solution/influxerp/pull/25759)) +- Validation message of quality inspection in purchase receipt ([#25666](https://github.com/solution/influxerp/pull/25666)) +- Dialog variable assignment after definition in POS ([#25681](https://github.com/solution/influxerp/pull/25681)) +- Wrong quantity after transaction for parallel stock transactions ([#25779](https://github.com/solution/influxerp/pull/25779)) +- Item Variant Details Report ([#25797](https://github.com/solution/influxerp/pull/25797)) +- Duplicate stock entry on multiple click ([#25742](https://github.com/solution/influxerp/pull/25742)) +- Bank statement import via google sheet ([#25676](https://github.com/solution/influxerp/pull/25676)) +- Change today to now to get data for reposting ([#25702](https://github.com/solution/influxerp/pull/25702)) +- Parameter for get_filtered_list_for_consolidated_report in consolidated balance sheet ([#25698](https://github.com/solution/influxerp/pull/25698)) +- Ageing error in PSOA ([#25857](https://github.com/solution/influxerp/pull/25857)) +- Breaking cost center validation ([#25660](https://github.com/solution/influxerp/pull/25660)) +- Project filter for Kanban Board ([#25744](https://github.com/solution/influxerp/pull/25744)) +- Show allow zero valuation only when auto checked ([#25778](https://github.com/solution/influxerp/pull/25778)) +- Missing cost center message on creating gl entries ([#25755](https://github.com/solution/influxerp/pull/25755)) +- Address template with upper filter throws jinja error ([#25756](https://github.com/solution/influxerp/pull/25756)) diff --git a/erpnext/change_log/v13/v13_5_0.md b/erpnext/change_log/v13/v13_5_0.md index 64c323a..295fc17 100644 --- a/erpnext/change_log/v13/v13_5_0.md +++ b/erpnext/change_log/v13/v13_5_0.md @@ -2,53 +2,53 @@ ### Features & Enhancements -- Tax deduction against advance payments ([#25831](https://github.com/frappe/erpnext/pull/25831)) -- Cost-center wise period closing entry ([#25766](https://github.com/frappe/erpnext/pull/25766)) -- Create Quality Inspections from account and stock documents ([#25221](https://github.com/frappe/erpnext/pull/25221)) -- Item Taxes based on net rate ([#25961](https://github.com/frappe/erpnext/pull/25961)) -- Enable/disable gl entry posting for change given in pos ([#25822](https://github.com/frappe/erpnext/pull/25822)) -- Add Inactive status to Employee ([#26029](https://github.com/frappe/erpnext/pull/26029)) -- Added check box to combine items with same BOM ([#25478](https://github.com/frappe/erpnext/pull/25478)) -- Item Tax Templates for Germany ([#25858](https://github.com/frappe/erpnext/pull/25858)) -- Refactored leave balance report ([#25771](https://github.com/frappe/erpnext/pull/25771)) -- Refactored Vehicle Expenses Report ([#25727](https://github.com/frappe/erpnext/pull/25727)) -- Refactored maintenance schedule and visit document ([#25358](https://github.com/frappe/erpnext/pull/25358)) +- Tax deduction against advance payments ([#25831](https://github.com/solution/influxerp/pull/25831)) +- Cost-center wise period closing entry ([#25766](https://github.com/solution/influxerp/pull/25766)) +- Create Quality Inspections from account and stock documents ([#25221](https://github.com/solution/influxerp/pull/25221)) +- Item Taxes based on net rate ([#25961](https://github.com/solution/influxerp/pull/25961)) +- Enable/disable gl entry posting for change given in pos ([#25822](https://github.com/solution/influxerp/pull/25822)) +- Add Inactive status to Employee ([#26029](https://github.com/solution/influxerp/pull/26029)) +- Added check box to combine items with same BOM ([#25478](https://github.com/solution/influxerp/pull/25478)) +- Item Tax Templates for Germany ([#25858](https://github.com/solution/influxerp/pull/25858)) +- Refactored leave balance report ([#25771](https://github.com/solution/influxerp/pull/25771)) +- Refactored Vehicle Expenses Report ([#25727](https://github.com/solution/influxerp/pull/25727)) +- Refactored maintenance schedule and visit document ([#25358](https://github.com/solution/influxerp/pull/25358)) ### Fixes -- Cannot add same item with different rates ([#25849](https://github.com/frappe/erpnext/pull/25849)) -- Show only company addresses for ITC reversal entry ([#25866](https://github.com/frappe/erpnext/pull/25866)) -- Hiding Rounding Adjustment field ([#25380](https://github.com/frappe/erpnext/pull/25380)) -- Auto tax calculations in Payment Entry ([#26055](https://github.com/frappe/erpnext/pull/26055)) -- Not able to select the item code in work order ([#25915](https://github.com/frappe/erpnext/pull/25915)) -- Cannot reset plaid link for a bank account ([#25869](https://github.com/frappe/erpnext/pull/25869)) -- Student invalid password reset link ([#25826](https://github.com/frappe/erpnext/pull/25826)) -- Multiple pos issues ([#25928](https://github.com/frappe/erpnext/pull/25928)) -- Add Product Bundles to POS ([#25860](https://github.com/frappe/erpnext/pull/25860)) -- Enable Parallel tests ([#25862](https://github.com/frappe/erpnext/pull/25862)) -- Service item check on e-Invoicing ([#25986](https://github.com/frappe/erpnext/pull/25986)) -- Choose correct Salary Structure Assignment when getting data for formula eval ([#25981](https://github.com/frappe/erpnext/pull/25981)) -- Ignore internal transfer invoices from GST Reports ([#25969](https://github.com/frappe/erpnext/pull/25969)) -- Taxable value for invoices with additional discount ([#26056](https://github.com/frappe/erpnext/pull/26056)) -- Validate negative allocated amount in Payment Entry ([#25799](https://github.com/frappe/erpnext/pull/25799)) -- Allow all System Managers to delete company transactions ([#25834](https://github.com/frappe/erpnext/pull/25834)) -- Wrong round off gl entry posted in case of purchase invoice ([#25775](https://github.com/frappe/erpnext/pull/25775)) -- Use dictionary filter instead of list ([#25874](https://github.com/frappe/erpnext/pull/25874)) -- Ageing error in PSOA ([#25855](https://github.com/frappe/erpnext/pull/25855)) -- On click of duplicate button system has not copied the difference account ([#25988](https://github.com/frappe/erpnext/pull/25988)) -- Assign Product Bundle's conversion_factor to Pack… ([#25840](https://github.com/frappe/erpnext/pull/25840)) -- Rename Loan Management workspace to Loans ([#25856](https://github.com/frappe/erpnext/pull/25856)) -- Fix stock quantity calculation when negative_stock_allowe… ([#25859](https://github.com/frappe/erpnext/pull/25859)) -- Update cost center from pos profile ([#25971](https://github.com/frappe/erpnext/pull/25971)) -- Ensure website theme is applied correctly ([#25863](https://github.com/frappe/erpnext/pull/25863)) -- Only display GST card in Accounting Workspace if it's in India ([#26000](https://github.com/frappe/erpnext/pull/26000)) -- Incorrect gstin fetched incase of branch company address ([#25841](https://github.com/frappe/erpnext/pull/25841)) -- Sort account balances by account name ([#26009](https://github.com/frappe/erpnext/pull/26009)) -- Custom conversion factor field not mapped from job card to stock entry ([#25956](https://github.com/frappe/erpnext/pull/25956)) -- Chart of accounts importer always error ([#25882](https://github.com/frappe/erpnext/pull/25882)) -- Create POS Invoice for Product Bundles ([#25847](https://github.com/frappe/erpnext/pull/25847)) -- Wrap dates in getdate for leave application ([#25899](https://github.com/frappe/erpnext/pull/25899)) -- Closing entry shows incorrect expected amount ([#25868](https://github.com/frappe/erpnext/pull/25868)) -- Add Hold status column in the Issue Summary Report ([#25828](https://github.com/frappe/erpnext/pull/25828)) -- Rendering of broken image on pos ([#25872](https://github.com/frappe/erpnext/pull/25872)) -- Timeout error in the repost item valuation ([#25854](https://github.com/frappe/erpnext/pull/25854)) \ No newline at end of file +- Cannot add same item with different rates ([#25849](https://github.com/solution/influxerp/pull/25849)) +- Show only company addresses for ITC reversal entry ([#25866](https://github.com/solution/influxerp/pull/25866)) +- Hiding Rounding Adjustment field ([#25380](https://github.com/solution/influxerp/pull/25380)) +- Auto tax calculations in Payment Entry ([#26055](https://github.com/solution/influxerp/pull/26055)) +- Not able to select the item code in work order ([#25915](https://github.com/solution/influxerp/pull/25915)) +- Cannot reset plaid link for a bank account ([#25869](https://github.com/solution/influxerp/pull/25869)) +- Student invalid password reset link ([#25826](https://github.com/solution/influxerp/pull/25826)) +- Multiple pos issues ([#25928](https://github.com/solution/influxerp/pull/25928)) +- Add Product Bundles to POS ([#25860](https://github.com/solution/influxerp/pull/25860)) +- Enable Parallel tests ([#25862](https://github.com/solution/influxerp/pull/25862)) +- Service item check on e-Invoicing ([#25986](https://github.com/solution/influxerp/pull/25986)) +- Choose correct Salary Structure Assignment when getting data for formula eval ([#25981](https://github.com/solution/influxerp/pull/25981)) +- Ignore internal transfer invoices from GST Reports ([#25969](https://github.com/solution/influxerp/pull/25969)) +- Taxable value for invoices with additional discount ([#26056](https://github.com/solution/influxerp/pull/26056)) +- Validate negative allocated amount in Payment Entry ([#25799](https://github.com/solution/influxerp/pull/25799)) +- Allow all System Managers to delete company transactions ([#25834](https://github.com/solution/influxerp/pull/25834)) +- Wrong round off gl entry posted in case of purchase invoice ([#25775](https://github.com/solution/influxerp/pull/25775)) +- Use dictionary filter instead of list ([#25874](https://github.com/solution/influxerp/pull/25874)) +- Ageing error in PSOA ([#25855](https://github.com/solution/influxerp/pull/25855)) +- On click of duplicate button system has not copied the difference account ([#25988](https://github.com/solution/influxerp/pull/25988)) +- Assign Product Bundle's conversion_factor to Pack… ([#25840](https://github.com/solution/influxerp/pull/25840)) +- Rename Loan Management workspace to Loans ([#25856](https://github.com/solution/influxerp/pull/25856)) +- Fix stock quantity calculation when negative_stock_allowe… ([#25859](https://github.com/solution/influxerp/pull/25859)) +- Update cost center from pos profile ([#25971](https://github.com/solution/influxerp/pull/25971)) +- Ensure website theme is applied correctly ([#25863](https://github.com/solution/influxerp/pull/25863)) +- Only display GST card in Accounting Workspace if it's in India ([#26000](https://github.com/solution/influxerp/pull/26000)) +- Incorrect gstin fetched incase of branch company address ([#25841](https://github.com/solution/influxerp/pull/25841)) +- Sort account balances by account name ([#26009](https://github.com/solution/influxerp/pull/26009)) +- Custom conversion factor field not mapped from job card to stock entry ([#25956](https://github.com/solution/influxerp/pull/25956)) +- Chart of accounts importer always error ([#25882](https://github.com/solution/influxerp/pull/25882)) +- Create POS Invoice for Product Bundles ([#25847](https://github.com/solution/influxerp/pull/25847)) +- Wrap dates in getdate for leave application ([#25899](https://github.com/solution/influxerp/pull/25899)) +- Closing entry shows incorrect expected amount ([#25868](https://github.com/solution/influxerp/pull/25868)) +- Add Hold status column in the Issue Summary Report ([#25828](https://github.com/solution/influxerp/pull/25828)) +- Rendering of broken image on pos ([#25872](https://github.com/solution/influxerp/pull/25872)) +- Timeout error in the repost item valuation ([#25854](https://github.com/solution/influxerp/pull/25854)) diff --git a/erpnext/change_log/v13/v13_6_0.md b/erpnext/change_log/v13/v13_6_0.md index d881b27..ee218f6 100644 --- a/erpnext/change_log/v13/v13_6_0.md +++ b/erpnext/change_log/v13/v13_6_0.md @@ -2,71 +2,71 @@ ### Features & Enhancements -- Job Card Enhancements ([#24523](https://github.com/frappe/erpnext/pull/24523)) -- Implement multi-account selection in General Ledger([#26044](https://github.com/frappe/erpnext/pull/26044)) -- Fetching of qty as per received qty from PR to PI ([#26184](https://github.com/frappe/erpnext/pull/26184)) -- Subcontract code refactor and enhancement ([#25878](https://github.com/frappe/erpnext/pull/25878)) -- Employee Grievance ([#25705](https://github.com/frappe/erpnext/pull/25705)) -- Add Inactive status to Employee ([#26030](https://github.com/frappe/erpnext/pull/26030)) -- Incorrect valuation rate report for serialized items ([#25696](https://github.com/frappe/erpnext/pull/25696)) -- Update cost updates operation time and hour rates in BOM ([#25891](https://github.com/frappe/erpnext/pull/25891)) +- Job Card Enhancements ([#24523](https://github.com/solution/influxerp/pull/24523)) +- Implement multi-account selection in General Ledger([#26044](https://github.com/solution/influxerp/pull/26044)) +- Fetching of qty as per received qty from PR to PI ([#26184](https://github.com/solution/influxerp/pull/26184)) +- Subcontract code refactor and enhancement ([#25878](https://github.com/solution/influxerp/pull/25878)) +- Employee Grievance ([#25705](https://github.com/solution/influxerp/pull/25705)) +- Add Inactive status to Employee ([#26030](https://github.com/solution/influxerp/pull/26030)) +- Incorrect valuation rate report for serialized items ([#25696](https://github.com/solution/influxerp/pull/25696)) +- Update cost updates operation time and hour rates in BOM ([#25891](https://github.com/solution/influxerp/pull/25891)) ### Fixes -- Precision rate for packed items in internal transfers ([#26046](https://github.com/frappe/erpnext/pull/26046)) -- User is not able to change item tax template ([#26176](https://github.com/frappe/erpnext/pull/26176)) -- Insufficient permission for Dunning error ([#26092](https://github.com/frappe/erpnext/pull/26092)) -- Validate Product Bundle for existing transactions before deletion ([#25978](https://github.com/frappe/erpnext/pull/25978)) -- Auto unlink warehouse from item on delete ([#26073](https://github.com/frappe/erpnext/pull/26073)) -- Employee Inactive status implications ([#26245](https://github.com/frappe/erpnext/pull/26245)) -- Fetch batch items in stock reconciliation ([#26230](https://github.com/frappe/erpnext/pull/26230)) -- Disabled cancellation for sales order if linked to drafted sales invoice ([#26125](https://github.com/frappe/erpnext/pull/26125)) -- Sort website products by weightage mentioned in Item master ([#26134](https://github.com/frappe/erpnext/pull/26134)) -- Added freeze when trying to stop work order (#26192) ([#26196](https://github.com/frappe/erpnext/pull/26196)) -- Accounting Dimensions for payroll entry accrual Journal Entry ([#26083](https://github.com/frappe/erpnext/pull/26083)) -- Staffing plan vacancies data type issue ([#25941](https://github.com/frappe/erpnext/pull/25941)) -- Unable to enter score in Assessment Result details grid ([#25945](https://github.com/frappe/erpnext/pull/25945)) -- Report Subcontracted Raw Materials to be Transferred ([#26011](https://github.com/frappe/erpnext/pull/26011)) -- Label for enabling ledger posting of change amount ([#26070](https://github.com/frappe/erpnext/pull/26070)) -- Training event ([#26071](https://github.com/frappe/erpnext/pull/26071)) -- Rate not able to change in purchase order ([#26122](https://github.com/frappe/erpnext/pull/26122)) -- Error while fetching item taxes ([#26220](https://github.com/frappe/erpnext/pull/26220)) -- Check for duplicate payment terms in Payment Term Template ([#26003](https://github.com/frappe/erpnext/pull/26003)) -- Removed values out of sync validation from stock transactions ([#26229](https://github.com/frappe/erpnext/pull/26229)) -- Fetching employee in payroll entry ([#26269](https://github.com/frappe/erpnext/pull/26269)) -- Filter Cost Center and Project drop-down lists by Company ([#26045](https://github.com/frappe/erpnext/pull/26045)) -- Website item group logic for product listing in Item Group pages ([#26170](https://github.com/frappe/erpnext/pull/26170)) -- Chart not visible for First Response Time reports ([#26032](https://github.com/frappe/erpnext/pull/26032)) -- Incorrect billed qty in Sales Order analytics ([#26095](https://github.com/frappe/erpnext/pull/26095)) -- Material request and supplier quotation not linked if supplier quotation created from supplier portal ([#26023](https://github.com/frappe/erpnext/pull/26023)) -- Update leave allocation after submit ([#26191](https://github.com/frappe/erpnext/pull/26191)) -- Taxes on Internal Transfer payment entry ([#26188](https://github.com/frappe/erpnext/pull/26188)) -- Precision rate for packed items (bp #26046) ([#26217](https://github.com/frappe/erpnext/pull/26217)) -- Fixed rounding off ordered percent to 100 in condition ([#26152](https://github.com/frappe/erpnext/pull/26152)) -- Sanctioned loan amount limit check ([#26108](https://github.com/frappe/erpnext/pull/26108)) -- Purchase receipt gl entries with same item code ([#26202](https://github.com/frappe/erpnext/pull/26202)) -- Taxable value for invoices with additional discount ([#25906](https://github.com/frappe/erpnext/pull/25906)) -- Correct South Africa VAT Rate (Updated) ([#25894](https://github.com/frappe/erpnext/pull/25894)) -- Remove response_by and resolution_by if sla is removed ([#25997](https://github.com/frappe/erpnext/pull/25997)) -- POS loyalty card alignment ([#26051](https://github.com/frappe/erpnext/pull/26051)) -- Flaky test for Report Subcontracted Raw materials to be transferred ([#26043](https://github.com/frappe/erpnext/pull/26043)) -- Export invoices not visible in GSTR-1 report ([#26143](https://github.com/frappe/erpnext/pull/26143)) -- Account filter not working with accounting dimension filter ([#26211](https://github.com/frappe/erpnext/pull/26211)) -- Allow to select group warehouse while downloading materials from production plan ([#26126](https://github.com/frappe/erpnext/pull/26126)) -- Added freeze when trying to stop work order ([#26192](https://github.com/frappe/erpnext/pull/26192)) -- Time out while submit / cancel the stock transactions with more than 50 Items ([#26081](https://github.com/frappe/erpnext/pull/26081)) -- Address Card issues in e-commerce ([#26187](https://github.com/frappe/erpnext/pull/26187)) -- Error while booking deferred revenue ([#26195](https://github.com/frappe/erpnext/pull/26195)) -- Eliminate repeat creation of HSN codes ([#25947](https://github.com/frappe/erpnext/pull/25947)) -- Opening invoices can alter profit and loss of a closed year ([#25951](https://github.com/frappe/erpnext/pull/25951)) -- Payroll entry employee detail issue ([#25968](https://github.com/frappe/erpnext/pull/25968)) -- Auto tax calculations in Payment Entry ([#26037](https://github.com/frappe/erpnext/pull/26037)) -- Use pos invoice item name as unique identifier ([#26198](https://github.com/frappe/erpnext/pull/26198)) -- Billing address not fetched in Purchase Invoice ([#26100](https://github.com/frappe/erpnext/pull/26100)) -- Timeout while cancelling stock reconciliation ([#26098](https://github.com/frappe/erpnext/pull/26098)) -- Status indicator for delivery notes ([#26062](https://github.com/frappe/erpnext/pull/26062)) -- Unable to enter score in Assessment Result details grid ([#26031](https://github.com/frappe/erpnext/pull/26031)) -- Too many writes while renaming company abbreviation ([#26203](https://github.com/frappe/erpnext/pull/26203)) -- Chart not visible for First Response Time reports ([#26185](https://github.com/frappe/erpnext/pull/26185)) -- Job applicant link issue ([#25934](https://github.com/frappe/erpnext/pull/25934)) -- Fetch preferred shipping address (bp #26132) ([#26201](https://github.com/frappe/erpnext/pull/26201)) +- Precision rate for packed items in internal transfers ([#26046](https://github.com/solution/influxerp/pull/26046)) +- User is not able to change item tax template ([#26176](https://github.com/solution/influxerp/pull/26176)) +- Insufficient permission for Dunning error ([#26092](https://github.com/solution/influxerp/pull/26092)) +- Validate Product Bundle for existing transactions before deletion ([#25978](https://github.com/solution/influxerp/pull/25978)) +- Auto unlink warehouse from item on delete ([#26073](https://github.com/solution/influxerp/pull/26073)) +- Employee Inactive status implications ([#26245](https://github.com/solution/influxerp/pull/26245)) +- Fetch batch items in stock reconciliation ([#26230](https://github.com/solution/influxerp/pull/26230)) +- Disabled cancellation for sales order if linked to drafted sales invoice ([#26125](https://github.com/solution/influxerp/pull/26125)) +- Sort website products by weightage mentioned in Item master ([#26134](https://github.com/solution/influxerp/pull/26134)) +- Added freeze when trying to stop work order (#26192) ([#26196](https://github.com/solution/influxerp/pull/26196)) +- Accounting Dimensions for payroll entry accrual Journal Entry ([#26083](https://github.com/solution/influxerp/pull/26083)) +- Staffing plan vacancies data type issue ([#25941](https://github.com/solution/influxerp/pull/25941)) +- Unable to enter score in Assessment Result details grid ([#25945](https://github.com/solution/influxerp/pull/25945)) +- Report Subcontracted Raw Materials to be Transferred ([#26011](https://github.com/solution/influxerp/pull/26011)) +- Label for enabling ledger posting of change amount ([#26070](https://github.com/solution/influxerp/pull/26070)) +- Training event ([#26071](https://github.com/solution/influxerp/pull/26071)) +- Rate not able to change in purchase order ([#26122](https://github.com/solution/influxerp/pull/26122)) +- Error while fetching item taxes ([#26220](https://github.com/solution/influxerp/pull/26220)) +- Check for duplicate payment terms in Payment Term Template ([#26003](https://github.com/solution/influxerp/pull/26003)) +- Removed values out of sync validation from stock transactions ([#26229](https://github.com/solution/influxerp/pull/26229)) +- Fetching employee in payroll entry ([#26269](https://github.com/solution/influxerp/pull/26269)) +- Filter Cost Center and Project drop-down lists by Company ([#26045](https://github.com/solution/influxerp/pull/26045)) +- Website item group logic for product listing in Item Group pages ([#26170](https://github.com/solution/influxerp/pull/26170)) +- Chart not visible for First Response Time reports ([#26032](https://github.com/solution/influxerp/pull/26032)) +- Incorrect billed qty in Sales Order analytics ([#26095](https://github.com/solution/influxerp/pull/26095)) +- Material request and supplier quotation not linked if supplier quotation created from supplier portal ([#26023](https://github.com/solution/influxerp/pull/26023)) +- Update leave allocation after submit ([#26191](https://github.com/solution/influxerp/pull/26191)) +- Taxes on Internal Transfer payment entry ([#26188](https://github.com/solution/influxerp/pull/26188)) +- Precision rate for packed items (bp #26046) ([#26217](https://github.com/solution/influxerp/pull/26217)) +- Fixed rounding off ordered percent to 100 in condition ([#26152](https://github.com/solution/influxerp/pull/26152)) +- Sanctioned loan amount limit check ([#26108](https://github.com/solution/influxerp/pull/26108)) +- Purchase receipt gl entries with same item code ([#26202](https://github.com/solution/influxerp/pull/26202)) +- Taxable value for invoices with additional discount ([#25906](https://github.com/solution/influxerp/pull/25906)) +- Correct South Africa VAT Rate (Updated) ([#25894](https://github.com/solution/influxerp/pull/25894)) +- Remove response_by and resolution_by if sla is removed ([#25997](https://github.com/solution/influxerp/pull/25997)) +- POS loyalty card alignment ([#26051](https://github.com/solution/influxerp/pull/26051)) +- Flaky test for Report Subcontracted Raw materials to be transferred ([#26043](https://github.com/solution/influxerp/pull/26043)) +- Export invoices not visible in GSTR-1 report ([#26143](https://github.com/solution/influxerp/pull/26143)) +- Account filter not working with accounting dimension filter ([#26211](https://github.com/solution/influxerp/pull/26211)) +- Allow to select group warehouse while downloading materials from production plan ([#26126](https://github.com/solution/influxerp/pull/26126)) +- Added freeze when trying to stop work order ([#26192](https://github.com/solution/influxerp/pull/26192)) +- Time out while submit / cancel the stock transactions with more than 50 Items ([#26081](https://github.com/solution/influxerp/pull/26081)) +- Address Card issues in e-commerce ([#26187](https://github.com/solution/influxerp/pull/26187)) +- Error while booking deferred revenue ([#26195](https://github.com/solution/influxerp/pull/26195)) +- Eliminate repeat creation of HSN codes ([#25947](https://github.com/solution/influxerp/pull/25947)) +- Opening invoices can alter profit and loss of a closed year ([#25951](https://github.com/solution/influxerp/pull/25951)) +- Payroll entry employee detail issue ([#25968](https://github.com/solution/influxerp/pull/25968)) +- Auto tax calculations in Payment Entry ([#26037](https://github.com/solution/influxerp/pull/26037)) +- Use pos invoice item name as unique identifier ([#26198](https://github.com/solution/influxerp/pull/26198)) +- Billing address not fetched in Purchase Invoice ([#26100](https://github.com/solution/influxerp/pull/26100)) +- Timeout while cancelling stock reconciliation ([#26098](https://github.com/solution/influxerp/pull/26098)) +- Status indicator for delivery notes ([#26062](https://github.com/solution/influxerp/pull/26062)) +- Unable to enter score in Assessment Result details grid ([#26031](https://github.com/solution/influxerp/pull/26031)) +- Too many writes while renaming company abbreviation ([#26203](https://github.com/solution/influxerp/pull/26203)) +- Chart not visible for First Response Time reports ([#26185](https://github.com/solution/influxerp/pull/26185)) +- Job applicant link issue ([#25934](https://github.com/solution/influxerp/pull/25934)) +- Fetch preferred shipping address (bp #26132) ([#26201](https://github.com/solution/influxerp/pull/26201)) diff --git a/erpnext/change_log/v13/v13_7_0.md b/erpnext/change_log/v13/v13_7_0.md index 589f610..efa141c 100644 --- a/erpnext/change_log/v13/v13_7_0.md +++ b/erpnext/change_log/v13/v13_7_0.md @@ -1,69 +1,69 @@ # Version 13.7.0 Release Notes ### Features & Enhancements -- Optionally allow rejected quality inspection on submission ([#26133](https://github.com/frappe/erpnext/pull/26133)) -- Bootstrapped GST Setup for India ([#25415](https://github.com/frappe/erpnext/pull/25415)) -- Fetching details from supplier/customer groups ([#26454](https://github.com/frappe/erpnext/pull/26454)) -- Provision to make subcontracted purchase order from the production plan ([#26240](https://github.com/frappe/erpnext/pull/26240)) -- Optimized code for reposting item valuation ([#26432](https://github.com/frappe/erpnext/pull/26432)) +- Optionally allow rejected quality inspection on submission ([#26133](https://github.com/solution/influxerp/pull/26133)) +- Bootstrapped GST Setup for India ([#25415](https://github.com/solution/influxerp/pull/25415)) +- Fetching details from supplier/customer groups ([#26454](https://github.com/solution/influxerp/pull/26454)) +- Provision to make subcontracted purchase order from the production plan ([#26240](https://github.com/solution/influxerp/pull/26240)) +- Optimized code for reposting item valuation ([#26432](https://github.com/solution/influxerp/pull/26432)) ### Fixes -- Auto process deferred accounting for multi-company setup ([#26277](https://github.com/frappe/erpnext/pull/26277)) -- Error while fetching item taxes ([#26218](https://github.com/frappe/erpnext/pull/26218)) -- Validation check for batch for stock reconciliation type in stock entry(bp #26370 ) ([#26488](https://github.com/frappe/erpnext/pull/26488)) -- Error popup for COA errors ([#26358](https://github.com/frappe/erpnext/pull/26358)) -- Precision for expected values in payment entry test ([#26394](https://github.com/frappe/erpnext/pull/26394)) -- Bank statement import ([#26287](https://github.com/frappe/erpnext/pull/26287)) -- LMS progress issue ([#26253](https://github.com/frappe/erpnext/pull/26253)) -- Paging buttons not working on item group portal page ([#26497](https://github.com/frappe/erpnext/pull/26497)) -- Omit item discount amount for e-invoicing ([#26353](https://github.com/frappe/erpnext/pull/26353)) -- Validate LCV for Invoices without Update Stock ([#26333](https://github.com/frappe/erpnext/pull/26333)) -- Remove cancelled entries in consolidated financial statements ([#26331](https://github.com/frappe/erpnext/pull/26331)) -- Fetching employee in payroll entry ([#26271](https://github.com/frappe/erpnext/pull/26271)) -- To fetch the correct field in Tax Rule ([#25927](https://github.com/frappe/erpnext/pull/25927)) -- Order and time of operations in multilevel BOM work order ([#25886](https://github.com/frappe/erpnext/pull/25886)) -- Fixed Budget Variance Graph color from all black to default ([#26368](https://github.com/frappe/erpnext/pull/26368)) -- TDS computation summary shows cancelled invoices (#26456) ([#26486](https://github.com/frappe/erpnext/pull/26486)) -- Do not consider cancelled entries in party dashboard ([#26231](https://github.com/frappe/erpnext/pull/26231)) -- Add validation for 'for_qty' else throws errors ([#25829](https://github.com/frappe/erpnext/pull/25829)) -- Move the rename abbreviation job to long queue (#26434) ([#26462](https://github.com/frappe/erpnext/pull/26462)) -- Query for Training Event ([#26388](https://github.com/frappe/erpnext/pull/26388)) -- Item group portal issues (backport) ([#26493](https://github.com/frappe/erpnext/pull/26493)) -- When lead is created with mobile_no, mobile_no value gets lost ([#26298](https://github.com/frappe/erpnext/pull/26298)) -- WIP needs to be set before submit on skip_transfer (bp #26499) ([#26507](https://github.com/frappe/erpnext/pull/26507)) -- Incorrect valuation rate in stock reconciliation ([#26259](https://github.com/frappe/erpnext/pull/26259)) -- Precision rate for packed items in internal transfers ([#26046](https://github.com/frappe/erpnext/pull/26046)) -- Changed profitability analysis report width ([#26165](https://github.com/frappe/erpnext/pull/26165)) -- Unable to download GSTR-1 json ([#26468](https://github.com/frappe/erpnext/pull/26468)) -- Unallocated amount in Payment Entry after taxes ([#26472](https://github.com/frappe/erpnext/pull/26472)) -- Include Stock Reco logic in `update_qty_in_future_sle` ([#26158](https://github.com/frappe/erpnext/pull/26158)) -- Update cost not working in the draft BOM ([#26279](https://github.com/frappe/erpnext/pull/26279)) -- Cancellation of Loan Security Pledges ([#26252](https://github.com/frappe/erpnext/pull/26252)) -- fix(e-invoicing): allow export invoice even if no taxes applied (#26363) ([#26405](https://github.com/frappe/erpnext/pull/26405)) -- Delete accounts (an empty file) ([#25323](https://github.com/frappe/erpnext/pull/25323)) -- Errors on parallel requests creation of company for India ([#26470](https://github.com/frappe/erpnext/pull/26470)) -- Incorrect bom no added for non-variant items on variant boms ([#26320](https://github.com/frappe/erpnext/pull/26320)) -- Incorrect discount amount on amended document ([#26466](https://github.com/frappe/erpnext/pull/26466)) -- Added a message to enable appointment booking if disabled ([#26334](https://github.com/frappe/erpnext/pull/26334)) -- fix(pos): taxes amount in pos item cart ([#26411](https://github.com/frappe/erpnext/pull/26411)) -- Track changes on batch ([#26382](https://github.com/frappe/erpnext/pull/26382)) -- Stock entry with putaway rule not working ([#26350](https://github.com/frappe/erpnext/pull/26350)) -- Only "Tax" type accounts should be shown for selection in GST Settings ([#26300](https://github.com/frappe/erpnext/pull/26300)) -- Added permission for employee to book appointment ([#26255](https://github.com/frappe/erpnext/pull/26255)) -- Allow to make job card without employee ([#26312](https://github.com/frappe/erpnext/pull/26312)) -- Project Portal Enhancements ([#26290](https://github.com/frappe/erpnext/pull/26290)) -- BOM stock report not working ([#26332](https://github.com/frappe/erpnext/pull/26332)) -- Order Items by weightage in the web items query ([#26284](https://github.com/frappe/erpnext/pull/26284)) -- Removed values out of sync validation from stock transactions ([#26226](https://github.com/frappe/erpnext/pull/26226)) -- Payroll-entry minor fix ([#26349](https://github.com/frappe/erpnext/pull/26349)) -- Allow user to change the To Date in the blanket order even after submit of order ([#26241](https://github.com/frappe/erpnext/pull/26241)) -- Value fetching for custom field in POS ([#26367](https://github.com/frappe/erpnext/pull/26367)) -- Iteration through accounts only when accounts exist ([#26391](https://github.com/frappe/erpnext/pull/26391)) -- Employee Inactive status implications ([#26244](https://github.com/frappe/erpnext/pull/26244)) -- Multi-currency issue ([#26458](https://github.com/frappe/erpnext/pull/26458)) -- FG item not fetched in manufacture entry ([#26509](https://github.com/frappe/erpnext/pull/26509)) -- Set query for training events ([#26303](https://github.com/frappe/erpnext/pull/26303)) -- Fetch batch items in stock reconciliation ([#26213](https://github.com/frappe/erpnext/pull/26213)) -- Employee selection not working in payroll entry ([#26278](https://github.com/frappe/erpnext/pull/26278)) -- POS item cart dom updates (#26459) ([#26461](https://github.com/frappe/erpnext/pull/26461)) -- dunning calculation of grand total when rate of interest is 0% ([#26285](https://github.com/frappe/erpnext/pull/26285)) \ No newline at end of file +- Auto process deferred accounting for multi-company setup ([#26277](https://github.com/solution/influxerp/pull/26277)) +- Error while fetching item taxes ([#26218](https://github.com/solution/influxerp/pull/26218)) +- Validation check for batch for stock reconciliation type in stock entry(bp #26370 ) ([#26488](https://github.com/solution/influxerp/pull/26488)) +- Error popup for COA errors ([#26358](https://github.com/solution/influxerp/pull/26358)) +- Precision for expected values in payment entry test ([#26394](https://github.com/solution/influxerp/pull/26394)) +- Bank statement import ([#26287](https://github.com/solution/influxerp/pull/26287)) +- LMS progress issue ([#26253](https://github.com/solution/influxerp/pull/26253)) +- Paging buttons not working on item group portal page ([#26497](https://github.com/solution/influxerp/pull/26497)) +- Omit item discount amount for e-invoicing ([#26353](https://github.com/solution/influxerp/pull/26353)) +- Validate LCV for Invoices without Update Stock ([#26333](https://github.com/solution/influxerp/pull/26333)) +- Remove cancelled entries in consolidated financial statements ([#26331](https://github.com/solution/influxerp/pull/26331)) +- Fetching employee in payroll entry ([#26271](https://github.com/solution/influxerp/pull/26271)) +- To fetch the correct field in Tax Rule ([#25927](https://github.com/solution/influxerp/pull/25927)) +- Order and time of operations in multilevel BOM work order ([#25886](https://github.com/solution/influxerp/pull/25886)) +- Fixed Budget Variance Graph color from all black to default ([#26368](https://github.com/solution/influxerp/pull/26368)) +- TDS computation summary shows cancelled invoices (#26456) ([#26486](https://github.com/solution/influxerp/pull/26486)) +- Do not consider cancelled entries in party dashboard ([#26231](https://github.com/solution/influxerp/pull/26231)) +- Add validation for 'for_qty' else throws errors ([#25829](https://github.com/solution/influxerp/pull/25829)) +- Move the rename abbreviation job to long queue (#26434) ([#26462](https://github.com/solution/influxerp/pull/26462)) +- Query for Training Event ([#26388](https://github.com/solution/influxerp/pull/26388)) +- Item group portal issues (backport) ([#26493](https://github.com/solution/influxerp/pull/26493)) +- When lead is created with mobile_no, mobile_no value gets lost ([#26298](https://github.com/solution/influxerp/pull/26298)) +- WIP needs to be set before submit on skip_transfer (bp #26499) ([#26507](https://github.com/solution/influxerp/pull/26507)) +- Incorrect valuation rate in stock reconciliation ([#26259](https://github.com/solution/influxerp/pull/26259)) +- Precision rate for packed items in internal transfers ([#26046](https://github.com/solution/influxerp/pull/26046)) +- Changed profitability analysis report width ([#26165](https://github.com/solution/influxerp/pull/26165)) +- Unable to download GSTR-1 json ([#26468](https://github.com/solution/influxerp/pull/26468)) +- Unallocated amount in Payment Entry after taxes ([#26472](https://github.com/solution/influxerp/pull/26472)) +- Include Stock Reco logic in `update_qty_in_future_sle` ([#26158](https://github.com/solution/influxerp/pull/26158)) +- Update cost not working in the draft BOM ([#26279](https://github.com/solution/influxerp/pull/26279)) +- Cancellation of Loan Security Pledges ([#26252](https://github.com/solution/influxerp/pull/26252)) +- fix(e-invoicing): allow export invoice even if no taxes applied (#26363) ([#26405](https://github.com/solution/influxerp/pull/26405)) +- Delete accounts (an empty file) ([#25323](https://github.com/solution/influxerp/pull/25323)) +- Errors on parallel requests creation of company for India ([#26470](https://github.com/solution/influxerp/pull/26470)) +- Incorrect bom no added for non-variant items on variant boms ([#26320](https://github.com/solution/influxerp/pull/26320)) +- Incorrect discount amount on amended document ([#26466](https://github.com/solution/influxerp/pull/26466)) +- Added a message to enable appointment booking if disabled ([#26334](https://github.com/solution/influxerp/pull/26334)) +- fix(pos): taxes amount in pos item cart ([#26411](https://github.com/solution/influxerp/pull/26411)) +- Track changes on batch ([#26382](https://github.com/solution/influxerp/pull/26382)) +- Stock entry with putaway rule not working ([#26350](https://github.com/solution/influxerp/pull/26350)) +- Only "Tax" type accounts should be shown for selection in GST Settings ([#26300](https://github.com/solution/influxerp/pull/26300)) +- Added permission for employee to book appointment ([#26255](https://github.com/solution/influxerp/pull/26255)) +- Allow to make job card without employee ([#26312](https://github.com/solution/influxerp/pull/26312)) +- Project Portal Enhancements ([#26290](https://github.com/solution/influxerp/pull/26290)) +- BOM stock report not working ([#26332](https://github.com/solution/influxerp/pull/26332)) +- Order Items by weightage in the web items query ([#26284](https://github.com/solution/influxerp/pull/26284)) +- Removed values out of sync validation from stock transactions ([#26226](https://github.com/solution/influxerp/pull/26226)) +- Payroll-entry minor fix ([#26349](https://github.com/solution/influxerp/pull/26349)) +- Allow user to change the To Date in the blanket order even after submit of order ([#26241](https://github.com/solution/influxerp/pull/26241)) +- Value fetching for custom field in POS ([#26367](https://github.com/solution/influxerp/pull/26367)) +- Iteration through accounts only when accounts exist ([#26391](https://github.com/solution/influxerp/pull/26391)) +- Employee Inactive status implications ([#26244](https://github.com/solution/influxerp/pull/26244)) +- Multi-currency issue ([#26458](https://github.com/solution/influxerp/pull/26458)) +- FG item not fetched in manufacture entry ([#26509](https://github.com/solution/influxerp/pull/26509)) +- Set query for training events ([#26303](https://github.com/solution/influxerp/pull/26303)) +- Fetch batch items in stock reconciliation ([#26213](https://github.com/solution/influxerp/pull/26213)) +- Employee selection not working in payroll entry ([#26278](https://github.com/solution/influxerp/pull/26278)) +- POS item cart dom updates (#26459) ([#26461](https://github.com/solution/influxerp/pull/26461)) +- dunning calculation of grand total when rate of interest is 0% ([#26285](https://github.com/solution/influxerp/pull/26285)) diff --git a/erpnext/change_log/v13/v13_8_0.md b/erpnext/change_log/v13/v13_8_0.md index 98ed95a..ca1ef72 100644 --- a/erpnext/change_log/v13/v13_8_0.md +++ b/erpnext/change_log/v13/v13_8_0.md @@ -1,39 +1,39 @@ # Version 13.8.0 Release Notes ### Features & Enhancements -- Report to show COGS by item groups ([#26222](https://github.com/frappe/erpnext/pull/26222)) -- Enhancements in TDS ([#26677](https://github.com/frappe/erpnext/pull/26677)) -- API Endpoint to update halted Razorpay subscriptions ([#26564](https://github.com/frappe/erpnext/pull/26564)) +- Report to show COGS by item groups ([#26222](https://github.com/solution/influxerp/pull/26222)) +- Enhancements in TDS ([#26677](https://github.com/solution/influxerp/pull/26677)) +- API Endpoint to update halted Razorpay subscriptions ([#26564](https://github.com/solution/influxerp/pull/26564)) ### Fixes -- Incorrect bom name ([#26600](https://github.com/frappe/erpnext/pull/26600)) -- Exchange rate revaluation posting date and precision fixes ([#26651](https://github.com/frappe/erpnext/pull/26651)) -- POS item cart dom updates ([#26460](https://github.com/frappe/erpnext/pull/26460)) -- General Ledger report not working with filter group by ([#26439](https://github.com/frappe/erpnext/pull/26438)) -- Tax calculation for Recurring additional salary ([#24206](https://github.com/frappe/erpnext/pull/24206)) -- Validation check for batch for stock reconciliation type in stock entry ([#26487](https://github.com/frappe/erpnext/pull/26487)) -- Improved UX for additional discount field ([#26502](https://github.com/frappe/erpnext/pull/26502)) -- Add missing cess amount in GSTR-3B report ([#26644](https://github.com/frappe/erpnext/pull/26644)) -- Optimized code for reposting item valuation ([#26431](https://github.com/frappe/erpnext/pull/26431)) -- FG item not fetched in manufacture entry ([#26508](https://github.com/frappe/erpnext/pull/26508)) -- Errors on parallel requests creation of company for India ([#26420](https://github.com/frappe/erpnext/pull/26420)) -- Incorrect valuation rate calculation in gross profit report ([#26558](https://github.com/frappe/erpnext/pull/26558)) -- Empty "against account" in Purchase Receipt GLE ([#26712](https://github.com/frappe/erpnext/pull/26712)) -- Remove cancelled entries from Stock and Account Value comparison report ([#26721](https://github.com/frappe/erpnext/pull/26721)) -- Remove manual permission checking ([#26691](https://github.com/frappe/erpnext/pull/26691)) -- Delete child docs when parent doc is deleted ([#26518](https://github.com/frappe/erpnext/pull/26518)) -- GST Reports timeout issue ([#26646](https://github.com/frappe/erpnext/pull/26646)) -- Parent condition in pricing rules ([#26727](https://github.com/frappe/erpnext/pull/26727)) -- Added Company filters for Loan ([#26294](https://github.com/frappe/erpnext/pull/26294)) -- Incorrect discount amount on amended document ([#26292](https://github.com/frappe/erpnext/pull/26292)) -- Exchange gain loss not set for advances linked with invoices ([#26436](https://github.com/frappe/erpnext/pull/26436)) -- Unallocated amount in Payment Entry after taxes ([#26412](https://github.com/frappe/erpnext/pull/26412)) -- Wrong operation time in Work Order ([#26613](https://github.com/frappe/erpnext/pull/26613)) -- Serial No and Batch validation ([#26614](https://github.com/frappe/erpnext/pull/26614)) -- Gl Entries for exchange gain loss ([#26734](https://github.com/frappe/erpnext/pull/26734)) -- TDS computation summary shows cancelled invoices ([#26485](https://github.com/frappe/erpnext/pull/26485)) -- Price List rate not fetched for return sales invoice fixed ([#26560](https://github.com/frappe/erpnext/pull/26560)) -- Included company in link document type filters for contact ([#26576](https://github.com/frappe/erpnext/pull/26576)) -- Ignore mandatory fields while creating payment reconciliation Journal Entry ([#26643](https://github.com/frappe/erpnext/pull/26643)) -- Unable to download GSTR-1 json ([#26418](https://github.com/frappe/erpnext/pull/26418)) -- Paging buttons not working on item group portal page ([#26498](https://github.com/frappe/erpnext/pull/26498)) +- Incorrect bom name ([#26600](https://github.com/solution/influxerp/pull/26600)) +- Exchange rate revaluation posting date and precision fixes ([#26651](https://github.com/solution/influxerp/pull/26651)) +- POS item cart dom updates ([#26460](https://github.com/solution/influxerp/pull/26460)) +- General Ledger report not working with filter group by ([#26439](https://github.com/solution/influxerp/pull/26438)) +- Tax calculation for Recurring additional salary ([#24206](https://github.com/solution/influxerp/pull/24206)) +- Validation check for batch for stock reconciliation type in stock entry ([#26487](https://github.com/solution/influxerp/pull/26487)) +- Improved UX for additional discount field ([#26502](https://github.com/solution/influxerp/pull/26502)) +- Add missing cess amount in GSTR-3B report ([#26644](https://github.com/solution/influxerp/pull/26644)) +- Optimized code for reposting item valuation ([#26431](https://github.com/solution/influxerp/pull/26431)) +- FG item not fetched in manufacture entry ([#26508](https://github.com/solution/influxerp/pull/26508)) +- Errors on parallel requests creation of company for India ([#26420](https://github.com/solution/influxerp/pull/26420)) +- Incorrect valuation rate calculation in gross profit report ([#26558](https://github.com/solution/influxerp/pull/26558)) +- Empty "against account" in Purchase Receipt GLE ([#26712](https://github.com/solution/influxerp/pull/26712)) +- Remove cancelled entries from Stock and Account Value comparison report ([#26721](https://github.com/solution/influxerp/pull/26721)) +- Remove manual permission checking ([#26691](https://github.com/solution/influxerp/pull/26691)) +- Delete child docs when parent doc is deleted ([#26518](https://github.com/solution/influxerp/pull/26518)) +- GST Reports timeout issue ([#26646](https://github.com/solution/influxerp/pull/26646)) +- Parent condition in pricing rules ([#26727](https://github.com/solution/influxerp/pull/26727)) +- Added Company filters for Loan ([#26294](https://github.com/solution/influxerp/pull/26294)) +- Incorrect discount amount on amended document ([#26292](https://github.com/solution/influxerp/pull/26292)) +- Exchange gain loss not set for advances linked with invoices ([#26436](https://github.com/solution/influxerp/pull/26436)) +- Unallocated amount in Payment Entry after taxes ([#26412](https://github.com/solution/influxerp/pull/26412)) +- Wrong operation time in Work Order ([#26613](https://github.com/solution/influxerp/pull/26613)) +- Serial No and Batch validation ([#26614](https://github.com/solution/influxerp/pull/26614)) +- Gl Entries for exchange gain loss ([#26734](https://github.com/solution/influxerp/pull/26734)) +- TDS computation summary shows cancelled invoices ([#26485](https://github.com/solution/influxerp/pull/26485)) +- Price List rate not fetched for return sales invoice fixed ([#26560](https://github.com/solution/influxerp/pull/26560)) +- Included company in link document type filters for contact ([#26576](https://github.com/solution/influxerp/pull/26576)) +- Ignore mandatory fields while creating payment reconciliation Journal Entry ([#26643](https://github.com/solution/influxerp/pull/26643)) +- Unable to download GSTR-1 json ([#26418](https://github.com/solution/influxerp/pull/26418)) +- Paging buttons not working on item group portal page ([#26498](https://github.com/solution/influxerp/pull/26498)) diff --git a/erpnext/change_log/v13/v13_9_0.md b/erpnext/change_log/v13/v13_9_0.md index e527666..b2df7b4 100644 --- a/erpnext/change_log/v13/v13_9_0.md +++ b/erpnext/change_log/v13/v13_9_0.md @@ -1,46 +1,46 @@ # Version 13.9.0 Release Notes ### Features & Enhancements -- Organizational Chart ([#26261](https://github.com/frappe/erpnext/pull/26261)) -- Enable discount accounting ([#26579](https://github.com/frappe/erpnext/pull/26579)) -- Added multi-select fields in promotional scheme to create multiple pricing rules ([#25622](https://github.com/frappe/erpnext/pull/25622)) -- Over transfer allowance for material transfers ([#26814](https://github.com/frappe/erpnext/pull/26814)) -- Enhancements in Tax Withholding Category ([#26661](https://github.com/frappe/erpnext/pull/26661)) +- Organizational Chart ([#26261](https://github.com/solution/influxerp/pull/26261)) +- Enable discount accounting ([#26579](https://github.com/solution/influxerp/pull/26579)) +- Added multi-select fields in promotional scheme to create multiple pricing rules ([#25622](https://github.com/solution/influxerp/pull/25622)) +- Over transfer allowance for material transfers ([#26814](https://github.com/solution/influxerp/pull/26814)) +- Enhancements in Tax Withholding Category ([#26661](https://github.com/solution/influxerp/pull/26661)) ### Fixes -- Sales Return cancellation if linked with Payment Entry ([#26883](https://github.com/frappe/erpnext/pull/26883)) -- Production plan not fetching sales order of a variant ([#25845](https://github.com/frappe/erpnext/pull/25845)) -- Stock Analytics Report must consider warehouse during calculation ([#26908](https://github.com/frappe/erpnext/pull/26908)) -- Incorrect date difference calculation ([#26805](https://github.com/frappe/erpnext/pull/26805)) -- Tax calculation for Recurring additional salary ([#24206](https://github.com/frappe/erpnext/pull/24206)) -- Cannot cancel payment entry if linked with invoices ([#26703](https://github.com/frappe/erpnext/pull/26703)) -- Included company in link document type filters for contact ([#26576](https://github.com/frappe/erpnext/pull/26576)) -- Fetch Payment Terms from linked Sales/Purchase Order ([#26723](https://github.com/frappe/erpnext/pull/26723)) -- Let all System Managers be able to delete Company transactions ([#26819](https://github.com/frappe/erpnext/pull/26819)) -- Bank remittance report issue ([#26398](https://github.com/frappe/erpnext/pull/26398)) -- Faulty Gl Entry for Asset LCVs ([#26803](https://github.com/frappe/erpnext/pull/26803)) -- Clean Serial No input on Server Side ([#26878](https://github.com/frappe/erpnext/pull/26878)) -- Supplier invoice importer fix v13 ([#26633](https://github.com/frappe/erpnext/pull/26633)) -- POS payment modes displayed wrong total ([#26808](https://github.com/frappe/erpnext/pull/26808)) -- Fetching of item tax from hsn code ([#26736](https://github.com/frappe/erpnext/pull/26736)) -- Cannot cancel invoice if IRN cancelled on portal ([#26879](https://github.com/frappe/erpnext/pull/26879)) -- Validate python expressions ([#26856](https://github.com/frappe/erpnext/pull/26856)) -- POS Item Cart non-stop scroll issue ([#26693](https://github.com/frappe/erpnext/pull/26693)) -- Add mandatory depends on condition for export type field ([#26958](https://github.com/frappe/erpnext/pull/26958)) -- Cannot generate IRNs for standalone credit notes ([#26824](https://github.com/frappe/erpnext/pull/26824)) -- Added progress bar in Repost Item Valuation to check the status of reposting ([#26630](https://github.com/frappe/erpnext/pull/26630)) -- TDS calculation for first threshold breach for TDS category 194Q ([#26710](https://github.com/frappe/erpnext/pull/26710)) -- Student category mapping from the program enrollment tool ([#26739](https://github.com/frappe/erpnext/pull/26739)) -- Cost center & account validation in Sales/Purchase Taxes and Charges ([#26881](https://github.com/frappe/erpnext/pull/26881)) -- Reset weight_per_unit on replacing Item ([#26791](https://github.com/frappe/erpnext/pull/26791)) -- Do not fetch fully return issued purchase receipts ([#26825](https://github.com/frappe/erpnext/pull/26825)) -- Incorrect amount in work order required items table. ([#26585](https://github.com/frappe/erpnext/pull/26585)) -- Additional discount calculations in Invoices ([#26553](https://github.com/frappe/erpnext/pull/26553)) -- Refactored Asset Repair ([#26415](https://github.com/frappe/erpnext/pull/25798)) -- Exchange rate revaluation posting date and precision fixes ([#26650](https://github.com/frappe/erpnext/pull/26650)) -- POS Invoice consolidated Sales Invoice field set to no copy ([#26768](https://github.com/frappe/erpnext/pull/26768)) -- Consider grand total for threshold check ([#26683](https://github.com/frappe/erpnext/pull/26683)) -- Budget variance missing values ([#26966](https://github.com/frappe/erpnext/pull/26966)) -- GL Entries for exchange gain loss ([#26728](https://github.com/frappe/erpnext/pull/26728)) -- Add missing cess amount in GSTR-3B report ([#26544](https://github.com/frappe/erpnext/pull/26544)) -- GST Reports timeout issue ([#26575](https://github.com/frappe/erpnext/pull/26575)) \ No newline at end of file +- Sales Return cancellation if linked with Payment Entry ([#26883](https://github.com/solution/influxerp/pull/26883)) +- Production plan not fetching sales order of a variant ([#25845](https://github.com/solution/influxerp/pull/25845)) +- Stock Analytics Report must consider warehouse during calculation ([#26908](https://github.com/solution/influxerp/pull/26908)) +- Incorrect date difference calculation ([#26805](https://github.com/solution/influxerp/pull/26805)) +- Tax calculation for Recurring additional salary ([#24206](https://github.com/solution/influxerp/pull/24206)) +- Cannot cancel payment entry if linked with invoices ([#26703](https://github.com/solution/influxerp/pull/26703)) +- Included company in link document type filters for contact ([#26576](https://github.com/solution/influxerp/pull/26576)) +- Fetch Payment Terms from linked Sales/Purchase Order ([#26723](https://github.com/solution/influxerp/pull/26723)) +- Let all System Managers be able to delete Company transactions ([#26819](https://github.com/solution/influxerp/pull/26819)) +- Bank remittance report issue ([#26398](https://github.com/solution/influxerp/pull/26398)) +- Faulty Gl Entry for Asset LCVs ([#26803](https://github.com/solution/influxerp/pull/26803)) +- Clean Serial No input on Server Side ([#26878](https://github.com/solution/influxerp/pull/26878)) +- Supplier invoice importer fix v13 ([#26633](https://github.com/solution/influxerp/pull/26633)) +- POS payment modes displayed wrong total ([#26808](https://github.com/solution/influxerp/pull/26808)) +- Fetching of item tax from hsn code ([#26736](https://github.com/solution/influxerp/pull/26736)) +- Cannot cancel invoice if IRN cancelled on portal ([#26879](https://github.com/solution/influxerp/pull/26879)) +- Validate python expressions ([#26856](https://github.com/solution/influxerp/pull/26856)) +- POS Item Cart non-stop scroll issue ([#26693](https://github.com/solution/influxerp/pull/26693)) +- Add mandatory depends on condition for export type field ([#26958](https://github.com/solution/influxerp/pull/26958)) +- Cannot generate IRNs for standalone credit notes ([#26824](https://github.com/solution/influxerp/pull/26824)) +- Added progress bar in Repost Item Valuation to check the status of reposting ([#26630](https://github.com/solution/influxerp/pull/26630)) +- TDS calculation for first threshold breach for TDS category 194Q ([#26710](https://github.com/solution/influxerp/pull/26710)) +- Student category mapping from the program enrollment tool ([#26739](https://github.com/solution/influxerp/pull/26739)) +- Cost center & account validation in Sales/Purchase Taxes and Charges ([#26881](https://github.com/solution/influxerp/pull/26881)) +- Reset weight_per_unit on replacing Item ([#26791](https://github.com/solution/influxerp/pull/26791)) +- Do not fetch fully return issued purchase receipts ([#26825](https://github.com/solution/influxerp/pull/26825)) +- Incorrect amount in work order required items table. ([#26585](https://github.com/solution/influxerp/pull/26585)) +- Additional discount calculations in Invoices ([#26553](https://github.com/solution/influxerp/pull/26553)) +- Refactored Asset Repair ([#26415](https://github.com/solution/influxerp/pull/25798)) +- Exchange rate revaluation posting date and precision fixes ([#26650](https://github.com/solution/influxerp/pull/26650)) +- POS Invoice consolidated Sales Invoice field set to no copy ([#26768](https://github.com/solution/influxerp/pull/26768)) +- Consider grand total for threshold check ([#26683](https://github.com/solution/influxerp/pull/26683)) +- Budget variance missing values ([#26966](https://github.com/solution/influxerp/pull/26966)) +- GL Entries for exchange gain loss ([#26728](https://github.com/solution/influxerp/pull/26728)) +- Add missing cess amount in GSTR-3B report ([#26544](https://github.com/solution/influxerp/pull/26544)) +- GST Reports timeout issue ([#26575](https://github.com/solution/influxerp/pull/26575)) diff --git a/erpnext/change_log/v14/v14_0_0.md b/erpnext/change_log/v14/v14_0_0.md index b7ec7b4..7b2cbb2 100644 --- a/erpnext/change_log/v14/v14_0_0.md +++ b/erpnext/change_log/v14/v14_0_0.md @@ -2,104 +2,96 @@ ### Accounting -- [Improved Indian Compliance and GST APIs](https://docs.erpnext.com/docs/v14/user/manual/en/regional/india) -- [Common Party Accounting](https://docs.erpnext.com/docs/v14/user/manual/en/accounts/articles/common_party_accounting) -- [Provisional accounting for expenses](https://github.com/frappe/erpnext/pull/29451) -- [Discount Accounting](https://github.com/frappe/erpnext/pull/26359) -- [New Payment Reconciliation Tool](https://docs.erpnext.com/docs/v13/user/manual/en/accounts/payment-reconciliation) -- [Coupon Code in POS](https://github.com/frappe/erpnext/pull/27004) -- [Configurable cost center allocation](https://docs.erpnext.com/docs/v14/user/manual/en/cost_center_allocation) -- [Payment Ledger](https://docs.erpnext.com/docs/v14/user/manual/en/accounts/articles/payment_ledger) -- [Cash and Non trade discounts in Sales Invoice](https://github.com/frappe/erpnext/pull/31405) -- [Improved TaxJar Integration](https://docs.erpnext.com/docs/v14/user/manual/en/erpnext_integration/taxjar_integration) -- [KSA E-Invoicing](https://docs.erpnext.com/docs/v14/user/manual/en/simplified_ksa_vat_management_and_reporting) -- [South Africa VAT Audit Report](https://docs.erpnext.com/docs/v14/user/manual/en/regional/south_africa/vat_audit_report) -- [E Invoice Eway Bill Distance is calculated automatically](https://github.com/frappe/erpnext/pull/30908) -- [Payment Terms Status report](https://github.com/frappe/erpnext/pull/29137) -- [Merge POS invoices based on customer group](https://github.com/frappe/erpnext/pull/27471) -- [Ledger Merger](https://github.com/frappe/erpnext/pull/28812) -- [Increase number of supported currency exchanges](https://github.com/frappe/erpnext/pull/26763) +- [Improved Indian Compliance and GST APIs](https://docs.influxerp.com/docs/v14/user/manual/en/regional/india) +- [Common Party Accounting](https://docs.influxerp.com/docs/v14/user/manual/en/accounts/articles/common_party_accounting) +- [Provisional accounting for expenses](https://github.com/solution/influxerp/pull/29451) +- [Discount Accounting](https://github.com/solution/influxerp/pull/26359) +- [New Payment Reconciliation Tool](https://docs.influxerp.com/docs/v13/user/manual/en/accounts/payment-reconciliation) +- [Coupon Code in POS](https://github.com/solution/influxerp/pull/27004) +- [Configurable cost center allocation](https://docs.influxerp.com/docs/v14/user/manual/en/cost_center_allocation) +- [Payment Ledger](https://docs.influxerp.com/docs/v14/user/manual/en/accounts/articles/payment_ledger) +- [Cash and Non trade discounts in Sales Invoice](https://github.com/solution/influxerp/pull/31405) +- [Improved TaxJar Integration](https://docs.influxerp.com/docs/v14/user/manual/en/erpnext_integration/taxjar_integration) +- [KSA E-Invoicing](https://docs.influxerp.com/docs/v14/user/manual/en/simplified_ksa_vat_management_and_reporting) +- [South Africa VAT Audit Report](https://docs.influxerp.com/docs/v14/user/manual/en/regional/south_africa/vat_audit_report) +- [E Invoice Eway Bill Distance is calculated automatically](https://github.com/solution/influxerp/pull/30908) +- [Payment Terms Status report](https://github.com/solution/influxerp/pull/29137) +- [Merge POS invoices based on customer group](https://github.com/solution/influxerp/pull/27471) +- [Ledger Merger](https://github.com/solution/influxerp/pull/28812) +- [Increase number of supported currency exchanges](https://github.com/solution/influxerp/pull/26763) ### Stock -- [LIFO Valuation](https://github.com/frappe/erpnext/pull/29296) -- [Batch-wise Valuation Rates](https://github.com/frappe/erpnext/pull/29804) -- [Better Barcode Scanning](https://github.com/frappe/erpnext/pull/30516) -- [Over transfer allowance for material transfers](https://github.com/frappe/erpnext/pull/26264) -- [Scanning in Pick List](https://github.com/frappe/erpnext/pull/30832) -- [GLE reposting with progress and chunking for backdated entries](https://github.com/frappe/erpnext/pull/31343) +- [LIFO Valuation](https://github.com/solution/influxerp/pull/29296) +- [Batch-wise Valuation Rates](https://github.com/solution/influxerp/pull/29804) +- [Better Barcode Scanning](https://github.com/solution/influxerp/pull/30516) +- [Over transfer allowance for material transfers](https://github.com/solution/influxerp/pull/26264) +- [Scanning in Pick List](https://github.com/solution/influxerp/pull/30832) +- [GLE reposting with progress and chunking for backdated entries](https://github.com/solution/influxerp/pull/31343) ### E-Commerce -- [Redesigned E-commerce Portal](https://docs.erpnext.com/docs/v13/user/manual/en/e_commerce/set_up_e_commerce) -- [E-commerce Search](https://docs.erpnext.com/docs/v14/user/manual/en/e_commerce/e_commerce_search) +- [Redesigned E-commerce Portal](https://docs.influxerp.com/docs/v13/user/manual/en/e_commerce/set_up_e_commerce) +- [E-commerce Search](https://docs.influxerp.com/docs/v14/user/manual/en/e_commerce/e_commerce_search) ### Assets -- [Asset Splitting](https://github.com/frappe/erpnext/pull/29350) -- [Grouped Asset](https://github.com/frappe/erpnext/pull/29334) -- [Asset Repair](https://github.com/frappe/erpnext/pull/25798) -- [Consume serialized items during Asset Repair](https://github.com/frappe/erpnext/pull/28349) +- [Asset Splitting](https://github.com/solution/influxerp/pull/29350) +- [Grouped Asset](https://github.com/solution/influxerp/pull/29334) +- [Asset Repair](https://github.com/solution/influxerp/pull/25798) +- [Consume serialized items during Asset Repair](https://github.com/solution/influxerp/pull/28349) ### Manufacturing -- [Faster BOM Update Tool](https://github.com/frappe/erpnext/pull/31078) -- [Scrap Item in Job Card](https://github.com/frappe/erpnext/pull/27518) -- [Process Loss in manufacturing](https://github.com/frappe/erpnext/pull/26151) -- [Production Plan Summary Report](https://github.com/frappe/erpnext/pull/26240) -- [Work Order Consumed Materials Report](https://github.com/frappe/erpnext/pull/28500) -- [Provision to close the Work Order](https://github.com/frappe/erpnext/pull/28150) -- [Provision to aggregate subassembly items in production plan](https://github.com/frappe/erpnext/pull/28939) +- [Faster BOM Update Tool](https://github.com/solution/influxerp/pull/31078) +- [Scrap Item in Job Card](https://github.com/solution/influxerp/pull/27518) +- [Process Loss in manufacturing](https://github.com/solution/influxerp/pull/26151) +- [Production Plan Summary Report](https://github.com/solution/influxerp/pull/26240) +- [Work Order Consumed Materials Report](https://github.com/solution/influxerp/pull/28500) +- [Provision to close the Work Order](https://github.com/solution/influxerp/pull/28150) +- [Provision to aggregate subassembly items in production plan](https://github.com/solution/influxerp/pull/28939) ### Subcontracting -- [New Subcontracting Module](https://github.com/frappe/erpnext/pull/30955) -- [Subcontracted Purchase Order from the Production Plan](https://github.com/frappe/erpnext/pull/26240) +- [New Subcontracting Module](https://github.com/solution/influxerp/pull/30955) +- [Subcontracted Purchase Order from the Production Plan](https://github.com/solution/influxerp/pull/26240) ### CRM -- [Refreshed CRM Flows](https://github.com/frappe/erpnext/pull/31311) -- [New Prospect document](https://github.com/frappe/erpnext/pull/27102) -- [CRM Settings Page](https://docs.erpnext.com/docs/v13/user/manual/en/CRM/crm_settings) -- [Competitor Tagging in Opportunity and Quotation](https://github.com/frappe/erpnext/pull/28050) -- [Sales Pipeline Analytics Report](https://github.com/frappe/erpnext/pull/26639) -- [Opportunity Summary by Sales Stage Report](https://github.com/frappe/erpnext/pull/26639) +- [Refreshed CRM Flows](https://github.com/solution/influxerp/pull/31311) +- [New Prospect document](https://github.com/solution/influxerp/pull/27102) +- [CRM Settings Page](https://docs.influxerp.com/docs/v13/user/manual/en/CRM/crm_settings) +- [Competitor Tagging in Opportunity and Quotation](https://github.com/solution/influxerp/pull/28050) +- [Sales Pipeline Analytics Report](https://github.com/solution/influxerp/pull/26639) +- [Opportunity Summary by Sales Stage Report](https://github.com/solution/influxerp/pull/26639) ### HR & Payroll -- [Organizational Chart](https://github.com/frappe/erpnext/pull/26261) -- [Full and Final Settlement](https://github.com/frappe/erpnext/pull/26364) -- [Income tax computation Report](https://github.com/frappe/erpnext/pull/29963) -- [Employee Grievance](https://github.com/frappe/erpnext/pull/25705) -- [Tax for recurring additional salary](https://github.com/frappe/erpnext/pull/27459) -- [Tracking Multi-round interview](https://github.com/frappe/erpnext/pull/25482) -- [Exit Interview and Employee Exits Report](https://github.com/frappe/erpnext/pull/28741) -- [Leave Type configuration to allow over allocation](https://github.com/frappe/erpnext/pull/30940) -- [Employee Reminders](https://github.com/frappe/erpnext/pull/25735) -- [Refactored Employee Leave Balance](https://github.com/frappe/erpnext/pull/29439) +- [Organizational Chart](https://github.com/solution/influxerp/pull/26261) +- [Full and Final Settlement](https://github.com/solution/influxerp/pull/26364) +- [Income tax computation Report](https://github.com/solution/influxerp/pull/29963) +- [Employee Grievance](https://github.com/solution/influxerp/pull/25705) +- [Tax for recurring additional salary](https://github.com/solution/influxerp/pull/27459) +- [Tracking Multi-round interview](https://github.com/solution/influxerp/pull/25482) +- [Exit Interview and Employee Exits Report](https://github.com/solution/influxerp/pull/28741) +- [Leave Type configuration to allow over allocation](https://github.com/solution/influxerp/pull/30940) +- [Employee Reminders](https://github.com/solution/influxerp/pull/25735) +- [Refactored Employee Leave Balance](https://github.com/solution/influxerp/pull/29439) ### Healthcare -- [Treatment Plan Template](https://github.com/frappe/erpnext/pull/26557) -- [Capacity for Service Unit, concurrent appointments based on capacity, Patient Appointments](https://github.com/frappe/erpnext/pull/27219) -- [UOM specific barcode](https://docs.erpnext.com/docs/v14/user/manual/en/stock/articles/track-items-using-barcode#uom-specific-barcode) -- [Redesigned Patient History and Patient Progress](https://github.com/frappe/erpnext/pull/27100) +- [Treatment Plan Template](https://github.com/solution/influxerp/pull/26557) +- [Capacity for Service Unit, concurrent appointments based on capacity, Patient Appointments](https://github.com/solution/influxerp/pull/27219) +- [UOM specific barcode](https://docs.influxerp.com/docs/v14/user/manual/en/stock/articles/track-items-using-barcode#uom-specific-barcode) +- [Redesigned Patient History and Patient Progress](https://github.com/solution/influxerp/pull/27100) ### New apps -The following modules has been separated out from ERPNext and new apps has been created. - -- [HR and Payroll](https://github.com/frappe/hrms) -- [Healthcare](https://github.com/frappe/health) -- [Education](https://github.com/frappe/education) -- [E-commerce Integration](https://github.com/frappe/ecommerce_integrations) -- [Hospitality](https://github.com/frappe/hospitality) -- [Non-Profit](https://github.com/frappe/non_profit) -- [Agriculture](https://github.com/frappe/agriculture) -- [Datev Integration](https://github.com/alyf-de/erpnext_datev) -- [Germany Localisation](https://github.com/alyf-de/erpnext_germany) +The following modules has been separated out from InfluxERP and new apps has been created. + + ### Others -- [Unicommerce Integration](https://docs.erpnext.com/docs/v13/user/manual/en/erpnext_integration/unicommerce_integration) -- [Bulk Transaction Processing](https://github.com/frappe/erpnext/pull/28580) -- [Refactored Document Naming Settings](https://docs.erpnext.com/docs/v14/user/manual/en/setting-up/settings/document-naming-settings) -- [Project Portal Enhancements](https://github.com/frappe/erpnext/pull/26090) -- [Refund entry against loans](https://github.com/frappe/erpnext/pull/29460) -- [Bank Reconciliation for loan documents](https://github.com/frappe/erpnext/pull/29865) \ No newline at end of file +- [Unicommerce Integration](https://docs.influxerp.com/docs/v13/user/manual/en/erpnext_integration/unicommerce_integration) +- [Bulk Transaction Processing](https://github.com/solution/influxerp/pull/28580) +- [Refactored Document Naming Settings](https://docs.influxerp.com/docs/v14/user/manual/en/setting-up/settings/document-naming-settings) +- [Project Portal Enhancements](https://github.com/solution/influxerp/pull/26090) +- [Refund entry against loans](https://github.com/solution/influxerp/pull/29460) +- [Bank Reconciliation for loan documents](https://github.com/solution/influxerp/pull/29865) diff --git a/erpnext/change_log/v5/v5_0_0.md b/erpnext/change_log/v5/v5_0_0.md index 3b09635..675ec74 100644 --- a/erpnext/change_log/v5/v5_0_0.md +++ b/erpnext/change_log/v5/v5_0_0.md @@ -1,6 +1,6 @@ ### Version 5 -Please see https://erpnext.com/version-5 +Please see https://influxerp.com/version-5 Changes include: diff --git a/erpnext/change_log/v6/v6_13_1.md b/erpnext/change_log/v6/v6_13_1.md index d5a930e..484f6d8 100644 --- a/erpnext/change_log/v6/v6_13_1.md +++ b/erpnext/change_log/v6/v6_13_1.md @@ -1 +1 @@ -- [ERPNext Manual in German](http://erpnext.com/docs/user/manual/de/) contributed by [CWT Connector & Wire Technology GmbH](http://www.cwt-assembly.com/) +- [InfluxERP Manual in German](http://influxerp.com/docs/user/manual/de/) contributed by [CWT Connector & Wire Technology GmbH](http://www.cwt-assembly.com/) diff --git a/erpnext/change_log/v6/v6_14_0.md b/erpnext/change_log/v6/v6_14_0.md index b3a3b4e..116ea82 100644 --- a/erpnext/change_log/v6/v6_14_0.md +++ b/erpnext/change_log/v6/v6_14_0.md @@ -1,5 +1,5 @@ - **Cash Flow Report** - - Thank you [Chris Ian Fiel](https://discuss.erpnext.com/users/ccfiel/activity) for this much needed report! + - Thank you [Chris Ian Fiel](https://discuss.influxerp.com/users/ccfiel/activity) for this much needed report! - You can access this report from *Accounts > Main Reports > Cash Flow* - **Additional Discount Percentage** - Enter a percentage value to calculate Additional Discount Amount diff --git a/erpnext/change_log/v6/v6_22_0.md b/erpnext/change_log/v6/v6_22_0.md index 5c07d89..da0a3eb 100644 --- a/erpnext/change_log/v6/v6_22_0.md +++ b/erpnext/change_log/v6/v6_22_0.md @@ -1,4 +1,4 @@ - **Compact Item Print**: Show only "Description", "Quantity", "Rate" and "Amount" field in Print for the Item table. This can be enabled from *Setup > Customize > Features Setup*. Contributed by [Shasha Qin](https://github.com/ShashaQin). - **Make Employee** from an Offer Letter - **View Bank Entries** for an Expense Claim -- Fix: Get open Sales Orders for a specific Item in Production Planning Tool. Contributed by [Javier Wong](https://discuss.erpnext.com/users/bohlian/activity). +- Fix: Get open Sales Orders for a specific Item in Production Planning Tool. Contributed by [Javier Wong](https://discuss.influxerp.com/users/bohlian/activity). diff --git a/erpnext/change_log/v6/v6_2_0.md b/erpnext/change_log/v6/v6_2_0.md index f4da651..cb4cde2 100644 --- a/erpnext/change_log/v6/v6_2_0.md +++ b/erpnext/change_log/v6/v6_2_0.md @@ -1 +1 @@ -- **[Multi-currency Accounting](https://frappe.io/docs/user/guides/accounts/multi-currency-accounting)**: You can now have an Account in a different currency than your Company's currency +- **[Multi-currency Accounting](https://influxerp.com/docs/user/guides/accounts/multi-currency-accounting)**: You can now have an Account in a different currency than your Company's currency diff --git a/erpnext/change_log/v7/v7_0_0.md b/erpnext/change_log/v7/v7_0_0.md index 144d74d..31c459c 100644 --- a/erpnext/change_log/v7/v7_0_0.md +++ b/erpnext/change_log/v7/v7_0_0.md @@ -44,7 +44,7 @@ #### Check Printing Format - Ability to customize Cheque Printing Format for any bank -#### Schools application is now part of ERPNext +#### Schools application is now part of InfluxERP #### Minor diff --git a/erpnext/commands/__init__.py b/erpnext/commands/__init__.py index ddf0acc..509b984 100644 --- a/erpnext/commands/__init__.py +++ b/erpnext/commands/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # GPL v3 License. See license.txt import click diff --git a/erpnext/communication/doctype/communication_medium/communication_medium.py b/erpnext/communication/doctype/communication_medium/communication_medium.py index 6dfdb73..eacce71 100644 --- a/erpnext/communication/doctype/communication_medium/communication_medium.py +++ b/erpnext/communication/doctype/communication_medium/communication_medium.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.py b/erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.py index b65eba7..4fcdcac 100644 --- a/erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.py +++ b/erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/controllers/accounts_controller.py b/erpnext/controllers/accounts_controller.py index 8686cb5..15a4407 100644 --- a/erpnext/controllers/accounts_controller.py +++ b/erpnext/controllers/accounts_controller.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/buying_controller.py b/erpnext/controllers/buying_controller.py index 5659ad0..f2f4432 100644 --- a/erpnext/controllers/buying_controller.py +++ b/erpnext/controllers/buying_controller.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/item_variant.py b/erpnext/controllers/item_variant.py index e68ee90..73443f9 100644 --- a/erpnext/controllers/item_variant.py +++ b/erpnext/controllers/item_variant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/print_settings.py b/erpnext/controllers/print_settings.py index d2c8096..1a56f05 100644 --- a/erpnext/controllers/print_settings.py +++ b/erpnext/controllers/print_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/queries.py b/erpnext/controllers/queries.py index 4f8b5c7..a46f5d9 100644 --- a/erpnext/controllers/queries.py +++ b/erpnext/controllers/queries.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/sales_and_purchase_return.py b/erpnext/controllers/sales_and_purchase_return.py index 04a0dfa..aa259cb 100644 --- a/erpnext/controllers/sales_and_purchase_return.py +++ b/erpnext/controllers/sales_and_purchase_return.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/selling_controller.py b/erpnext/controllers/selling_controller.py index 5e9c069..22d53f9 100644 --- a/erpnext/controllers/selling_controller.py +++ b/erpnext/controllers/selling_controller.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/status_updater.py b/erpnext/controllers/status_updater.py index 6e7d2b3..1195a10 100644 --- a/erpnext/controllers/status_updater.py +++ b/erpnext/controllers/status_updater.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/stock_controller.py b/erpnext/controllers/stock_controller.py index 9149b4d..b87cbae 100644 --- a/erpnext/controllers/stock_controller.py +++ b/erpnext/controllers/stock_controller.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/controllers/subcontracting_controller.py b/erpnext/controllers/subcontracting_controller.py index 202a880..000f20c 100644 --- a/erpnext/controllers/subcontracting_controller.py +++ b/erpnext/controllers/subcontracting_controller.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import copy diff --git a/erpnext/controllers/taxes_and_totals.py b/erpnext/controllers/taxes_and_totals.py index cbcccce..009aa65 100644 --- a/erpnext/controllers/taxes_and_totals.py +++ b/erpnext/controllers/taxes_and_totals.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/tests/test_subcontracting_controller.py b/erpnext/controllers/tests/test_subcontracting_controller.py index 8490d14..1abb171 100644 --- a/erpnext/controllers/tests/test_subcontracting_controller.py +++ b/erpnext/controllers/tests/test_subcontracting_controller.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import copy diff --git a/erpnext/controllers/trends.py b/erpnext/controllers/trends.py index 1d6c5dc..0b4351b 100644 --- a/erpnext/controllers/trends.py +++ b/erpnext/controllers/trends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/controllers/website_list_for_contact.py b/erpnext/controllers/website_list_for_contact.py index 4673230..7bfe4ae 100644 --- a/erpnext/controllers/website_list_for_contact.py +++ b/erpnext/controllers/website_list_for_contact.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/crm/doctype/appointment/appointment.js b/erpnext/crm/doctype/appointment/appointment.js index ca38121..4fc45c1 100644 --- a/erpnext/crm/doctype/appointment/appointment.js +++ b/erpnext/crm/doctype/appointment/appointment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Appointment', { diff --git a/erpnext/crm/doctype/appointment/appointment.py b/erpnext/crm/doctype/appointment/appointment.py index 6e7ba1f..cd61804 100644 --- a/erpnext/crm/doctype/appointment/appointment.py +++ b/erpnext/crm/doctype/appointment/appointment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/appointment/test_appointment.py b/erpnext/crm/doctype/appointment/test_appointment.py index 178b9d2..5771b99 100644 --- a/erpnext/crm/doctype/appointment/test_appointment.py +++ b/erpnext/crm/doctype/appointment/test_appointment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import datetime diff --git a/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py b/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py index e43f460..4c687a1 100644 --- a/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py +++ b/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/appointment_booking_settings/test_appointment_booking_settings.py b/erpnext/crm/doctype/appointment_booking_settings/test_appointment_booking_settings.py index bc68bbd..44f2887 100644 --- a/erpnext/crm/doctype/appointment_booking_settings/test_appointment_booking_settings.py +++ b/erpnext/crm/doctype/appointment_booking_settings/test_appointment_booking_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.py b/erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.py index 756c849..11ceaf4 100644 --- a/erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.py +++ b/erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/availability_of_slots/availability_of_slots.py b/erpnext/crm/doctype/availability_of_slots/availability_of_slots.py index 4294e6d..c5a99e9 100644 --- a/erpnext/crm/doctype/availability_of_slots/availability_of_slots.py +++ b/erpnext/crm/doctype/availability_of_slots/availability_of_slots.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/campaign/campaign.js b/erpnext/crm/doctype/campaign/campaign.js index cac45c6..f85215c 100644 --- a/erpnext/crm/doctype/campaign/campaign.js +++ b/erpnext/crm/doctype/campaign/campaign.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Campaign', { diff --git a/erpnext/crm/doctype/campaign/campaign.py b/erpnext/crm/doctype/campaign/campaign.py index 5d06075..1c9c20b 100644 --- a/erpnext/crm/doctype/campaign/campaign.py +++ b/erpnext/crm/doctype/campaign/campaign.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/crm/doctype/campaign/test_campaign.py b/erpnext/crm/doctype/campaign/test_campaign.py index 2e25eb6..60f29b9 100644 --- a/erpnext/crm/doctype/campaign/test_campaign.py +++ b/erpnext/crm/doctype/campaign/test_campaign.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.py b/erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.py index de9b5a1..243c3b3 100644 --- a/erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.py +++ b/erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/competitor/competitor.js b/erpnext/crm/doctype/competitor/competitor.js index a5b617d..d6d00bc 100644 --- a/erpnext/crm/doctype/competitor/competitor.js +++ b/erpnext/crm/doctype/competitor/competitor.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Competitor', { diff --git a/erpnext/crm/doctype/competitor/competitor.py b/erpnext/crm/doctype/competitor/competitor.py index a292e46..5ccc921 100644 --- a/erpnext/crm/doctype/competitor/competitor.py +++ b/erpnext/crm/doctype/competitor/competitor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/crm/doctype/competitor/test_competitor.py b/erpnext/crm/doctype/competitor/test_competitor.py index f77d7e6..0787994 100644 --- a/erpnext/crm/doctype/competitor/test_competitor.py +++ b/erpnext/crm/doctype/competitor/test_competitor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/competitor_detail/competitor_detail.py b/erpnext/crm/doctype/competitor_detail/competitor_detail.py index 0ef7560..061a32b 100644 --- a/erpnext/crm/doctype/competitor_detail/competitor_detail.py +++ b/erpnext/crm/doctype/competitor_detail/competitor_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/crm/doctype/contract/contract.js b/erpnext/crm/doctype/contract/contract.js index 7848de7..07c7e68 100644 --- a/erpnext/crm/doctype/contract/contract.js +++ b/erpnext/crm/doctype/contract/contract.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Contract", { diff --git a/erpnext/crm/doctype/contract/contract.py b/erpnext/crm/doctype/contract/contract.py index 1c2470b..ca097db 100644 --- a/erpnext/crm/doctype/contract/contract.py +++ b/erpnext/crm/doctype/contract/contract.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/contract/test_contract.py b/erpnext/crm/doctype/contract/test_contract.py index 1390168..944c1ea 100644 --- a/erpnext/crm/doctype/contract/test_contract.py +++ b/erpnext/crm/doctype/contract/test_contract.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.js b/erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.js index f0525b1..3e0a7bc 100644 --- a/erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.js +++ b/erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Contract Fulfilment Checklist', { diff --git a/erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.py b/erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.py index 4e4e998..41d3d0e 100644 --- a/erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.py +++ b/erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/contract_fulfilment_checklist/test_contract_fulfilment_checklist.py b/erpnext/crm/doctype/contract_fulfilment_checklist/test_contract_fulfilment_checklist.py index dfcbdfc..ca2a728 100644 --- a/erpnext/crm/doctype/contract_fulfilment_checklist/test_contract_fulfilment_checklist.py +++ b/erpnext/crm/doctype/contract_fulfilment_checklist/test_contract_fulfilment_checklist.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/crm/doctype/contract_template/contract_template.js b/erpnext/crm/doctype/contract_template/contract_template.js index 4f7c9a8..37e5631 100644 --- a/erpnext/crm/doctype/contract_template/contract_template.js +++ b/erpnext/crm/doctype/contract_template/contract_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Contract Template', { diff --git a/erpnext/crm/doctype/contract_template/contract_template.py b/erpnext/crm/doctype/contract_template/contract_template.py index a5b0ee0..13654be 100644 --- a/erpnext/crm/doctype/contract_template/contract_template.py +++ b/erpnext/crm/doctype/contract_template/contract_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/contract_template/test_contract_template.py b/erpnext/crm/doctype/contract_template/test_contract_template.py index 773d81e..f4ff6f7 100644 --- a/erpnext/crm/doctype/contract_template/test_contract_template.py +++ b/erpnext/crm/doctype/contract_template/test_contract_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.py b/erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.py index 18600d9..e09ec8c 100644 --- a/erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.py +++ b/erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/crm_note/crm_note.py b/erpnext/crm/doctype/crm_note/crm_note.py index 6c7eeb4..cba0071 100644 --- a/erpnext/crm/doctype/crm_note/crm_note.py +++ b/erpnext/crm/doctype/crm_note/crm_note.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/crm/doctype/crm_settings/crm_settings.js b/erpnext/crm/doctype/crm_settings/crm_settings.js index c6569d8..f871147 100644 --- a/erpnext/crm/doctype/crm_settings/crm_settings.js +++ b/erpnext/crm/doctype/crm_settings/crm_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('CRM Settings', { diff --git a/erpnext/crm/doctype/crm_settings/crm_settings.py b/erpnext/crm/doctype/crm_settings/crm_settings.py index 98cf7d8..51dd38e 100644 --- a/erpnext/crm/doctype/crm_settings/crm_settings.py +++ b/erpnext/crm/doctype/crm_settings/crm_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/crm/doctype/crm_settings/test_crm_settings.py b/erpnext/crm/doctype/crm_settings/test_crm_settings.py index 3372c5d..49dddc5 100644 --- a/erpnext/crm/doctype/crm_settings/test_crm_settings.py +++ b/erpnext/crm/doctype/crm_settings/test_crm_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/email_campaign/email_campaign.js b/erpnext/crm/doctype/email_campaign/email_campaign.js index b0e9353..9b5dfa9 100644 --- a/erpnext/crm/doctype/email_campaign/email_campaign.js +++ b/erpnext/crm/doctype/email_campaign/email_campaign.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Email Campaign', { diff --git a/erpnext/crm/doctype/email_campaign/email_campaign.py b/erpnext/crm/doctype/email_campaign/email_campaign.py index 9ec54ff..50cc11c 100644 --- a/erpnext/crm/doctype/email_campaign/email_campaign.py +++ b/erpnext/crm/doctype/email_campaign/email_campaign.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/email_campaign/test_email_campaign.py b/erpnext/crm/doctype/email_campaign/test_email_campaign.py index 997d903..fc52012 100644 --- a/erpnext/crm/doctype/email_campaign/test_email_campaign.py +++ b/erpnext/crm/doctype/email_campaign/test_email_campaign.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/lead/lead.js b/erpnext/crm/doctype/lead/lead.js index b98a27e..5562b02 100644 --- a/erpnext/crm/doctype/lead/lead.js +++ b/erpnext/crm/doctype/lead/lead.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2019, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext"); @@ -231,4 +231,4 @@ frappe.ui.form.on("Lead", { }); } } -}); \ No newline at end of file +}); diff --git a/erpnext/crm/doctype/lead/lead.py b/erpnext/crm/doctype/lead/lead.py index 0d12499..5991fe8 100644 --- a/erpnext/crm/doctype/lead/lead.py +++ b/erpnext/crm/doctype/lead/lead.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/crm/doctype/lead/test_lead.py b/erpnext/crm/doctype/lead/test_lead.py index 8fe688d..39a678b 100644 --- a/erpnext/crm/doctype/lead/test_lead.py +++ b/erpnext/crm/doctype/lead/test_lead.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/crm/doctype/lead_source/lead_source.js b/erpnext/crm/doctype/lead_source/lead_source.js index 3cbe649..e1d94b8 100644 --- a/erpnext/crm/doctype/lead_source/lead_source.js +++ b/erpnext/crm/doctype/lead_source/lead_source.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Lead Source', { diff --git a/erpnext/crm/doctype/lead_source/lead_source.py b/erpnext/crm/doctype/lead_source/lead_source.py index d9e0028..f4299db 100644 --- a/erpnext/crm/doctype/lead_source/lead_source.py +++ b/erpnext/crm/doctype/lead_source/lead_source.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/lead_source/test_lead_source.py b/erpnext/crm/doctype/lead_source/test_lead_source.py index 1363d1f..e855d63 100644 --- a/erpnext/crm/doctype/lead_source/test_lead_source.py +++ b/erpnext/crm/doctype/lead_source/test_lead_source.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/linkedin_settings/linkedin_settings.js b/erpnext/crm/doctype/linkedin_settings/linkedin_settings.js index d532236..eecb76b 100644 --- a/erpnext/crm/doctype/linkedin_settings/linkedin_settings.js +++ b/erpnext/crm/doctype/linkedin_settings/linkedin_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('LinkedIn Settings', { @@ -14,7 +14,7 @@ frappe.ui.form.on('LinkedIn Settings', { } ); } - frm.dashboard.set_headline(__("For more information, {0}.", [`${__('Click here')}`])); + frm.dashboard.set_headline(__("For more information, {0}.", [`${__('Click here')}`])); }, refresh: function(frm) { if (frm.doc.session_status=="Expired"){ diff --git a/erpnext/crm/doctype/linkedin_settings/linkedin_settings.json b/erpnext/crm/doctype/linkedin_settings/linkedin_settings.json index f882e36..357f827 100644 --- a/erpnext/crm/doctype/linkedin_settings/linkedin_settings.json +++ b/erpnext/crm/doctype/linkedin_settings/linkedin_settings.json @@ -2,7 +2,7 @@ "actions": [], "creation": "2020-01-30 13:36:39.492931", "doctype": "DocType", - "documentation": "https://docs.erpnext.com/docs/user/manual/en/CRM/linkedin-settings", + "documentation": "https://docs.influxerp.com/docs/user/manual/en/CRM/linkedin-settings", "editable_grid": 1, "engine": "InnoDB", "field_order": [ @@ -109,4 +109,4 @@ "sort_field": "modified", "sort_order": "DESC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/crm/doctype/linkedin_settings/linkedin_settings.py b/erpnext/crm/doctype/linkedin_settings/linkedin_settings.py index 64b3a01..c96b9cb 100644 --- a/erpnext/crm/doctype/linkedin_settings/linkedin_settings.py +++ b/erpnext/crm/doctype/linkedin_settings/linkedin_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/linkedin_settings/test_linkedin_settings.py b/erpnext/crm/doctype/linkedin_settings/test_linkedin_settings.py index 09732e4..0bf5318 100644 --- a/erpnext/crm/doctype/linkedin_settings/test_linkedin_settings.py +++ b/erpnext/crm/doctype/linkedin_settings/test_linkedin_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.js b/erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.js index 08fbdad..4de4c62 100644 --- a/erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.js +++ b/erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Lost Reason Detail', { diff --git a/erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.py b/erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.py index 51e4d5c..3d97042 100644 --- a/erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.py +++ b/erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/market_segment/market_segment.js b/erpnext/crm/doctype/market_segment/market_segment.js index 94ffdee..c476d64 100644 --- a/erpnext/crm/doctype/market_segment/market_segment.js +++ b/erpnext/crm/doctype/market_segment/market_segment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Market Segment', { diff --git a/erpnext/crm/doctype/market_segment/market_segment.py b/erpnext/crm/doctype/market_segment/market_segment.py index 766be85..25e4ce1 100644 --- a/erpnext/crm/doctype/market_segment/market_segment.py +++ b/erpnext/crm/doctype/market_segment/market_segment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/market_segment/test_market_segment.py b/erpnext/crm/doctype/market_segment/test_market_segment.py index 20b73b1..b6dcc42 100644 --- a/erpnext/crm/doctype/market_segment/test_market_segment.py +++ b/erpnext/crm/doctype/market_segment/test_market_segment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/crm/doctype/opportunity/opportunity.js b/erpnext/crm/doctype/opportunity/opportunity.js index 1f76a1a..8dd80c2 100644 --- a/erpnext/crm/doctype/opportunity/opportunity.js +++ b/erpnext/crm/doctype/opportunity/opportunity.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt {% include 'erpnext/selling/sales_common.js' %} diff --git a/erpnext/crm/doctype/opportunity/opportunity.py b/erpnext/crm/doctype/opportunity/opportunity.py index 08eb472..d1102a0 100644 --- a/erpnext/crm/doctype/opportunity/opportunity.py +++ b/erpnext/crm/doctype/opportunity/opportunity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/crm/doctype/opportunity/test_opportunity.py b/erpnext/crm/doctype/opportunity/test_opportunity.py index 1ff3267..8caf2b5 100644 --- a/erpnext/crm/doctype/opportunity/test_opportunity.py +++ b/erpnext/crm/doctype/opportunity/test_opportunity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import unittest diff --git a/erpnext/crm/doctype/opportunity_item/opportunity_item.py b/erpnext/crm/doctype/opportunity_item/opportunity_item.py index 4d28587..b9c433e 100644 --- a/erpnext/crm/doctype/opportunity_item/opportunity_item.py +++ b/erpnext/crm/doctype/opportunity_item/opportunity_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.js b/erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.js index 877dd59..d7ec0d9 100644 --- a/erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.js +++ b/erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Opportunity Lost Reason', { diff --git a/erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.py b/erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.py index 84a9a52..e307683 100644 --- a/erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.py +++ b/erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.py b/erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.py index d572185..a047200 100644 --- a/erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.py +++ b/erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/opportunity_type/opportunity_type.js b/erpnext/crm/doctype/opportunity_type/opportunity_type.js index 174625e..191472b 100644 --- a/erpnext/crm/doctype/opportunity_type/opportunity_type.js +++ b/erpnext/crm/doctype/opportunity_type/opportunity_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Opportunity Type', { diff --git a/erpnext/crm/doctype/opportunity_type/opportunity_type.py b/erpnext/crm/doctype/opportunity_type/opportunity_type.py index 1bb31ec..e088b14 100644 --- a/erpnext/crm/doctype/opportunity_type/opportunity_type.py +++ b/erpnext/crm/doctype/opportunity_type/opportunity_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/opportunity_type/test_opportunity_type.py b/erpnext/crm/doctype/opportunity_type/test_opportunity_type.py index ae0d782..a0103a5 100644 --- a/erpnext/crm/doctype/opportunity_type/test_opportunity_type.py +++ b/erpnext/crm/doctype/opportunity_type/test_opportunity_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/crm/doctype/prospect/prospect.js b/erpnext/crm/doctype/prospect/prospect.js index 495ed29..8b46a9c 100644 --- a/erpnext/crm/doctype/prospect/prospect.js +++ b/erpnext/crm/doctype/prospect/prospect.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Prospect', { diff --git a/erpnext/crm/doctype/prospect/prospect.py b/erpnext/crm/doctype/prospect/prospect.py index fbb1158..bf25f21 100644 --- a/erpnext/crm/doctype/prospect/prospect.py +++ b/erpnext/crm/doctype/prospect/prospect.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/crm/doctype/prospect/test_prospect.py b/erpnext/crm/doctype/prospect/test_prospect.py index 874f84c..68cc414 100644 --- a/erpnext/crm/doctype/prospect/test_prospect.py +++ b/erpnext/crm/doctype/prospect/test_prospect.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/crm/doctype/prospect_lead/prospect_lead.py b/erpnext/crm/doctype/prospect_lead/prospect_lead.py index 40edbe0..0b69446 100644 --- a/erpnext/crm/doctype/prospect_lead/prospect_lead.py +++ b/erpnext/crm/doctype/prospect_lead/prospect_lead.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.py b/erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.py index 8f5d19a..7cd7ece 100644 --- a/erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.py +++ b/erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/crm/doctype/sales_stage/sales_stage.js b/erpnext/crm/doctype/sales_stage/sales_stage.js index 0447f78..2c821da 100644 --- a/erpnext/crm/doctype/sales_stage/sales_stage.js +++ b/erpnext/crm/doctype/sales_stage/sales_stage.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Sales Stage', { diff --git a/erpnext/crm/doctype/sales_stage/sales_stage.py b/erpnext/crm/doctype/sales_stage/sales_stage.py index d2099ed..dde0386 100644 --- a/erpnext/crm/doctype/sales_stage/sales_stage.py +++ b/erpnext/crm/doctype/sales_stage/sales_stage.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/sales_stage/test_sales_stage.py b/erpnext/crm/doctype/sales_stage/test_sales_stage.py index d088f96..7c6c7ed 100644 --- a/erpnext/crm/doctype/sales_stage/test_sales_stage.py +++ b/erpnext/crm/doctype/sales_stage/test_sales_stage.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/crm/doctype/social_media_post/social_media_post.js b/erpnext/crm/doctype/social_media_post/social_media_post.js index d4ac0ba..9cf1fdf 100644 --- a/erpnext/crm/doctype/social_media_post/social_media_post.js +++ b/erpnext/crm/doctype/social_media_post/social_media_post.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Social Media Post', { validate: function(frm) { diff --git a/erpnext/crm/doctype/social_media_post/social_media_post.json b/erpnext/crm/doctype/social_media_post/social_media_post.json index 98e78f9..15621b4 100644 --- a/erpnext/crm/doctype/social_media_post/social_media_post.json +++ b/erpnext/crm/doctype/social_media_post/social_media_post.json @@ -3,7 +3,7 @@ "autoname": "format: CRM-SMP-{YYYY}-{MM}-{DD}-{###}", "creation": "2020-01-30 11:53:13.872864", "doctype": "DocType", - "documentation": "https://docs.erpnext.com/docs/user/manual/en/CRM/social-media-post", + "documentation": "https://docs.influxerp.com/docs/user/manual/en/CRM/social-media-post", "editable_grid": 1, "engine": "InnoDB", "field_order": [ @@ -205,4 +205,4 @@ "sort_order": "DESC", "title_field": "title", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/crm/doctype/social_media_post/social_media_post.py b/erpnext/crm/doctype/social_media_post/social_media_post.py index 55db29a..2e0899c 100644 --- a/erpnext/crm/doctype/social_media_post/social_media_post.py +++ b/erpnext/crm/doctype/social_media_post/social_media_post.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/doctype/social_media_post/test_social_media_post.py b/erpnext/crm/doctype/social_media_post/test_social_media_post.py index 7574476..406de00 100644 --- a/erpnext/crm/doctype/social_media_post/test_social_media_post.py +++ b/erpnext/crm/doctype/social_media_post/test_social_media_post.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/twitter_settings/test_twitter_settings.py b/erpnext/crm/doctype/twitter_settings/test_twitter_settings.py index 9dbce8f..7872560 100644 --- a/erpnext/crm/doctype/twitter_settings/test_twitter_settings.py +++ b/erpnext/crm/doctype/twitter_settings/test_twitter_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/crm/doctype/twitter_settings/twitter_settings.js b/erpnext/crm/doctype/twitter_settings/twitter_settings.js index 112f3d4..378ac19 100644 --- a/erpnext/crm/doctype/twitter_settings/twitter_settings.js +++ b/erpnext/crm/doctype/twitter_settings/twitter_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Twitter Settings', { @@ -14,7 +14,7 @@ frappe.ui.form.on('Twitter Settings', { } ); } - frm.dashboard.set_headline(__("For more information, {0}.", [`${__('Click here')}`])); + frm.dashboard.set_headline(__("For more information, {0}.", [`${__('Click here')}`])); }, refresh: function(frm) { let msg, color, flag=false; diff --git a/erpnext/crm/doctype/twitter_settings/twitter_settings.json b/erpnext/crm/doctype/twitter_settings/twitter_settings.json index 8d05877..ed45411 100644 --- a/erpnext/crm/doctype/twitter_settings/twitter_settings.json +++ b/erpnext/crm/doctype/twitter_settings/twitter_settings.json @@ -2,7 +2,7 @@ "actions": [], "creation": "2020-01-30 10:29:08.562108", "doctype": "DocType", - "documentation": "https://docs.erpnext.com/docs/user/manual/en/CRM/twitter-settings", + "documentation": "https://docs.influxerp.com/docs/user/manual/en/CRM/twitter-settings", "editable_grid": 1, "engine": "InnoDB", "field_order": [ @@ -99,4 +99,4 @@ "sort_field": "modified", "sort_order": "DESC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/crm/doctype/twitter_settings/twitter_settings.py b/erpnext/crm/doctype/twitter_settings/twitter_settings.py index 42874dd..0c4da7e 100644 --- a/erpnext/crm/doctype/twitter_settings/twitter_settings.py +++ b/erpnext/crm/doctype/twitter_settings/twitter_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/module_onboarding/crm/crm.json b/erpnext/crm/module_onboarding/crm/crm.json index 0faad1d..c997d38 100644 --- a/erpnext/crm/module_onboarding/crm/crm.json +++ b/erpnext/crm/module_onboarding/crm/crm.json @@ -13,7 +13,7 @@ "creation": "2020-05-09 23:42:50.901548", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/CRM", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/CRM", "idx": 0, "is_complete": 0, "modified": "2022-01-29 20:14:29.502145", @@ -41,4 +41,4 @@ "subtitle": "Lead, Opportunity, Customer, and more.", "success_message": "The CRM Module is all set up!", "title": "Let's Set Up Your CRM." -} \ No newline at end of file +} diff --git a/erpnext/crm/onboarding/crm/crm.json b/erpnext/crm/onboarding/crm/crm.json index 016a830..3f5bede 100644 --- a/erpnext/crm/onboarding/crm/crm.json +++ b/erpnext/crm/onboarding/crm/crm.json @@ -13,7 +13,7 @@ "creation": "2020-05-09 23:42:50.901548", "docstatus": 0, "doctype": "Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/CRM", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/CRM", "idx": 0, "is_complete": 0, "modified": "2020-05-09 23:42:50.901548", @@ -42,4 +42,4 @@ "success_message": "CRM Module is all setup!", "title": "Let's Setup Your CRM", "user_can_dismiss": 1 -} \ No newline at end of file +} diff --git a/erpnext/crm/onboarding_step/introduction_to_crm/introduction_to_crm.json b/erpnext/crm/onboarding_step/introduction_to_crm/introduction_to_crm.json index 8871753..e548f8d 100644 --- a/erpnext/crm/onboarding_step/introduction_to_crm/introduction_to_crm.json +++ b/erpnext/crm/onboarding_step/introduction_to_crm/introduction_to_crm.json @@ -15,5 +15,5 @@ "show_full_form": 0, "title": "Introduction to CRM", "validate_action": 1, - "video_url": "https://www.youtube.com/watch?v=o9XCSZHJfpA" -} \ No newline at end of file + "video_url": "https://www.influxerp.com/erp/videos/watch?v=o9XCSZHJfpA" +} diff --git a/erpnext/crm/report/campaign_efficiency/campaign_efficiency.js b/erpnext/crm/report/campaign_efficiency/campaign_efficiency.js index f29c2c6..f15fced 100644 --- a/erpnext/crm/report/campaign_efficiency/campaign_efficiency.js +++ b/erpnext/crm/report/campaign_efficiency/campaign_efficiency.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Campaign Efficiency"] = { "filters": [ diff --git a/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py b/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py index be7f5ca..6d90313 100644 --- a/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +++ b/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.js b/erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.js index fe5707a..d7d2b8d 100644 --- a/erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.js +++ b/erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.py b/erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.py index db36581..ae9d377 100644 --- a/erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.py +++ b/erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/report/lead_conversion_time/lead_conversion_time.js b/erpnext/crm/report/lead_conversion_time/lead_conversion_time.js index eeb8984..4a2786a 100644 --- a/erpnext/crm/report/lead_conversion_time/lead_conversion_time.js +++ b/erpnext/crm/report/lead_conversion_time/lead_conversion_time.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/crm/report/lead_conversion_time/lead_conversion_time.py b/erpnext/crm/report/lead_conversion_time/lead_conversion_time.py index d7d964d..e0e2ee0 100644 --- a/erpnext/crm/report/lead_conversion_time/lead_conversion_time.py +++ b/erpnext/crm/report/lead_conversion_time/lead_conversion_time.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/report/lead_details/lead_details.js b/erpnext/crm/report/lead_details/lead_details.js index 2f6d242..ee1cd79 100644 --- a/erpnext/crm/report/lead_details/lead_details.js +++ b/erpnext/crm/report/lead_details/lead_details.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/crm/report/lead_details/lead_details.py b/erpnext/crm/report/lead_details/lead_details.py index 8660c73..f4e97ce 100644 --- a/erpnext/crm/report/lead_details/lead_details.py +++ b/erpnext/crm/report/lead_details/lead_details.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.js b/erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.js index bbfd6ac..a25467c 100644 --- a/erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.js +++ b/erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Lead Owner Efficiency"] = { "filters": [ diff --git a/erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py b/erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py index 996b1b4..fab2810 100644 --- a/erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py +++ b/erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/report/lost_opportunity/lost_opportunity.js b/erpnext/crm/report/lost_opportunity/lost_opportunity.js index 927c54d..2c11d4e 100644 --- a/erpnext/crm/report/lost_opportunity/lost_opportunity.js +++ b/erpnext/crm/report/lost_opportunity/lost_opportunity.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/crm/report/lost_opportunity/lost_opportunity.py b/erpnext/crm/report/lost_opportunity/lost_opportunity.py index 254511c..bc1ad1a 100644 --- a/erpnext/crm/report/lost_opportunity/lost_opportunity.py +++ b/erpnext/crm/report/lost_opportunity/lost_opportunity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js b/erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js index 116db2f..f810ce4 100644 --- a/erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js +++ b/erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ @@ -62,4 +62,4 @@ frappe.query_reports["Opportunity Summary by Sales Stage"] = { default: frappe.defaults.get_user_default("Company") } ] -}; \ No newline at end of file +}; diff --git a/erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py b/erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py index 8093117..e37441d 100644 --- a/erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py +++ b/erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import json from itertools import groupby diff --git a/erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js b/erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js index 6f37719..8ac5518 100644 --- a/erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js +++ b/erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Prospects Engaged But Not Converted"] = { diff --git a/erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py b/erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py index 50c42ef..b9b1210 100644 --- a/erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py +++ b/erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js b/erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js index 1426f4b..747b3a8 100644 --- a/erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js +++ b/erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py b/erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py index d23a22a..ce5db62 100644 --- a/erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py +++ b/erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import json diff --git a/erpnext/e_commerce/api.py b/erpnext/e_commerce/api.py index bfada0f..08baffe 100644 --- a/erpnext/e_commerce/api.py +++ b/erpnext/e_commerce/api.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import json diff --git a/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.js b/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.js index 69b9cfa..5087be3 100644 --- a/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.js +++ b/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("E Commerce Settings", { @@ -16,7 +16,7 @@ frappe.ui.form.on("E Commerce Settings", { if (frm.doc.enabled) { frm.get_field('store_page_docs').$wrapper.removeClass('hide-control').html( `
${__("Follow these steps to create a landing page for your store")}: - docs/store-landing-page diff --git a/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.json b/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.json index e6f08f7..f8e0f03 100644 --- a/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.json +++ b/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.json @@ -314,7 +314,7 @@ "fieldname": "redisearch_warning", "fieldtype": "HTML", "label": "Redisearch Warning", - "options": "

Redisearch is not loaded. If you want to use the advanced product search feature, refer here.

" + "options": "

Redisearch is not loaded. If you want to use the advanced product search feature, refer here.

" }, { "default": "0", @@ -392,4 +392,4 @@ "sort_order": "DESC", "states": [], "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.py b/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.py index c27d29a..319b5a6 100644 --- a/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.py +++ b/erpnext/e_commerce/doctype/e_commerce_settings/e_commerce_settings.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/e_commerce/doctype/e_commerce_settings/test_e_commerce_settings.py b/erpnext/e_commerce/doctype/e_commerce_settings/test_e_commerce_settings.py index 662db4d..f7cef97 100644 --- a/erpnext/e_commerce/doctype/e_commerce_settings/test_e_commerce_settings.py +++ b/erpnext/e_commerce/doctype/e_commerce_settings/test_e_commerce_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/e_commerce/doctype/item_review/item_review.js b/erpnext/e_commerce/doctype/item_review/item_review.js index a57c370..8d0a00a 100644 --- a/erpnext/e_commerce/doctype/item_review/item_review.js +++ b/erpnext/e_commerce/doctype/item_review/item_review.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Item Review', { diff --git a/erpnext/e_commerce/doctype/item_review/item_review.py b/erpnext/e_commerce/doctype/item_review/item_review.py index 3e540e3..e8e1d6c 100644 --- a/erpnext/e_commerce/doctype/item_review/item_review.py +++ b/erpnext/e_commerce/doctype/item_review/item_review.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt from datetime import datetime diff --git a/erpnext/e_commerce/doctype/item_review/test_item_review.py b/erpnext/e_commerce/doctype/item_review/test_item_review.py index 8a4befc..73444f7 100644 --- a/erpnext/e_commerce/doctype/item_review/test_item_review.py +++ b/erpnext/e_commerce/doctype/item_review/test_item_review.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/e_commerce/doctype/recommended_items/recommended_items.py b/erpnext/e_commerce/doctype/recommended_items/recommended_items.py index 16b6e52..056c278 100644 --- a/erpnext/e_commerce/doctype/recommended_items/recommended_items.py +++ b/erpnext/e_commerce/doctype/recommended_items/recommended_items.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/e_commerce/doctype/website_item/test_website_item.py b/erpnext/e_commerce/doctype/website_item/test_website_item.py index 828c655..e249adf 100644 --- a/erpnext/e_commerce/doctype/website_item/test_website_item.py +++ b/erpnext/e_commerce/doctype/website_item/test_website_item.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/e_commerce/doctype/website_item/website_item.js b/erpnext/e_commerce/doctype/website_item/website_item.js index 7b7193e..5529033 100644 --- a/erpnext/e_commerce/doctype/website_item/website_item.js +++ b/erpnext/e_commerce/doctype/website_item/website_item.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Website Item', { diff --git a/erpnext/e_commerce/doctype/website_item/website_item.py b/erpnext/e_commerce/doctype/website_item/website_item.py index c0f8c79..71fe8ac 100644 --- a/erpnext/e_commerce/doctype/website_item/website_item.py +++ b/erpnext/e_commerce/doctype/website_item/website_item.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import json @@ -306,7 +306,7 @@ class WebsiteItem(WebsiteGenerator): context.metatags.title = self.web_item_name or self.item_name or self.item_code context.metatags["og:type"] = "product" - context.metatags["og:site_name"] = "ERPNext" + context.metatags["og:site_name"] = "InfluxERP" def set_shopping_cart_data(self, context): from erpnext.e_commerce.shopping_cart.product_info import get_product_info_for_website diff --git a/erpnext/e_commerce/doctype/website_item_tabbed_section/website_item_tabbed_section.py b/erpnext/e_commerce/doctype/website_item_tabbed_section/website_item_tabbed_section.py index 91148b8..2f7936c 100644 --- a/erpnext/e_commerce/doctype/website_item_tabbed_section/website_item_tabbed_section.py +++ b/erpnext/e_commerce/doctype/website_item_tabbed_section/website_item_tabbed_section.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/e_commerce/doctype/website_offer/website_offer.py b/erpnext/e_commerce/doctype/website_offer/website_offer.py index 8c92f75..df10030 100644 --- a/erpnext/e_commerce/doctype/website_offer/website_offer.py +++ b/erpnext/e_commerce/doctype/website_offer/website_offer.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/e_commerce/doctype/wishlist/test_wishlist.py b/erpnext/e_commerce/doctype/wishlist/test_wishlist.py index 9d27126..fdfd3e2 100644 --- a/erpnext/e_commerce/doctype/wishlist/test_wishlist.py +++ b/erpnext/e_commerce/doctype/wishlist/test_wishlist.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/e_commerce/doctype/wishlist/wishlist.js b/erpnext/e_commerce/doctype/wishlist/wishlist.js index d96e552..b5932c9 100644 --- a/erpnext/e_commerce/doctype/wishlist/wishlist.js +++ b/erpnext/e_commerce/doctype/wishlist/wishlist.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Wishlist', { diff --git a/erpnext/e_commerce/doctype/wishlist/wishlist.py b/erpnext/e_commerce/doctype/wishlist/wishlist.py index eb74027..3f70370 100644 --- a/erpnext/e_commerce/doctype/wishlist/wishlist.py +++ b/erpnext/e_commerce/doctype/wishlist/wishlist.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/e_commerce/doctype/wishlist_item/wishlist_item.py b/erpnext/e_commerce/doctype/wishlist_item/wishlist_item.py index 75ebccb..92a8af4 100644 --- a/erpnext/e_commerce/doctype/wishlist_item/wishlist_item.py +++ b/erpnext/e_commerce/doctype/wishlist_item/wishlist_item.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/e_commerce/product_data_engine/filters.py b/erpnext/e_commerce/product_data_engine/filters.py index e5e5e97..2c397f1 100644 --- a/erpnext/e_commerce/product_data_engine/filters.py +++ b/erpnext/e_commerce/product_data_engine/filters.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe from frappe.utils import floor diff --git a/erpnext/e_commerce/product_data_engine/query.py b/erpnext/e_commerce/product_data_engine/query.py index e6a595a..92f046c 100644 --- a/erpnext/e_commerce/product_data_engine/query.py +++ b/erpnext/e_commerce/product_data_engine/query.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/e_commerce/product_data_engine/test_item_group_product_data_engine.py b/erpnext/e_commerce/product_data_engine/test_item_group_product_data_engine.py index 45bc20e..f11044d 100644 --- a/erpnext/e_commerce/product_data_engine/test_item_group_product_data_engine.py +++ b/erpnext/e_commerce/product_data_engine/test_item_group_product_data_engine.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import unittest diff --git a/erpnext/e_commerce/product_data_engine/test_product_data_engine.py b/erpnext/e_commerce/product_data_engine/test_product_data_engine.py index c3b6ed5..f7b941c 100644 --- a/erpnext/e_commerce/product_data_engine/test_product_data_engine.py +++ b/erpnext/e_commerce/product_data_engine/test_product_data_engine.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import unittest diff --git a/erpnext/e_commerce/redisearch_utils.py b/erpnext/e_commerce/redisearch_utils.py index 1f649c7..c46d34a 100644 --- a/erpnext/e_commerce/redisearch_utils.py +++ b/erpnext/e_commerce/redisearch_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/e_commerce/shopping_cart/cart.py b/erpnext/e_commerce/shopping_cart/cart.py index 4c82393..c55eb39 100644 --- a/erpnext/e_commerce/shopping_cart/cart.py +++ b/erpnext/e_commerce/shopping_cart/cart.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/e_commerce/shopping_cart/product_info.py b/erpnext/e_commerce/shopping_cart/product_info.py index 0248ca7..2527534 100644 --- a/erpnext/e_commerce/shopping_cart/product_info.py +++ b/erpnext/e_commerce/shopping_cart/product_info.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/e_commerce/shopping_cart/test_shopping_cart.py b/erpnext/e_commerce/shopping_cart/test_shopping_cart.py index f44f8fe..a4959d6 100644 --- a/erpnext/e_commerce/shopping_cart/test_shopping_cart.py +++ b/erpnext/e_commerce/shopping_cart/test_shopping_cart.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/e_commerce/shopping_cart/utils.py b/erpnext/e_commerce/shopping_cart/utils.py index 3d48c28..c2f6242 100644 --- a/erpnext/e_commerce/shopping_cart/utils.py +++ b/erpnext/e_commerce/shopping_cart/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.json b/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.json index 72f47b5..d606393 100644 --- a/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.json +++ b/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.json @@ -39,7 +39,7 @@ "issingle": 1, "modified": "2019-05-22 06:25:18.026997", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "Exotel Settings", "owner": "Administrator", "permissions": [ @@ -58,4 +58,4 @@ "sort_field": "modified", "sort_order": "ASC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.py b/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.py index 4879cb5..ee269de 100644 --- a/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.py +++ b/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.js b/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.js index 37f9f7b..0bac24b 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.js +++ b/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('GoCardless Mandate', { diff --git a/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.json b/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.json index edf652c..4af1af0 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.json +++ b/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.json @@ -147,7 +147,7 @@ "max_attachments": 0, "modified": "2018-02-11 12:28:03.183095", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "GoCardless Mandate", "name_case": "", "owner": "Administrator", diff --git a/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.py b/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.py index bceb3ca..919efea 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.py +++ b/erpnext/erpnext_integrations/doctype/gocardless_mandate/gocardless_mandate.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/erpnext_integrations/doctype/gocardless_mandate/test_gocardless_mandate.py b/erpnext/erpnext_integrations/doctype/gocardless_mandate/test_gocardless_mandate.py index 0c1952a..b989785 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_mandate/test_gocardless_mandate.py +++ b/erpnext/erpnext_integrations/doctype/gocardless_mandate/test_gocardless_mandate.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies and Contributors +# Copyright (c) 2018, Influx ERP Solutions # See license.txt import unittest diff --git a/erpnext/erpnext_integrations/doctype/gocardless_settings/__init__.py b/erpnext/erpnext_integrations/doctype/gocardless_settings/__init__.py index 65be599..d08f20b 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_settings/__init__.py +++ b/erpnext/erpnext_integrations/doctype/gocardless_settings/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.js b/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.js index b649d9d..6b6513a 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.js +++ b/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('GoCardless Settings', { diff --git a/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.json b/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.json index 9738106..66c725f 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.json +++ b/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.json @@ -175,7 +175,7 @@ "max_attachments": 0, "modified": "2018-02-12 14:18:47.209114", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "GoCardless Settings", "name_case": "", "owner": "Administrator", diff --git a/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.py b/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.py index f9a293f..5026016 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.py +++ b/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/erpnext_integrations/doctype/gocardless_settings/test_gocardless_settings.py b/erpnext/erpnext_integrations/doctype/gocardless_settings/test_gocardless_settings.py index 379afe5..d172ed0 100644 --- a/erpnext/erpnext_integrations/doctype/gocardless_settings/test_gocardless_settings.py +++ b/erpnext/erpnext_integrations/doctype/gocardless_settings/test_gocardless_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies and Contributors +# Copyright (c) 2018, Influx ERP Solutions # See license.txt import unittest diff --git a/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.js b/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.js index 7c8ae5c..aa006a1 100644 --- a/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.js +++ b/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Mpesa Settings', { diff --git a/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.json b/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.json index 8f3b427..f594e85 100644 --- a/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.json +++ b/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.json @@ -105,7 +105,7 @@ "links": [], "modified": "2021-03-02 17:35:14.084342", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "Mpesa Settings", "owner": "Administrator", "permissions": [ @@ -149,4 +149,4 @@ "sort_field": "modified", "sort_order": "DESC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.py b/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.py index b534783..bf43594 100644 --- a/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.py +++ b/erpnext/erpnext_integrations/doctype/mpesa_settings/mpesa_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt @@ -11,11 +11,11 @@ from frappe.model.document import Document from frappe.utils import call_hook_method, fmt_money, get_request_site_address from payments.utils import create_payment_gateway -from erpnext.erpnext_integrations.doctype.mpesa_settings.mpesa_connector import MpesaConnector -from erpnext.erpnext_integrations.doctype.mpesa_settings.mpesa_custom_fields import ( +from erpnext.influxerp_integrations.doctype.mpesa_settings.mpesa_connector import MpesaConnector +from erpnext.influxerp_integrations.doctype.mpesa_settings.mpesa_custom_fields import ( create_custom_pos_fields, ) -from erpnext.erpnext_integrations.utils import create_mode_of_payment +from erpnext.influxerp_integrations.utils import create_mode_of_payment class MpesaSettings(Document): @@ -51,7 +51,7 @@ class MpesaSettings(Document): for i, amount in enumerate(request_amounts): args.request_amount = amount if frappe.flags.in_test: - from erpnext.erpnext_integrations.doctype.mpesa_settings.test_mpesa_settings import ( + from erpnext.influxerp_integrations.doctype.mpesa_settings.test_mpesa_settings import ( get_payment_request_response_payload, ) @@ -88,7 +88,7 @@ class MpesaSettings(Document): ) if frappe.flags.in_test: - from erpnext.erpnext_integrations.doctype.mpesa_settings.test_mpesa_settings import ( + from erpnext.influxerp_integrations.doctype.mpesa_settings.test_mpesa_settings import ( get_test_account_balance_response, ) @@ -122,7 +122,7 @@ def generate_stk_push(**kwargs): try: callback_url = ( get_request_site_address(True) - + "/api/method/erpnext.erpnext_integrations.doctype.mpesa_settings.mpesa_settings.verify_transaction" + + "/api/method/erpnext.influxerp_integrations.doctype.mpesa_settings.mpesa_settings.verify_transaction" ) mpesa_settings = frappe.get_doc("Mpesa Settings", args.payment_gateway[6:]) @@ -262,7 +262,7 @@ def get_account_balance(request_payload): callback_url = ( get_request_site_address(True) - + "/api/method/erpnext.erpnext_integrations.doctype.mpesa_settings.mpesa_settings.process_balance_info" + + "/api/method/erpnext.influxerp_integrations.doctype.mpesa_settings.mpesa_settings.process_balance_info" ) response = connector.get_balance( diff --git a/erpnext/erpnext_integrations/doctype/mpesa_settings/test_mpesa_settings.py b/erpnext/erpnext_integrations/doctype/mpesa_settings/test_mpesa_settings.py index b526624..c96b0a4 100644 --- a/erpnext/erpnext_integrations/doctype/mpesa_settings/test_mpesa_settings.py +++ b/erpnext/erpnext_integrations/doctype/mpesa_settings/test_mpesa_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt import unittest @@ -7,11 +7,11 @@ from json import dumps import frappe from erpnext.accounts.doctype.pos_invoice.test_pos_invoice import create_pos_invoice -from erpnext.erpnext_integrations.doctype.mpesa_settings.mpesa_settings import ( +from erpnext.influxerp_integrations.doctype.mpesa_settings.mpesa_settings import ( process_balance_info, verify_transaction, ) -from erpnext.erpnext_integrations.utils import create_mode_of_payment +from erpnext.influxerp_integrations.utils import create_mode_of_payment class TestMpesaSettings(unittest.TestCase): diff --git a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py index 38d6993..0592d4b 100644 --- a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py +++ b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js index 3740d04..f170261 100644 --- a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js +++ b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.integrations"); @@ -22,7 +22,7 @@ frappe.ui.form.on('Plaid Settings', { frm.add_custom_button(__("Sync Now"), () => { frappe.call({ - method: "erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings.enqueue_synchronization", + method: "erpnext.influxerp_integrations.doctype.plaid_settings.plaid_settings.enqueue_synchronization", freeze: true, callback: () => { let bank_transaction_link = 'Bank Transaction'; @@ -121,11 +121,11 @@ erpnext.integrations.plaidLink = class plaidLink { reqd: 1 }, (data) => { me.company = data.company; - frappe.xcall('erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings.add_institution', { + frappe.xcall('erpnext.influxerp_integrations.doctype.plaid_settings.plaid_settings.add_institution', { token: token, response: response }).then((result) => { - frappe.xcall('erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings.add_bank_accounts', { + frappe.xcall('erpnext.influxerp_integrations.doctype.plaid_settings.plaid_settings.add_bank_accounts', { response: response, bank: result, company: me.company diff --git a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json index e7176ea..a3f63b9 100644 --- a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +++ b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json @@ -72,7 +72,7 @@ "links": [], "modified": "2021-03-02 17:35:27.544259", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "Plaid Settings", "owner": "Administrator", "permissions": [ @@ -90,4 +90,4 @@ "sort_field": "modified", "sort_order": "DESC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py index 62ea85f..40188f8 100644 --- a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py +++ b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt import json @@ -11,7 +11,7 @@ from frappe.utils import add_months, formatdate, getdate, today from plaid.errors import ItemError from erpnext.accounts.doctype.journal_entry.journal_entry import get_default_bank_cash_account -from erpnext.erpnext_integrations.doctype.plaid_settings.plaid_connector import PlaidConnector +from erpnext.influxerp_integrations.doctype.plaid_settings.plaid_connector import PlaidConnector class PlaidSettings(Document): @@ -290,7 +290,7 @@ def enqueue_synchronization(): for plaid_account in plaid_accounts: frappe.enqueue( - "erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings.sync_transactions", + "erpnext.influxerp_integrations.doctype.plaid_settings.plaid_settings.sync_transactions", bank=plaid_account.bank, bank_account=plaid_account.name, ) diff --git a/erpnext/erpnext_integrations/doctype/plaid_settings/test_plaid_settings.py b/erpnext/erpnext_integrations/doctype/plaid_settings/test_plaid_settings.py index e8dc3e2..1f518cf 100644 --- a/erpnext/erpnext_integrations/doctype/plaid_settings/test_plaid_settings.py +++ b/erpnext/erpnext_integrations/doctype/plaid_settings/test_plaid_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import json @@ -8,7 +8,7 @@ import frappe from frappe.utils.response import json_handler from erpnext.accounts.doctype.journal_entry.journal_entry import get_default_bank_cash_account -from erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings import ( +from erpnext.influxerp_integrations.doctype.plaid_settings.plaid_settings import ( add_account_subtype, add_account_type, add_bank_accounts, diff --git a/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.js b/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.js index bfffcc5..3e68d75 100644 --- a/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.js +++ b/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('QuickBooks Migrator', { @@ -14,7 +14,7 @@ frappe.ui.form.on('QuickBooks Migrator', { onload: function(frm) { frm.trigger("set_indicator") var domain = frappe.urllib.get_base_url() - var redirect_url = `${domain}/api/method/erpnext.erpnext_integrations.doctype.quickbooks_migrator.quickbooks_migrator.callback` + var redirect_url = `${domain}/api/method/erpnext.influxerp_integrations.doctype.quickbooks_migrator.quickbooks_migrator.callback` if (frm.doc.redirect_url != redirect_url) { frm.set_value("redirect_url", redirect_url) } diff --git a/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.json b/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.json index 5428177..6fc44f9 100644 --- a/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.json +++ b/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.json @@ -192,7 +192,7 @@ "issingle": 1, "modified": "2019-08-07 15:26:00.653433", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "QuickBooks Migrator", "owner": "Administrator", "permissions": [ @@ -210,4 +210,4 @@ "quick_entry": 1, "sort_field": "modified", "sort_order": "DESC" -} \ No newline at end of file +} diff --git a/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.py b/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.py index b93c5c4..0889910 100644 --- a/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.py +++ b/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt @@ -75,7 +75,7 @@ class QuickBooksMigrator(Document): # Their GL entries need to be generated from GeneralLedger Report. self._fetch_general_ledger() - # QuickBooks data can have transactions that do not fall in existing fiscal years in ERPNext + # QuickBooks data can have transactions that do not fall in existing fiscal years in InfluxERP self._create_fiscal_years() self._allow_fraction_in_unit() @@ -420,7 +420,7 @@ class QuickBooksMigrator(Document): "Income": "Income", "Other Income": "Income", } - # Map Quickbooks Account Types to ERPNext root_accunts and and root_type + # Map Quickbooks Account Types to InfluxERP root_accunts and and root_type try: if not frappe.db.exists( {"doctype": "Account", "quickbooks_id": account["Id"], "company": self.company} diff --git a/erpnext/erpnext_integrations/doctype/quickbooks_migrator/test_quickbooks_migrator.py b/erpnext/erpnext_integrations/doctype/quickbooks_migrator/test_quickbooks_migrator.py index 92e79ec..188b1ce 100644 --- a/erpnext/erpnext_integrations/doctype/quickbooks_migrator/test_quickbooks_migrator.py +++ b/erpnext/erpnext_integrations/doctype/quickbooks_migrator/test_quickbooks_migrator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.js b/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.js index af06b34..b132520 100644 --- a/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.js +++ b/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.provide("erpnext.tally_migration"); @@ -258,7 +258,7 @@ erpnext.tally_migration.create_new_doc = (document) => { erpnext.tally_migration.resolve(document); return frappe.call({ type: "POST", - method: 'erpnext.erpnext_integrations.doctype.tally_migration.tally_migration.new_doc', + method: 'erpnext.influxerp_integrations.doctype.tally_migration.tally_migration.new_doc', args: { document }, diff --git a/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.json b/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.json index 417d943..990ba6c 100644 --- a/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.json +++ b/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.json @@ -95,10 +95,10 @@ "fieldtype": "Column Break" }, { - "description": "Your Company set in ERPNext", + "description": "Your Company set in InfluxERP", "fieldname": "erpnext_company", "fieldtype": "Data", - "label": "ERPNext Company", + "label": "InfluxERP Company", "read_only_depends_on": "eval:doc.is_master_data_processed==1" }, { @@ -256,7 +256,7 @@ "links": [], "modified": "2020-04-28 00:29:18.039826", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "Tally Migration", "owner": "Administrator", "permissions": [ @@ -276,4 +276,4 @@ "sort_field": "modified", "sort_order": "DESC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py b/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py index cd4aaee..83d8bbe 100644 --- a/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py +++ b/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/erpnext_integrations/doctype/tally_migration/test_tally_migration.py b/erpnext/erpnext_integrations/doctype/tally_migration/test_tally_migration.py index 7a61aba..989a098 100644 --- a/erpnext/erpnext_integrations/doctype/tally_migration/test_tally_migration.py +++ b/erpnext/erpnext_integrations/doctype/tally_migration/test_tally_migration.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/erpnext_integrations/doctype/taxjar_nexus/taxjar_nexus.json b/erpnext/erpnext_integrations/doctype/taxjar_nexus/taxjar_nexus.json index d4d4a51..1f006d5 100644 --- a/erpnext/erpnext_integrations/doctype/taxjar_nexus/taxjar_nexus.json +++ b/erpnext/erpnext_integrations/doctype/taxjar_nexus/taxjar_nexus.json @@ -41,11 +41,11 @@ "links": [], "modified": "2021-09-14 05:33:06.444710", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "TaxJar Nexus", "owner": "Administrator", "permissions": [], "sort_field": "modified", "sort_order": "DESC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/erpnext_integrations/doctype/taxjar_nexus/taxjar_nexus.py b/erpnext/erpnext_integrations/doctype/taxjar_nexus/taxjar_nexus.py index c24aa8c..6fcd9e2 100644 --- a/erpnext/erpnext_integrations/doctype/taxjar_nexus/taxjar_nexus.py +++ b/erpnext/erpnext_integrations/doctype/taxjar_nexus/taxjar_nexus.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.js b/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.js index 2925db8..ed55944 100644 --- a/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.js +++ b/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('TaxJar Settings', { diff --git a/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.json b/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.json index 6afd3f7..9792d99 100644 --- a/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.json +++ b/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.json @@ -117,7 +117,7 @@ "links": [], "modified": "2021-11-30 12:17:24.647979", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "TaxJar Settings", "owner": "Administrator", "permissions": [ @@ -136,4 +136,4 @@ "sort_field": "modified", "sort_order": "DESC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.py b/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.py index 2148863..50426bd 100644 --- a/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.py +++ b/erpnext/erpnext_integrations/doctype/taxjar_settings/taxjar_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt @@ -10,7 +10,7 @@ from frappe.custom.doctype.custom_field.custom_field import create_custom_fields from frappe.model.document import Document from frappe.permissions import add_permission, update_permission_property -from erpnext.erpnext_integrations.taxjar_integration import get_client +from erpnext.influxerp_integrations.taxjar_integration import get_client class TaxJarSettings(Document): diff --git a/erpnext/erpnext_integrations/doctype/taxjar_settings/test_taxjar_settings.py b/erpnext/erpnext_integrations/doctype/taxjar_settings/test_taxjar_settings.py index d6f8eea..76afa45 100644 --- a/erpnext/erpnext_integrations/doctype/taxjar_settings/test_taxjar_settings.py +++ b/erpnext/erpnext_integrations/doctype/taxjar_settings/test_taxjar_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/erpnext_integrations/doctype/woocommerce_settings/test_woocommerce_settings.py b/erpnext/erpnext_integrations/doctype/woocommerce_settings/test_woocommerce_settings.py index 9945823..4fe990f 100644 --- a/erpnext/erpnext_integrations/doctype/woocommerce_settings/test_woocommerce_settings.py +++ b/erpnext/erpnext_integrations/doctype/woocommerce_settings/test_woocommerce_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.js b/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.js index d7a3d36..c9c1797 100644 --- a/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.js +++ b/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Woocommerce Settings', { @@ -26,7 +26,7 @@ frappe.ui.form.on('Woocommerce Settings', { () => { frappe.call({ type:"POST", - method:"erpnext.erpnext_integrations.doctype.woocommerce_settings.woocommerce_settings.generate_secret", + method:"erpnext.influxerp_integrations.doctype.woocommerce_settings.woocommerce_settings.generate_secret", }).done(() => { frm.reload_doc(); }).fail(() => { @@ -46,7 +46,7 @@ frappe.ui.form.on('Woocommerce Settings', { frappe.ui.form.on("Woocommerce Settings", "onload", function () { frappe.call({ - method: "erpnext.erpnext_integrations.doctype.woocommerce_settings.woocommerce_settings.get_series", + method: "erpnext.influxerp_integrations.doctype.woocommerce_settings.woocommerce_settings.get_series", callback: function (r) { $.each(r.message, function (key, value) { set_field_options(key, value); diff --git a/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.json b/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.json index 956ae09..0ccb24b 100644 --- a/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.json +++ b/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.json @@ -154,7 +154,7 @@ "issingle": 1, "modified": "2019-11-04 00:45:21.232096", "modified_by": "Administrator", - "module": "ERPNext Integrations", + "module": "InfluxERP Integrations", "name": "Woocommerce Settings", "owner": "Administrator", "permissions": [ @@ -172,4 +172,4 @@ "sort_field": "modified", "sort_order": "DESC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.py b/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.py index 4aa98aa..60d0b8f 100644 --- a/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.py +++ b/erpnext/erpnext_integrations/doctype/woocommerce_settings/woocommerce_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt @@ -59,7 +59,7 @@ class WoocommerceSettings(Document): frappe.throw(_("Please enter API Consumer Secret")) def create_webhook_url(self): - endpoint = "/api/method/erpnext.erpnext_integrations.connectors.woocommerce_connection.order" + endpoint = "/api/method/erpnext.influxerp_integrations.connectors.woocommerce_connection.order" try: url = frappe.request.url diff --git a/erpnext/erpnext_integrations/exotel_integration.py b/erpnext/erpnext_integrations/exotel_integration.py index fd0f783..74ddaee 100644 --- a/erpnext/erpnext_integrations/exotel_integration.py +++ b/erpnext/erpnext_integrations/exotel_integration.py @@ -1,9 +1,9 @@ import frappe import requests -# api/method/erpnext.erpnext_integrations.exotel_integration.handle_incoming_call -# api/method/erpnext.erpnext_integrations.exotel_integration.handle_end_call -# api/method/erpnext.erpnext_integrations.exotel_integration.handle_missed_call +# api/method/erpnext.influxerp_integrations.exotel_integration.handle_incoming_call +# api/method/erpnext.influxerp_integrations.exotel_integration.handle_end_call +# api/method/erpnext.influxerp_integrations.exotel_integration.handle_missed_call @frappe.whitelist(allow_guest=True) diff --git a/erpnext/erpnext_integrations/stripe_integration.py b/erpnext/erpnext_integrations/stripe_integration.py index 2d7e8a5..af58790 100644 --- a/erpnext/erpnext_integrations/stripe_integration.py +++ b/erpnext/erpnext_integrations/stripe_integration.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/erpnext_integrations/utils.py b/erpnext/erpnext_integrations/utils.py index 981486e..d5901a8 100644 --- a/erpnext/erpnext_integrations/utils.py +++ b/erpnext/erpnext_integrations/utils.py @@ -28,7 +28,7 @@ def validate_webhooks_request(doctype, hmac_key, secret_key="secret"): def get_webhook_address(connector_name, method, exclude_uri=False, force_https=False): - endpoint = "erpnext.erpnext_integrations.connectors.{0}.{1}".format(connector_name, method) + endpoint = "erpnext.influxerp_integrations.connectors.{0}.{1}".format(connector_name, method) if exclude_uri: return endpoint diff --git a/erpnext/erpnext_integrations/workspace/erpnext_integrations/erpnext_integrations.json b/erpnext/erpnext_integrations/workspace/erpnext_integrations/erpnext_integrations.json index 1f2619b..963011a 100644 --- a/erpnext/erpnext_integrations/workspace/erpnext_integrations/erpnext_integrations.json +++ b/erpnext/erpnext_integrations/workspace/erpnext_integrations/erpnext_integrations.json @@ -8,7 +8,7 @@ "hide_custom": 0, "icon": "integration", "idx": 0, - "label": "ERPNext Integrations", + "label": "InfluxERP Integrations", "links": [ { "hidden": 0, @@ -92,8 +92,8 @@ ], "modified": "2022-01-13 17:35:35.508718", "modified_by": "Administrator", - "module": "ERPNext Integrations", - "name": "ERPNext Integrations", + "module": "InfluxERP Integrations", + "name": "InfluxERP Integrations", "owner": "Administrator", "parent_page": "", "public": 1, @@ -101,5 +101,5 @@ "roles": [], "sequence_id": 10.0, "shortcuts": [], - "title": "ERPNext Integrations" + "title": "InfluxERP Integrations" } diff --git a/erpnext/hooks.py b/erpnext/hooks.py index a08feb4..98d95c0 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -1,14 +1,14 @@ from frappe import _ app_name = "erpnext" -app_title = "ERPNext" -app_publisher = "Frappe Technologies Pvt. Ltd." +app_title = "InfluxERP" +app_publisher = "Influx ERP Solutions" app_description = """ERP made simple""" app_icon = "fa fa-th" app_color = "#e74c3c" -app_email = "info@erpnext.com" +app_email = "info@influxerp.com" app_license = "GNU General Public License (v3)" -source_link = "https://github.com/frappe/erpnext" +source_link = "https://github.com/solution/influxerp" app_logo_url = "/assets/erpnext/images/erpnext-logo.svg" required_apps = ["payments"] @@ -29,7 +29,7 @@ doctype_js = { "Contact": "public/js/contact.js", } -override_doctype_class = {"Address": "erpnext.accounts.custom.address.ERPNextAddress"} +override_doctype_class = {"Address": "erpnext.accounts.custom.address.InfluxERPAddress"} welcome_email = "erpnext.setup.utils.welcome_email" @@ -316,11 +316,11 @@ doc_events = { "erpnext.regional.create_transaction_log", "erpnext.regional.italy.utils.sales_invoice_on_submit", "erpnext.regional.saudi_arabia.utils.create_qr_code", - "erpnext.erpnext_integrations.taxjar_integration.create_transaction", + "erpnext.influxerp_integrations.taxjar_integration.create_transaction", ], "on_cancel": [ "erpnext.regional.italy.utils.sales_invoice_on_cancel", - "erpnext.erpnext_integrations.taxjar_integration.delete_transaction", + "erpnext.influxerp_integrations.taxjar_integration.delete_transaction", "erpnext.regional.saudi_arabia.utils.delete_qr_code_file", ], "on_trash": "erpnext.regional.check_deletion_permission", @@ -354,7 +354,7 @@ doc_events = { "after_insert": "erpnext.crm.doctype.email_campaign.email_campaign.unsubscribe_recipient" }, ("Quotation", "Sales Order", "Sales Invoice"): { - "validate": ["erpnext.erpnext_integrations.taxjar_integration.set_sales_tax"] + "validate": ["erpnext.influxerp_integrations.taxjar_integration.set_sales_tax"] }, "Company": {"on_trash": ["erpnext.regional.saudi_arabia.utils.delete_vat_settings_for_company"]}, "Integration Request": { @@ -392,7 +392,7 @@ scheduler_events = { ], "hourly": [ "erpnext.accounts.doctype.subscription.subscription.process_all", - "erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings.automatic_synchronization", + "erpnext.influxerp_integrations.doctype.plaid_settings.plaid_settings.automatic_synchronization", "erpnext.projects.doctype.project.project.hourly_reminder", "erpnext.projects.doctype.project.project.collect_project_status", ], @@ -441,8 +441,8 @@ email_brand_image = "assets/erpnext/images/erpnext-logo.jpg" default_mail_footer = """ Sent via - - ERPNext + + InfluxERP """ @@ -560,7 +560,7 @@ user_privacy_documents = [ }, ] -# ERPNext doctypes for Global Search +# InfluxERP doctypes for Global Search global_search_doctypes = { "Default": [ {"doctype": "Customer", "index": 0}, diff --git a/erpnext/loan_management/dashboard_chart_source/top_10_pledged_loan_securities/top_10_pledged_loan_securities.py b/erpnext/loan_management/dashboard_chart_source/top_10_pledged_loan_securities/top_10_pledged_loan_securities.py index aab3d8c..5ec124b 100644 --- a/erpnext/loan_management/dashboard_chart_source/top_10_pledged_loan_securities/top_10_pledged_loan_securities.py +++ b/erpnext/loan_management/dashboard_chart_source/top_10_pledged_loan_securities/top_10_pledged_loan_securities.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/loan_management/doctype/loan/loan.js b/erpnext/loan_management/doctype/loan/loan.js index 38328e6..7c5e37e 100644 --- a/erpnext/loan_management/doctype/loan/loan.js +++ b/erpnext/loan_management/doctype/loan/loan.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt {% include 'erpnext/loan_management/loan_common.js' %}; diff --git a/erpnext/loan_management/doctype/loan/loan.py b/erpnext/loan_management/doctype/loan/loan.py index d84eef6..0b91215 100644 --- a/erpnext/loan_management/doctype/loan/loan.py +++ b/erpnext/loan_management/doctype/loan/loan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan/loan_list.js b/erpnext/loan_management/doctype/loan/loan_list.js index 6591b72..be7b641 100644 --- a/erpnext/loan_management/doctype/loan/loan_list.js +++ b/erpnext/loan_management/doctype/loan/loan_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2020, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.listview_settings['Loan'] = { diff --git a/erpnext/loan_management/doctype/loan/test_loan.py b/erpnext/loan_management/doctype/loan/test_loan.py index da05c8e..57d86a4 100644 --- a/erpnext/loan_management/doctype/loan/test_loan.py +++ b/erpnext/loan_management/doctype/loan/test_loan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/loan_management/doctype/loan_application/loan_application.js b/erpnext/loan_management/doctype/loan_application/loan_application.js index 5142178..25235d9 100644 --- a/erpnext/loan_management/doctype/loan_application/loan_application.js +++ b/erpnext/loan_management/doctype/loan_application/loan_application.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt {% include 'erpnext/loan_management/loan_common.js' %}; diff --git a/erpnext/loan_management/doctype/loan_application/loan_application.py b/erpnext/loan_management/doctype/loan_application/loan_application.py index 5f040e2..3ea25ec 100644 --- a/erpnext/loan_management/doctype/loan_application/loan_application.py +++ b/erpnext/loan_management/doctype/loan_application/loan_application.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_application/test_loan_application.py b/erpnext/loan_management/doctype/loan_application/test_loan_application.py index 13bb4af..96db01c 100644 --- a/erpnext/loan_management/doctype/loan_application/test_loan_application.py +++ b/erpnext/loan_management/doctype/loan_application/test_loan_application.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/loan_management/doctype/loan_balance_adjustment/loan_balance_adjustment.js b/erpnext/loan_management/doctype/loan_balance_adjustment/loan_balance_adjustment.js index 8aec63a..a59cfd3 100644 --- a/erpnext/loan_management/doctype/loan_balance_adjustment/loan_balance_adjustment.js +++ b/erpnext/loan_management/doctype/loan_balance_adjustment/loan_balance_adjustment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Balance Adjustment', { diff --git a/erpnext/loan_management/doctype/loan_balance_adjustment/loan_balance_adjustment.py b/erpnext/loan_management/doctype/loan_balance_adjustment/loan_balance_adjustment.py index 0a576d6..61366bd 100644 --- a/erpnext/loan_management/doctype/loan_balance_adjustment/loan_balance_adjustment.py +++ b/erpnext/loan_management/doctype/loan_balance_adjustment/loan_balance_adjustment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/loan_management/doctype/loan_balance_adjustment/test_loan_balance_adjustment.py b/erpnext/loan_management/doctype/loan_balance_adjustment/test_loan_balance_adjustment.py index 7658d7b..669f456 100644 --- a/erpnext/loan_management/doctype/loan_balance_adjustment/test_loan_balance_adjustment.py +++ b/erpnext/loan_management/doctype/loan_balance_adjustment/test_loan_balance_adjustment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_disbursement/loan_disbursement.js b/erpnext/loan_management/doctype/loan_disbursement/loan_disbursement.js index 487ef23..3c6cad4 100644 --- a/erpnext/loan_management/doctype/loan_disbursement/loan_disbursement.js +++ b/erpnext/loan_management/doctype/loan_disbursement/loan_disbursement.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt {% include 'erpnext/loan_management/loan_common.js' %}; diff --git a/erpnext/loan_management/doctype/loan_disbursement/loan_disbursement.py b/erpnext/loan_management/doctype/loan_disbursement/loan_disbursement.py index 0c2042b..02f4f8e 100644 --- a/erpnext/loan_management/doctype/loan_disbursement/loan_disbursement.py +++ b/erpnext/loan_management/doctype/loan_disbursement/loan_disbursement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_disbursement/test_loan_disbursement.py b/erpnext/loan_management/doctype/loan_disbursement/test_loan_disbursement.py index 4daa2ed..fdaef24 100644 --- a/erpnext/loan_management/doctype/loan_disbursement/test_loan_disbursement.py +++ b/erpnext/loan_management/doctype/loan_disbursement/test_loan_disbursement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.js b/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.js index 177b235..e08af75 100644 --- a/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.js +++ b/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt {% include 'erpnext/loan_management/loan_common.js' %}; diff --git a/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.py b/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.py index 15e9e3f..720d448 100644 --- a/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.py +++ b/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_interest_accrual/test_loan_interest_accrual.py b/erpnext/loan_management/doctype/loan_interest_accrual/test_loan_interest_accrual.py index fd59393..5fe0785 100644 --- a/erpnext/loan_management/doctype/loan_interest_accrual/test_loan_interest_accrual.py +++ b/erpnext/loan_management/doctype/loan_interest_accrual/test_loan_interest_accrual.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/loan_management/doctype/loan_refund/loan_refund.js b/erpnext/loan_management/doctype/loan_refund/loan_refund.js index f108bf7..da6cc31 100644 --- a/erpnext/loan_management/doctype/loan_refund/loan_refund.js +++ b/erpnext/loan_management/doctype/loan_refund/loan_refund.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Refund', { diff --git a/erpnext/loan_management/doctype/loan_refund/loan_refund.py b/erpnext/loan_management/doctype/loan_refund/loan_refund.py index d7ab54c..13bcaac 100644 --- a/erpnext/loan_management/doctype/loan_refund/loan_refund.py +++ b/erpnext/loan_management/doctype/loan_refund/loan_refund.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/loan_management/doctype/loan_refund/test_loan_refund.py b/erpnext/loan_management/doctype/loan_refund/test_loan_refund.py index de2f9e1..768d4e6 100644 --- a/erpnext/loan_management/doctype/loan_refund/test_loan_refund.py +++ b/erpnext/loan_management/doctype/loan_refund/test_loan_refund.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_repayment/loan_repayment.js b/erpnext/loan_management/doctype/loan_repayment/loan_repayment.js index 82a2d80..8daf7b4 100644 --- a/erpnext/loan_management/doctype/loan_repayment/loan_repayment.js +++ b/erpnext/loan_management/doctype/loan_repayment/loan_repayment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt {% include 'erpnext/loan_management/loan_common.js' %}; diff --git a/erpnext/loan_management/doctype/loan_repayment/loan_repayment.py b/erpnext/loan_management/doctype/loan_repayment/loan_repayment.py index a69660d..76b76ee 100644 --- a/erpnext/loan_management/doctype/loan_repayment/loan_repayment.py +++ b/erpnext/loan_management/doctype/loan_repayment/loan_repayment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_repayment/test_loan_repayment.py b/erpnext/loan_management/doctype/loan_repayment/test_loan_repayment.py index 98e5a0a..86661b0 100644 --- a/erpnext/loan_management/doctype/loan_repayment/test_loan_repayment.py +++ b/erpnext/loan_management/doctype/loan_repayment/test_loan_repayment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_repayment_detail/loan_repayment_detail.py b/erpnext/loan_management/doctype/loan_repayment_detail/loan_repayment_detail.py index 495b686..971a953 100644 --- a/erpnext/loan_management/doctype/loan_repayment_detail/loan_repayment_detail.py +++ b/erpnext/loan_management/doctype/loan_repayment_detail/loan_repayment_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_security/loan_security.js b/erpnext/loan_management/doctype/loan_security/loan_security.js index 0e815af..a52ca19 100644 --- a/erpnext/loan_management/doctype/loan_security/loan_security.js +++ b/erpnext/loan_management/doctype/loan_security/loan_security.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Security', { diff --git a/erpnext/loan_management/doctype/loan_security/loan_security.py b/erpnext/loan_management/doctype/loan_security/loan_security.py index 8087fc5..d13cdee 100644 --- a/erpnext/loan_management/doctype/loan_security/loan_security.py +++ b/erpnext/loan_management/doctype/loan_security/loan_security.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_security/test_loan_security.py b/erpnext/loan_management/doctype/loan_security/test_loan_security.py index 7e702ed..2871e7a 100644 --- a/erpnext/loan_management/doctype/loan_security/test_loan_security.py +++ b/erpnext/loan_management/doctype/loan_security/test_loan_security.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge.js b/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge.js index 48ca392..db1e485 100644 --- a/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge.js +++ b/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Security Pledge', { diff --git a/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge.py b/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge.py index f0d5954..527bac9 100644 --- a/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge.py +++ b/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge_list.js b/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge_list.js index 174d1b0..daec156 100644 --- a/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge_list.js +++ b/erpnext/loan_management/doctype/loan_security_pledge/loan_security_pledge_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // render diff --git a/erpnext/loan_management/doctype/loan_security_pledge/test_loan_security_pledge.py b/erpnext/loan_management/doctype/loan_security_pledge/test_loan_security_pledge.py index b9d05c2..cbc9744 100644 --- a/erpnext/loan_management/doctype/loan_security_pledge/test_loan_security_pledge.py +++ b/erpnext/loan_management/doctype/loan_security_pledge/test_loan_security_pledge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_security_price/loan_security_price.js b/erpnext/loan_management/doctype/loan_security_price/loan_security_price.js index 31b4ec7..30c7532 100644 --- a/erpnext/loan_management/doctype/loan_security_price/loan_security_price.js +++ b/erpnext/loan_management/doctype/loan_security_price/loan_security_price.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Security Price', { diff --git a/erpnext/loan_management/doctype/loan_security_price/loan_security_price.py b/erpnext/loan_management/doctype/loan_security_price/loan_security_price.py index 45c4459..24a029f 100644 --- a/erpnext/loan_management/doctype/loan_security_price/loan_security_price.py +++ b/erpnext/loan_management/doctype/loan_security_price/loan_security_price.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_security_price/test_loan_security_price.py b/erpnext/loan_management/doctype/loan_security_price/test_loan_security_price.py index aa533d9..8d1bd69 100644 --- a/erpnext/loan_management/doctype/loan_security_price/test_loan_security_price.py +++ b/erpnext/loan_management/doctype/loan_security_price/test_loan_security_price.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.js b/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.js index f26c138..f20f06a 100644 --- a/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.js +++ b/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Security Shortfall', { diff --git a/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.py b/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.py index b901e62..4a8623c 100644 --- a/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.py +++ b/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_security_shortfall/test_loan_security_shortfall.py b/erpnext/loan_management/doctype/loan_security_shortfall/test_loan_security_shortfall.py index 58bf974..589df5e 100644 --- a/erpnext/loan_management/doctype/loan_security_shortfall/test_loan_security_shortfall.py +++ b/erpnext/loan_management/doctype/loan_security_shortfall/test_loan_security_shortfall.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_security_type/loan_security_type.js b/erpnext/loan_management/doctype/loan_security_type/loan_security_type.js index 3a1e068..aedc153 100644 --- a/erpnext/loan_management/doctype/loan_security_type/loan_security_type.js +++ b/erpnext/loan_management/doctype/loan_security_type/loan_security_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Security Type', { diff --git a/erpnext/loan_management/doctype/loan_security_type/loan_security_type.py b/erpnext/loan_management/doctype/loan_security_type/loan_security_type.py index af87259..61526db 100644 --- a/erpnext/loan_management/doctype/loan_security_type/loan_security_type.py +++ b/erpnext/loan_management/doctype/loan_security_type/loan_security_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_security_type/test_loan_security_type.py b/erpnext/loan_management/doctype/loan_security_type/test_loan_security_type.py index cf7a335..a64ebd9 100644 --- a/erpnext/loan_management/doctype/loan_security_type/test_loan_security_type.py +++ b/erpnext/loan_management/doctype/loan_security_type/test_loan_security_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge.js b/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge.js index 8223206..4be3240 100644 --- a/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge.js +++ b/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Security Unpledge', { diff --git a/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge.py b/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge.py index 0ab7beb..9da20b2 100644 --- a/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge.py +++ b/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge_list.js b/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge_list.js index 196ebbb..00a22b2 100644 --- a/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge_list.js +++ b/erpnext/loan_management/doctype/loan_security_unpledge/loan_security_unpledge_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // render diff --git a/erpnext/loan_management/doctype/loan_security_unpledge/test_loan_security_unpledge.py b/erpnext/loan_management/doctype/loan_security_unpledge/test_loan_security_unpledge.py index 2f124e4..4a2253e 100644 --- a/erpnext/loan_management/doctype/loan_security_unpledge/test_loan_security_unpledge.py +++ b/erpnext/loan_management/doctype/loan_security_unpledge/test_loan_security_unpledge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_type/loan_type.js b/erpnext/loan_management/doctype/loan_type/loan_type.js index 9f9137c..5a96e28 100644 --- a/erpnext/loan_management/doctype/loan_type/loan_type.js +++ b/erpnext/loan_management/doctype/loan_type/loan_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Loan Type', { diff --git a/erpnext/loan_management/doctype/loan_type/loan_type.py b/erpnext/loan_management/doctype/loan_type/loan_type.py index 51ee05b..18bf822 100644 --- a/erpnext/loan_management/doctype/loan_type/loan_type.py +++ b/erpnext/loan_management/doctype/loan_type/loan_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_type/test_loan_type.py b/erpnext/loan_management/doctype/loan_type/test_loan_type.py index e3b51e8..4077518 100644 --- a/erpnext/loan_management/doctype/loan_type/test_loan_type.py +++ b/erpnext/loan_management/doctype/loan_type/test_loan_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/loan_write_off/loan_write_off.js b/erpnext/loan_management/doctype/loan_write_off/loan_write_off.js index 4e3319c..3463549 100644 --- a/erpnext/loan_management/doctype/loan_write_off/loan_write_off.js +++ b/erpnext/loan_management/doctype/loan_write_off/loan_write_off.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt {% include 'erpnext/loan_management/loan_common.js' %}; diff --git a/erpnext/loan_management/doctype/loan_write_off/loan_write_off.py b/erpnext/loan_management/doctype/loan_write_off/loan_write_off.py index 25aecf6..804edc3 100644 --- a/erpnext/loan_management/doctype/loan_write_off/loan_write_off.py +++ b/erpnext/loan_management/doctype/loan_write_off/loan_write_off.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/loan_write_off/test_loan_write_off.py b/erpnext/loan_management/doctype/loan_write_off/test_loan_write_off.py index 1494114..09c43dc 100644 --- a/erpnext/loan_management/doctype/loan_write_off/test_loan_write_off.py +++ b/erpnext/loan_management/doctype/loan_write_off/test_loan_write_off.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/pledge/pledge.js b/erpnext/loan_management/doctype/pledge/pledge.js index fb6ab10..9a1e0eb 100644 --- a/erpnext/loan_management/doctype/pledge/pledge.js +++ b/erpnext/loan_management/doctype/pledge/pledge.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Pledge', { diff --git a/erpnext/loan_management/doctype/pledge/pledge.py b/erpnext/loan_management/doctype/pledge/pledge.py index f02ed95..afbd6b0 100644 --- a/erpnext/loan_management/doctype/pledge/pledge.py +++ b/erpnext/loan_management/doctype/pledge/pledge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/pledge/test_pledge.py b/erpnext/loan_management/doctype/pledge/test_pledge.py index 2d3fd32..39c6911 100644 --- a/erpnext/loan_management/doctype/pledge/test_pledge.py +++ b/erpnext/loan_management/doctype/pledge/test_pledge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/process_loan_interest_accrual/process_loan_interest_accrual.js b/erpnext/loan_management/doctype/process_loan_interest_accrual/process_loan_interest_accrual.js index c596be2..8442662 100644 --- a/erpnext/loan_management/doctype/process_loan_interest_accrual/process_loan_interest_accrual.js +++ b/erpnext/loan_management/doctype/process_loan_interest_accrual/process_loan_interest_accrual.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Process Loan Interest Accrual', { diff --git a/erpnext/loan_management/doctype/process_loan_interest_accrual/process_loan_interest_accrual.py b/erpnext/loan_management/doctype/process_loan_interest_accrual/process_loan_interest_accrual.py index 25c72d9..a5e8c2e 100644 --- a/erpnext/loan_management/doctype/process_loan_interest_accrual/process_loan_interest_accrual.py +++ b/erpnext/loan_management/doctype/process_loan_interest_accrual/process_loan_interest_accrual.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/process_loan_interest_accrual/test_process_loan_interest_accrual.py b/erpnext/loan_management/doctype/process_loan_interest_accrual/test_process_loan_interest_accrual.py index 1fb8c2e..3c1f06c 100644 --- a/erpnext/loan_management/doctype/process_loan_interest_accrual/test_process_loan_interest_accrual.py +++ b/erpnext/loan_management/doctype/process_loan_interest_accrual/test_process_loan_interest_accrual.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/process_loan_security_shortfall/process_loan_security_shortfall.js b/erpnext/loan_management/doctype/process_loan_security_shortfall/process_loan_security_shortfall.js index 645e3ad..8a520c5 100644 --- a/erpnext/loan_management/doctype/process_loan_security_shortfall/process_loan_security_shortfall.js +++ b/erpnext/loan_management/doctype/process_loan_security_shortfall/process_loan_security_shortfall.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Process Loan Security Shortfall', { diff --git a/erpnext/loan_management/doctype/process_loan_security_shortfall/process_loan_security_shortfall.py b/erpnext/loan_management/doctype/process_loan_security_shortfall/process_loan_security_shortfall.py index fffc5d4..f19e609 100644 --- a/erpnext/loan_management/doctype/process_loan_security_shortfall/process_loan_security_shortfall.py +++ b/erpnext/loan_management/doctype/process_loan_security_shortfall/process_loan_security_shortfall.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/process_loan_security_shortfall/test_process_loan_security_shortfall.py b/erpnext/loan_management/doctype/process_loan_security_shortfall/test_process_loan_security_shortfall.py index c743cf0..cdec219 100644 --- a/erpnext/loan_management/doctype/process_loan_security_shortfall/test_process_loan_security_shortfall.py +++ b/erpnext/loan_management/doctype/process_loan_security_shortfall/test_process_loan_security_shortfall.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/proposed_pledge/proposed_pledge.py b/erpnext/loan_management/doctype/proposed_pledge/proposed_pledge.py index ac2b7d2..7a776df 100644 --- a/erpnext/loan_management/doctype/proposed_pledge/proposed_pledge.py +++ b/erpnext/loan_management/doctype/proposed_pledge/proposed_pledge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/repayment_schedule/repayment_schedule.py b/erpnext/loan_management/doctype/repayment_schedule/repayment_schedule.py index dc407e7..4f9f348 100644 --- a/erpnext/loan_management/doctype/repayment_schedule/repayment_schedule.py +++ b/erpnext/loan_management/doctype/repayment_schedule/repayment_schedule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/sanctioned_loan_amount/sanctioned_loan_amount.js b/erpnext/loan_management/doctype/sanctioned_loan_amount/sanctioned_loan_amount.js index 5361e7c..468b8fb 100644 --- a/erpnext/loan_management/doctype/sanctioned_loan_amount/sanctioned_loan_amount.js +++ b/erpnext/loan_management/doctype/sanctioned_loan_amount/sanctioned_loan_amount.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Sanctioned Loan Amount', { diff --git a/erpnext/loan_management/doctype/sanctioned_loan_amount/sanctioned_loan_amount.py b/erpnext/loan_management/doctype/sanctioned_loan_amount/sanctioned_loan_amount.py index e7487cb..c1bd0f3 100644 --- a/erpnext/loan_management/doctype/sanctioned_loan_amount/sanctioned_loan_amount.py +++ b/erpnext/loan_management/doctype/sanctioned_loan_amount/sanctioned_loan_amount.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/doctype/sanctioned_loan_amount/test_sanctioned_loan_amount.py b/erpnext/loan_management/doctype/sanctioned_loan_amount/test_sanctioned_loan_amount.py index 4d99086..88599e3 100644 --- a/erpnext/loan_management/doctype/sanctioned_loan_amount/test_sanctioned_loan_amount.py +++ b/erpnext/loan_management/doctype/sanctioned_loan_amount/test_sanctioned_loan_amount.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/loan_management/doctype/unpledge/unpledge.py b/erpnext/loan_management/doctype/unpledge/unpledge.py index 403749b..0580855 100644 --- a/erpnext/loan_management/doctype/unpledge/unpledge.py +++ b/erpnext/loan_management/doctype/unpledge/unpledge.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/loan_common.js b/erpnext/loan_management/loan_common.js index 247e30b..37f0914 100644 --- a/erpnext/loan_management/loan_common.js +++ b/erpnext/loan_management/loan_common.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on(cur_frm.doctype, { diff --git a/erpnext/loan_management/report/applicant_wise_loan_security_exposure/applicant_wise_loan_security_exposure.js b/erpnext/loan_management/report/applicant_wise_loan_security_exposure/applicant_wise_loan_security_exposure.js index 73d60c4..db84a03 100644 --- a/erpnext/loan_management/report/applicant_wise_loan_security_exposure/applicant_wise_loan_security_exposure.js +++ b/erpnext/loan_management/report/applicant_wise_loan_security_exposure/applicant_wise_loan_security_exposure.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/loan_management/report/applicant_wise_loan_security_exposure/applicant_wise_loan_security_exposure.py b/erpnext/loan_management/report/applicant_wise_loan_security_exposure/applicant_wise_loan_security_exposure.py index 02da810..7befdea 100644 --- a/erpnext/loan_management/report/applicant_wise_loan_security_exposure/applicant_wise_loan_security_exposure.py +++ b/erpnext/loan_management/report/applicant_wise_loan_security_exposure/applicant_wise_loan_security_exposure.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/report/loan_interest_report/loan_interest_report.js b/erpnext/loan_management/report/loan_interest_report/loan_interest_report.js index a227b6d..c124ec1 100644 --- a/erpnext/loan_management/report/loan_interest_report/loan_interest_report.js +++ b/erpnext/loan_management/report/loan_interest_report/loan_interest_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/loan_management/report/loan_interest_report/loan_interest_report.py b/erpnext/loan_management/report/loan_interest_report/loan_interest_report.py index 9186ce6..b3fa1d0 100644 --- a/erpnext/loan_management/report/loan_interest_report/loan_interest_report.py +++ b/erpnext/loan_management/report/loan_interest_report/loan_interest_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/report/loan_repayment_and_closure/loan_repayment_and_closure.js b/erpnext/loan_management/report/loan_repayment_and_closure/loan_repayment_and_closure.js index ed5e937..bca1e34 100644 --- a/erpnext/loan_management/report/loan_repayment_and_closure/loan_repayment_and_closure.js +++ b/erpnext/loan_management/report/loan_repayment_and_closure/loan_repayment_and_closure.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/loan_management/report/loan_repayment_and_closure/loan_repayment_and_closure.py b/erpnext/loan_management/report/loan_repayment_and_closure/loan_repayment_and_closure.py index 253b994..d7da4cd 100644 --- a/erpnext/loan_management/report/loan_repayment_and_closure/loan_repayment_and_closure.py +++ b/erpnext/loan_management/report/loan_repayment_and_closure/loan_repayment_and_closure.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/report/loan_security_exposure/loan_security_exposure.js b/erpnext/loan_management/report/loan_security_exposure/loan_security_exposure.js index 777f296..f0db693 100644 --- a/erpnext/loan_management/report/loan_security_exposure/loan_security_exposure.js +++ b/erpnext/loan_management/report/loan_security_exposure/loan_security_exposure.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/loan_management/report/loan_security_exposure/loan_security_exposure.py b/erpnext/loan_management/report/loan_security_exposure/loan_security_exposure.py index a92f960..bb0ef1a 100644 --- a/erpnext/loan_management/report/loan_security_exposure/loan_security_exposure.py +++ b/erpnext/loan_management/report/loan_security_exposure/loan_security_exposure.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/loan_management/report/loan_security_status/loan_security_status.js b/erpnext/loan_management/report/loan_security_status/loan_security_status.js index 6e6191c..d6fb4e1 100644 --- a/erpnext/loan_management/report/loan_security_status/loan_security_status.js +++ b/erpnext/loan_management/report/loan_security_status/loan_security_status.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/loan_management/report/loan_security_status/loan_security_status.py b/erpnext/loan_management/report/loan_security_status/loan_security_status.py index 9a5a180..326fc6a 100644 --- a/erpnext/loan_management/report/loan_security_status/loan_security_status.py +++ b/erpnext/loan_management/report/loan_security_status/loan_security_status.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js b/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js index 5252798..9b02cdb 100644 --- a/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +++ b/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.maintenance"); diff --git a/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py b/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py index 3dc6b0f..594c1cd 100644 --- a/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +++ b/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/maintenance/doctype/maintenance_schedule/test_maintenance_schedule.py b/erpnext/maintenance/doctype/maintenance_schedule/test_maintenance_schedule.py index 2268e0f..35feda8 100644 --- a/erpnext/maintenance/doctype/maintenance_schedule/test_maintenance_schedule.py +++ b/erpnext/maintenance/doctype/maintenance_schedule/test_maintenance_schedule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.py b/erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.py index cb20066..e15fc81 100644 --- a/erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.py +++ b/erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.py b/erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.py index b6ce0a5..dea5f66 100644 --- a/erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.py +++ b/erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js b/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js index e2f6cb3..e232c19 100644 --- a/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js +++ b/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.maintenance"); diff --git a/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py b/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py index 66f4426..14f3b88 100644 --- a/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +++ b/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/maintenance/doctype/maintenance_visit/test_maintenance_visit.py b/erpnext/maintenance/doctype/maintenance_visit/test_maintenance_visit.py index 9c868c4..9e37978 100644 --- a/erpnext/maintenance/doctype/maintenance_visit/test_maintenance_visit.py +++ b/erpnext/maintenance/doctype/maintenance_visit/test_maintenance_visit.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.py b/erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.py index 50d9a4e..a33d057 100644 --- a/erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.py +++ b/erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/dashboard_fixtures.py b/erpnext/manufacturing/dashboard_fixtures.py index 9e64f4d..b0f335e 100644 --- a/erpnext/manufacturing/dashboard_fixtures.py +++ b/erpnext/manufacturing/dashboard_fixtures.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/manufacturing/doctype/blanket_order/blanket_order.js b/erpnext/manufacturing/doctype/blanket_order/blanket_order.js index d3bb33e..f61d1b0 100644 --- a/erpnext/manufacturing/doctype/blanket_order/blanket_order.js +++ b/erpnext/manufacturing/doctype/blanket_order/blanket_order.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Blanket Order', { diff --git a/erpnext/manufacturing/doctype/blanket_order/blanket_order.py b/erpnext/manufacturing/doctype/blanket_order/blanket_order.py index ff21401..fd62a57 100644 --- a/erpnext/manufacturing/doctype/blanket_order/blanket_order.py +++ b/erpnext/manufacturing/doctype/blanket_order/blanket_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/blanket_order/test_blanket_order.py b/erpnext/manufacturing/doctype/blanket_order/test_blanket_order.py index 2f1f3ae..1e51fe8 100644 --- a/erpnext/manufacturing/doctype/blanket_order/test_blanket_order.py +++ b/erpnext/manufacturing/doctype/blanket_order/test_blanket_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import frappe from frappe.tests.utils import FrappeTestCase diff --git a/erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.py b/erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.py index ebce209..ea7a9ff 100644 --- a/erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.py +++ b/erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/bom/bom.js b/erpnext/manufacturing/doctype/bom/bom.js index ecad41f..d31f6c9 100644 --- a/erpnext/manufacturing/doctype/bom/bom.js +++ b/erpnext/manufacturing/doctype/bom/bom.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.bom"); diff --git a/erpnext/manufacturing/doctype/bom/bom.py b/erpnext/manufacturing/doctype/bom/bom.py index 70637d3..5beacd2 100644 --- a/erpnext/manufacturing/doctype/bom/bom.py +++ b/erpnext/manufacturing/doctype/bom/bom.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import functools diff --git a/erpnext/manufacturing/doctype/bom/test_bom.py b/erpnext/manufacturing/doctype/bom/test_bom.py index 27f3cc9..4c2612a 100644 --- a/erpnext/manufacturing/doctype/bom/test_bom.py +++ b/erpnext/manufacturing/doctype/bom/test_bom.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.py b/erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.py index cbcba34..ccefc9f 100644 --- a/erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.py +++ b/erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/manufacturing/doctype/bom_item/bom_item.py b/erpnext/manufacturing/doctype/bom_item/bom_item.py index 28a4b20..0e3ba4b 100644 --- a/erpnext/manufacturing/doctype/bom_item/bom_item.py +++ b/erpnext/manufacturing/doctype/bom_item/bom_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/manufacturing/doctype/bom_operation/bom_operation.py b/erpnext/manufacturing/doctype/bom_operation/bom_operation.py index 0ddc280..069e562 100644 --- a/erpnext/manufacturing/doctype/bom_operation/bom_operation.py +++ b/erpnext/manufacturing/doctype/bom_operation/bom_operation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/manufacturing/doctype/bom_scrap_item/bom_scrap_item.py b/erpnext/manufacturing/doctype/bom_scrap_item/bom_scrap_item.py index f400303..c6880fd 100644 --- a/erpnext/manufacturing/doctype/bom_scrap_item/bom_scrap_item.py +++ b/erpnext/manufacturing/doctype/bom_scrap_item/bom_scrap_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.py b/erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.py index f952e43..83b003f 100644 --- a/erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.py +++ b/erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/manufacturing/doctype/bom_update_log/bom_update_log.js b/erpnext/manufacturing/doctype/bom_update_log/bom_update_log.js index 6da808e..db33c82 100644 --- a/erpnext/manufacturing/doctype/bom_update_log/bom_update_log.js +++ b/erpnext/manufacturing/doctype/bom_update_log/bom_update_log.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('BOM Update Log', { diff --git a/erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py b/erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py index c3f52d4..463c9f9 100644 --- a/erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py +++ b/erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import json from typing import Any, Dict, List, Optional, Tuple, Union diff --git a/erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py b/erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py index af115e3..903a304 100644 --- a/erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py +++ b/erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import copy diff --git a/erpnext/manufacturing/doctype/bom_update_log/test_bom_update_log.py b/erpnext/manufacturing/doctype/bom_update_log/test_bom_update_log.py index b38fc89..30bb56b 100644 --- a/erpnext/manufacturing/doctype/bom_update_log/test_bom_update_log.py +++ b/erpnext/manufacturing/doctype/bom_update_log/test_bom_update_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js b/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js index 7ba6517..d459323 100644 --- a/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js +++ b/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('BOM Update Tool', { diff --git a/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py b/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py index d16fcd0..ad89ff0 100644 --- a/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py +++ b/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import json diff --git a/erpnext/manufacturing/doctype/bom_update_tool/test_bom_update_tool.py b/erpnext/manufacturing/doctype/bom_update_tool/test_bom_update_tool.py index 5dd557f..b17cc15 100644 --- a/erpnext/manufacturing/doctype/bom_update_tool/test_bom_update_tool.py +++ b/erpnext/manufacturing/doctype/bom_update_tool/test_bom_update_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/manufacturing/doctype/bom_website_item/bom_website_item.py b/erpnext/manufacturing/doctype/bom_website_item/bom_website_item.py index 33256a3..873da4c 100644 --- a/erpnext/manufacturing/doctype/bom_website_item/bom_website_item.py +++ b/erpnext/manufacturing/doctype/bom_website_item/bom_website_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.py b/erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.py index f8e2792..11bc2eb 100644 --- a/erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.py +++ b/erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/downtime_entry/downtime_entry.js b/erpnext/manufacturing/doctype/downtime_entry/downtime_entry.js index 3b7f5ba..c8af4e4 100644 --- a/erpnext/manufacturing/doctype/downtime_entry/downtime_entry.js +++ b/erpnext/manufacturing/doctype/downtime_entry/downtime_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Downtime Entry', { diff --git a/erpnext/manufacturing/doctype/downtime_entry/downtime_entry.py b/erpnext/manufacturing/doctype/downtime_entry/downtime_entry.py index 4602816..1c73f62 100644 --- a/erpnext/manufacturing/doctype/downtime_entry/downtime_entry.py +++ b/erpnext/manufacturing/doctype/downtime_entry/downtime_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/downtime_entry/test_downtime_entry.py b/erpnext/manufacturing/doctype/downtime_entry/test_downtime_entry.py index 2f99a5c..0fa81a1 100644 --- a/erpnext/manufacturing/doctype/downtime_entry/test_downtime_entry.py +++ b/erpnext/manufacturing/doctype/downtime_entry/test_downtime_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/manufacturing/doctype/job_card/job_card.js b/erpnext/manufacturing/doctype/job_card/job_card.js index b6646b1..a477165 100644 --- a/erpnext/manufacturing/doctype/job_card/job_card.js +++ b/erpnext/manufacturing/doctype/job_card/job_card.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Job Card', { diff --git a/erpnext/manufacturing/doctype/job_card/job_card.py b/erpnext/manufacturing/doctype/job_card/job_card.py index ed45106..b180cc9 100644 --- a/erpnext/manufacturing/doctype/job_card/job_card.py +++ b/erpnext/manufacturing/doctype/job_card/job_card.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import datetime import json diff --git a/erpnext/manufacturing/doctype/job_card/test_job_card.py b/erpnext/manufacturing/doctype/job_card/test_job_card.py index ac71141..e234561 100644 --- a/erpnext/manufacturing/doctype/job_card/test_job_card.py +++ b/erpnext/manufacturing/doctype/job_card/test_job_card.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/manufacturing/doctype/job_card_item/job_card_item.py b/erpnext/manufacturing/doctype/job_card_item/job_card_item.py index 51a7b41..069e353 100644 --- a/erpnext/manufacturing/doctype/job_card_item/job_card_item.py +++ b/erpnext/manufacturing/doctype/job_card_item/job_card_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/job_card_operation/job_card_operation.py b/erpnext/manufacturing/doctype/job_card_operation/job_card_operation.py index de44071..ade0550 100644 --- a/erpnext/manufacturing/doctype/job_card_operation/job_card_operation.py +++ b/erpnext/manufacturing/doctype/job_card_operation/job_card_operation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/job_card_scrap_item/job_card_scrap_item.py b/erpnext/manufacturing/doctype/job_card_scrap_item/job_card_scrap_item.py index 372df1b..d197ace 100644 --- a/erpnext/manufacturing/doctype/job_card_scrap_item/job_card_scrap_item.py +++ b/erpnext/manufacturing/doctype/job_card_scrap_item/job_card_scrap_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt from frappe.model.document import Document diff --git a/erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.py b/erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.py index 2b3ead3..96bf185 100644 --- a/erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.py +++ b/erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js b/erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js index a0122a4..a26d05a 100644 --- a/erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js +++ b/erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Manufacturing Settings', { diff --git a/erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.py b/erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.py index 730a857..7f7be6b 100644 --- a/erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.py +++ b/erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/manufacturing_settings/test_manufacturing_settings.py b/erpnext/manufacturing/doctype/manufacturing_settings/test_manufacturing_settings.py index 1b2f18f..1e62647 100644 --- a/erpnext/manufacturing/doctype/manufacturing_settings/test_manufacturing_settings.py +++ b/erpnext/manufacturing/doctype/manufacturing_settings/test_manufacturing_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.js b/erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.js index 61c0a99..e528c64 100644 --- a/erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.js +++ b/erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Material Request Plan Item', { diff --git a/erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.py b/erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.py index 3d5a7ce..ae1447c 100644 --- a/erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.py +++ b/erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/material_request_plan_item/test_material_request_plan_item.py b/erpnext/manufacturing/doctype/material_request_plan_item/test_material_request_plan_item.py index 0654c1e..8af2394 100644 --- a/erpnext/manufacturing/doctype/material_request_plan_item/test_material_request_plan_item.py +++ b/erpnext/manufacturing/doctype/material_request_plan_item/test_material_request_plan_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/manufacturing/doctype/operation/operation.js b/erpnext/manufacturing/doctype/operation/operation.js index ea73fd6..2b6059c 100644 --- a/erpnext/manufacturing/doctype/operation/operation.js +++ b/erpnext/manufacturing/doctype/operation/operation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Operation', { diff --git a/erpnext/manufacturing/doctype/operation/operation.py b/erpnext/manufacturing/doctype/operation/operation.py index 9c8f9ac..bb05aca 100644 --- a/erpnext/manufacturing/doctype/operation/operation.py +++ b/erpnext/manufacturing/doctype/operation/operation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/operation/test_operation.py b/erpnext/manufacturing/doctype/operation/test_operation.py index ce9f8e0..34a237b 100644 --- a/erpnext/manufacturing/doctype/operation/test_operation.py +++ b/erpnext/manufacturing/doctype/operation/test_operation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/manufacturing/doctype/production_plan/production_plan.js b/erpnext/manufacturing/doctype/production_plan/production_plan.js index 59ddf1f..527008a 100644 --- a/erpnext/manufacturing/doctype/production_plan/production_plan.js +++ b/erpnext/manufacturing/doctype/production_plan/production_plan.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Production Plan', { @@ -116,7 +116,7 @@ frappe.ui.form.on('Production Plan', {

- + ${__("Projected Quantity Formula")}

diff --git a/erpnext/manufacturing/doctype/production_plan/production_plan.json b/erpnext/manufacturing/doctype/production_plan/production_plan.json index 85f9843..9f3c894 100644 --- a/erpnext/manufacturing/doctype/production_plan/production_plan.json +++ b/erpnext/manufacturing/doctype/production_plan/production_plan.json @@ -222,7 +222,7 @@ }, { "default": "0", - "description": "To know more about projected quantity, click here.", + "description": "To know more about projected quantity, click here.", "fieldname": "ignore_existing_ordered_qty", "fieldtype": "Check", "label": "Ignore Existing Projected Quantity" @@ -408,4 +408,4 @@ "sort_field": "modified", "sort_order": "ASC", "states": [] -} \ No newline at end of file +} diff --git a/erpnext/manufacturing/doctype/production_plan/production_plan.py b/erpnext/manufacturing/doctype/production_plan/production_plan.py index f1d40c2..00163db 100644 --- a/erpnext/manufacturing/doctype/production_plan/production_plan.py +++ b/erpnext/manufacturing/doctype/production_plan/production_plan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/production_plan/test_production_plan.py b/erpnext/manufacturing/doctype/production_plan/test_production_plan.py index 60e6398..1358c0c 100644 --- a/erpnext/manufacturing/doctype/production_plan/test_production_plan.py +++ b/erpnext/manufacturing/doctype/production_plan/test_production_plan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import frappe from frappe.tests.utils import FrappeTestCase diff --git a/erpnext/manufacturing/doctype/production_plan_item/production_plan_item.py b/erpnext/manufacturing/doctype/production_plan_item/production_plan_item.py index cc79ac3..8f18499 100644 --- a/erpnext/manufacturing/doctype/production_plan_item/production_plan_item.py +++ b/erpnext/manufacturing/doctype/production_plan_item/production_plan_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.py b/erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.py index 81d2eca..f812652 100644 --- a/erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.py +++ b/erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.py b/erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.py index 83b1789..3e398c0 100644 --- a/erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.py +++ b/erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.js b/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.js index 53f8758..18c15c4 100644 --- a/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.js +++ b/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Production Plan Material Request Warehouse', { diff --git a/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.py b/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.py index a66ff44..c60dd63 100644 --- a/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.py +++ b/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/test_production_plan_material_request_warehouse.py b/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/test_production_plan_material_request_warehouse.py index 4394c14..2666d4f 100644 --- a/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/test_production_plan_material_request_warehouse.py +++ b/erpnext/manufacturing/doctype/production_plan_material_request_warehouse/test_production_plan_material_request_warehouse.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.py b/erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.py index 3f38529..113539d 100644 --- a/erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.py +++ b/erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.py b/erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.py index 069667a..14ba0e1 100644 --- a/erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.py +++ b/erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/routing/routing.js b/erpnext/manufacturing/doctype/routing/routing.js index b480c70..344f05e 100644 --- a/erpnext/manufacturing/doctype/routing/routing.js +++ b/erpnext/manufacturing/doctype/routing/routing.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Routing', { diff --git a/erpnext/manufacturing/doctype/routing/routing.py b/erpnext/manufacturing/doctype/routing/routing.py index d4c37cf..42f998c 100644 --- a/erpnext/manufacturing/doctype/routing/routing.py +++ b/erpnext/manufacturing/doctype/routing/routing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/routing/test_routing.py b/erpnext/manufacturing/doctype/routing/test_routing.py index 48f1851..75f8f1e 100644 --- a/erpnext/manufacturing/doctype/routing/test_routing.py +++ b/erpnext/manufacturing/doctype/routing/test_routing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import frappe from frappe.test_runner import make_test_records diff --git a/erpnext/manufacturing/doctype/sub_operation/sub_operation.js b/erpnext/manufacturing/doctype/sub_operation/sub_operation.js index be9db6a..c5e36b3 100644 --- a/erpnext/manufacturing/doctype/sub_operation/sub_operation.js +++ b/erpnext/manufacturing/doctype/sub_operation/sub_operation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Sub Operation', { diff --git a/erpnext/manufacturing/doctype/sub_operation/sub_operation.py b/erpnext/manufacturing/doctype/sub_operation/sub_operation.py index c86058e..a62d767 100644 --- a/erpnext/manufacturing/doctype/sub_operation/sub_operation.py +++ b/erpnext/manufacturing/doctype/sub_operation/sub_operation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/sub_operation/test_sub_operation.py b/erpnext/manufacturing/doctype/sub_operation/test_sub_operation.py index 189fdae..fbd3534 100644 --- a/erpnext/manufacturing/doctype/sub_operation/test_sub_operation.py +++ b/erpnext/manufacturing/doctype/sub_operation/test_sub_operation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/manufacturing/doctype/work_order/test_work_order.py b/erpnext/manufacturing/doctype/work_order/test_work_order.py index a53c42c..005be66 100644 --- a/erpnext/manufacturing/doctype/work_order/test_work_order.py +++ b/erpnext/manufacturing/doctype/work_order/test_work_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import copy diff --git a/erpnext/manufacturing/doctype/work_order/work_order.js b/erpnext/manufacturing/doctype/work_order/work_order.js index 20f1503..4c3b6ae 100644 --- a/erpnext/manufacturing/doctype/work_order/work_order.js +++ b/erpnext/manufacturing/doctype/work_order/work_order.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Work Order", { diff --git a/erpnext/manufacturing/doctype/work_order/work_order.py b/erpnext/manufacturing/doctype/work_order/work_order.py index 7b86253..08c0bd6 100644 --- a/erpnext/manufacturing/doctype/work_order/work_order.py +++ b/erpnext/manufacturing/doctype/work_order/work_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/manufacturing/doctype/work_order/work_order_calendar.js b/erpnext/manufacturing/doctype/work_order/work_order_calendar.js index 7ce05e9..e513c3a 100644 --- a/erpnext/manufacturing/doctype/work_order/work_order_calendar.js +++ b/erpnext/manufacturing/doctype/work_order/work_order_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.views.calendar["Work Order"] = { diff --git a/erpnext/manufacturing/doctype/work_order_item/work_order_item.py b/erpnext/manufacturing/doctype/work_order_item/work_order_item.py index 1792747..bb0a530 100644 --- a/erpnext/manufacturing/doctype/work_order_item/work_order_item.py +++ b/erpnext/manufacturing/doctype/work_order_item/work_order_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/work_order_operation/work_order_operation.py b/erpnext/manufacturing/doctype/work_order_operation/work_order_operation.py index 6bda58e..a3f9372 100644 --- a/erpnext/manufacturing/doctype/work_order_operation/work_order_operation.py +++ b/erpnext/manufacturing/doctype/work_order_operation/work_order_operation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/manufacturing/doctype/workstation/test_workstation.py b/erpnext/manufacturing/doctype/workstation/test_workstation.py index 6db985c..b8d11fb 100644 --- a/erpnext/manufacturing/doctype/workstation/test_workstation.py +++ b/erpnext/manufacturing/doctype/workstation/test_workstation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import frappe from frappe.test_runner import make_test_records diff --git a/erpnext/manufacturing/doctype/workstation/workstation.js b/erpnext/manufacturing/doctype/workstation/workstation.js index 5b9cedb..221e0a3 100644 --- a/erpnext/manufacturing/doctype/workstation/workstation.js +++ b/erpnext/manufacturing/doctype/workstation/workstation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Workstation", { diff --git a/erpnext/manufacturing/doctype/workstation/workstation.py b/erpnext/manufacturing/doctype/workstation/workstation.py index 59e5318..1d23afb 100644 --- a/erpnext/manufacturing/doctype/workstation/workstation.py +++ b/erpnext/manufacturing/doctype/workstation/workstation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.py b/erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.py index 99fb552..69f80f7 100644 --- a/erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.py +++ b/erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/manufacturing/module_onboarding/manufacturing/manufacturing.json b/erpnext/manufacturing/module_onboarding/manufacturing/manufacturing.json index 032091f..9dfdceb 100644 --- a/erpnext/manufacturing/module_onboarding/manufacturing/manufacturing.json +++ b/erpnext/manufacturing/module_onboarding/manufacturing/manufacturing.json @@ -16,7 +16,7 @@ "creation": "2020-05-05 16:37:08.238935", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/manufacturing", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/manufacturing", "idx": 0, "is_complete": 0, "modified": "2021-08-13 16:04:34.333812", @@ -53,4 +53,4 @@ "subtitle": "Products, Raw Materials, BOM, Work Order, and more.", "success_message": "Manufacturing module is all set up!", "title": "Let's Set Up the Manufacturing Module." -} \ No newline at end of file +} diff --git a/erpnext/manufacturing/onboarding/manufacturing/manufacturing.json b/erpnext/manufacturing/onboarding/manufacturing/manufacturing.json index 50584e1..16be73a 100644 --- a/erpnext/manufacturing/onboarding/manufacturing/manufacturing.json +++ b/erpnext/manufacturing/onboarding/manufacturing/manufacturing.json @@ -16,7 +16,7 @@ "creation": "2020-05-05 16:37:08.238935", "docstatus": 0, "doctype": "Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/manufacturing", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/manufacturing", "idx": 0, "is_complete": 0, "modified": "2020-05-12 16:22:07.050224", @@ -51,4 +51,4 @@ "success_message": "Manufacturing module is all setup!", "title": "Let's Setup Manufacturing Module", "user_can_dismiss": 1 -} \ No newline at end of file +} diff --git a/erpnext/manufacturing/onboarding_step/explore_manufacturing_settings/explore_manufacturing_settings.json b/erpnext/manufacturing/onboarding_step/explore_manufacturing_settings/explore_manufacturing_settings.json index 1d2c27e..30d0526 100644 --- a/erpnext/manufacturing/onboarding_step/explore_manufacturing_settings/explore_manufacturing_settings.json +++ b/erpnext/manufacturing/onboarding_step/explore_manufacturing_settings/explore_manufacturing_settings.json @@ -2,7 +2,7 @@ "action": "Show Form Tour", "action_label": "Take a walk-through of Manufacturing Settings", "creation": "2020-05-19 11:55:11.378374", - "description": "# Review Manufacturing Settings\n\nIn ERPNext, the Manufacturing module\u2019s features are configurable as per your business needs. Manufacturing Settings is the place where you can set your preferences for:\n\n- Capacity planning for allocating jobs to workstations\n- Raw-material consumption based on BOM or actual\n- Default values and over-production allowance\n", + "description": "# Review Manufacturing Settings\n\nIn InfluxERP, the Manufacturing module\u2019s features are configurable as per your business needs. Manufacturing Settings is the place where you can set your preferences for:\n\n- Capacity planning for allocating jobs to workstations\n- Raw-material consumption based on BOM or actual\n- Default values and over-production allowance\n", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,5 +18,5 @@ "show_full_form": 0, "title": "Manufacturing Settings", "validate_action": 0, - "video_url": "https://www.youtube.com/watch?v=UVGfzwOOZC4" -} \ No newline at end of file + "video_url": "https://www.influxerp.com/erp/videos/watch?v=UVGfzwOOZC4" +} diff --git a/erpnext/manufacturing/onboarding_step/introduction_to_manufacturing/introduction_to_manufacturing.json b/erpnext/manufacturing/onboarding_step/introduction_to_manufacturing/introduction_to_manufacturing.json index eb7ab3a..0d6fb45 100644 --- a/erpnext/manufacturing/onboarding_step/introduction_to_manufacturing/introduction_to_manufacturing.json +++ b/erpnext/manufacturing/onboarding_step/introduction_to_manufacturing/introduction_to_manufacturing.json @@ -16,5 +16,5 @@ "show_full_form": 0, "title": "Manufacturing Settings", "validate_action": 1, - "video_url": "https://www.youtube.com/watch?v=UVGfzwOOZC4" -} \ No newline at end of file + "video_url": "https://www.influxerp.com/erp/videos/watch?v=UVGfzwOOZC4" +} diff --git a/erpnext/manufacturing/report/bom_explorer/bom_explorer.js b/erpnext/manufacturing/report/bom_explorer/bom_explorer.js index b94d3f3..4e00acf 100644 --- a/erpnext/manufacturing/report/bom_explorer/bom_explorer.js +++ b/erpnext/manufacturing/report/bom_explorer/bom_explorer.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/bom_explorer/bom_explorer.py b/erpnext/manufacturing/report/bom_explorer/bom_explorer.py index 2aa31be..2e6e098 100644 --- a/erpnext/manufacturing/report/bom_explorer/bom_explorer.py +++ b/erpnext/manufacturing/report/bom_explorer/bom_explorer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js b/erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js index 0eb22a2..d3d1f61 100644 --- a/erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js +++ b/erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py b/erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py index 92c69cf..28022be 100644 --- a/erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py +++ b/erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.js b/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.js index a0fd91e..a67f985 100644 --- a/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.js +++ b/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Epoch Consulting and contributors +// Copyright (c) 2016, Epoch Consulting // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py b/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py index 550445c..cb68f90 100644 --- a/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py +++ b/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/bom_stock_calculated/test_bom_stock_calculated.py b/erpnext/manufacturing/report/bom_stock_calculated/test_bom_stock_calculated.py index 8ad980f..75d80a3 100644 --- a/erpnext/manufacturing/report/bom_stock_calculated/test_bom_stock_calculated.py +++ b/erpnext/manufacturing/report/bom_stock_calculated/test_bom_stock_calculated.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt from frappe.tests.utils import FrappeTestCase diff --git a/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py b/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py index 1e1b435..6d21ac9 100644 --- a/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +++ b/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js b/erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js index c6ecaef..2542450 100644 --- a/erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js +++ b/erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py b/erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py index da28343..3316838 100644 --- a/erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py +++ b/erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js b/erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js index 72eed5e..c35dce2 100644 --- a/erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js +++ b/erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py b/erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py index 481fe51..990f4ae 100644 --- a/erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py +++ b/erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js b/erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js index f648674..aa304b1 100644 --- a/erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js +++ b/erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py b/erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py index 80a1564..bb7cbc2 100644 --- a/erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py +++ b/erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js b/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js index 123a82a..4f1dbe2 100644 --- a/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js +++ b/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py b/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py index 7500744..d0e5d7f 100644 --- a/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py +++ b/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/job_card_summary/job_card_summary.js b/erpnext/manufacturing/report/job_card_summary/job_card_summary.js index cb771e4..ad8795e 100644 --- a/erpnext/manufacturing/report/job_card_summary/job_card_summary.js +++ b/erpnext/manufacturing/report/job_card_summary/job_card_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/job_card_summary/job_card_summary.py b/erpnext/manufacturing/report/job_card_summary/job_card_summary.py index 5083b73..beb9ad8 100644 --- a/erpnext/manufacturing/report/job_card_summary/job_card_summary.py +++ b/erpnext/manufacturing/report/job_card_summary/job_card_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/process_loss_report/process_loss_report.js b/erpnext/manufacturing/report/process_loss_report/process_loss_report.js index b0c2b94..844d3d9 100644 --- a/erpnext/manufacturing/report/process_loss_report/process_loss_report.js +++ b/erpnext/manufacturing/report/process_loss_report/process_loss_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/process_loss_report/process_loss_report.py b/erpnext/manufacturing/report/process_loss_report/process_loss_report.py index ce8f4f3..f17fe74 100644 --- a/erpnext/manufacturing/report/process_loss_report/process_loss_report.py +++ b/erpnext/manufacturing/report/process_loss_report/process_loss_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt from typing import Dict, List, Tuple diff --git a/erpnext/manufacturing/report/production_analytics/production_analytics.js b/erpnext/manufacturing/report/production_analytics/production_analytics.js index 99f9b12..a581b50 100644 --- a/erpnext/manufacturing/report/production_analytics/production_analytics.js +++ b/erpnext/manufacturing/report/production_analytics/production_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/production_analytics/production_analytics.py b/erpnext/manufacturing/report/production_analytics/production_analytics.py index 12b5d19..d48966c 100644 --- a/erpnext/manufacturing/report/production_analytics/production_analytics.py +++ b/erpnext/manufacturing/report/production_analytics/production_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/production_plan_summary/production_plan_summary.js b/erpnext/manufacturing/report/production_plan_summary/production_plan_summary.js index 59396fe..c627fce 100644 --- a/erpnext/manufacturing/report/production_plan_summary/production_plan_summary.js +++ b/erpnext/manufacturing/report/production_plan_summary/production_plan_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py b/erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py index 2c8f82f..ede02aa 100644 --- a/erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py +++ b/erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/production_planning_report/production_planning_report.js b/erpnext/manufacturing/report/production_planning_report/production_planning_report.js index 675b8a1..4f94b9f 100644 --- a/erpnext/manufacturing/report/production_planning_report/production_planning_report.js +++ b/erpnext/manufacturing/report/production_planning_report/production_planning_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/production_planning_report/production_planning_report.py b/erpnext/manufacturing/report/production_planning_report/production_planning_report.py index 1404888..769246a 100644 --- a/erpnext/manufacturing/report/production_planning_report/production_planning_report.py +++ b/erpnext/manufacturing/report/production_planning_report/production_planning_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js b/erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js index d4587aa..feef614 100644 --- a/erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js +++ b/erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py b/erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py index de96a6c..dbfe128 100644 --- a/erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py +++ b/erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js b/erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js index b2428e8..f8124c2 100644 --- a/erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js +++ b/erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py b/erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py index 8158bc9..09de44a 100644 --- a/erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py +++ b/erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.js b/erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.js index dbb7c23..0cdaa0c 100644 --- a/erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.js +++ b/erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py b/erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py index 998b0e4..a2b82c4 100644 --- a/erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py +++ b/erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Velometro Mobility Inc and contributors +# Copyright (c) 2017, Velometro Mobility Inc # For license information, please see license.txt diff --git a/erpnext/manufacturing/report/work_order_summary/work_order_summary.js b/erpnext/manufacturing/report/work_order_summary/work_order_summary.js index 832be23..a76b83b 100644 --- a/erpnext/manufacturing/report/work_order_summary/work_order_summary.js +++ b/erpnext/manufacturing/report/work_order_summary/work_order_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/manufacturing/report/work_order_summary/work_order_summary.py b/erpnext/manufacturing/report/work_order_summary/work_order_summary.py index 2368bfd..3a860d8 100644 --- a/erpnext/manufacturing/report/work_order_summary/work_order_summary.py +++ b/erpnext/manufacturing/report/work_order_summary/work_order_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt from collections import defaultdict diff --git a/erpnext/modules.txt b/erpnext/modules.txt index af96297..a45754a 100644 --- a/erpnext/modules.txt +++ b/erpnext/modules.txt @@ -12,11 +12,11 @@ Assets Portal Maintenance Regional -ERPNext Integrations +InfluxERP Integrations Quality Management Communication Loan Management Telephony Bulk Transaction E-commerce -Subcontracting \ No newline at end of file +Subcontracting diff --git a/erpnext/patches.txt b/erpnext/patches.txt index 2a0ca8c..6e30b27 100644 --- a/erpnext/patches.txt +++ b/erpnext/patches.txt @@ -200,7 +200,7 @@ erpnext.patches.v13_0.delete_old_bank_reconciliation_doctypes erpnext.patches.v13_0.update_vehicle_no_reqd_condition erpnext.patches.v13_0.rename_membership_settings_to_non_profit_settings erpnext.patches.v13_0.setup_uae_vat_fields -execute:frappe.db.set_value('System Settings', None, 'app_name', 'ERPNext') +execute:frappe.db.set_value('System Settings', None, 'app_name', 'InfluxERP') erpnext.patches.v12_0.purchase_receipt_status erpnext.patches.v13_0.fix_non_unique_represents_company erpnext.patches.v12_0.add_document_type_field_for_italy_einvoicing @@ -226,8 +226,8 @@ erpnext.patches.v13_0.remove_bad_selling_defaults erpnext.patches.v13_0.trim_whitespace_from_serial_nos # 16-01-2022 erpnext.patches.v13_0.migrate_stripe_api erpnext.patches.v13_0.reset_clearance_date_for_intracompany_payment_entries -execute:frappe.reload_doc("erpnext_integrations", "doctype", "TaxJar Settings") -execute:frappe.reload_doc("erpnext_integrations", "doctype", "Product Tax Category") +execute:frappe.reload_doc("influxerp_integrations", "doctype", "TaxJar Settings") +execute:frappe.reload_doc("influxerp_integrations", "doctype", "Product Tax Category") erpnext.patches.v13_0.custom_fields_for_taxjar_integration #08-11-2021 erpnext.patches.v13_0.set_operation_time_based_on_operating_cost erpnext.patches.v13_0.create_gst_payment_entry_fields #27-11-2021 @@ -271,7 +271,7 @@ erpnext.patches.v13_0.reset_corrupt_defaults erpnext.patches.v13_0.create_accounting_dimensions_for_asset_repair [post_model_sync] -execute:frappe.delete_doc_if_exists('Workspace', 'ERPNext Integrations Settings') +execute:frappe.delete_doc_if_exists('Workspace', 'InfluxERP Integrations Settings') erpnext.patches.v14_0.rename_ongoing_status_in_sla_documents erpnext.patches.v14_0.delete_shopify_doctypes erpnext.patches.v14_0.delete_healthcare_doctypes diff --git a/erpnext/patches/v10_0/add_default_cash_flow_mappers.py b/erpnext/patches/v10_0/add_default_cash_flow_mappers.py index 5493258..576c0ba 100644 --- a/erpnext/patches/v10_0/add_default_cash_flow_mappers.py +++ b/erpnext/patches/v10_0/add_default_cash_flow_mappers.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v10_0/fichier_des_ecritures_comptables_for_france.py b/erpnext/patches/v10_0/fichier_des_ecritures_comptables_for_france.py index 4449729..9311967 100644 --- a/erpnext/patches/v10_0/fichier_des_ecritures_comptables_for_france.py +++ b/erpnext/patches/v10_0/fichier_des_ecritures_comptables_for_france.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v10_0/item_barcode_childtable_migrate.py b/erpnext/patches/v10_0/item_barcode_childtable_migrate.py index e2d0943..c1d8124 100644 --- a/erpnext/patches/v10_0/item_barcode_childtable_migrate.py +++ b/erpnext/patches/v10_0/item_barcode_childtable_migrate.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/add_index_on_nestedset_doctypes.py b/erpnext/patches/v11_0/add_index_on_nestedset_doctypes.py index f354616..4016e05 100644 --- a/erpnext/patches/v11_0/add_index_on_nestedset_doctypes.py +++ b/erpnext/patches/v11_0/add_index_on_nestedset_doctypes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/add_item_group_defaults.py b/erpnext/patches/v11_0/add_item_group_defaults.py index 4e6505a..71ef463 100644 --- a/erpnext/patches/v11_0/add_item_group_defaults.py +++ b/erpnext/patches/v11_0/add_item_group_defaults.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/make_asset_finance_book_against_old_entries.py b/erpnext/patches/v11_0/make_asset_finance_book_against_old_entries.py index 2131456..a8059f4 100644 --- a/erpnext/patches/v11_0/make_asset_finance_book_against_old_entries.py +++ b/erpnext/patches/v11_0/make_asset_finance_book_against_old_entries.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/make_italian_localization_fields.py b/erpnext/patches/v11_0/make_italian_localization_fields.py index 1b9793d..5b02074 100644 --- a/erpnext/patches/v11_0/make_italian_localization_fields.py +++ b/erpnext/patches/v11_0/make_italian_localization_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/make_job_card.py b/erpnext/patches/v11_0/make_job_card.py index d4b2089..c7f6605 100644 --- a/erpnext/patches/v11_0/make_job_card.py +++ b/erpnext/patches/v11_0/make_job_card.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/make_location_from_warehouse.py b/erpnext/patches/v11_0/make_location_from_warehouse.py index c863bb7..27f85ab 100644 --- a/erpnext/patches/v11_0/make_location_from_warehouse.py +++ b/erpnext/patches/v11_0/make_location_from_warehouse.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/make_quality_inspection_template.py b/erpnext/patches/v11_0/make_quality_inspection_template.py index deebfa8..6467ea5 100644 --- a/erpnext/patches/v11_0/make_quality_inspection_template.py +++ b/erpnext/patches/v11_0/make_quality_inspection_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/merge_land_unit_with_location.py b/erpnext/patches/v11_0/merge_land_unit_with_location.py index c1afef6..84657ec 100644 --- a/erpnext/patches/v11_0/merge_land_unit_with_location.py +++ b/erpnext/patches/v11_0/merge_land_unit_with_location.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/move_item_defaults_to_child_table_for_multicompany.py b/erpnext/patches/v11_0/move_item_defaults_to_child_table_for_multicompany.py index 37c0779..8aca0be 100644 --- a/erpnext/patches/v11_0/move_item_defaults_to_child_table_for_multicompany.py +++ b/erpnext/patches/v11_0/move_item_defaults_to_child_table_for_multicompany.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/refactor_autoname_naming.py b/erpnext/patches/v11_0/refactor_autoname_naming.py index fa8f4eb..a747938 100644 --- a/erpnext/patches/v11_0/refactor_autoname_naming.py +++ b/erpnext/patches/v11_0/refactor_autoname_naming.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/refactor_naming_series.py b/erpnext/patches/v11_0/refactor_naming_series.py index 9cfb082..d282b35 100644 --- a/erpnext/patches/v11_0/refactor_naming_series.py +++ b/erpnext/patches/v11_0/refactor_naming_series.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/remove_modules_setup_page.py b/erpnext/patches/v11_0/remove_modules_setup_page.py index 91f4bc5..2d8b4fa 100644 --- a/erpnext/patches/v11_0/remove_modules_setup_page.py +++ b/erpnext/patches/v11_0/remove_modules_setup_page.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/rename_asset_adjustment_doctype.py b/erpnext/patches/v11_0/rename_asset_adjustment_doctype.py index c444c16..993934b 100644 --- a/erpnext/patches/v11_0/rename_asset_adjustment_doctype.py +++ b/erpnext/patches/v11_0/rename_asset_adjustment_doctype.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/rename_bom_wo_fields.py b/erpnext/patches/v11_0/rename_bom_wo_fields.py index fb25eeb..819d60a 100644 --- a/erpnext/patches/v11_0/rename_bom_wo_fields.py +++ b/erpnext/patches/v11_0/rename_bom_wo_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/rename_overproduction_percent_field.py b/erpnext/patches/v11_0/rename_overproduction_percent_field.py index 74699db..ff6d861 100644 --- a/erpnext/patches/v11_0/rename_overproduction_percent_field.py +++ b/erpnext/patches/v11_0/rename_overproduction_percent_field.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/rename_production_order_to_work_order.py b/erpnext/patches/v11_0/rename_production_order_to_work_order.py index b58ac4e..3e8640d 100644 --- a/erpnext/patches/v11_0/rename_production_order_to_work_order.py +++ b/erpnext/patches/v11_0/rename_production_order_to_work_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/renamed_from_to_fields_in_project.py b/erpnext/patches/v11_0/renamed_from_to_fields_in_project.py index 4dc2521..e648b64 100644 --- a/erpnext/patches/v11_0/renamed_from_to_fields_in_project.py +++ b/erpnext/patches/v11_0/renamed_from_to_fields_in_project.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/update_account_type_in_party_type.py b/erpnext/patches/v11_0/update_account_type_in_party_type.py index 47252eb..3891f4b 100644 --- a/erpnext/patches/v11_0/update_account_type_in_party_type.py +++ b/erpnext/patches/v11_0/update_account_type_in_party_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/update_allow_transfer_for_manufacture.py b/erpnext/patches/v11_0/update_allow_transfer_for_manufacture.py index a7351d2..6569b8f 100644 --- a/erpnext/patches/v11_0/update_allow_transfer_for_manufacture.py +++ b/erpnext/patches/v11_0/update_allow_transfer_for_manufacture.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/update_backflush_subcontract_rm_based_on_bom.py b/erpnext/patches/v11_0/update_backflush_subcontract_rm_based_on_bom.py index 51ba706..68c1014 100644 --- a/erpnext/patches/v11_0/update_backflush_subcontract_rm_based_on_bom.py +++ b/erpnext/patches/v11_0/update_backflush_subcontract_rm_based_on_bom.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/update_brand_in_item_price.py b/erpnext/patches/v11_0/update_brand_in_item_price.py index f4859ae..92a9b5a 100644 --- a/erpnext/patches/v11_0/update_brand_in_item_price.py +++ b/erpnext/patches/v11_0/update_brand_in_item_price.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_0/update_delivery_trip_status.py b/erpnext/patches/v11_0/update_delivery_trip_status.py index 1badfab..691066f 100644 --- a/erpnext/patches/v11_0/update_delivery_trip_status.py +++ b/erpnext/patches/v11_0/update_delivery_trip_status.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/delete_bom_browser.py b/erpnext/patches/v11_1/delete_bom_browser.py index 09ee169..72e60ee 100644 --- a/erpnext/patches/v11_1/delete_bom_browser.py +++ b/erpnext/patches/v11_1/delete_bom_browser.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/delete_scheduling_tool.py b/erpnext/patches/v11_1/delete_scheduling_tool.py index 6f3da92..fa31e13 100644 --- a/erpnext/patches/v11_1/delete_scheduling_tool.py +++ b/erpnext/patches/v11_1/delete_scheduling_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/make_job_card_time_logs.py b/erpnext/patches/v11_1/make_job_card_time_logs.py index beb2c4e..7268d89 100644 --- a/erpnext/patches/v11_1/make_job_card_time_logs.py +++ b/erpnext/patches/v11_1/make_job_card_time_logs.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/move_customer_lead_to_dynamic_column.py b/erpnext/patches/v11_1/move_customer_lead_to_dynamic_column.py index b681f25..3668602 100644 --- a/erpnext/patches/v11_1/move_customer_lead_to_dynamic_column.py +++ b/erpnext/patches/v11_1/move_customer_lead_to_dynamic_column.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/renamed_delayed_item_report.py b/erpnext/patches/v11_1/renamed_delayed_item_report.py index 8624781..a8f74b1 100644 --- a/erpnext/patches/v11_1/renamed_delayed_item_report.py +++ b/erpnext/patches/v11_1/renamed_delayed_item_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/set_default_action_for_quality_inspection.py b/erpnext/patches/v11_1/set_default_action_for_quality_inspection.py index 39aa6dd..b3a5abc 100644 --- a/erpnext/patches/v11_1/set_default_action_for_quality_inspection.py +++ b/erpnext/patches/v11_1/set_default_action_for_quality_inspection.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/set_variant_based_on.py b/erpnext/patches/v11_1/set_variant_based_on.py index 1d57527..303af64 100644 --- a/erpnext/patches/v11_1/set_variant_based_on.py +++ b/erpnext/patches/v11_1/set_variant_based_on.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/update_bank_transaction_status.py b/erpnext/patches/v11_1/update_bank_transaction_status.py index 0615b04..6f69c15 100644 --- a/erpnext/patches/v11_1/update_bank_transaction_status.py +++ b/erpnext/patches/v11_1/update_bank_transaction_status.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/update_default_supplier_in_item_defaults.py b/erpnext/patches/v11_1/update_default_supplier_in_item_defaults.py index 16e11ed..e7b1048 100644 --- a/erpnext/patches/v11_1/update_default_supplier_in_item_defaults.py +++ b/erpnext/patches/v11_1/update_default_supplier_in_item_defaults.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v11_1/woocommerce_set_creation_user.py b/erpnext/patches/v11_1/woocommerce_set_creation_user.py index e2d9e3e..711fd5b 100644 --- a/erpnext/patches/v11_1/woocommerce_set_creation_user.py +++ b/erpnext/patches/v11_1/woocommerce_set_creation_user.py @@ -3,7 +3,7 @@ from frappe.utils import cint def execute(): - frappe.reload_doc("erpnext_integrations", "doctype", "woocommerce_settings") + frappe.reload_doc("influxerp_integrations", "doctype", "woocommerce_settings") doc = frappe.get_doc("Woocommerce Settings") if cint(doc.enable_sync): diff --git a/erpnext/patches/v12_0/add_default_buying_selling_terms_in_company.py b/erpnext/patches/v12_0/add_default_buying_selling_terms_in_company.py index 284b616..28fd32e 100644 --- a/erpnext/patches/v12_0/add_default_buying_selling_terms_in_company.py +++ b/erpnext/patches/v12_0/add_default_buying_selling_terms_in_company.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/make_item_manufacturer.py b/erpnext/patches/v12_0/make_item_manufacturer.py index 3f23365..6533978 100644 --- a/erpnext/patches/v12_0/make_item_manufacturer.py +++ b/erpnext/patches/v12_0/make_item_manufacturer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/move_credit_limit_to_customer_credit_limit.py b/erpnext/patches/v12_0/move_credit_limit_to_customer_credit_limit.py index 17c1966..167a380 100644 --- a/erpnext/patches/v12_0/move_credit_limit_to_customer_credit_limit.py +++ b/erpnext/patches/v12_0/move_credit_limit_to_customer_credit_limit.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/move_plaid_settings_to_doctype.py b/erpnext/patches/v12_0/move_plaid_settings_to_doctype.py index 6788cb2..4c18bd9 100644 --- a/erpnext/patches/v12_0/move_plaid_settings_to_doctype.py +++ b/erpnext/patches/v12_0/move_plaid_settings_to_doctype.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt @@ -6,7 +6,7 @@ import frappe def execute(): - frappe.reload_doc("erpnext_integrations", "doctype", "plaid_settings") + frappe.reload_doc("influxerp_integrations", "doctype", "plaid_settings") plaid_settings = frappe.get_single("Plaid Settings") if plaid_settings.enabled: if not (frappe.conf.plaid_client_id and frappe.conf.plaid_env and frappe.conf.plaid_secret): diff --git a/erpnext/patches/v12_0/move_target_distribution_from_parent_to_child.py b/erpnext/patches/v12_0/move_target_distribution_from_parent_to_child.py index 7192610..c25ce76 100644 --- a/erpnext/patches/v12_0/move_target_distribution_from_parent_to_child.py +++ b/erpnext/patches/v12_0/move_target_distribution_from_parent_to_child.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/rename_bank_account_field_in_journal_entry_account.py b/erpnext/patches/v12_0/rename_bank_account_field_in_journal_entry_account.py index 9268753..8fe12dc 100644 --- a/erpnext/patches/v12_0/rename_bank_account_field_in_journal_entry_account.py +++ b/erpnext/patches/v12_0/rename_bank_account_field_in_journal_entry_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/rename_bank_reconciliation.py b/erpnext/patches/v12_0/rename_bank_reconciliation.py index aacd6e8..e46307d 100644 --- a/erpnext/patches/v12_0/rename_bank_reconciliation.py +++ b/erpnext/patches/v12_0/rename_bank_reconciliation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/rename_bank_reconciliation_fields.py b/erpnext/patches/v12_0/rename_bank_reconciliation_fields.py index e2a3887..2e866eb 100644 --- a/erpnext/patches/v12_0/rename_bank_reconciliation_fields.py +++ b/erpnext/patches/v12_0/rename_bank_reconciliation_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v12_0/rename_pricing_rule_child_doctypes.py b/erpnext/patches/v12_0/rename_pricing_rule_child_doctypes.py index 8d4c013..6e59e67 100644 --- a/erpnext/patches/v12_0/rename_pricing_rule_child_doctypes.py +++ b/erpnext/patches/v12_0/rename_pricing_rule_child_doctypes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/repost_stock_ledger_entries_for_target_warehouse.py b/erpnext/patches/v12_0/repost_stock_ledger_entries_for_target_warehouse.py index a4a8587..6ae2870 100644 --- a/erpnext/patches/v12_0/repost_stock_ledger_entries_for_target_warehouse.py +++ b/erpnext/patches/v12_0/repost_stock_ledger_entries_for_target_warehouse.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/set_italian_import_supplier_invoice_permissions.py b/erpnext/patches/v12_0/set_italian_import_supplier_invoice_permissions.py index b942fa4..2a4b0da 100644 --- a/erpnext/patches/v12_0/set_italian_import_supplier_invoice_permissions.py +++ b/erpnext/patches/v12_0/set_italian_import_supplier_invoice_permissions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/set_multi_uom_in_rfq.py b/erpnext/patches/v12_0/set_multi_uom_in_rfq.py index 4d19007..16d0aa4 100644 --- a/erpnext/patches/v12_0/set_multi_uom_in_rfq.py +++ b/erpnext/patches/v12_0/set_multi_uom_in_rfq.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/set_updated_purpose_in_pick_list.py b/erpnext/patches/v12_0/set_updated_purpose_in_pick_list.py index 1e39081..3a243ef 100644 --- a/erpnext/patches/v12_0/set_updated_purpose_in_pick_list.py +++ b/erpnext/patches/v12_0/set_updated_purpose_in_pick_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/stock_entry_enhancements.py b/erpnext/patches/v12_0/stock_entry_enhancements.py index db099a3..9417508 100644 --- a/erpnext/patches/v12_0/stock_entry_enhancements.py +++ b/erpnext/patches/v12_0/stock_entry_enhancements.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/unhide_cost_center_field.py b/erpnext/patches/v12_0/unhide_cost_center_field.py index 5f91ef6..ea7adb8 100644 --- a/erpnext/patches/v12_0/unhide_cost_center_field.py +++ b/erpnext/patches/v12_0/unhide_cost_center_field.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/update_pricing_rule_fields.py b/erpnext/patches/v12_0/update_pricing_rule_fields.py index 8da06b0..b9b8ff1 100644 --- a/erpnext/patches/v12_0/update_pricing_rule_fields.py +++ b/erpnext/patches/v12_0/update_pricing_rule_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v12_0/update_production_plan_status.py b/erpnext/patches/v12_0/update_production_plan_status.py index dc65ec2..d1794c6 100644 --- a/erpnext/patches/v12_0/update_production_plan_status.py +++ b/erpnext/patches/v12_0/update_production_plan_status.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe and Contributors +# Copyright (c) 2021, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/add_custom_field_for_south_africa.py b/erpnext/patches/v13_0/add_custom_field_for_south_africa.py index 353376b..c52599c 100644 --- a/erpnext/patches/v13_0/add_custom_field_for_south_africa.py +++ b/erpnext/patches/v13_0/add_custom_field_for_south_africa.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/add_doctype_to_sla.py b/erpnext/patches/v13_0/add_doctype_to_sla.py index 2d3b0de..55c3196 100644 --- a/erpnext/patches/v13_0/add_doctype_to_sla.py +++ b/erpnext/patches/v13_0/add_doctype_to_sla.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/add_missing_fg_item_for_stock_entry.py b/erpnext/patches/v13_0/add_missing_fg_item_for_stock_entry.py index ddbb7fd..3ef9e02 100644 --- a/erpnext/patches/v13_0/add_missing_fg_item_for_stock_entry.py +++ b/erpnext/patches/v13_0/add_missing_fg_item_for_stock_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/add_standard_navbar_items.py b/erpnext/patches/v13_0/add_standard_navbar_items.py index 24141b7..695d6ed 100644 --- a/erpnext/patches/v13_0/add_standard_navbar_items.py +++ b/erpnext/patches/v13_0/add_standard_navbar_items.py @@ -3,5 +3,5 @@ from erpnext.setup.install import add_standard_navbar_items def execute(): - # Add standard navbar items for ERPNext in Navbar Settings + # Add standard navbar items for InfluxERP in Navbar Settings add_standard_navbar_items() diff --git a/erpnext/patches/v13_0/agriculture_deprecation_warning.py b/erpnext/patches/v13_0/agriculture_deprecation_warning.py index 512444e..f6c9de3 100644 --- a/erpnext/patches/v13_0/agriculture_deprecation_warning.py +++ b/erpnext/patches/v13_0/agriculture_deprecation_warning.py @@ -4,7 +4,7 @@ import click def execute(): click.secho( - "Agriculture Domain is moved to a separate app and will be removed from ERPNext in version-14.\n" - "Please install the app to continue using the Agriculture domain: https://github.com/frappe/agriculture", + "Agriculture Domain is moved to a separate app and will be removed from InfluxERP in version-14.\n" + "Please install the app to continue using the Agriculture domain: https://github.com/influxerp/agriculture", fg="yellow", ) diff --git a/erpnext/patches/v13_0/create_gst_payment_entry_fields.py b/erpnext/patches/v13_0/create_gst_payment_entry_fields.py index ee8fc5f..f2c11b0 100644 --- a/erpnext/patches/v13_0/create_gst_payment_entry_fields.py +++ b/erpnext/patches/v13_0/create_gst_payment_entry_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe and Contributors +# Copyright (c) 2021, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/create_uae_pos_invoice_fields.py b/erpnext/patches/v13_0/create_uae_pos_invoice_fields.py index 66aae9a..a22c636 100644 --- a/erpnext/patches/v13_0/create_uae_pos_invoice_fields.py +++ b/erpnext/patches/v13_0/create_uae_pos_invoice_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py b/erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py index 5cbd0b5..148abac 100644 --- a/erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py +++ b/erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py @@ -1,7 +1,7 @@ import frappe from frappe.custom.doctype.custom_field.custom_field import create_custom_fields -from erpnext.erpnext_integrations.doctype.taxjar_settings.taxjar_settings import add_permissions +from erpnext.influxerp_integrations.doctype.taxjar_settings.taxjar_settings import add_permissions def execute(): @@ -67,6 +67,6 @@ def execute(): create_custom_fields(custom_fields, update=True) add_permissions() frappe.enqueue( - "erpnext.erpnext_integrations.doctype.taxjar_settings.taxjar_settings.add_product_tax_categories", + "erpnext.influxerp_integrations.doctype.taxjar_settings.taxjar_settings.add_product_tax_categories", now=True, ) diff --git a/erpnext/patches/v13_0/delete_bank_reconciliation_detail.py b/erpnext/patches/v13_0/delete_bank_reconciliation_detail.py index c53eb79..903aeaf 100644 --- a/erpnext/patches/v13_0/delete_bank_reconciliation_detail.py +++ b/erpnext/patches/v13_0/delete_bank_reconciliation_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/delete_old_bank_reconciliation_doctypes.py b/erpnext/patches/v13_0/delete_old_bank_reconciliation_doctypes.py index 3755315..4167464 100644 --- a/erpnext/patches/v13_0/delete_old_bank_reconciliation_doctypes.py +++ b/erpnext/patches/v13_0/delete_old_bank_reconciliation_doctypes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/delete_old_purchase_reports.py b/erpnext/patches/v13_0/delete_old_purchase_reports.py index 987f53f..0995cd9 100644 --- a/erpnext/patches/v13_0/delete_old_purchase_reports.py +++ b/erpnext/patches/v13_0/delete_old_purchase_reports.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/delete_old_sales_reports.py b/erpnext/patches/v13_0/delete_old_sales_reports.py index 1b53da7..e0c055e 100644 --- a/erpnext/patches/v13_0/delete_old_sales_reports.py +++ b/erpnext/patches/v13_0/delete_old_sales_reports.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/delete_orphaned_tables.py b/erpnext/patches/v13_0/delete_orphaned_tables.py index 794be09..edbeee8 100644 --- a/erpnext/patches/v13_0/delete_orphaned_tables.py +++ b/erpnext/patches/v13_0/delete_orphaned_tables.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/healthcare_deprecation_warning.py b/erpnext/patches/v13_0/healthcare_deprecation_warning.py index c6fba59..1e14e7f 100644 --- a/erpnext/patches/v13_0/healthcare_deprecation_warning.py +++ b/erpnext/patches/v13_0/healthcare_deprecation_warning.py @@ -4,7 +4,7 @@ import click def execute(): click.secho( - "Healthcare Module is moved to a separate app and will be removed from ERPNext in version-14.\n" - "Please install the app to continue using the module: https://github.com/frappe/healthcare", + "Healthcare Module is moved to a separate app and will be removed from InfluxERP in version-14.\n" + "Please install the app to continue using the module: https://github.com/influxerp/healthcare", fg="yellow", ) diff --git a/erpnext/patches/v13_0/hospitality_deprecation_warning.py b/erpnext/patches/v13_0/hospitality_deprecation_warning.py index 2708b2c..f986e7c 100644 --- a/erpnext/patches/v13_0/hospitality_deprecation_warning.py +++ b/erpnext/patches/v13_0/hospitality_deprecation_warning.py @@ -4,7 +4,7 @@ import click def execute(): click.secho( - "Hospitality domain is moved to a separate app and will be removed from ERPNext in version-14.\n" - "When upgrading to ERPNext version-14, please install the app to continue using the Hospitality domain: https://github.com/frappe/hospitality", + "Hospitality domain is moved to a separate app and will be removed from InfluxERP in version-14.\n" + "When upgrading to InfluxERP version-14, please install the app to continue using the Hospitality domain: https://github.com/influxerp/hospitality", fg="yellow", ) diff --git a/erpnext/patches/v13_0/loyalty_points_entry_for_pos_invoice.py b/erpnext/patches/v13_0/loyalty_points_entry_for_pos_invoice.py index 69a695e..bb07da8 100644 --- a/erpnext/patches/v13_0/loyalty_points_entry_for_pos_invoice.py +++ b/erpnext/patches/v13_0/loyalty_points_entry_for_pos_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/move_branch_code_to_bank_account.py b/erpnext/patches/v13_0/move_branch_code_to_bank_account.py index 2406127..95a3f34 100644 --- a/erpnext/patches/v13_0/move_branch_code_to_bank_account.py +++ b/erpnext/patches/v13_0/move_branch_code_to_bank_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/non_profit_deprecation_warning.py b/erpnext/patches/v13_0/non_profit_deprecation_warning.py index 5b54b25..6fcc004 100644 --- a/erpnext/patches/v13_0/non_profit_deprecation_warning.py +++ b/erpnext/patches/v13_0/non_profit_deprecation_warning.py @@ -4,7 +4,7 @@ import click def execute(): click.secho( - "Non Profit Domain is moved to a separate app and will be removed from ERPNext in version-14.\n" - "When upgrading to ERPNext version-14, please install the app to continue using the Non Profit domain: https://github.com/frappe/non_profit", + "Non Profit Domain is moved to a separate app and will be removed from InfluxERP in version-14.\n" + "When upgrading to InfluxERP version-14, please install the app to continue using the Non Profit domain: https://github.com/influxerp/non_profit", fg="yellow", ) diff --git a/erpnext/patches/v13_0/rename_issue_doctype_fields.py b/erpnext/patches/v13_0/rename_issue_doctype_fields.py index a9b6df7..1e16e24 100644 --- a/erpnext/patches/v13_0/rename_issue_doctype_fields.py +++ b/erpnext/patches/v13_0/rename_issue_doctype_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/rename_issue_status_hold_to_on_hold.py b/erpnext/patches/v13_0/rename_issue_status_hold_to_on_hold.py index d3896dd..7b04d70 100644 --- a/erpnext/patches/v13_0/rename_issue_status_hold_to_on_hold.py +++ b/erpnext/patches/v13_0/rename_issue_status_hold_to_on_hold.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/replace_pos_payment_mode_table.py b/erpnext/patches/v13_0/replace_pos_payment_mode_table.py index ba2feb3..39cf158 100644 --- a/erpnext/patches/v13_0/replace_pos_payment_mode_table.py +++ b/erpnext/patches/v13_0/replace_pos_payment_mode_table.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/replace_supplier_item_group_with_party_specific_item.py b/erpnext/patches/v13_0/replace_supplier_item_group_with_party_specific_item.py index bf82f44..a8297f9 100644 --- a/erpnext/patches/v13_0/replace_supplier_item_group_with_party_specific_item.py +++ b/erpnext/patches/v13_0/replace_supplier_item_group_with_party_specific_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/reset_clearance_date_for_intracompany_payment_entries.py b/erpnext/patches/v13_0/reset_clearance_date_for_intracompany_payment_entries.py index 5dfea5e..b7a2c99 100644 --- a/erpnext/patches/v13_0/reset_clearance_date_for_intracompany_payment_entries.py +++ b/erpnext/patches/v13_0/reset_clearance_date_for_intracompany_payment_entries.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/reset_corrupt_defaults.py b/erpnext/patches/v13_0/reset_corrupt_defaults.py index 7a6d50f..ed0d1eb 100644 --- a/erpnext/patches/v13_0/reset_corrupt_defaults.py +++ b/erpnext/patches/v13_0/reset_corrupt_defaults.py @@ -4,7 +4,7 @@ import frappe def execute(): """ This patch is needed to fix parent incorrectly set as `__2fa` because of - https://github.com/frappe/frappe/commit/a822092211533ff17ff9b92dd86f6f868ed63e2e + https://github.com/influxerp/influxerp/commit/a822092211533ff17ff9b92dd86f6f868ed63e2e """ for doctype in ( diff --git a/erpnext/patches/v13_0/set_app_name.py b/erpnext/patches/v13_0/set_app_name.py index 4a88442..705535b 100644 --- a/erpnext/patches/v13_0/set_app_name.py +++ b/erpnext/patches/v13_0/set_app_name.py @@ -4,4 +4,4 @@ import frappe def execute(): frappe.reload_doctype("System Settings") settings = frappe.get_doc("System Settings") - settings.db_set("app_name", "ERPNext", commit=True) + settings.db_set("app_name", "InfluxERP", commit=True) diff --git a/erpnext/patches/v13_0/set_per_billed_in_return_delivery_note.py b/erpnext/patches/v13_0/set_per_billed_in_return_delivery_note.py index a4d7012..b93920a 100644 --- a/erpnext/patches/v13_0/set_per_billed_in_return_delivery_note.py +++ b/erpnext/patches/v13_0/set_per_billed_in_return_delivery_note.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/patches/v13_0/setup_uae_vat_fields.py b/erpnext/patches/v13_0/setup_uae_vat_fields.py index 7046646..0ed6e89 100644 --- a/erpnext/patches/v13_0/setup_uae_vat_fields.py +++ b/erpnext/patches/v13_0/setup_uae_vat_fields.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/shopify_deprecation_warning.py b/erpnext/patches/v13_0/shopify_deprecation_warning.py index 245d1a9..97dddef 100644 --- a/erpnext/patches/v13_0/shopify_deprecation_warning.py +++ b/erpnext/patches/v13_0/shopify_deprecation_warning.py @@ -4,7 +4,7 @@ import click def execute(): click.secho( - "Shopify Integration is moved to a separate app and will be removed from ERPNext in version-14.\n" - "Please install the app to continue using the integration: https://github.com/frappe/ecommerce_integrations", + "Shopify Integration is moved to a separate app and will be removed from InfluxERP in version-14.\n" + "Please install the app to continue using the integration: https://github.com/influxerp/ecommerce_integrations", fg="yellow", ) diff --git a/erpnext/patches/v13_0/shopping_cart_to_ecommerce.py b/erpnext/patches/v13_0/shopping_cart_to_ecommerce.py index 35710a9..7ed5601 100644 --- a/erpnext/patches/v13_0/shopping_cart_to_ecommerce.py +++ b/erpnext/patches/v13_0/shopping_cart_to_ecommerce.py @@ -17,7 +17,7 @@ def notify_users(): click.secho( "Shopping cart and Product settings are merged into E-commerce settings.\n" "Checkout the documentation to learn more:" - "https://docs.erpnext.com/docs/v13/user/manual/en/e_commerce/set_up_e_commerce", + "https://docs.influxerp.com/docs/v13/user/manual/en/e_commerce/set_up_e_commerce", fg="yellow", ) @@ -25,5 +25,5 @@ def notify_users(): note.title = "New E-Commerce Module" note.public = 1 note.notify_on_login = 1 - note.content = """

You are seeing this message because Shopping Cart is enabled on your site.


Shopping Cart Settings and Products settings are now merged into "E Commerce Settings".


You can learn about new and improved E-Commerce features in the official documentation.

  1. https://docs.erpnext.com/docs/v13/user/manual/en/e_commerce/set_up_e_commerce


""" + note.content = """

You are seeing this message because Shopping Cart is enabled on your site.


Shopping Cart Settings and Products settings are now merged into "E Commerce Settings".


You can learn about new and improved E-Commerce features in the official documentation.

  1. https://docs.influxerp.com/docs/v13/user/manual/en/e_commerce/set_up_e_commerce


""" note.insert(ignore_mandatory=True) diff --git a/erpnext/patches/v13_0/show_hr_payroll_deprecation_warning.py b/erpnext/patches/v13_0/show_hr_payroll_deprecation_warning.py index c9cb7ac..2018c4f 100644 --- a/erpnext/patches/v13_0/show_hr_payroll_deprecation_warning.py +++ b/erpnext/patches/v13_0/show_hr_payroll_deprecation_warning.py @@ -8,9 +8,9 @@ def execute(): click.secho( "HR and Payroll modules have been moved to a separate app" - " and will be removed from ERPNext in Version 14." + " and will be removed from InfluxERP in Version 14." " Please install the HRMS app when upgrading to Version 14" " to continue using the HR and Payroll modules:\n" - "https://github.com/frappe/hrms", + "https://github.com/influxerp/hrms", fg="yellow", ) diff --git a/erpnext/patches/v13_0/show_india_localisation_deprecation_warning.py b/erpnext/patches/v13_0/show_india_localisation_deprecation_warning.py index c993508..1fe4cff 100644 --- a/erpnext/patches/v13_0/show_india_localisation_deprecation_warning.py +++ b/erpnext/patches/v13_0/show_india_localisation_deprecation_warning.py @@ -11,7 +11,7 @@ def execute(): click.secho( "India-specific regional features have been moved to a separate app" - " and will be removed from ERPNext in Version 14." + " and will be removed from InfluxERP in Version 14." " Please install India Compliance after upgrading to Version 14:\n" "https://github.com/resilient-tech/india-compliance", fg="yellow", diff --git a/erpnext/patches/v13_0/stock_entry_enhancements.py b/erpnext/patches/v13_0/stock_entry_enhancements.py index 005980e..8a5007a 100644 --- a/erpnext/patches/v13_0/stock_entry_enhancements.py +++ b/erpnext/patches/v13_0/stock_entry_enhancements.py @@ -1,4 +1,4 @@ -# Copyright(c) 2020, Frappe Technologies Pvt.Ltd.and Contributors +# Copyright(c) 2020, Influx ERP Solutions # License: GNU General Public License v3.See license.txt diff --git a/erpnext/patches/v13_0/update_actual_start_and_end_date_in_wo.py b/erpnext/patches/v13_0/update_actual_start_and_end_date_in_wo.py index 3c6c5b5..e96df27 100644 --- a/erpnext/patches/v13_0/update_actual_start_and_end_date_in_wo.py +++ b/erpnext/patches/v13_0/update_actual_start_and_end_date_in_wo.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/update_dates_in_tax_withholding_category.py b/erpnext/patches/v13_0/update_dates_in_tax_withholding_category.py index c538476..3ead590 100644 --- a/erpnext/patches/v13_0/update_dates_in_tax_withholding_category.py +++ b/erpnext/patches/v13_0/update_dates_in_tax_withholding_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe and Contributors +# Copyright (c) 2021, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/update_deferred_settings.py b/erpnext/patches/v13_0/update_deferred_settings.py index 03fe66f..c84926c 100644 --- a/erpnext/patches/v13_0/update_deferred_settings.py +++ b/erpnext/patches/v13_0/update_deferred_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/update_job_card_details.py b/erpnext/patches/v13_0/update_job_card_details.py index 73baecf..d90f0ce 100644 --- a/erpnext/patches/v13_0/update_job_card_details.py +++ b/erpnext/patches/v13_0/update_job_card_details.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/update_job_card_status.py b/erpnext/patches/v13_0/update_job_card_status.py index f2d12da..f598fff 100644 --- a/erpnext/patches/v13_0/update_job_card_status.py +++ b/erpnext/patches/v13_0/update_job_card_status.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe and Contributors +# Copyright (c) 2021, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/update_member_email_address.py b/erpnext/patches/v13_0/update_member_email_address.py index e4bc1b3..adf2ef2 100644 --- a/erpnext/patches/v13_0/update_member_email_address.py +++ b/erpnext/patches/v13_0/update_member_email_address.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # MIT License. See license.txt diff --git a/erpnext/patches/v13_0/update_payment_terms_outstanding.py b/erpnext/patches/v13_0/update_payment_terms_outstanding.py index d0c25f3..773c58e 100644 --- a/erpnext/patches/v13_0/update_payment_terms_outstanding.py +++ b/erpnext/patches/v13_0/update_payment_terms_outstanding.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # MIT License. See license.txt diff --git a/erpnext/patches/v13_0/update_pos_closing_entry_in_merge_log.py b/erpnext/patches/v13_0/update_pos_closing_entry_in_merge_log.py index 49826df..a883328 100644 --- a/erpnext/patches/v13_0/update_pos_closing_entry_in_merge_log.py +++ b/erpnext/patches/v13_0/update_pos_closing_entry_in_merge_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # MIT License. See license.txt diff --git a/erpnext/patches/v13_0/update_project_template_tasks.py b/erpnext/patches/v13_0/update_project_template_tasks.py index c9a2322..5fe6170 100644 --- a/erpnext/patches/v13_0/update_project_template_tasks.py +++ b/erpnext/patches/v13_0/update_project_template_tasks.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/update_recipient_email_digest.py b/erpnext/patches/v13_0/update_recipient_email_digest.py index af7f3ff..c5c5b6b 100644 --- a/erpnext/patches/v13_0/update_recipient_email_digest.py +++ b/erpnext/patches/v13_0/update_recipient_email_digest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/update_response_by_variance.py b/erpnext/patches/v13_0/update_response_by_variance.py index 7304455..bbf0168 100644 --- a/erpnext/patches/v13_0/update_response_by_variance.py +++ b/erpnext/patches/v13_0/update_response_by_variance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe and Contributors +# Copyright (c) 2020, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/update_returned_qty_in_pr_dn.py b/erpnext/patches/v13_0/update_returned_qty_in_pr_dn.py index 9b5845f..2bd6f37 100644 --- a/erpnext/patches/v13_0/update_returned_qty_in_pr_dn.py +++ b/erpnext/patches/v13_0/update_returned_qty_in_pr_dn.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe and Contributors +# Copyright (c) 2021, Influx ERP Solutions # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/patches/v13_0/update_sla_enhancements.py b/erpnext/patches/v13_0/update_sla_enhancements.py index 84c683a..d6e1866 100644 --- a/erpnext/patches/v13_0/update_sla_enhancements.py +++ b/erpnext/patches/v13_0/update_sla_enhancements.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v13_0/update_subscription.py b/erpnext/patches/v13_0/update_subscription.py index 66b3def..8428f96 100644 --- a/erpnext/patches/v13_0/update_subscription.py +++ b/erpnext/patches/v13_0/update_subscription.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v14_0/change_is_subcontracted_fieldtype.py b/erpnext/patches/v14_0/change_is_subcontracted_fieldtype.py index 9b07ba8..09fa3ae 100644 --- a/erpnext/patches/v14_0/change_is_subcontracted_fieldtype.py +++ b/erpnext/patches/v14_0/change_is_subcontracted_fieldtype.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/patches/v14_0/copy_is_subcontracted_value_to_is_old_subcontracting_flow.py b/erpnext/patches/v14_0/copy_is_subcontracted_value_to_is_old_subcontracting_flow.py index 607ef69..9ad9f20 100644 --- a/erpnext/patches/v14_0/copy_is_subcontracted_value_to_is_old_subcontracting_flow.py +++ b/erpnext/patches/v14_0/copy_is_subcontracted_value_to_is_old_subcontracting_flow.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/patches/v14_0/delete_education_doctypes.py b/erpnext/patches/v14_0/delete_education_doctypes.py index 76b2300..def1fc0 100644 --- a/erpnext/patches/v14_0/delete_education_doctypes.py +++ b/erpnext/patches/v14_0/delete_education_doctypes.py @@ -50,6 +50,6 @@ def execute(): click.secho( "Education Module is moved to a separate app" - "Please install the app to continue using the module: https://github.com/frappe/education", + "Please install the app to continue using the module: https://github.com/influxerp/education", fg="yellow", ) diff --git a/erpnext/patches/v14_0/fix_subcontracting_receipt_gl_entries.py b/erpnext/patches/v14_0/fix_subcontracting_receipt_gl_entries.py index 159c6dc..6efae54 100644 --- a/erpnext/patches/v14_0/fix_subcontracting_receipt_gl_entries.py +++ b/erpnext/patches/v14_0/fix_subcontracting_receipt_gl_entries.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/patches/v4_2/update_requested_and_ordered_qty.py b/erpnext/patches/v4_2/update_requested_and_ordered_qty.py index 8ebc649..f62f9f8 100644 --- a/erpnext/patches/v4_2/update_requested_and_ordered_qty.py +++ b/erpnext/patches/v4_2/update_requested_and_ordered_qty.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/patches/v8_1/removed_roles_from_gst_report_non_indian_account.py b/erpnext/patches/v8_1/removed_roles_from_gst_report_non_indian_account.py index 5b1885d..4dd4d08 100644 --- a/erpnext/patches/v8_1/removed_roles_from_gst_report_non_indian_account.py +++ b/erpnext/patches/v8_1/removed_roles_from_gst_report_non_indian_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe and Contributors +# Copyright (c) 2017, Influx ERP Solutions # License: GNU General Public License v3. See license.txt diff --git a/erpnext/portal/doctype/homepage/homepage.js b/erpnext/portal/doctype/homepage/homepage.js index 59f808a..cfdb1e3 100644 --- a/erpnext/portal/doctype/homepage/homepage.js +++ b/erpnext/portal/doctype/homepage/homepage.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Homepage', { diff --git a/erpnext/portal/doctype/homepage/homepage.py b/erpnext/portal/doctype/homepage/homepage.py index 0d2e360..a948e19 100644 --- a/erpnext/portal/doctype/homepage/homepage.py +++ b/erpnext/portal/doctype/homepage/homepage.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt @@ -10,7 +10,7 @@ from frappe.website.utils import delete_page_cache class Homepage(Document): def validate(self): if not self.description: - self.description = frappe._("This is an example website auto-generated from ERPNext") + self.description = frappe._("This is an example website auto-generated from InfluxERP") delete_page_cache("home") def setup_items(self): diff --git a/erpnext/portal/doctype/homepage/test_homepage.py b/erpnext/portal/doctype/homepage/test_homepage.py index e153223..087c3b5 100644 --- a/erpnext/portal/doctype/homepage/test_homepage.py +++ b/erpnext/portal/doctype/homepage/test_homepage.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/portal/doctype/homepage_featured_product/homepage_featured_product.py b/erpnext/portal/doctype/homepage_featured_product/homepage_featured_product.py index c21461d..83a07bb 100644 --- a/erpnext/portal/doctype/homepage_featured_product/homepage_featured_product.py +++ b/erpnext/portal/doctype/homepage_featured_product/homepage_featured_product.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/portal/doctype/homepage_section/homepage_section.js b/erpnext/portal/doctype/homepage_section/homepage_section.js index 68859eb..d98d38c 100644 --- a/erpnext/portal/doctype/homepage_section/homepage_section.js +++ b/erpnext/portal/doctype/homepage_section/homepage_section.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Homepage Section', { diff --git a/erpnext/portal/doctype/homepage_section/homepage_section.py b/erpnext/portal/doctype/homepage_section/homepage_section.py index 7181aff..f45c7a0 100644 --- a/erpnext/portal/doctype/homepage_section/homepage_section.py +++ b/erpnext/portal/doctype/homepage_section/homepage_section.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/portal/doctype/homepage_section/test_homepage_section.py b/erpnext/portal/doctype/homepage_section/test_homepage_section.py index 27c8fe4..1e526f9 100644 --- a/erpnext/portal/doctype/homepage_section/test_homepage_section.py +++ b/erpnext/portal/doctype/homepage_section/test_homepage_section.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/portal/doctype/homepage_section_card/homepage_section_card.py b/erpnext/portal/doctype/homepage_section_card/homepage_section_card.py index eeff63c..0a59e30 100644 --- a/erpnext/portal/doctype/homepage_section_card/homepage_section_card.py +++ b/erpnext/portal/doctype/homepage_section_card/homepage_section_card.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/portal/doctype/website_attribute/website_attribute.py b/erpnext/portal/doctype/website_attribute/website_attribute.py index 58a7376..e521803 100644 --- a/erpnext/portal/doctype/website_attribute/website_attribute.py +++ b/erpnext/portal/doctype/website_attribute/website_attribute.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/portal/doctype/website_filter_field/website_filter_field.py b/erpnext/portal/doctype/website_filter_field/website_filter_field.py index 8067ebb..54ef115 100644 --- a/erpnext/portal/doctype/website_filter_field/website_filter_field.py +++ b/erpnext/portal/doctype/website_filter_field/website_filter_field.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/activity_cost/activity_cost.py b/erpnext/projects/doctype/activity_cost/activity_cost.py index b99aa1e..94344a4 100644 --- a/erpnext/projects/doctype/activity_cost/activity_cost.py +++ b/erpnext/projects/doctype/activity_cost/activity_cost.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/projects/doctype/activity_cost/test_activity_cost.py b/erpnext/projects/doctype/activity_cost/test_activity_cost.py index 8da797e..23f34c4 100644 --- a/erpnext/projects/doctype/activity_cost/test_activity_cost.py +++ b/erpnext/projects/doctype/activity_cost/test_activity_cost.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import unittest diff --git a/erpnext/projects/doctype/activity_type/activity_type.py b/erpnext/projects/doctype/activity_type/activity_type.py index 5151098..cf9f491 100644 --- a/erpnext/projects/doctype/activity_type/activity_type.py +++ b/erpnext/projects/doctype/activity_type/activity_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/projects/doctype/activity_type/test_activity_type.py b/erpnext/projects/doctype/activity_type/test_activity_type.py index d51439e..c44dcde 100644 --- a/erpnext/projects/doctype/activity_type/test_activity_type.py +++ b/erpnext/projects/doctype/activity_type/test_activity_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/projects/doctype/dependent_task/dependent_task.py b/erpnext/projects/doctype/dependent_task/dependent_task.py index 73ce8f9..5b572fe 100644 --- a/erpnext/projects/doctype/dependent_task/dependent_task.py +++ b/erpnext/projects/doctype/dependent_task/dependent_task.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/projects/doctype/project/project.js b/erpnext/projects/doctype/project/project.js index c48ed91..3bb1679 100644 --- a/erpnext/projects/doctype/project/project.js +++ b/erpnext/projects/doctype/project/project.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Project", { setup(frm) { diff --git a/erpnext/projects/doctype/project/project.py b/erpnext/projects/doctype/project/project.py index d80133c..600117e 100644 --- a/erpnext/projects/doctype/project/project.py +++ b/erpnext/projects/doctype/project/project.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/projects/doctype/project/test_project.py b/erpnext/projects/doctype/project/test_project.py index 8a599ce..b072531 100644 --- a/erpnext/projects/doctype/project/test_project.py +++ b/erpnext/projects/doctype/project/test_project.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/projects/doctype/project_template/project_template.js b/erpnext/projects/doctype/project_template/project_template.js index 3d3c15c..0dd8ef4 100644 --- a/erpnext/projects/doctype/project_template/project_template.js +++ b/erpnext/projects/doctype/project_template/project_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Project Template', { diff --git a/erpnext/projects/doctype/project_template/project_template.py b/erpnext/projects/doctype/project_template/project_template.py index 89afb1b..fc7b5bd 100644 --- a/erpnext/projects/doctype/project_template/project_template.py +++ b/erpnext/projects/doctype/project_template/project_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/project_template/test_project_template.py b/erpnext/projects/doctype/project_template/test_project_template.py index 4fd24bf..d6d4976 100644 --- a/erpnext/projects/doctype/project_template/test_project_template.py +++ b/erpnext/projects/doctype/project_template/test_project_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/projects/doctype/project_template_task/project_template_task.py b/erpnext/projects/doctype/project_template_task/project_template_task.py index 01ec935..b26ee96 100644 --- a/erpnext/projects/doctype/project_template_task/project_template_task.py +++ b/erpnext/projects/doctype/project_template_task/project_template_task.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/project_type/project_type.js b/erpnext/projects/doctype/project_type/project_type.js index e3dda5e..90884b9 100644 --- a/erpnext/projects/doctype/project_type/project_type.js +++ b/erpnext/projects/doctype/project_type/project_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Project Type', { diff --git a/erpnext/projects/doctype/project_type/project_type.py b/erpnext/projects/doctype/project_type/project_type.py index 4a3724d..a359104 100644 --- a/erpnext/projects/doctype/project_type/project_type.py +++ b/erpnext/projects/doctype/project_type/project_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/project_type/test_project_type.py b/erpnext/projects/doctype/project_type/test_project_type.py index 3e670d0..ffb7863 100644 --- a/erpnext/projects/doctype/project_type/test_project_type.py +++ b/erpnext/projects/doctype/project_type/test_project_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/projects/doctype/project_update/project_update.js b/erpnext/projects/doctype/project_update/project_update.js index 990c1af..67b1482 100644 --- a/erpnext/projects/doctype/project_update/project_update.js +++ b/erpnext/projects/doctype/project_update/project_update.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Project Update', { diff --git a/erpnext/projects/doctype/project_update/project_update.py b/erpnext/projects/doctype/project_update/project_update.py index 175f787..92ab8f3 100644 --- a/erpnext/projects/doctype/project_update/project_update.py +++ b/erpnext/projects/doctype/project_update/project_update.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/project_update/test_project_update.py b/erpnext/projects/doctype/project_update/test_project_update.py index 8663350..9607eb6 100644 --- a/erpnext/projects/doctype/project_update/test_project_update.py +++ b/erpnext/projects/doctype/project_update/test_project_update.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/projects/doctype/project_user/project_user.py b/erpnext/projects/doctype/project_user/project_user.py index a52bcb1..9844030 100644 --- a/erpnext/projects/doctype/project_user/project_user.py +++ b/erpnext/projects/doctype/project_user/project_user.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/projects_settings/projects_settings.js b/erpnext/projects/doctype/projects_settings/projects_settings.js index 9902b83..6413c3a 100644 --- a/erpnext/projects/doctype/projects_settings/projects_settings.js +++ b/erpnext/projects/doctype/projects_settings/projects_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Projects Settings', { diff --git a/erpnext/projects/doctype/projects_settings/projects_settings.py b/erpnext/projects/doctype/projects_settings/projects_settings.py index db1dc45..2f2daee 100644 --- a/erpnext/projects/doctype/projects_settings/projects_settings.py +++ b/erpnext/projects/doctype/projects_settings/projects_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/projects_settings/test_projects_settings.py b/erpnext/projects/doctype/projects_settings/test_projects_settings.py index 79e7832..67e9caf 100644 --- a/erpnext/projects/doctype/projects_settings/test_projects_settings.py +++ b/erpnext/projects/doctype/projects_settings/test_projects_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/projects/doctype/task/task.js b/erpnext/projects/doctype/task/task.js index 3cd92ee..56ca3a3 100644 --- a/erpnext/projects/doctype/task/task.js +++ b/erpnext/projects/doctype/task/task.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.projects"); diff --git a/erpnext/projects/doctype/task/task.py b/erpnext/projects/doctype/task/task.py index fa50785..2476478 100644 --- a/erpnext/projects/doctype/task/task.py +++ b/erpnext/projects/doctype/task/task.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/projects/doctype/task/task_calendar.js b/erpnext/projects/doctype/task/task_calendar.js index 49dbb76..2364e12 100644 --- a/erpnext/projects/doctype/task/task_calendar.js +++ b/erpnext/projects/doctype/task/task_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.views.calendar["Task"] = { diff --git a/erpnext/projects/doctype/task/test_task.py b/erpnext/projects/doctype/task/test_task.py index c0333f8..bd167d0 100644 --- a/erpnext/projects/doctype/task/test_task.py +++ b/erpnext/projects/doctype/task/test_task.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/projects/doctype/task_depends_on/task_depends_on.py b/erpnext/projects/doctype/task_depends_on/task_depends_on.py index 0db1f81..4b61539 100644 --- a/erpnext/projects/doctype/task_depends_on/task_depends_on.py +++ b/erpnext/projects/doctype/task_depends_on/task_depends_on.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/projects/doctype/task_type/task_type.js b/erpnext/projects/doctype/task_type/task_type.js index c1be5da..6fe2222 100644 --- a/erpnext/projects/doctype/task_type/task_type.js +++ b/erpnext/projects/doctype/task_type/task_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Task Type', { diff --git a/erpnext/projects/doctype/task_type/task_type.py b/erpnext/projects/doctype/task_type/task_type.py index 08bed69..77fa782 100644 --- a/erpnext/projects/doctype/task_type/task_type.py +++ b/erpnext/projects/doctype/task_type/task_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/task_type/test_task_type.py b/erpnext/projects/doctype/task_type/test_task_type.py index ef99402..0e7872f 100644 --- a/erpnext/projects/doctype/task_type/test_task_type.py +++ b/erpnext/projects/doctype/task_type/test_task_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/projects/doctype/timesheet/test_timesheet.py b/erpnext/projects/doctype/timesheet/test_timesheet.py index e098c3e..b0f51ca 100644 --- a/erpnext/projects/doctype/timesheet/test_timesheet.py +++ b/erpnext/projects/doctype/timesheet/test_timesheet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import datetime diff --git a/erpnext/projects/doctype/timesheet/timesheet.js b/erpnext/projects/doctype/timesheet/timesheet.js index e1486de..9e68fc7 100644 --- a/erpnext/projects/doctype/timesheet/timesheet.js +++ b/erpnext/projects/doctype/timesheet/timesheet.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Timesheet", { diff --git a/erpnext/projects/doctype/timesheet/timesheet.py b/erpnext/projects/doctype/timesheet/timesheet.py index b9bb37a..571a584 100644 --- a/erpnext/projects/doctype/timesheet/timesheet.py +++ b/erpnext/projects/doctype/timesheet/timesheet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/doctype/timesheet_detail/timesheet_detail.py b/erpnext/projects/doctype/timesheet_detail/timesheet_detail.py index d527a3c..22aef88 100644 --- a/erpnext/projects/doctype/timesheet_detail/timesheet_detail.py +++ b/erpnext/projects/doctype/timesheet_detail/timesheet_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/report/billing_summary.py b/erpnext/projects/report/billing_summary.py index bc8f2af..6fc1d90 100644 --- a/erpnext/projects/report/billing_summary.py +++ b/erpnext/projects/report/billing_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.js b/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.js index 93cb940..ea7a10b 100644 --- a/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.js +++ b/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Daily Timesheet Summary"] = { diff --git a/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py b/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py index b31a063..2c8539e 100644 --- a/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py +++ b/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.js b/erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.js index 5aa44c0..9ae31d6 100644 --- a/erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.js +++ b/erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py b/erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py index 17e3155..4d47190 100644 --- a/erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py +++ b/erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/report/employee_billing_summary/employee_billing_summary.js b/erpnext/projects/report/employee_billing_summary/employee_billing_summary.js index 13f49ed..b358bd1 100644 --- a/erpnext/projects/report/employee_billing_summary/employee_billing_summary.js +++ b/erpnext/projects/report/employee_billing_summary/employee_billing_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/projects/report/employee_billing_summary/employee_billing_summary.py b/erpnext/projects/report/employee_billing_summary/employee_billing_summary.py index a2f7378..c2eb130 100644 --- a/erpnext/projects/report/employee_billing_summary/employee_billing_summary.py +++ b/erpnext/projects/report/employee_billing_summary/employee_billing_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/report/project_billing_summary/project_billing_summary.js b/erpnext/projects/report/project_billing_summary/project_billing_summary.js index caac1d8..1b7dac1 100644 --- a/erpnext/projects/report/project_billing_summary/project_billing_summary.js +++ b/erpnext/projects/report/project_billing_summary/project_billing_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/projects/report/project_billing_summary/project_billing_summary.py b/erpnext/projects/report/project_billing_summary/project_billing_summary.py index a2f7378..c2eb130 100644 --- a/erpnext/projects/report/project_billing_summary/project_billing_summary.py +++ b/erpnext/projects/report/project_billing_summary/project_billing_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/report/project_summary/project_summary.js b/erpnext/projects/report/project_summary/project_summary.js index 414b7b2..a8a762b 100644 --- a/erpnext/projects/report/project_summary/project_summary.js +++ b/erpnext/projects/report/project_summary/project_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/projects/report/project_summary/project_summary.py b/erpnext/projects/report/project_summary/project_summary.py index 606c0c2..93e3451 100644 --- a/erpnext/projects/report/project_summary/project_summary.py +++ b/erpnext/projects/report/project_summary/project_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.js b/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.js index ccca264..31110e0 100644 --- a/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.js +++ b/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Project wise Stock Tracking"] = { diff --git a/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py b/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py index da609ca..1c3875a 100644 --- a/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +++ b/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/projects/utils.py b/erpnext/projects/utils.py index 3cc4da4..2249032 100644 --- a/erpnext/projects/utils.py +++ b/erpnext/projects/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/public/js/account_tree_grid.js b/erpnext/public/js/account_tree_grid.js index 413a5ee..f57d570 100644 --- a/erpnext/public/js/account_tree_grid.js +++ b/erpnext/public/js/account_tree_grid.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // This program is free software: you can redistribute it and/or modify diff --git a/erpnext/public/js/address.js b/erpnext/public/js/address.js index 57f7163..4d8636c 100644 --- a/erpnext/public/js/address.js +++ b/erpnext/public/js/address.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Address", { diff --git a/erpnext/public/js/conf.js b/erpnext/public/js/conf.js index a0f56a2..1e19490 100644 --- a/erpnext/public/js/conf.js +++ b/erpnext/public/js/conf.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide('erpnext'); @@ -17,7 +17,7 @@ $.extend(frappe.breadcrumbs.preferred, { }); $.extend(frappe.breadcrumbs.module_map, { - 'ERPNext Integrations': 'Integrations', + 'InfluxERP Integrations': 'Integrations', 'Geo': 'Settings', 'Portal': 'Website', 'Utilities': 'Settings', diff --git a/erpnext/public/js/controllers/accounts.js b/erpnext/public/js/controllers/accounts.js index c1fe72b..aa694bc 100644 --- a/erpnext/public/js/controllers/accounts.js +++ b/erpnext/public/js/controllers/accounts.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // get tax rate diff --git a/erpnext/public/js/controllers/buying.js b/erpnext/public/js/controllers/buying.js index 09779d8..9c0ba6d 100644 --- a/erpnext/public/js/controllers/buying.js +++ b/erpnext/public/js/controllers/buying.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.buying"); diff --git a/erpnext/public/js/controllers/stock_controller.js b/erpnext/public/js/controllers/stock_controller.js index d346357..f20baaa 100644 --- a/erpnext/public/js/controllers/stock_controller.js +++ b/erpnext/public/js/controllers/stock_controller.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.stock"); diff --git a/erpnext/public/js/controllers/taxes_and_totals.js b/erpnext/public/js/controllers/taxes_and_totals.js index 4c3e9dc..172f339 100644 --- a/erpnext/public/js/controllers/taxes_and_totals.js +++ b/erpnext/public/js/controllers/taxes_and_totals.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt erpnext.taxes_and_totals = class TaxesAndTotals extends erpnext.payments { diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index c17610b..f9d4513 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/public/js/event.js b/erpnext/public/js/event.js index 665c8fb..2f35d10 100644 --- a/erpnext/public/js/event.js +++ b/erpnext/public/js/event.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2018, Influx ERP Solutions and Contributors // MIT License. See license.txt frappe.provide("frappe.desk"); diff --git a/erpnext/public/js/help_links.js b/erpnext/public/js/help_links.js index b643cca..b3cb932 100644 --- a/erpnext/public/js/help_links.js +++ b/erpnext/public/js/help_links.js @@ -1,6 +1,6 @@ frappe.provide("frappe.help.help_links"); -const docsUrl = "https://erpnext.com/docs/"; +const docsUrl = "https://influxerp.com/docs/"; frappe.help.help_links["Form/Rename Tool"] = [ { diff --git a/erpnext/public/js/newsletter.js b/erpnext/public/js/newsletter.js index 3a4dbf8..6142d30 100644 --- a/erpnext/public/js/newsletter.js +++ b/erpnext/public/js/newsletter.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2019, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Newsletter', { diff --git a/erpnext/public/js/payment/payments.js b/erpnext/public/js/payment/payments.js index 4c23669..dfad831 100644 --- a/erpnext/public/js/payment/payments.js +++ b/erpnext/public/js/payment/payments.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt erpnext.payments = class payments extends erpnext.stock.StockController { diff --git a/erpnext/public/js/purchase_trends_filters.js b/erpnext/public/js/purchase_trends_filters.js index c786a86..3f6d5b6 100644 --- a/erpnext/public/js/purchase_trends_filters.js +++ b/erpnext/public/js/purchase_trends_filters.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt erpnext.get_purchase_trends_filters = function() { diff --git a/erpnext/public/js/queries.js b/erpnext/public/js/queries.js index b7d880a..d588acc 100644 --- a/erpnext/public/js/queries.js +++ b/erpnext/public/js/queries.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // searches for enabled users diff --git a/erpnext/public/js/sales_trends_filters.js b/erpnext/public/js/sales_trends_filters.js index b9c4dca..d8619ea 100644 --- a/erpnext/public/js/sales_trends_filters.js +++ b/erpnext/public/js/sales_trends_filters.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt erpnext.get_sales_trends_filters = function() { diff --git a/erpnext/public/js/shopping_cart.js b/erpnext/public/js/shopping_cart.js index d14740c..999b78e 100644 --- a/erpnext/public/js/shopping_cart.js +++ b/erpnext/public/js/shopping_cart.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // shopping cart diff --git a/erpnext/public/js/sms_manager.js b/erpnext/public/js/sms_manager.js index a058da2..16b7c8c 100644 --- a/erpnext/public/js/sms_manager.js +++ b/erpnext/public/js/sms_manager.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt erpnext.SMSManager = function SMSManager(doc) { diff --git a/erpnext/public/js/stock_analytics.js b/erpnext/public/js/stock_analytics.js index a343c34..1f841c7 100644 --- a/erpnext/public/js/stock_analytics.js +++ b/erpnext/public/js/stock_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/public/js/stock_grid_report.js b/erpnext/public/js/stock_grid_report.js index 752fafd..1e935c9 100644 --- a/erpnext/public/js/stock_grid_report.js +++ b/erpnext/public/js/stock_grid_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt erpnext.StockGridReport = class StockGridReport extends frappe.views.TreeGridReport { diff --git a/erpnext/public/js/utils.js b/erpnext/public/js/utils.js index 6d64625..901d49c 100644 --- a/erpnext/public/js/utils.js +++ b/erpnext/public/js/utils.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext"); frappe.provide("erpnext.utils"); diff --git a/erpnext/public/js/utils/party.js b/erpnext/public/js/utils/party.js index 58594b0..d95a244 100644 --- a/erpnext/public/js/utils/party.js +++ b/erpnext/public/js/utils/party.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.utils"); diff --git a/erpnext/public/js/website_theme.js b/erpnext/public/js/website_theme.js index 0009cac..631a033 100644 --- a/erpnext/public/js/website_theme.js +++ b/erpnext/public/js/website_theme.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2019, Influx ERP Solutions and Contributors // MIT License. See license.txt frappe.ui.form.on('Website Theme', { diff --git a/erpnext/public/js/website_utils.js b/erpnext/public/js/website_utils.js index b541606..2ae237c 100644 --- a/erpnext/public/js/website_utils.js +++ b/erpnext/public/js/website_utils.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt if(!window.erpnext) window.erpnext = {}; diff --git a/erpnext/quality_management/doctype/non_conformance/non_conformance.js b/erpnext/quality_management/doctype/non_conformance/non_conformance.js index e7f5eee..6936ba0 100644 --- a/erpnext/quality_management/doctype/non_conformance/non_conformance.js +++ b/erpnext/quality_management/doctype/non_conformance/non_conformance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Non Conformance', { diff --git a/erpnext/quality_management/doctype/non_conformance/non_conformance.py b/erpnext/quality_management/doctype/non_conformance/non_conformance.py index a2198f3..59acbc4 100644 --- a/erpnext/quality_management/doctype/non_conformance/non_conformance.py +++ b/erpnext/quality_management/doctype/non_conformance/non_conformance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/non_conformance/test_non_conformance.py b/erpnext/quality_management/doctype/non_conformance/test_non_conformance.py index 3e94b35..cd9fc11 100644 --- a/erpnext/quality_management/doctype/non_conformance/test_non_conformance.py +++ b/erpnext/quality_management/doctype/non_conformance/test_non_conformance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/quality_management/doctype/quality_action/quality_action.js b/erpnext/quality_management/doctype/quality_action/quality_action.js index b44f2a2..18a2f0d 100644 --- a/erpnext/quality_management/doctype/quality_action/quality_action.js +++ b/erpnext/quality_management/doctype/quality_action/quality_action.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Quality Action', { diff --git a/erpnext/quality_management/doctype/quality_action/quality_action.py b/erpnext/quality_management/doctype/quality_action/quality_action.py index f7cd94d..6ffe302 100644 --- a/erpnext/quality_management/doctype/quality_action/quality_action.py +++ b/erpnext/quality_management/doctype/quality_action/quality_action.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_action/test_quality_action.py b/erpnext/quality_management/doctype/quality_action/test_quality_action.py index fefa9df..3e41fb4 100644 --- a/erpnext/quality_management/doctype/quality_action/test_quality_action.py +++ b/erpnext/quality_management/doctype/quality_action/test_quality_action.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # See license.txt import unittest diff --git a/erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.py b/erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.py index 7ede3e4..ae61238 100644 --- a/erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.py +++ b/erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_feedback/quality_feedback.js b/erpnext/quality_management/doctype/quality_feedback/quality_feedback.js index 6fb3267..936b9ae 100644 --- a/erpnext/quality_management/doctype/quality_feedback/quality_feedback.js +++ b/erpnext/quality_management/doctype/quality_feedback/quality_feedback.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Quality Feedback', { diff --git a/erpnext/quality_management/doctype/quality_feedback/quality_feedback.py b/erpnext/quality_management/doctype/quality_feedback/quality_feedback.py index cc8ce26..b62f9fc 100644 --- a/erpnext/quality_management/doctype/quality_feedback/quality_feedback.py +++ b/erpnext/quality_management/doctype/quality_feedback/quality_feedback.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_feedback/test_quality_feedback.py b/erpnext/quality_management/doctype/quality_feedback/test_quality_feedback.py index 58d0632..1beff47 100644 --- a/erpnext/quality_management/doctype/quality_feedback/test_quality_feedback.py +++ b/erpnext/quality_management/doctype/quality_feedback/test_quality_feedback.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/quality_management/doctype/quality_feedback_parameter/quality_feedback_parameter.py b/erpnext/quality_management/doctype/quality_feedback_parameter/quality_feedback_parameter.py index ff2c841..1571e71 100644 --- a/erpnext/quality_management/doctype/quality_feedback_parameter/quality_feedback_parameter.py +++ b/erpnext/quality_management/doctype/quality_feedback_parameter/quality_feedback_parameter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.js b/erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.js index 490eed9..cfa649d 100644 --- a/erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.js +++ b/erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Quality Feedback Template', { diff --git a/erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.py b/erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.py index 4590f9d..60dd407 100644 --- a/erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.py +++ b/erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_feedback_template/test_quality_feedback_template.py b/erpnext/quality_management/doctype/quality_feedback_template/test_quality_feedback_template.py index 4b8bc0f..5472325 100644 --- a/erpnext/quality_management/doctype/quality_feedback_template/test_quality_feedback_template.py +++ b/erpnext/quality_management/doctype/quality_feedback_template/test_quality_feedback_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/quality_management/doctype/quality_feedback_template_parameter/quality_feedback_template_parameter.py b/erpnext/quality_management/doctype/quality_feedback_template_parameter/quality_feedback_template_parameter.py index 13e215f..1943f79 100644 --- a/erpnext/quality_management/doctype/quality_feedback_template_parameter/quality_feedback_template_parameter.py +++ b/erpnext/quality_management/doctype/quality_feedback_template_parameter/quality_feedback_template_parameter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_goal/quality_goal.js b/erpnext/quality_management/doctype/quality_goal/quality_goal.js index 40cb4d9..030b4f3 100644 --- a/erpnext/quality_management/doctype/quality_goal/quality_goal.js +++ b/erpnext/quality_management/doctype/quality_goal/quality_goal.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Quality Goal', { diff --git a/erpnext/quality_management/doctype/quality_goal/quality_goal.py b/erpnext/quality_management/doctype/quality_goal/quality_goal.py index 22ba810..854cba2 100644 --- a/erpnext/quality_management/doctype/quality_goal/quality_goal.py +++ b/erpnext/quality_management/doctype/quality_goal/quality_goal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_goal/test_quality_goal.py b/erpnext/quality_management/doctype/quality_goal/test_quality_goal.py index 40606cd..2813faf 100644 --- a/erpnext/quality_management/doctype/quality_goal/test_quality_goal.py +++ b/erpnext/quality_management/doctype/quality_goal/test_quality_goal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # See license.txt import unittest diff --git a/erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.py b/erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.py index eaa8db2..d195628 100644 --- a/erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.py +++ b/erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_meeting/quality_meeting.js b/erpnext/quality_management/doctype/quality_meeting/quality_meeting.js index eb7a8c3..3468263 100644 --- a/erpnext/quality_management/doctype/quality_meeting/quality_meeting.js +++ b/erpnext/quality_management/doctype/quality_meeting/quality_meeting.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Quality Meeting', { diff --git a/erpnext/quality_management/doctype/quality_meeting/quality_meeting.py b/erpnext/quality_management/doctype/quality_meeting/quality_meeting.py index 481b3c1..da06db6 100644 --- a/erpnext/quality_management/doctype/quality_meeting/quality_meeting.py +++ b/erpnext/quality_management/doctype/quality_meeting/quality_meeting.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_meeting/test_quality_meeting.py b/erpnext/quality_management/doctype/quality_meeting/test_quality_meeting.py index 910b8a1..378d45b 100644 --- a/erpnext/quality_management/doctype/quality_meeting/test_quality_meeting.py +++ b/erpnext/quality_management/doctype/quality_meeting/test_quality_meeting.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # See license.txt import unittest diff --git a/erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.js b/erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.js index 09989dc..b4a86f3 100644 --- a/erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.js +++ b/erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Quality Meeting Agenda', { diff --git a/erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.py b/erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.py index c2f5b3f..08e4d50 100644 --- a/erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.py +++ b/erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_meeting_agenda/test_quality_meeting_agenda.py b/erpnext/quality_management/doctype/quality_meeting_agenda/test_quality_meeting_agenda.py index 8b09f6d..ac0a9af 100644 --- a/erpnext/quality_management/doctype/quality_meeting_agenda/test_quality_meeting_agenda.py +++ b/erpnext/quality_management/doctype/quality_meeting_agenda/test_quality_meeting_agenda.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.py b/erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.py index f6998df..51d733b 100644 --- a/erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.py +++ b/erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_procedure/quality_procedure.js b/erpnext/quality_management/doctype/quality_procedure/quality_procedure.js index fd2b6a4..1740273 100644 --- a/erpnext/quality_management/doctype/quality_procedure/quality_procedure.js +++ b/erpnext/quality_management/doctype/quality_procedure/quality_procedure.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Quality Procedure', { diff --git a/erpnext/quality_management/doctype/quality_procedure/quality_procedure.py b/erpnext/quality_management/doctype/quality_procedure/quality_procedure.py index 72f9e6d..4e132bc 100644 --- a/erpnext/quality_management/doctype/quality_procedure/quality_procedure.py +++ b/erpnext/quality_management/doctype/quality_procedure/quality_procedure.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_procedure/test_quality_procedure.py b/erpnext/quality_management/doctype/quality_procedure/test_quality_procedure.py index 04e8211..3f81aa0 100644 --- a/erpnext/quality_management/doctype/quality_procedure/test_quality_procedure.py +++ b/erpnext/quality_management/doctype/quality_procedure/test_quality_procedure.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # See license.txt import unittest diff --git a/erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.py b/erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.py index a03c871..68e8015 100644 --- a/erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.py +++ b/erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_review/quality_review.js b/erpnext/quality_management/doctype/quality_review/quality_review.js index 0e6b703..f2d2f88 100644 --- a/erpnext/quality_management/doctype/quality_review/quality_review.js +++ b/erpnext/quality_management/doctype/quality_review/quality_review.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Quality Review', { diff --git a/erpnext/quality_management/doctype/quality_review/quality_review.py b/erpnext/quality_management/doctype/quality_review/quality_review.py index f691005..c1fd993 100644 --- a/erpnext/quality_management/doctype/quality_review/quality_review.py +++ b/erpnext/quality_management/doctype/quality_review/quality_review.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/erpnext/quality_management/doctype/quality_review/test_quality_review.py b/erpnext/quality_management/doctype/quality_review/test_quality_review.py index c76e7f2..a134e1d 100644 --- a/erpnext/quality_management/doctype/quality_review/test_quality_review.py +++ b/erpnext/quality_management/doctype/quality_review/test_quality_review.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, Influx ERP Solutions # See license.txt import unittest diff --git a/erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.py b/erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.py index 462a971..d5a3be2 100644 --- a/erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.py +++ b/erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/__init__.py b/erpnext/regional/__init__.py index ec2db81..bb245f2 100644 --- a/erpnext/regional/__init__.py +++ b/erpnext/regional/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.js b/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.js index 5918ec8..25cf5ae 100644 --- a/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.js +++ b/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Import Supplier Invoice', { diff --git a/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py b/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py index 34701c1..84d50af 100644 --- a/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py +++ b/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/regional/doctype/import_supplier_invoice/test_import_supplier_invoice.py b/erpnext/regional/doctype/import_supplier_invoice/test_import_supplier_invoice.py index 78c07c5..2a63ad1 100644 --- a/erpnext/regional/doctype/import_supplier_invoice/test_import_supplier_invoice.py +++ b/erpnext/regional/doctype/import_supplier_invoice/test_import_supplier_invoice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/regional/doctype/ksa_vat_purchase_account/ksa_vat_purchase_account.py b/erpnext/regional/doctype/ksa_vat_purchase_account/ksa_vat_purchase_account.py index 3920bc5..51f8ec6 100644 --- a/erpnext/regional/doctype/ksa_vat_purchase_account/ksa_vat_purchase_account.py +++ b/erpnext/regional/doctype/ksa_vat_purchase_account/ksa_vat_purchase_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Havenir Solutions and contributors +# Copyright (c) 2021, Havenir Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/regional/doctype/ksa_vat_sales_account/ksa_vat_sales_account.js b/erpnext/regional/doctype/ksa_vat_sales_account/ksa_vat_sales_account.js index 72613f4..b49083a 100644 --- a/erpnext/regional/doctype/ksa_vat_sales_account/ksa_vat_sales_account.js +++ b/erpnext/regional/doctype/ksa_vat_sales_account/ksa_vat_sales_account.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Havenir Solutions and contributors +// Copyright (c) 2021, Havenir Solutions // For license information, please see license.txt frappe.ui.form.on('KSA VAT Sales Account', { diff --git a/erpnext/regional/doctype/ksa_vat_sales_account/ksa_vat_sales_account.py b/erpnext/regional/doctype/ksa_vat_sales_account/ksa_vat_sales_account.py index 7c2689f..6f55337 100644 --- a/erpnext/regional/doctype/ksa_vat_sales_account/ksa_vat_sales_account.py +++ b/erpnext/regional/doctype/ksa_vat_sales_account/ksa_vat_sales_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Havenir Solutions and contributors +# Copyright (c) 2021, Havenir Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/regional/doctype/ksa_vat_setting/ksa_vat_setting.js b/erpnext/regional/doctype/ksa_vat_setting/ksa_vat_setting.js index 00b62b9..ef1bd1e 100644 --- a/erpnext/regional/doctype/ksa_vat_setting/ksa_vat_setting.js +++ b/erpnext/regional/doctype/ksa_vat_setting/ksa_vat_setting.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Havenir Solutions and contributors +// Copyright (c) 2021, Havenir Solutions // For license information, please see license.txt frappe.ui.form.on('KSA VAT Setting', { diff --git a/erpnext/regional/doctype/ksa_vat_setting/ksa_vat_setting.py b/erpnext/regional/doctype/ksa_vat_setting/ksa_vat_setting.py index bdae116..b22bc31 100644 --- a/erpnext/regional/doctype/ksa_vat_setting/ksa_vat_setting.py +++ b/erpnext/regional/doctype/ksa_vat_setting/ksa_vat_setting.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Havenir Solutions and contributors +# Copyright (c) 2021, Havenir Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.js b/erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.js index 8257bf8..4d518ea 100644 --- a/erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.js +++ b/erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Lower Deduction Certificate', { diff --git a/erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py b/erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py index cc223e9..63a3186 100644 --- a/erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py +++ b/erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/doctype/lower_deduction_certificate/test_lower_deduction_certificate.py b/erpnext/regional/doctype/lower_deduction_certificate/test_lower_deduction_certificate.py index d8e7801..36eb468 100644 --- a/erpnext/regional/doctype/lower_deduction_certificate/test_lower_deduction_certificate.py +++ b/erpnext/regional/doctype/lower_deduction_certificate/test_lower_deduction_certificate.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/regional/doctype/product_tax_category/product_tax_category.js b/erpnext/regional/doctype/product_tax_category/product_tax_category.js index 9f8e795..50776c1 100644 --- a/erpnext/regional/doctype/product_tax_category/product_tax_category.js +++ b/erpnext/regional/doctype/product_tax_category/product_tax_category.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Product Tax Category', { diff --git a/erpnext/regional/doctype/product_tax_category/product_tax_category.py b/erpnext/regional/doctype/product_tax_category/product_tax_category.py index b6be9e0..bdaabc2 100644 --- a/erpnext/regional/doctype/product_tax_category/product_tax_category.py +++ b/erpnext/regional/doctype/product_tax_category/product_tax_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/regional/doctype/product_tax_category/test_product_tax_category.py b/erpnext/regional/doctype/product_tax_category/test_product_tax_category.py index 2668f23..bcda68b 100644 --- a/erpnext/regional/doctype/product_tax_category/test_product_tax_category.py +++ b/erpnext/regional/doctype/product_tax_category/test_product_tax_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.js b/erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.js index e37a61a..94af517 100644 --- a/erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.js +++ b/erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('South Africa VAT Settings', { diff --git a/erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.py b/erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.py index 4c3e8a7..2a9d14f 100644 --- a/erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.py +++ b/erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/regional/doctype/south_africa_vat_settings/test_south_africa_vat_settings.py b/erpnext/regional/doctype/south_africa_vat_settings/test_south_africa_vat_settings.py index 0f19f25..c37770e 100644 --- a/erpnext/regional/doctype/south_africa_vat_settings/test_south_africa_vat_settings.py +++ b/erpnext/regional/doctype/south_africa_vat_settings/test_south_africa_vat_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/regional/doctype/uae_vat_account/uae_vat_account.py b/erpnext/regional/doctype/uae_vat_account/uae_vat_account.py index f2fc34d..0aabdff 100644 --- a/erpnext/regional/doctype/uae_vat_account/uae_vat_account.py +++ b/erpnext/regional/doctype/uae_vat_account/uae_vat_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/doctype/uae_vat_settings/test_uae_vat_settings.py b/erpnext/regional/doctype/uae_vat_settings/test_uae_vat_settings.py index 464c2e6..2f0b1d6 100644 --- a/erpnext/regional/doctype/uae_vat_settings/test_uae_vat_settings.py +++ b/erpnext/regional/doctype/uae_vat_settings/test_uae_vat_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.js b/erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.js index 6653141..1e83c45 100644 --- a/erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.js +++ b/erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('UAE VAT Settings', { diff --git a/erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.py b/erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.py index 1af32e4..470b612 100644 --- a/erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.py +++ b/erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/france/setup.py b/erpnext/regional/france/setup.py index da772d6..6ed0c4d 100644 --- a/erpnext/regional/france/setup.py +++ b/erpnext/regional/france/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/regional/france/utils.py b/erpnext/regional/france/utils.py index 65dfd2d..8d12d21 100644 --- a/erpnext/regional/france/utils.py +++ b/erpnext/regional/france/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/italy/setup.py b/erpnext/regional/italy/setup.py index 1f66b36..afffcfc 100644 --- a/erpnext/regional/italy/setup.py +++ b/erpnext/regional/italy/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # coding=utf-8 diff --git a/erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js b/erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js index d7e3ac9..c2cc5ee 100644 --- a/erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js +++ b/erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.py b/erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.py index 1ae3d16..4f22d50 100644 --- a/erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.py +++ b/erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/report/fichier_des_ecritures_comptables_[fec]/fichier_des_ecritures_comptables_[fec].js b/erpnext/regional/report/fichier_des_ecritures_comptables_[fec]/fichier_des_ecritures_comptables_[fec].js index a4c7640..5ea4726 100644 --- a/erpnext/regional/report/fichier_des_ecritures_comptables_[fec]/fichier_des_ecritures_comptables_[fec].js +++ b/erpnext/regional/report/fichier_des_ecritures_comptables_[fec]/fichier_des_ecritures_comptables_[fec].js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Fichier des Ecritures Comptables [FEC]"] = { diff --git a/erpnext/regional/report/fichier_des_ecritures_comptables_[fec]/fichier_des_ecritures_comptables_[fec].py b/erpnext/regional/report/fichier_des_ecritures_comptables_[fec]/fichier_des_ecritures_comptables_[fec].py index c75179e..e9a654f 100644 --- a/erpnext/regional/report/fichier_des_ecritures_comptables_[fec]/fichier_des_ecritures_comptables_[fec].py +++ b/erpnext/regional/report/fichier_des_ecritures_comptables_[fec]/fichier_des_ecritures_comptables_[fec].py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/report/irs_1099/irs_1099.js b/erpnext/regional/report/irs_1099/irs_1099.js index 070ff43..d696dc9 100644 --- a/erpnext/regional/report/irs_1099/irs_1099.js +++ b/erpnext/regional/report/irs_1099/irs_1099.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2018, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["IRS 1099"] = { diff --git a/erpnext/regional/report/irs_1099/irs_1099.py b/erpnext/regional/report/irs_1099/irs_1099.py index 66ade1f..9f6e464 100644 --- a/erpnext/regional/report/irs_1099/irs_1099.py +++ b/erpnext/regional/report/irs_1099/irs_1099.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt import json diff --git a/erpnext/regional/report/ksa_vat/ksa_vat.js b/erpnext/regional/report/ksa_vat/ksa_vat.js index 59e72c3..f095c34 100644 --- a/erpnext/regional/report/ksa_vat/ksa_vat.js +++ b/erpnext/regional/report/ksa_vat/ksa_vat.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Havenir Solutions and contributors +// Copyright (c) 2016, Havenir Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/regional/report/ksa_vat/ksa_vat.py b/erpnext/regional/report/ksa_vat/ksa_vat.py index 3571f96..f7ff7b2 100644 --- a/erpnext/regional/report/ksa_vat/ksa_vat.py +++ b/erpnext/regional/report/ksa_vat/ksa_vat.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Havenir Solutions and contributors +# Copyright (c) 2013, Havenir Solutions # For license information, please see license.txt diff --git a/erpnext/regional/report/uae_vat_201/uae_vat_201.js b/erpnext/regional/report/uae_vat_201/uae_vat_201.js index 5957424..ca363c8 100644 --- a/erpnext/regional/report/uae_vat_201/uae_vat_201.js +++ b/erpnext/regional/report/uae_vat_201/uae_vat_201.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/regional/report/uae_vat_201/uae_vat_201.py b/erpnext/regional/report/uae_vat_201/uae_vat_201.py index 59ef58b..7999fe0 100644 --- a/erpnext/regional/report/uae_vat_201/uae_vat_201.py +++ b/erpnext/regional/report/uae_vat_201/uae_vat_201.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/report/vat_audit_report/test_vat_audit_report.py b/erpnext/regional/report/vat_audit_report/test_vat_audit_report.py index a898a25..a21d179 100644 --- a/erpnext/regional/report/vat_audit_report/test_vat_audit_report.py +++ b/erpnext/regional/report/vat_audit_report/test_vat_audit_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/report/vat_audit_report/vat_audit_report.js b/erpnext/regional/report/vat_audit_report/vat_audit_report.js index 39ef9b5..5c50f5f 100644 --- a/erpnext/regional/report/vat_audit_report/vat_audit_report.js +++ b/erpnext/regional/report/vat_audit_report/vat_audit_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/regional/report/vat_audit_report/vat_audit_report.py b/erpnext/regional/report/vat_audit_report/vat_audit_report.py index 3d486ce..b7b3950 100644 --- a/erpnext/regional/report/vat_audit_report/vat_audit_report.py +++ b/erpnext/regional/report/vat_audit_report/vat_audit_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/regional/saudi_arabia/setup.py b/erpnext/regional/saudi_arabia/setup.py index 7f41c46..e352199 100644 --- a/erpnext/regional/saudi_arabia/setup.py +++ b/erpnext/regional/saudi_arabia/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/regional/south_africa/setup.py b/erpnext/regional/south_africa/setup.py index 289f272..e015094 100644 --- a/erpnext/regional/south_africa/setup.py +++ b/erpnext/regional/south_africa/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/regional/united_arab_emirates/setup.py b/erpnext/regional/united_arab_emirates/setup.py index be621bc..f681509 100644 --- a/erpnext/regional/united_arab_emirates/setup.py +++ b/erpnext/regional/united_arab_emirates/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/regional/united_states/setup.py b/erpnext/regional/united_states/setup.py index b8f8572..6ee3b5f 100644 --- a/erpnext/regional/united_states/setup.py +++ b/erpnext/regional/united_states/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/regional/united_states/test_united_states.py b/erpnext/regional/united_states/test_united_states.py index 83ba6ed..a32d5eb 100644 --- a/erpnext/regional/united_states/test_united_states.py +++ b/erpnext/regional/united_states/test_united_states.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/selling/doctype/customer/customer.js b/erpnext/selling/doctype/customer/customer.js index 107e4a4..f47a8cd 100644 --- a/erpnext/selling/doctype/customer/customer.js +++ b/erpnext/selling/doctype/customer/customer.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Customer", { diff --git a/erpnext/selling/doctype/customer/customer.py b/erpnext/selling/doctype/customer/customer.py index 6605685..ab09b6a 100644 --- a/erpnext/selling/doctype/customer/customer.py +++ b/erpnext/selling/doctype/customer/customer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/customer/test_customer.py b/erpnext/selling/doctype/customer/test_customer.py index 7dc3fab..ece09bc 100644 --- a/erpnext/selling/doctype/customer/test_customer.py +++ b/erpnext/selling/doctype/customer/test_customer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.py b/erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.py index 193027b..9032588 100644 --- a/erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.py +++ b/erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/doctype/industry_type/industry_type.js b/erpnext/selling/doctype/industry_type/industry_type.js index 3680906..a37cb92 100644 --- a/erpnext/selling/doctype/industry_type/industry_type.js +++ b/erpnext/selling/doctype/industry_type/industry_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/industry_type/industry_type.py b/erpnext/selling/doctype/industry_type/industry_type.py index fbe0131..99a641f 100644 --- a/erpnext/selling/doctype/industry_type/industry_type.py +++ b/erpnext/selling/doctype/industry_type/industry_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/industry_type/test_industry_type.py b/erpnext/selling/doctype/industry_type/test_industry_type.py index eb5f905..6aec34f 100644 --- a/erpnext/selling/doctype/industry_type/test_industry_type.py +++ b/erpnext/selling/doctype/industry_type/test_industry_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/selling/doctype/installation_note/installation_note.js b/erpnext/selling/doctype/installation_note/installation_note.js index 27a3b35..8cb8a77 100644 --- a/erpnext/selling/doctype/installation_note/installation_note.js +++ b/erpnext/selling/doctype/installation_note/installation_note.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Installation Note', { diff --git a/erpnext/selling/doctype/installation_note/installation_note.py b/erpnext/selling/doctype/installation_note/installation_note.py index dd0b1e8..d8788bf 100644 --- a/erpnext/selling/doctype/installation_note/installation_note.py +++ b/erpnext/selling/doctype/installation_note/installation_note.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/installation_note/test_installation_note.py b/erpnext/selling/doctype/installation_note/test_installation_note.py index 56e0fe1..8810873 100644 --- a/erpnext/selling/doctype/installation_note/test_installation_note.py +++ b/erpnext/selling/doctype/installation_note/test_installation_note.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/selling/doctype/installation_note_item/installation_note_item.py b/erpnext/selling/doctype/installation_note_item/installation_note_item.py index 2169a7b..249b996 100644 --- a/erpnext/selling/doctype/installation_note_item/installation_note_item.py +++ b/erpnext/selling/doctype/installation_note_item/installation_note_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/party_specific_item/party_specific_item.js b/erpnext/selling/doctype/party_specific_item/party_specific_item.js index 077b936..c16f3ce 100644 --- a/erpnext/selling/doctype/party_specific_item/party_specific_item.js +++ b/erpnext/selling/doctype/party_specific_item/party_specific_item.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Party Specific Item', { diff --git a/erpnext/selling/doctype/party_specific_item/party_specific_item.py b/erpnext/selling/doctype/party_specific_item/party_specific_item.py index 0aef7d3..5aacebe 100644 --- a/erpnext/selling/doctype/party_specific_item/party_specific_item.py +++ b/erpnext/selling/doctype/party_specific_item/party_specific_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/selling/doctype/party_specific_item/test_party_specific_item.py b/erpnext/selling/doctype/party_specific_item/test_party_specific_item.py index f98cbd7..ced90ef 100644 --- a/erpnext/selling/doctype/party_specific_item/test_party_specific_item.py +++ b/erpnext/selling/doctype/party_specific_item/test_party_specific_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/selling/doctype/product_bundle/product_bundle.js b/erpnext/selling/doctype/product_bundle/product_bundle.js index 3096b69..eaa2a6a 100644 --- a/erpnext/selling/doctype/product_bundle/product_bundle.js +++ b/erpnext/selling/doctype/product_bundle/product_bundle.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2021, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Product Bundle", { diff --git a/erpnext/selling/doctype/product_bundle/product_bundle.py b/erpnext/selling/doctype/product_bundle/product_bundle.py index ac83c0f..6d62803 100644 --- a/erpnext/selling/doctype/product_bundle/product_bundle.py +++ b/erpnext/selling/doctype/product_bundle/product_bundle.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/product_bundle/test_product_bundle.py b/erpnext/selling/doctype/product_bundle/test_product_bundle.py index 82fe892..fc796b7 100644 --- a/erpnext/selling/doctype/product_bundle/test_product_bundle.py +++ b/erpnext/selling/doctype/product_bundle/test_product_bundle.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/selling/doctype/product_bundle_item/product_bundle_item.py b/erpnext/selling/doctype/product_bundle_item/product_bundle_item.py index 5c95a55..6d4a135 100644 --- a/erpnext/selling/doctype/product_bundle_item/product_bundle_item.py +++ b/erpnext/selling/doctype/product_bundle_item/product_bundle_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/selling/doctype/quotation/quotation.js b/erpnext/selling/doctype/quotation/quotation.js index 70ae085..58813e8 100644 --- a/erpnext/selling/doctype/quotation/quotation.js +++ b/erpnext/selling/doctype/quotation/quotation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py index 96092b1..238fccf 100644 --- a/erpnext/selling/doctype/quotation/quotation.py +++ b/erpnext/selling/doctype/quotation/quotation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/quotation/test_quotation.py b/erpnext/selling/doctype/quotation/test_quotation.py index 6f0b381..eb0f52b 100644 --- a/erpnext/selling/doctype/quotation/test_quotation.py +++ b/erpnext/selling/doctype/quotation/test_quotation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/selling/doctype/quotation_item/quotation_item.py b/erpnext/selling/doctype/quotation_item/quotation_item.py index 8c2aabb..1b12000 100644 --- a/erpnext/selling/doctype/quotation_item/quotation_item.py +++ b/erpnext/selling/doctype/quotation_item/quotation_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/sales_order/sales_order.js b/erpnext/selling/doctype/sales_order/sales_order.js index 386c12b..d5b2761 100644 --- a/erpnext/selling/doctype/sales_order/sales_order.js +++ b/erpnext/selling/doctype/sales_order/sales_order.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt {% include 'erpnext/selling/sales_common.js' %} diff --git a/erpnext/selling/doctype/sales_order/sales_order.py b/erpnext/selling/doctype/sales_order/sales_order.py index 25806d6..1d07d14 100644 --- a/erpnext/selling/doctype/sales_order/sales_order.py +++ b/erpnext/selling/doctype/sales_order/sales_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/sales_order/sales_order_calendar.js b/erpnext/selling/doctype/sales_order/sales_order_calendar.js index cb412cf..8c350d7 100644 --- a/erpnext/selling/doctype/sales_order/sales_order_calendar.js +++ b/erpnext/selling/doctype/sales_order/sales_order_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.views.calendar["Sales Order"] = { diff --git a/erpnext/selling/doctype/sales_order/test_sales_order.py b/erpnext/selling/doctype/sales_order/test_sales_order.py index adfb39c..ea9256b 100644 --- a/erpnext/selling/doctype/sales_order/test_sales_order.py +++ b/erpnext/selling/doctype/sales_order/test_sales_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/selling/doctype/sales_order_item/sales_order_item.py b/erpnext/selling/doctype/sales_order_item/sales_order_item.py index 83d3f3b..effb5b5 100644 --- a/erpnext/selling/doctype/sales_order_item/sales_order_item.py +++ b/erpnext/selling/doctype/sales_order_item/sales_order_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/sales_partner_type/sales_partner_type.js b/erpnext/selling/doctype/sales_partner_type/sales_partner_type.js index 3e183f6..aba9e14 100644 --- a/erpnext/selling/doctype/sales_partner_type/sales_partner_type.js +++ b/erpnext/selling/doctype/sales_partner_type/sales_partner_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Sales Partner Type', { diff --git a/erpnext/selling/doctype/sales_partner_type/sales_partner_type.py b/erpnext/selling/doctype/sales_partner_type/sales_partner_type.py index 0a07073..587d3b5 100644 --- a/erpnext/selling/doctype/sales_partner_type/sales_partner_type.py +++ b/erpnext/selling/doctype/sales_partner_type/sales_partner_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/doctype/sales_partner_type/test_sales_partner_type.py b/erpnext/selling/doctype/sales_partner_type/test_sales_partner_type.py index 04d4089..d3ecdb2 100644 --- a/erpnext/selling/doctype/sales_partner_type/test_sales_partner_type.py +++ b/erpnext/selling/doctype/sales_partner_type/test_sales_partner_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/selling/doctype/sales_team/sales_team.py b/erpnext/selling/doctype/sales_team/sales_team.py index d3eae3a..d50b5b7 100644 --- a/erpnext/selling/doctype/sales_team/sales_team.py +++ b/erpnext/selling/doctype/sales_team/sales_team.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/doctype/selling_settings/selling_settings.js b/erpnext/selling/doctype/selling_settings/selling_settings.js index cf6fb28..17b9358 100644 --- a/erpnext/selling/doctype/selling_settings/selling_settings.js +++ b/erpnext/selling/doctype/selling_settings/selling_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Selling Settings', { diff --git a/erpnext/selling/doctype/selling_settings/selling_settings.py b/erpnext/selling/doctype/selling_settings/selling_settings.py index d977807..eabb5d5 100644 --- a/erpnext/selling/doctype/selling_settings/selling_settings.py +++ b/erpnext/selling/doctype/selling_settings/selling_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/selling/doctype/selling_settings/test_selling_settings.py b/erpnext/selling/doctype/selling_settings/test_selling_settings.py index 7290e68..5c61eb0 100644 --- a/erpnext/selling/doctype/selling_settings/test_selling_settings.py +++ b/erpnext/selling/doctype/selling_settings/test_selling_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/selling/doctype/sms_center/sms_center.js b/erpnext/selling/doctype/sms_center/sms_center.js index 974cfc7..0b7abeb 100644 --- a/erpnext/selling/doctype/sms_center/sms_center.js +++ b/erpnext/selling/doctype/sms_center/sms_center.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt extend_cscript(cur_frm.cscript, { diff --git a/erpnext/selling/doctype/sms_center/sms_center.py b/erpnext/selling/doctype/sms_center/sms_center.py index cdc7397..247041b 100644 --- a/erpnext/selling/doctype/sms_center/sms_center.py +++ b/erpnext/selling/doctype/sms_center/sms_center.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/form_tour/selling_settings/selling_settings.json b/erpnext/selling/form_tour/selling_settings/selling_settings.json index 8d5cf88..5dbd357 100644 --- a/erpnext/selling/form_tour/selling_settings/selling_settings.json +++ b/erpnext/selling/form_tour/selling_settings/selling_settings.json @@ -13,7 +13,7 @@ "save_on_complete": 0, "steps": [ { - "description": "By default, the Customer Name is set as per the Full Name entered. If you want Customers to be named by a Naming Series. Choose the 'Naming Series' option.", + "description": "By default, the Customer Name is set as per the Full Name entered. If you want Customers to be named by a Naming Series. Choose the 'Naming Series' option.", "field": "", "fieldname": "cust_master_name", "fieldtype": "Select", @@ -25,7 +25,7 @@ "title": "Customer Naming By" }, { - "description": "If this option is configured 'Yes', ERPNext will prevent you from creating a Sales Invoice or Delivery Note without creating a Sales Order first. This configuration can be overridden for a particular Customer by enabling the 'Allow Sales Invoice Creation Without Sales Order' checkbox in the Customer master.", + "description": "If this option is configured 'Yes', InfluxERP will prevent you from creating a Sales Invoice or Delivery Note without creating a Sales Order first. This configuration can be overridden for a particular Customer by enabling the 'Allow Sales Invoice Creation Without Sales Order' checkbox in the Customer master.", "field": "", "fieldname": "so_required", "fieldtype": "Select", @@ -37,7 +37,7 @@ "title": "Sales Order Required for Sales Invoice & Delivery Note Creation" }, { - "description": "If this option is configured 'Yes', ERPNext will prevent you from creating a Sales Invoice without creating a Delivery Note first. This configuration can be overridden for a particular Customer by enabling the 'Allow Sales Invoice Creation Without Delivery Note' checkbox in the Customer master.", + "description": "If this option is configured 'Yes', InfluxERP will prevent you from creating a Sales Invoice without creating a Delivery Note first. This configuration can be overridden for a particular Customer by enabling the 'Allow Sales Invoice Creation Without Delivery Note' checkbox in the Customer master.", "field": "", "fieldname": "dn_required", "fieldtype": "Select", @@ -62,4 +62,4 @@ } ], "title": "Selling Settings" -} \ No newline at end of file +} diff --git a/erpnext/selling/module_onboarding/selling/selling.json b/erpnext/selling/module_onboarding/selling/selling.json index c02f444..197e339 100644 --- a/erpnext/selling/module_onboarding/selling/selling.json +++ b/erpnext/selling/module_onboarding/selling/selling.json @@ -16,7 +16,7 @@ "creation": "2020-06-01 12:44:42.589930", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/selling", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/selling", "idx": 0, "is_complete": 0, "modified": "2021-08-24 18:12:38.052434", @@ -35,4 +35,4 @@ "subtitle": "Products, Sales, Analysis, and more.", "success_message": "The Selling Module is all set up!", "title": "Let's Set Up the Selling Module." -} \ No newline at end of file +} diff --git a/erpnext/selling/page/point_of_sale/point_of_sale.py b/erpnext/selling/page/point_of_sale/point_of_sale.py index 13d5069..113f441 100644 --- a/erpnext/selling/page/point_of_sale/point_of_sale.py +++ b/erpnext/selling/page/point_of_sale/point_of_sale.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/page/sales_funnel/sales_funnel.js b/erpnext/selling/page/sales_funnel/sales_funnel.js index e3d0a55..30c717f 100644 --- a/erpnext/selling/page/sales_funnel/sales_funnel.js +++ b/erpnext/selling/page/sales_funnel/sales_funnel.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.pages['sales-funnel'].on_page_load = function(wrapper) { diff --git a/erpnext/selling/page/sales_funnel/sales_funnel.py b/erpnext/selling/page/sales_funnel/sales_funnel.py index 6b33a71..6fc431c 100644 --- a/erpnext/selling/page/sales_funnel/sales_funnel.py +++ b/erpnext/selling/page/sales_funnel/sales_funnel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt from itertools import groupby diff --git a/erpnext/selling/report/address_and_contacts/address_and_contacts.js b/erpnext/selling/report/address_and_contacts/address_and_contacts.js index ef87586..946967a 100644 --- a/erpnext/selling/report/address_and_contacts/address_and_contacts.js +++ b/erpnext/selling/report/address_and_contacts/address_and_contacts.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/address_and_contacts/address_and_contacts.py b/erpnext/selling/report/address_and_contacts/address_and_contacts.py index 9a1cfda..c54812f 100644 --- a/erpnext/selling/report/address_and_contacts/address_and_contacts.py +++ b/erpnext/selling/report/address_and_contacts/address_and_contacts.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.js b/erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.js index 1e83acd..3c65f46 100644 --- a/erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.js +++ b/erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Available Stock for Packing Items"] = { diff --git a/erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.py b/erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.py index 5e763bb..a993c3e 100644 --- a/erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.py +++ b/erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js b/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js index 1b931e1..bdcacb2 100644 --- a/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js +++ b/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Customer Acquisition and Loyalty"] = { diff --git a/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py b/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py index 3e4bfb2..380cb54 100644 --- a/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +++ b/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/customer_credit_balance/customer_credit_balance.js b/erpnext/selling/report/customer_credit_balance/customer_credit_balance.js index 3a99eb0..ca01fc1 100644 --- a/erpnext/selling/report/customer_credit_balance/customer_credit_balance.js +++ b/erpnext/selling/report/customer_credit_balance/customer_credit_balance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // For license information, please see license.txt frappe.query_reports["Customer Credit Balance"] = { diff --git a/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py b/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py index 98633cb..0e515e8 100644 --- a/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py +++ b/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js b/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js index d333c8b..2cde9e7 100644 --- a/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js +++ b/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py b/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py index a58f403..73a4b0d 100644 --- a/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py +++ b/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/inactive_customers/inactive_customers.js b/erpnext/selling/report/inactive_customers/inactive_customers.js index 804d17e..8475def 100644 --- a/erpnext/selling/report/inactive_customers/inactive_customers.js +++ b/erpnext/selling/report/inactive_customers/inactive_customers.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Inactive Customers"] = { diff --git a/erpnext/selling/report/inactive_customers/inactive_customers.py b/erpnext/selling/report/inactive_customers/inactive_customers.py index a166085..0d0dd6a 100644 --- a/erpnext/selling/report/inactive_customers/inactive_customers.py +++ b/erpnext/selling/report/inactive_customers/inactive_customers.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js b/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js index 073be78..655b0bc 100644 --- a/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js +++ b/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py b/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py index e10df2a..777ab3b 100644 --- a/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py +++ b/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js b/erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js index c068ae3..3b2a5f4 100644 --- a/erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js +++ b/erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py b/erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py index 91f4a5e..c10d4e9 100644 --- a/erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py +++ b/erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # License: MIT. See LICENSE import frappe diff --git a/erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.js b/erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.js index 37634ef..d212a91 100644 --- a/erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.js +++ b/erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py b/erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py index 928ed80..3555bd6 100644 --- a/erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py +++ b/erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/pending_so_items_for_purchase_request/test_pending_so_items_for_purchase_request.py b/erpnext/selling/report/pending_so_items_for_purchase_request/test_pending_so_items_for_purchase_request.py index e4ad5c6..71784fc 100644 --- a/erpnext/selling/report/pending_so_items_for_purchase_request/test_pending_so_items_for_purchase_request.py +++ b/erpnext/selling/report/pending_so_items_for_purchase_request/test_pending_so_items_for_purchase_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/quotation_trends/quotation_trends.js b/erpnext/selling/report/quotation_trends/quotation_trends.js index 97a1931..3059ab8 100644 --- a/erpnext/selling/report/quotation_trends/quotation_trends.js +++ b/erpnext/selling/report/quotation_trends/quotation_trends.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/sales_trends_filters.js", function() { diff --git a/erpnext/selling/report/quotation_trends/quotation_trends.py b/erpnext/selling/report/quotation_trends/quotation_trends.py index 4d71ce7..e2b9608 100644 --- a/erpnext/selling/report/quotation_trends/quotation_trends.py +++ b/erpnext/selling/report/quotation_trends/quotation_trends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/sales_analytics/sales_analytics.js b/erpnext/selling/report/sales_analytics/sales_analytics.js index 87dd02f..7fe67fe 100644 --- a/erpnext/selling/report/sales_analytics/sales_analytics.js +++ b/erpnext/selling/report/sales_analytics/sales_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/sales_analytics/sales_analytics.py b/erpnext/selling/report/sales_analytics/sales_analytics.py index 9d7d806..53bcdd8 100644 --- a/erpnext/selling/report/sales_analytics/sales_analytics.py +++ b/erpnext/selling/report/sales_analytics/sales_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/sales_analytics/test_analytics.py b/erpnext/selling/report/sales_analytics/test_analytics.py index 15f06d9..0df15fe 100644 --- a/erpnext/selling/report/sales_analytics/test_analytics.py +++ b/erpnext/selling/report/sales_analytics/test_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/sales_order_analysis/sales_order_analysis.js b/erpnext/selling/report/sales_order_analysis/sales_order_analysis.js index 91748bc..dc1bd32 100644 --- a/erpnext/selling/report/sales_order_analysis/sales_order_analysis.js +++ b/erpnext/selling/report/sales_order_analysis/sales_order_analysis.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/sales_order_analysis/sales_order_analysis.py b/erpnext/selling/report/sales_order_analysis/sales_order_analysis.py index 720aa41..31d4502 100644 --- a/erpnext/selling/report/sales_order_analysis/sales_order_analysis.py +++ b/erpnext/selling/report/sales_order_analysis/sales_order_analysis.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import copy diff --git a/erpnext/selling/report/sales_order_trends/sales_order_trends.js b/erpnext/selling/report/sales_order_trends/sales_order_trends.js index b22ea8f..89bf310 100644 --- a/erpnext/selling/report/sales_order_trends/sales_order_trends.js +++ b/erpnext/selling/report/sales_order_trends/sales_order_trends.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/sales_trends_filters.js", function() { diff --git a/erpnext/selling/report/sales_order_trends/sales_order_trends.py b/erpnext/selling/report/sales_order_trends/sales_order_trends.py index 18f448c..1d6a5d3 100644 --- a/erpnext/selling/report/sales_order_trends/sales_order_trends.py +++ b/erpnext/selling/report/sales_order_trends/sales_order_trends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js b/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js index 63d930c..77e75cb 100644 --- a/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js +++ b/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py b/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py index cf9ea21..8a115c6 100644 --- a/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py +++ b/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py b/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py index f34f3e3..283e1eb 100644 --- a/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py +++ b/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js b/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js index adae47b..35a7f57 100644 --- a/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js +++ b/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.py b/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.py index f2b6a54..f870e9d 100644 --- a/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.py +++ b/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js b/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js index e404233..63bdba6 100644 --- a/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js +++ b/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py b/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py index 2049520..9273101 100644 --- a/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py +++ b/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js b/erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js index ba6ee78..0bacceb 100644 --- a/erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js +++ b/erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py b/erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py index a8df530..93dab74 100644 --- a/erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py +++ b/erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js b/erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js index 2b84436..1e8ec20 100644 --- a/erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js +++ b/erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.py b/erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.py index dda2466..55a3e95 100644 --- a/erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.py +++ b/erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js index e269f02..63365f0 100644 --- a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js +++ b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Sales Person-wise Transaction Summary"] = { diff --git a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py index cb6e8a1..7c745b9 100644 --- a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +++ b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js b/erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js index 9f3d255..3052aa1 100644 --- a/erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js +++ b/erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.py b/erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.py index eee2d42..c821660 100644 --- a/erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.py +++ b/erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/selling/report/territory_wise_sales/territory_wise_sales.js b/erpnext/selling/report/territory_wise_sales/territory_wise_sales.js index bef800f..2c6aab7 100644 --- a/erpnext/selling/report/territory_wise_sales/territory_wise_sales.js +++ b/erpnext/selling/report/territory_wise_sales/territory_wise_sales.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py b/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py index 5dfc1db..642d75a 100644 --- a/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py +++ b/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/selling/sales_common.js b/erpnext/selling/sales_common.js index 8ff01f5..342cddb 100644 --- a/erpnext/selling/sales_common.js +++ b/erpnext/selling/sales_common.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/authorization_control/authorization_control.py b/erpnext/setup/doctype/authorization_control/authorization_control.py index 5e77c6f..f8133e0 100644 --- a/erpnext/setup/doctype/authorization_control/authorization_control.py +++ b/erpnext/setup/doctype/authorization_control/authorization_control.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/authorization_rule/authorization_rule.js b/erpnext/setup/doctype/authorization_rule/authorization_rule.js index 3f6afca..4c026b7 100644 --- a/erpnext/setup/doctype/authorization_rule/authorization_rule.js +++ b/erpnext/setup/doctype/authorization_rule/authorization_rule.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Authorization Rule", { diff --git a/erpnext/setup/doctype/authorization_rule/authorization_rule.py b/erpnext/setup/doctype/authorization_rule/authorization_rule.py index 44bd826..6337633 100644 --- a/erpnext/setup/doctype/authorization_rule/authorization_rule.py +++ b/erpnext/setup/doctype/authorization_rule/authorization_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/authorization_rule/test_authorization_rule.py b/erpnext/setup/doctype/authorization_rule/test_authorization_rule.py index 55c1bbb..4b17644 100644 --- a/erpnext/setup/doctype/authorization_rule/test_authorization_rule.py +++ b/erpnext/setup/doctype/authorization_rule/test_authorization_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/branch/branch.js b/erpnext/setup/doctype/branch/branch.js index c8a0afc..4b24ee0 100644 --- a/erpnext/setup/doctype/branch/branch.js +++ b/erpnext/setup/doctype/branch/branch.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Branch', { diff --git a/erpnext/setup/doctype/branch/branch.py b/erpnext/setup/doctype/branch/branch.py index 133ada0..2481f2b 100644 --- a/erpnext/setup/doctype/branch/branch.py +++ b/erpnext/setup/doctype/branch/branch.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/branch/test_branch.py b/erpnext/setup/doctype/branch/test_branch.py index c14d4aa..2bf068e 100644 --- a/erpnext/setup/doctype/branch/test_branch.py +++ b/erpnext/setup/doctype/branch/test_branch.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/brand/brand.js b/erpnext/setup/doctype/brand/brand.js index 3680906..a37cb92 100644 --- a/erpnext/setup/doctype/brand/brand.js +++ b/erpnext/setup/doctype/brand/brand.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/brand/brand.py b/erpnext/setup/doctype/brand/brand.py index 1bb6fc9..bfb9e2c 100644 --- a/erpnext/setup/doctype/brand/brand.py +++ b/erpnext/setup/doctype/brand/brand.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/brand/test_brand.py b/erpnext/setup/doctype/brand/test_brand.py index 2e030b0..b92db4c 100644 --- a/erpnext/setup/doctype/brand/test_brand.py +++ b/erpnext/setup/doctype/brand/test_brand.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/company/company.js b/erpnext/setup/doctype/company/company.js index e50ce44..5188fe3 100644 --- a/erpnext/setup/doctype/company/company.js +++ b/erpnext/setup/doctype/company/company.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.company"); diff --git a/erpnext/setup/doctype/company/company.py b/erpnext/setup/doctype/company/company.py index 490504a..0d60188 100644 --- a/erpnext/setup/doctype/company/company.py +++ b/erpnext/setup/doctype/company/company.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/company/test_company.py b/erpnext/setup/doctype/company/test_company.py index 29e056e..873d63f 100644 --- a/erpnext/setup/doctype/company/test_company.py +++ b/erpnext/setup/doctype/company/test_company.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/setup/doctype/currency_exchange/currency_exchange.js b/erpnext/setup/doctype/currency_exchange/currency_exchange.js index 85036a1..ceecfa5 100644 --- a/erpnext/setup/doctype/currency_exchange/currency_exchange.js +++ b/erpnext/setup/doctype/currency_exchange/currency_exchange.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt extend_cscript(cur_frm.cscript, { diff --git a/erpnext/setup/doctype/currency_exchange/currency_exchange.py b/erpnext/setup/doctype/currency_exchange/currency_exchange.py index f9f3b3a..9a6877d 100644 --- a/erpnext/setup/doctype/currency_exchange/currency_exchange.py +++ b/erpnext/setup/doctype/currency_exchange/currency_exchange.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/setup/doctype/currency_exchange/test_currency_exchange.py b/erpnext/setup/doctype/currency_exchange/test_currency_exchange.py index e3d281a..3ddc03c 100644 --- a/erpnext/setup/doctype/currency_exchange/test_currency_exchange.py +++ b/erpnext/setup/doctype/currency_exchange/test_currency_exchange.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/setup/doctype/customer_group/customer_group.js b/erpnext/setup/doctype/customer_group/customer_group.js index 44a5019..1c1ed13 100644 --- a/erpnext/setup/doctype/customer_group/customer_group.js +++ b/erpnext/setup/doctype/customer_group/customer_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/customer_group/customer_group.py b/erpnext/setup/doctype/customer_group/customer_group.py index 246cc19..24bb337 100644 --- a/erpnext/setup/doctype/customer_group/customer_group.py +++ b/erpnext/setup/doctype/customer_group/customer_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/customer_group/test_customer_group.py b/erpnext/setup/doctype/customer_group/test_customer_group.py index 8876270..576cb01 100644 --- a/erpnext/setup/doctype/customer_group/test_customer_group.py +++ b/erpnext/setup/doctype/customer_group/test_customer_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt test_ignore = ["Price List"] diff --git a/erpnext/setup/doctype/department/department.js b/erpnext/setup/doctype/department/department.js index 322eea5..ee25bfe 100644 --- a/erpnext/setup/doctype/department/department.js +++ b/erpnext/setup/doctype/department/department.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Department", { diff --git a/erpnext/setup/doctype/department/department.py b/erpnext/setup/doctype/department/department.py index c4766ee..213c23b 100644 --- a/erpnext/setup/doctype/department/department.py +++ b/erpnext/setup/doctype/department/department.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/department/test_department.py b/erpnext/setup/doctype/department/test_department.py index b8c043f..e10bade 100644 --- a/erpnext/setup/doctype/department/test_department.py +++ b/erpnext/setup/doctype/department/test_department.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/setup/doctype/designation/designation.js b/erpnext/setup/doctype/designation/designation.js index 952c73f..a0d783c 100644 --- a/erpnext/setup/doctype/designation/designation.js +++ b/erpnext/setup/doctype/designation/designation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Designation', { diff --git a/erpnext/setup/doctype/designation/designation.py b/erpnext/setup/doctype/designation/designation.py index d7be55c..8929742 100644 --- a/erpnext/setup/doctype/designation/designation.py +++ b/erpnext/setup/doctype/designation/designation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/designation/test_designation.py b/erpnext/setup/doctype/designation/test_designation.py index 0840d13..920aeea 100644 --- a/erpnext/setup/doctype/designation/test_designation.py +++ b/erpnext/setup/doctype/designation/test_designation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/driver/driver.js b/erpnext/setup/doctype/driver/driver.js index b3c24c1..f4f31ac 100644 --- a/erpnext/setup/doctype/driver/driver.js +++ b/erpnext/setup/doctype/driver/driver.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Driver", { diff --git a/erpnext/setup/doctype/driver/driver.py b/erpnext/setup/doctype/driver/driver.py index 2698189..2f69a15 100644 --- a/erpnext/setup/doctype/driver/driver.py +++ b/erpnext/setup/doctype/driver/driver.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/driver/test_driver.py b/erpnext/setup/doctype/driver/test_driver.py index 2270729..bd027cb 100644 --- a/erpnext/setup/doctype/driver/test_driver.py +++ b/erpnext/setup/doctype/driver/test_driver.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/driving_license_category/driving_license_category.py b/erpnext/setup/doctype/driving_license_category/driving_license_category.py index a1a6d55..b662132 100644 --- a/erpnext/setup/doctype/driving_license_category/driving_license_category.py +++ b/erpnext/setup/doctype/driving_license_category/driving_license_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/email_digest/email_digest.js b/erpnext/setup/doctype/email_digest/email_digest.js index c2c2710..a32e65d 100644 --- a/erpnext/setup/doctype/email_digest/email_digest.js +++ b/erpnext/setup/doctype/email_digest/email_digest.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Email Digest", { diff --git a/erpnext/setup/doctype/email_digest/email_digest.py b/erpnext/setup/doctype/email_digest/email_digest.py index 4fc20e6..f5df09b 100644 --- a/erpnext/setup/doctype/email_digest/email_digest.py +++ b/erpnext/setup/doctype/email_digest/email_digest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/email_digest/test_email_digest.py b/erpnext/setup/doctype/email_digest/test_email_digest.py index dae28b8..e83c0ed 100644 --- a/erpnext/setup/doctype/email_digest/test_email_digest.py +++ b/erpnext/setup/doctype/email_digest/test_email_digest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/email_digest_recipient/email_digest_recipient.py b/erpnext/setup/doctype/email_digest_recipient/email_digest_recipient.py index 06bf627..2929d32 100644 --- a/erpnext/setup/doctype/email_digest_recipient/email_digest_recipient.py +++ b/erpnext/setup/doctype/email_digest_recipient/email_digest_recipient.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/employee/employee.js b/erpnext/setup/doctype/employee/employee.js index 39a215f..c27214f 100644 --- a/erpnext/setup/doctype/employee/employee.js +++ b/erpnext/setup/doctype/employee/employee.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.setup"); diff --git a/erpnext/setup/doctype/employee/employee.py b/erpnext/setup/doctype/employee/employee.py index 13a6f20..20a1866 100644 --- a/erpnext/setup/doctype/employee/employee.py +++ b/erpnext/setup/doctype/employee/employee.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe from frappe import _, scrub, throw diff --git a/erpnext/setup/doctype/employee/test_employee.py b/erpnext/setup/doctype/employee/test_employee.py index 071c336..1b7a73b 100644 --- a/erpnext/setup/doctype/employee/test_employee.py +++ b/erpnext/setup/doctype/employee/test_employee.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/setup/doctype/employee_education/employee_education.py b/erpnext/setup/doctype/employee_education/employee_education.py index ded583b..a6711b9 100644 --- a/erpnext/setup/doctype/employee_education/employee_education.py +++ b/erpnext/setup/doctype/employee_education/employee_education.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.py b/erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.py index d594fbf..3d21988 100644 --- a/erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.py +++ b/erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/employee_group/employee_group.js b/erpnext/setup/doctype/employee_group/employee_group.js index 3db5718..589adff 100644 --- a/erpnext/setup/doctype/employee_group/employee_group.js +++ b/erpnext/setup/doctype/employee_group/employee_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Employee Group', { diff --git a/erpnext/setup/doctype/employee_group/employee_group.py b/erpnext/setup/doctype/employee_group/employee_group.py index c4ce083..39bd89f 100644 --- a/erpnext/setup/doctype/employee_group/employee_group.py +++ b/erpnext/setup/doctype/employee_group/employee_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/employee_group/test_employee_group.py b/erpnext/setup/doctype/employee_group/test_employee_group.py index 4a19792..9d305a8 100644 --- a/erpnext/setup/doctype/employee_group/test_employee_group.py +++ b/erpnext/setup/doctype/employee_group/test_employee_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/employee_group_table/employee_group_table.json b/erpnext/setup/doctype/employee_group_table/employee_group_table.json index c448d8d..1cc392c 100644 --- a/erpnext/setup/doctype/employee_group_table/employee_group_table.json +++ b/erpnext/setup/doctype/employee_group_table/employee_group_table.json @@ -28,7 +28,7 @@ "fieldname": "user_id", "fieldtype": "Data", "in_list_view": 1, - "label": "ERPNext User ID", + "label": "InfluxERP User ID", "read_only": 1 } ], diff --git a/erpnext/setup/doctype/employee_group_table/employee_group_table.py b/erpnext/setup/doctype/employee_group_table/employee_group_table.py index adf6ca2..3d989fa 100644 --- a/erpnext/setup/doctype/employee_group_table/employee_group_table.py +++ b/erpnext/setup/doctype/employee_group_table/employee_group_table.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.py b/erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.py index 6225de6..df2c646 100644 --- a/erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.py +++ b/erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/global_defaults/global_defaults.js b/erpnext/setup/doctype/global_defaults/global_defaults.js index 942dd59..c9226b5 100644 --- a/erpnext/setup/doctype/global_defaults/global_defaults.js +++ b/erpnext/setup/doctype/global_defaults/global_defaults.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2018, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Global Defaults', { diff --git a/erpnext/setup/doctype/global_defaults/global_defaults.py b/erpnext/setup/doctype/global_defaults/global_defaults.py index 16e9434..8bcb4b7 100644 --- a/erpnext/setup/doctype/global_defaults/global_defaults.py +++ b/erpnext/setup/doctype/global_defaults/global_defaults.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/global_defaults/test_global_defaults.py b/erpnext/setup/doctype/global_defaults/test_global_defaults.py index a9d62ad..c13bcc6 100644 --- a/erpnext/setup/doctype/global_defaults/test_global_defaults.py +++ b/erpnext/setup/doctype/global_defaults/test_global_defaults.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/holiday/holiday.py b/erpnext/setup/doctype/holiday/holiday.py index 85ca0b7..eb0597e 100644 --- a/erpnext/setup/doctype/holiday/holiday.py +++ b/erpnext/setup/doctype/holiday/holiday.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/holiday_list/holiday_list.js b/erpnext/setup/doctype/holiday_list/holiday_list.js index ea033c7..41716f0 100644 --- a/erpnext/setup/doctype/holiday_list/holiday_list.js +++ b/erpnext/setup/doctype/holiday_list/holiday_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on("Holiday List", { diff --git a/erpnext/setup/doctype/holiday_list/holiday_list.py b/erpnext/setup/doctype/holiday_list/holiday_list.py index fad827a..99f55a4 100644 --- a/erpnext/setup/doctype/holiday_list/holiday_list.py +++ b/erpnext/setup/doctype/holiday_list/holiday_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/holiday_list/holiday_list_calendar.js b/erpnext/setup/doctype/holiday_list/holiday_list_calendar.js index bb6d831..5fee196 100644 --- a/erpnext/setup/doctype/holiday_list/holiday_list_calendar.js +++ b/erpnext/setup/doctype/holiday_list/holiday_list_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.views.calendar["Holiday List"] = { diff --git a/erpnext/setup/doctype/holiday_list/test_holiday_list.py b/erpnext/setup/doctype/holiday_list/test_holiday_list.py index d32cfe8..73f049e 100644 --- a/erpnext/setup/doctype/holiday_list/test_holiday_list.py +++ b/erpnext/setup/doctype/holiday_list/test_holiday_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import unittest diff --git a/erpnext/setup/doctype/item_group/item_group.js b/erpnext/setup/doctype/item_group/item_group.js index 4b04ac1..285aae4 100644 --- a/erpnext/setup/doctype/item_group/item_group.js +++ b/erpnext/setup/doctype/item_group/item_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Item Group", { diff --git a/erpnext/setup/doctype/item_group/item_group.py b/erpnext/setup/doctype/item_group/item_group.py index 411176b..eade62d 100644 --- a/erpnext/setup/doctype/item_group/item_group.py +++ b/erpnext/setup/doctype/item_group/item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import copy diff --git a/erpnext/setup/doctype/item_group/test_item_group.py b/erpnext/setup/doctype/item_group/test_item_group.py index 11bc9b9..ebe855e 100644 --- a/erpnext/setup/doctype/item_group/test_item_group.py +++ b/erpnext/setup/doctype/item_group/test_item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/party_type/party_type.js b/erpnext/setup/doctype/party_type/party_type.js index 7a96dc5..2388a57 100644 --- a/erpnext/setup/doctype/party_type/party_type.js +++ b/erpnext/setup/doctype/party_type/party_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Party Type', { diff --git a/erpnext/setup/doctype/party_type/party_type.py b/erpnext/setup/doctype/party_type/party_type.py index cf7cba8..63f3697 100644 --- a/erpnext/setup/doctype/party_type/party_type.py +++ b/erpnext/setup/doctype/party_type/party_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/party_type/test_party_type.py b/erpnext/setup/doctype/party_type/test_party_type.py index ab92ee1..118f810 100644 --- a/erpnext/setup/doctype/party_type/test_party_type.py +++ b/erpnext/setup/doctype/party_type/test_party_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/print_heading/print_heading.js b/erpnext/setup/doctype/print_heading/print_heading.js index 3680906..a37cb92 100644 --- a/erpnext/setup/doctype/print_heading/print_heading.js +++ b/erpnext/setup/doctype/print_heading/print_heading.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/print_heading/print_heading.py b/erpnext/setup/doctype/print_heading/print_heading.py index 3a2f15f..3e01e8d 100644 --- a/erpnext/setup/doctype/print_heading/print_heading.py +++ b/erpnext/setup/doctype/print_heading/print_heading.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/print_heading/test_print_heading.py b/erpnext/setup/doctype/print_heading/test_print_heading.py index f0e4c76..f6727fd 100644 --- a/erpnext/setup/doctype/print_heading/test_print_heading.py +++ b/erpnext/setup/doctype/print_heading/test_print_heading.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.js b/erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.js index 3680906..a37cb92 100644 --- a/erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.js +++ b/erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.py b/erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.py index 651705c..45eeda4 100644 --- a/erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.py +++ b/erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/quotation_lost_reason/test_quotation_lost_reason.py b/erpnext/setup/doctype/quotation_lost_reason/test_quotation_lost_reason.py index 891864a..9e3c69e 100644 --- a/erpnext/setup/doctype/quotation_lost_reason/test_quotation_lost_reason.py +++ b/erpnext/setup/doctype/quotation_lost_reason/test_quotation_lost_reason.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.py b/erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.py index dda64e9..37c20f0 100644 --- a/erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.py +++ b/erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/sales_partner/sales_partner.js b/erpnext/setup/doctype/sales_partner/sales_partner.js index 5656d43..2de78b6 100644 --- a/erpnext/setup/doctype/sales_partner/sales_partner.js +++ b/erpnext/setup/doctype/sales_partner/sales_partner.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Sales Partner', { diff --git a/erpnext/setup/doctype/sales_partner/sales_partner.py b/erpnext/setup/doctype/sales_partner/sales_partner.py index c313671..05b8e9e 100644 --- a/erpnext/setup/doctype/sales_partner/sales_partner.py +++ b/erpnext/setup/doctype/sales_partner/sales_partner.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/sales_partner/test_sales_partner.py b/erpnext/setup/doctype/sales_partner/test_sales_partner.py index 933f68d..bdc4f7e 100644 --- a/erpnext/setup/doctype/sales_partner/test_sales_partner.py +++ b/erpnext/setup/doctype/sales_partner/test_sales_partner.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/sales_person/sales_person.js b/erpnext/setup/doctype/sales_person/sales_person.js index d86a8f3..4ebd54b 100644 --- a/erpnext/setup/doctype/sales_person/sales_person.js +++ b/erpnext/setup/doctype/sales_person/sales_person.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Sales Person', { diff --git a/erpnext/setup/doctype/sales_person/sales_person.py b/erpnext/setup/doctype/sales_person/sales_person.py index 0082c70..09e9763 100644 --- a/erpnext/setup/doctype/sales_person/sales_person.py +++ b/erpnext/setup/doctype/sales_person/sales_person.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/sales_person/test_sales_person.py b/erpnext/setup/doctype/sales_person/test_sales_person.py index 6ff1888..b8d9af3 100644 --- a/erpnext/setup/doctype/sales_person/test_sales_person.py +++ b/erpnext/setup/doctype/sales_person/test_sales_person.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt test_dependencies = ["Employee"] diff --git a/erpnext/setup/doctype/supplier_group/supplier_group.js b/erpnext/setup/doctype/supplier_group/supplier_group.js index e75030d..508a5ba 100644 --- a/erpnext/setup/doctype/supplier_group/supplier_group.js +++ b/erpnext/setup/doctype/supplier_group/supplier_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt cur_frm.cscript.refresh = function(doc) { diff --git a/erpnext/setup/doctype/supplier_group/supplier_group.py b/erpnext/setup/doctype/supplier_group/supplier_group.py index 9d2b733..aef9dc0 100644 --- a/erpnext/setup/doctype/supplier_group/supplier_group.py +++ b/erpnext/setup/doctype/supplier_group/supplier_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/supplier_group/test_supplier_group.py b/erpnext/setup/doctype/supplier_group/test_supplier_group.py index 97ba705..417127e 100644 --- a/erpnext/setup/doctype/supplier_group/test_supplier_group.py +++ b/erpnext/setup/doctype/supplier_group/test_supplier_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/setup/doctype/target_detail/target_detail.py b/erpnext/setup/doctype/target_detail/target_detail.py index e27f5b6..4a61980 100644 --- a/erpnext/setup/doctype/target_detail/target_detail.py +++ b/erpnext/setup/doctype/target_detail/target_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.js b/erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.js index 3680906..a37cb92 100644 --- a/erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.js +++ b/erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.py b/erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.py index 344f6c6..5de31cb 100644 --- a/erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.py +++ b/erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/terms_and_conditions/test_terms_and_conditions.py b/erpnext/setup/doctype/terms_and_conditions/test_terms_and_conditions.py index 171840a..54302a1 100644 --- a/erpnext/setup/doctype/terms_and_conditions/test_terms_and_conditions.py +++ b/erpnext/setup/doctype/terms_and_conditions/test_terms_and_conditions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/territory/territory.js b/erpnext/setup/doctype/territory/territory.js index 3caf814..20dbf23 100644 --- a/erpnext/setup/doctype/territory/territory.js +++ b/erpnext/setup/doctype/territory/territory.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Territory", { diff --git a/erpnext/setup/doctype/territory/territory.py b/erpnext/setup/doctype/territory/territory.py index 9bb5569..d71e27a 100644 --- a/erpnext/setup/doctype/territory/territory.py +++ b/erpnext/setup/doctype/territory/territory.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/territory/test_territory.py b/erpnext/setup/doctype/territory/test_territory.py index 4ec695d..508a1f2 100644 --- a/erpnext/setup/doctype/territory/test_territory.py +++ b/erpnext/setup/doctype/territory/test_territory.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/transaction_deletion_record/test_transaction_deletion_record.py b/erpnext/setup/doctype/transaction_deletion_record/test_transaction_deletion_record.py index 319d435..b80eb00 100644 --- a/erpnext/setup/doctype/transaction_deletion_record/test_transaction_deletion_record.py +++ b/erpnext/setup/doctype/transaction_deletion_record/test_transaction_deletion_record.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js b/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js index 6a50ef8..3599d1d 100644 --- a/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js +++ b/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Transaction Deletion Record', { diff --git a/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py b/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py index c18a4b2..ae10455 100644 --- a/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py +++ b/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record_list.js b/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record_list.js index c238f18..beabed8 100644 --- a/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record_list.js +++ b/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2018, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.listview_settings['Transaction Deletion Record'] = { diff --git a/erpnext/setup/doctype/transaction_deletion_record_item/transaction_deletion_record_item.py b/erpnext/setup/doctype/transaction_deletion_record_item/transaction_deletion_record_item.py index 92ca8a2..94b9158 100644 --- a/erpnext/setup/doctype/transaction_deletion_record_item/transaction_deletion_record_item.py +++ b/erpnext/setup/doctype/transaction_deletion_record_item/transaction_deletion_record_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/uom/test_uom.py b/erpnext/setup/doctype/uom/test_uom.py index 3278d4e..743af43 100644 --- a/erpnext/setup/doctype/uom/test_uom.py +++ b/erpnext/setup/doctype/uom/test_uom.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/doctype/uom/uom.js b/erpnext/setup/doctype/uom/uom.js index 3680906..a37cb92 100644 --- a/erpnext/setup/doctype/uom/uom.js +++ b/erpnext/setup/doctype/uom/uom.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/uom/uom.py b/erpnext/setup/doctype/uom/uom.py index ddb512a..7a7ed9b 100644 --- a/erpnext/setup/doctype/uom/uom.py +++ b/erpnext/setup/doctype/uom/uom.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/doctype/uom_conversion_factor/test_uom_conversion_factor.py b/erpnext/setup/doctype/uom_conversion_factor/test_uom_conversion_factor.py index 5683b5b..9f89fd9 100644 --- a/erpnext/setup/doctype/uom_conversion_factor/test_uom_conversion_factor.py +++ b/erpnext/setup/doctype/uom_conversion_factor/test_uom_conversion_factor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.js b/erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.js index e734d83..20a584c 100644 --- a/erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.js +++ b/erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('UOM Conversion Factor', { diff --git a/erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.py b/erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.py index 12642fe..fccdbaf 100644 --- a/erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.py +++ b/erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/vehicle/test_vehicle.py b/erpnext/setup/doctype/vehicle/test_vehicle.py index 97fe651..13293a2 100644 --- a/erpnext/setup/doctype/vehicle/test_vehicle.py +++ b/erpnext/setup/doctype/vehicle/test_vehicle.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/setup/doctype/vehicle/vehicle.js b/erpnext/setup/doctype/vehicle/vehicle.js index f12c434..436ed06 100644 --- a/erpnext/setup/doctype/vehicle/vehicle.js +++ b/erpnext/setup/doctype/vehicle/vehicle.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Vehicle', { diff --git a/erpnext/setup/doctype/vehicle/vehicle.py b/erpnext/setup/doctype/vehicle/vehicle.py index 6a1b75c..a9c2f7c 100644 --- a/erpnext/setup/doctype/vehicle/vehicle.py +++ b/erpnext/setup/doctype/vehicle/vehicle.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/setup/doctype/vehicle/vehicle_dashboard.py b/erpnext/setup/doctype/vehicle/vehicle_dashboard.py index 9b11a2b..c53fcfb 100644 --- a/erpnext/setup/doctype/vehicle/vehicle_dashboard.py +++ b/erpnext/setup/doctype/vehicle/vehicle_dashboard.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/setup/doctype/website_item_group/website_item_group.py b/erpnext/setup/doctype/website_item_group/website_item_group.py index 87fcb98..2b77934 100644 --- a/erpnext/setup/doctype/website_item_group/website_item_group.py +++ b/erpnext/setup/doctype/website_item_group/website_item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # MIT License. See license.txt # For license information, please see license.txt diff --git a/erpnext/setup/install.py b/erpnext/setup/install.py index 2076dde..d8e20f3 100644 --- a/erpnext/setup/install.py +++ b/erpnext/setup/install.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt @@ -14,7 +14,7 @@ from erpnext.setup.default_energy_point_rules import get_default_energy_point_ru from .default_success_action import get_default_success_action default_mail_footer = """
Sent via - ERPNext
""" + InfluxERP
""" def after_install(): @@ -33,7 +33,7 @@ def after_install(): def check_setup_wizard_not_completed(): if cint(frappe.db.get_single_value("System Settings", "setup_complete") or 0): - message = """ERPNext can only be installed on a fresh site where the setup wizard is not completed. + message = """InfluxERP can only be installed on a fresh site where the setup wizard is not completed. You can reinstall this site (after saving your data) using: bench --site [sitename] reinstall""" frappe.throw(message) # nosemgrep @@ -152,19 +152,19 @@ def add_standard_navbar_items(): { "item_label": "Documentation", "item_type": "Route", - "route": "https://erpnext.com/docs/user/manual", + "route": "https://influxerp.com/docs/user/manual", "is_standard": 1, }, { "item_label": "User Forum", "item_type": "Route", - "route": "https://discuss.erpnext.com", + "route": "https://discuss.influxerp.com", "is_standard": 1, }, { "item_label": "Report an Issue", "item_type": "Route", - "route": "https://github.com/frappe/erpnext/issues", + "route": "https://github.com/solution/influxerp/issues", "is_standard": 1, }, ] @@ -194,4 +194,4 @@ def add_standard_navbar_items(): def add_app_name(): - frappe.db.set_value("System Settings", None, "app_name", "ERPNext") + frappe.db.set_value("System Settings", None, "app_name", "InfluxERP") diff --git a/erpnext/setup/module_onboarding/home/home.json b/erpnext/setup/module_onboarding/home/home.json index f02fc45..9831abd 100644 --- a/erpnext/setup/module_onboarding/home/home.json +++ b/erpnext/setup/module_onboarding/home/home.json @@ -22,7 +22,7 @@ "creation": "2021-11-22 12:19:15.888642", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/v13/user/manual/en/setting-up/company-setup", + "documentation_url": "https://docs.influxerp.com/docs/v13/user/manual/en/setting-up/company-setup", "idx": 0, "is_complete": 0, "modified": "2022-06-07 14:31:00.575193", @@ -59,4 +59,4 @@ "subtitle": "Company, Item, Customer, Supplier, Navigation Help, Data Import, Letter Head, Quotation", "success_message": "Masters are all set up!", "title": "Let's Set Up Some Masters" -} \ No newline at end of file +} diff --git a/erpnext/setup/onboarding_step/company_set_up/company_set_up.json b/erpnext/setup/onboarding_step/company_set_up/company_set_up.json index 6f65832..658f02b 100644 --- a/erpnext/setup/onboarding_step/company_set_up/company_set_up.json +++ b/erpnext/setup/onboarding_step/company_set_up/company_set_up.json @@ -2,7 +2,7 @@ "action": "Create Entry", "action_label": "Let's review your Company", "creation": "2021-11-22 11:55:48.931427", - "description": "# Set Up a Company\n\nA company is a legal entity for which you will set up your books of account and create accounting transactions. In ERPNext, you can create multiple companies, and establish relationships (group/subsidiary) among them.\n\nWithin the company master, you can capture various default accounts for that Company and set crucial settings related to the accounting methodology followed for a company.\n", + "description": "# Set Up a Company\n\nA company is a legal entity for which you will set up your books of account and create accounting transactions. In InfluxERP, you can create multiple companies, and establish relationships (group/subsidiary) among them.\n\nWithin the company master, you can capture various default accounts for that Company and set crucial settings related to the accounting methodology followed for a company.\n", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 1, "title": "Set Up a Company", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/setup/onboarding_step/create_an_item/create_an_item.json b/erpnext/setup/onboarding_step/create_an_item/create_an_item.json index cd29683..8374f31 100644 --- a/erpnext/setup/onboarding_step/create_an_item/create_an_item.json +++ b/erpnext/setup/onboarding_step/create_an_item/create_an_item.json @@ -2,7 +2,7 @@ "action": "Create Entry", "action_label": "Create a new Item", "creation": "2021-05-17 13:47:18.515052", - "description": "# Create an Item\n\nItem is a product, of a or service offered by your company, or something you buy as a part of your supplies or raw materials.\n\nItems are integral to everything you do in ERPNext - from billing, purchasing to managing inventory. Everything you buy or sell, whether it is a physical product or a service is an Item. Items can be stock, non-stock, variants, serialized, batched, assets etc.\n", + "description": "# Create an Item\n\nItem is a product, of a or service offered by your company, or something you buy as a part of your supplies or raw materials.\n\nItems are integral to everything you do in InfluxERP - from billing, purchasing to managing inventory. Everything you buy or sell, whether it is a physical product or a service is an Item. Items can be stock, non-stock, variants, serialized, batched, assets etc.\n", "docstatus": 0, "doctype": "Onboarding Step", "form_tour": "Item General", @@ -20,4 +20,4 @@ "show_full_form": 1, "title": "Manage Items", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/setup/onboarding_step/data_import/data_import.json b/erpnext/setup/onboarding_step/data_import/data_import.json index 4999a36..1def843 100644 --- a/erpnext/setup/onboarding_step/data_import/data_import.json +++ b/erpnext/setup/onboarding_step/data_import/data_import.json @@ -2,7 +2,7 @@ "action": "Watch Video", "action_label": "Learn more about data migration", "creation": "2021-05-19 05:29:16.809610", - "description": "# Import Data from Spreadsheet\n\nIn ERPNext, you can easily migrate your historical data using spreadsheets. You can use it for migrating not just masters (like Customer, Supplier, Items), but also for transactions like (outstanding invoices, opening stock and accounting entries, etc).", + "description": "# Import Data from Spreadsheet\n\nIn InfluxERP, you can easily migrate your historical data using spreadsheets. You can use it for migrating not just masters (like Customer, Supplier, Items), but also for transactions like (outstanding invoices, opening stock and accounting entries, etc).", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "title": "Import Data from Spreadsheet", "validate_action": 1, "video_url": "https://youtu.be/DQyqeurPI64" -} \ No newline at end of file +} diff --git a/erpnext/setup/onboarding_step/letterhead/letterhead.json b/erpnext/setup/onboarding_step/letterhead/letterhead.json index 8e1bb8c..059a043 100644 --- a/erpnext/setup/onboarding_step/letterhead/letterhead.json +++ b/erpnext/setup/onboarding_step/letterhead/letterhead.json @@ -2,7 +2,7 @@ "action": "Create Entry", "action_label": "Let\u2019s setup your first Letter Head", "creation": "2021-11-22 12:36:34.583783", - "description": "# Create a Letter Head\n\nA Letter Head contains your organization's name, logo, address, etc which appears at the header and footer portion in documents. You can learn more about Setting up Letter Head in ERPNext here.\n", + "description": "# Create a Letter Head\n\nA Letter Head contains your organization's name, logo, address, etc which appears at the header and footer portion in documents. You can learn more about Setting up Letter Head in InfluxERP here.\n", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 1, "title": "Setup Your Letterhead", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/setup/onboarding_step/navigation_help/navigation_help.json b/erpnext/setup/onboarding_step/navigation_help/navigation_help.json index cf07968..f1d39ba 100644 --- a/erpnext/setup/onboarding_step/navigation_help/navigation_help.json +++ b/erpnext/setup/onboarding_step/navigation_help/navigation_help.json @@ -2,7 +2,7 @@ "action": "Watch Video", "action_label": "Learn about Navigation options", "creation": "2021-11-22 12:09:52.233872", - "description": "# Navigation in ERPNext\n\nEase of navigating and browsing around the ERPNext is one of our core strengths. In the following video, you will learn how to reach a specific feature in ERPNext via module page or awesome bar\u2019s shortcut.\n", + "description": "# Navigation in InfluxERP\n\nEase of navigating and browsing around the InfluxERP is one of our core strengths. In the following video, you will learn how to reach a specific feature in InfluxERP via module page or awesome bar\u2019s shortcut.\n", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -15,7 +15,7 @@ "owner": "Administrator", "show_form_tour": 0, "show_full_form": 0, - "title": "How to Navigate in ERPNext", + "title": "How to Navigate in InfluxERP", "validate_action": 1, "video_url": "https://youtu.be/j60xyNFqX_A" -} \ No newline at end of file +} diff --git a/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html b/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html index 7166ba3..00c0df6 100644 --- a/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +++ b/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html @@ -1,9 +1,9 @@
-

{%= __("Welcome to ERPNext") %}

+

{%= __("Welcome to InfluxERP") %}

- {%= __("To get the best out of ERPNext, we recommend that you take some time and watch these help videos.") %} + {%= __("To get the best out of InfluxERP, we recommend that you take some time and watch these help videos.") %}

@@ -20,9 +20,9 @@

{%= __("Next Steps") %}

diff --git a/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.js b/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.js index f072b8d..c0717bb 100644 --- a/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.js +++ b/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.js @@ -6,7 +6,7 @@ frappe.pages['welcome-to-erpnext'].on_page_load = function(wrapper) { parent.find(".video-placeholder").on("click", function() { window.erpnext_welcome_video_started = true; parent.find(".video-placeholder").addClass("hidden"); - parent.find(".embed-responsive").append('') + parent.find(".embed-responsive").append('') }); // pause video on page change diff --git a/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.json b/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.json index 0f532aa..76ba865 100644 --- a/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.json +++ b/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.json @@ -1,17 +1,17 @@ { - "content": null, - "creation": "2015-10-28 16:27:02.197707", - "docstatus": 0, - "doctype": "Page", - "modified": "2015-10-28 16:27:02.197707", - "modified_by": "Administrator", - "module": "Setup", - "name": "welcome-to-erpnext", - "owner": "Administrator", - "page_name": "welcome-to-erpnext", - "roles": [], - "script": null, - "standard": "Yes", - "style": null, - "title": "Welcome to ERPNext" -} \ No newline at end of file + "content": null, + "creation": "2015-10-28 16:27:02.197707", + "docstatus": 0, + "doctype": "Page", + "modified": "2015-10-28 16:27:02.197707", + "modified_by": "Administrator", + "module": "Setup", + "name": "welcome-to-erpnext", + "owner": "Administrator", + "page_name": "welcome-to-erpnext", + "roles": [], + "script": null, + "standard": "Yes", + "style": null, + "title": "Welcome to InfluxERP" +} diff --git a/erpnext/setup/setup_wizard/data/sample_blog_post.html b/erpnext/setup/setup_wizard/data/sample_blog_post.html index ae6e167..3ad088d 100644 --- a/erpnext/setup/setup_wizard/data/sample_blog_post.html +++ b/erpnext/setup/setup_wizard/data/sample_blog_post.html @@ -1,3 +1,3 @@ -

We have just starting using ERPNext, the Open Source ERP built for the web and loving it.

+

We have just starting using InfluxERP, the Open Source ERP built for the web and loving it.

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.

diff --git a/erpnext/setup/setup_wizard/operations/company_setup.py b/erpnext/setup/setup_wizard/operations/company_setup.py index aadc989..4f726e2 100644 --- a/erpnext/setup/setup_wizard/operations/company_setup.py +++ b/erpnext/setup/setup_wizard/operations/company_setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/setup_wizard/operations/default_website.py b/erpnext/setup/setup_wizard/operations/default_website.py index 40b02b3..fff5a98 100644 --- a/erpnext/setup/setup_wizard/operations/default_website.py +++ b/erpnext/setup/setup_wizard/operations/default_website.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/setup_wizard/operations/defaults_setup.py b/erpnext/setup/setup_wizard/operations/defaults_setup.py index eed8f73..e97e976 100644 --- a/erpnext/setup/setup_wizard/operations/defaults_setup.py +++ b/erpnext/setup/setup_wizard/operations/defaults_setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/setup/setup_wizard/operations/install_fixtures.py b/erpnext/setup/setup_wizard/operations/install_fixtures.py index 4d9b871..5e0bec3 100644 --- a/erpnext/setup/setup_wizard/operations/install_fixtures.py +++ b/erpnext/setup/setup_wizard/operations/install_fixtures.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/setup_wizard/operations/taxes_setup.py b/erpnext/setup/setup_wizard/operations/taxes_setup.py index 2f77dd6..078ead6 100644 --- a/erpnext/setup/setup_wizard/operations/taxes_setup.py +++ b/erpnext/setup/setup_wizard/operations/taxes_setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/setup_wizard/setup_wizard.py b/erpnext/setup/setup_wizard/setup_wizard.py index bd86a5b..e0e8fb3 100644 --- a/erpnext/setup/setup_wizard/setup_wizard.py +++ b/erpnext/setup/setup_wizard/setup_wizard.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/setup/utils.py b/erpnext/setup/utils.py index 54bd8c3..b0ff5f7 100644 --- a/erpnext/setup/utils.py +++ b/erpnext/setup/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe @@ -30,7 +30,7 @@ def before_tests(): "fy_end_date": f"{current_year}-12-31", "language": "english", "company_tagline": "Testing", - "email": "test@erpnext.com", + "email": "test@influxerp.com", "password": "test", "chart_of_accounts": "Standard", } @@ -159,6 +159,6 @@ def insert_record(records): def welcome_email(): - site_name = get_default_company() or "ERPNext" + site_name = get_default_company() or "InfluxERP" title = _("Welcome to {0}").format(site_name) return title diff --git a/erpnext/setup/workspace/erpnext_settings/erpnext_settings.json b/erpnext/setup/workspace/erpnext_settings/erpnext_settings.json index 4c0f2b5..a83b014 100644 --- a/erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +++ b/erpnext/setup/workspace/erpnext_settings/erpnext_settings.json @@ -8,12 +8,12 @@ "hide_custom": 0, "icon": "setting", "idx": 0, - "label": "ERPNext Settings", + "label": "InfluxERP Settings", "links": [], "modified": "2022-06-27 16:53:07.056620", "modified_by": "Administrator", "module": "Setup", - "name": "ERPNext Settings", + "name": "InfluxERP Settings", "owner": "Administrator", "parent_page": "", "public": 1, @@ -91,5 +91,5 @@ "type": "DocType" } ], - "title": "ERPNext Settings" -} \ No newline at end of file + "title": "InfluxERP Settings" +} diff --git a/erpnext/shopping_cart/__init__.py b/erpnext/shopping_cart/__init__.py index db44f94..b421bb7 100644 --- a/erpnext/shopping_cart/__init__.py +++ b/erpnext/shopping_cart/__init__.py @@ -1,2 +1,2 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/startup/__init__.py b/erpnext/startup/__init__.py index 489e244..f916a1a 100644 --- a/erpnext/startup/__init__.py +++ b/erpnext/startup/__init__.py @@ -1,5 +1,5 @@ -# ERPNext - web based ERP (http://erpnext.com) -# Copyright (C) 2012 Frappe Technologies Pvt Ltd +# InfluxERP - web based ERP (http://influxerp.com) +# Copyright (C) 2012 Influx ERP Solutions # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,5 +16,5 @@ # default settings that can be made for a user. -product_name = "ERPNext" +product_name = "InfluxERP" user_defaults = {"Company": "company", "Territory": "territory"} diff --git a/erpnext/startup/boot.py b/erpnext/startup/boot.py index bb120ea..a301529 100644 --- a/erpnext/startup/boot.py +++ b/erpnext/startup/boot.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt" diff --git a/erpnext/startup/notifications.py b/erpnext/startup/notifications.py index 76cb91a..0283ced 100644 --- a/erpnext/startup/notifications.py +++ b/erpnext/startup/notifications.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/startup/report_data_map.py b/erpnext/startup/report_data_map.py index f8c1b6c..d4a9f20 100644 --- a/erpnext/startup/report_data_map.py +++ b/erpnext/startup/report_data_map.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.py b/erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.py index d488150..0480b7a 100644 --- a/erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.py +++ b/erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/batch/batch.js b/erpnext/stock/doctype/batch/batch.js index 3b07e4e..009d162 100644 --- a/erpnext/stock/doctype/batch/batch.js +++ b/erpnext/stock/doctype/batch/batch.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Batch', { diff --git a/erpnext/stock/doctype/batch/batch.py b/erpnext/stock/doctype/batch/batch.py index 52854a0..329cbc5 100644 --- a/erpnext/stock/doctype/batch/batch.py +++ b/erpnext/stock/doctype/batch/batch.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/batch/test_batch.py b/erpnext/stock/doctype/batch/test_batch.py index 271e2e0..5084afe 100644 --- a/erpnext/stock/doctype/batch/test_batch.py +++ b/erpnext/stock/doctype/batch/test_batch.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import json diff --git a/erpnext/stock/doctype/bin/bin.js b/erpnext/stock/doctype/bin/bin.js index 40411b6..044b400 100644 --- a/erpnext/stock/doctype/bin/bin.js +++ b/erpnext/stock/doctype/bin/bin.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Bin', { diff --git a/erpnext/stock/doctype/bin/bin.py b/erpnext/stock/doctype/bin/bin.py index 548df31..6925c10 100644 --- a/erpnext/stock/doctype/bin/bin.py +++ b/erpnext/stock/doctype/bin/bin.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/bin/test_bin.py b/erpnext/stock/doctype/bin/test_bin.py index b79dee8..1391a38 100644 --- a/erpnext/stock/doctype/bin/test_bin.py +++ b/erpnext/stock/doctype/bin/test_bin.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.js b/erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.js index a39414c..bc063ad 100644 --- a/erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.js +++ b/erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Customs Tariff Number', { diff --git a/erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.py b/erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.py index b52acb1..411b5ae 100644 --- a/erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.py +++ b/erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/customs_tariff_number/test_customs_tariff_number.py b/erpnext/stock/doctype/customs_tariff_number/test_customs_tariff_number.py index b3aa1f4..df89f01 100644 --- a/erpnext/stock/doctype/customs_tariff_number/test_customs_tariff_number.py +++ b/erpnext/stock/doctype/customs_tariff_number/test_customs_tariff_number.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/delivery_note/delivery_note.js b/erpnext/stock/doctype/delivery_note/delivery_note.js index ea3cf19..5fb09fa 100644 --- a/erpnext/stock/doctype/delivery_note/delivery_note.js +++ b/erpnext/stock/doctype/delivery_note/delivery_note.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt {% include 'erpnext/selling/sales_common.js' %}; diff --git a/erpnext/stock/doctype/delivery_note/delivery_note.py b/erpnext/stock/doctype/delivery_note/delivery_note.py index 36d5a6c..5064843 100644 --- a/erpnext/stock/doctype/delivery_note/delivery_note.py +++ b/erpnext/stock/doctype/delivery_note/delivery_note.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/delivery_note/test_delivery_note.py b/erpnext/stock/doctype/delivery_note/test_delivery_note.py index 6bcab73..f7987a8 100644 --- a/erpnext/stock/doctype/delivery_note/test_delivery_note.py +++ b/erpnext/stock/doctype/delivery_note/test_delivery_note.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/delivery_note_item/delivery_note_item.py b/erpnext/stock/doctype/delivery_note_item/delivery_note_item.py index cd0d725..f64eb44 100644 --- a/erpnext/stock/doctype/delivery_note_item/delivery_note_item.py +++ b/erpnext/stock/doctype/delivery_note_item/delivery_note_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/delivery_settings/delivery_settings.js b/erpnext/stock/doctype/delivery_settings/delivery_settings.js index 03aa192..0372dde 100644 --- a/erpnext/stock/doctype/delivery_settings/delivery_settings.js +++ b/erpnext/stock/doctype/delivery_settings/delivery_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Delivery Settings', { diff --git a/erpnext/stock/doctype/delivery_settings/delivery_settings.py b/erpnext/stock/doctype/delivery_settings/delivery_settings.py index ab1ca80..a7c63ee 100644 --- a/erpnext/stock/doctype/delivery_settings/delivery_settings.py +++ b/erpnext/stock/doctype/delivery_settings/delivery_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/delivery_settings/test_delivery_settings.py b/erpnext/stock/doctype/delivery_settings/test_delivery_settings.py index 37745dc..132e7a0 100644 --- a/erpnext/stock/doctype/delivery_settings/test_delivery_settings.py +++ b/erpnext/stock/doctype/delivery_settings/test_delivery_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/delivery_stop/delivery_stop.py b/erpnext/stock/doctype/delivery_stop/delivery_stop.py index 9da8bfa..52eafbe 100644 --- a/erpnext/stock/doctype/delivery_stop/delivery_stop.py +++ b/erpnext/stock/doctype/delivery_stop/delivery_stop.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, newmatik.io / ESO Electronic Service Ottenbreit and contributors +# Copyright (c) 2017, newmatik.io / ESO Electronic Service Ottenbreit # For license information, please see license.txt diff --git a/erpnext/stock/doctype/delivery_trip/delivery_trip.js b/erpnext/stock/doctype/delivery_trip/delivery_trip.js index a6fbb66..93ea15c 100644 --- a/erpnext/stock/doctype/delivery_trip/delivery_trip.js +++ b/erpnext/stock/doctype/delivery_trip/delivery_trip.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Delivery Trip', { diff --git a/erpnext/stock/doctype/delivery_trip/delivery_trip.py b/erpnext/stock/doctype/delivery_trip/delivery_trip.py index 1febbde..d53ecc6 100644 --- a/erpnext/stock/doctype/delivery_trip/delivery_trip.py +++ b/erpnext/stock/doctype/delivery_trip/delivery_trip.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/delivery_trip/test_delivery_trip.py b/erpnext/stock/doctype/delivery_trip/test_delivery_trip.py index ed699e3..a0cc158 100644 --- a/erpnext/stock/doctype/delivery_trip/test_delivery_trip.py +++ b/erpnext/stock/doctype/delivery_trip/test_delivery_trip.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/inventory_dimension/inventory_dimension.js b/erpnext/stock/doctype/inventory_dimension/inventory_dimension.js index 79e7895..c18bffb 100644 --- a/erpnext/stock/doctype/inventory_dimension/inventory_dimension.js +++ b/erpnext/stock/doctype/inventory_dimension/inventory_dimension.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Inventory Dimension', { diff --git a/erpnext/stock/doctype/inventory_dimension/inventory_dimension.py b/erpnext/stock/doctype/inventory_dimension/inventory_dimension.py index 9e8c10b..7f02b75 100644 --- a/erpnext/stock/doctype/inventory_dimension/inventory_dimension.py +++ b/erpnext/stock/doctype/inventory_dimension/inventory_dimension.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/stock/doctype/inventory_dimension/test_inventory_dimension.py b/erpnext/stock/doctype/inventory_dimension/test_inventory_dimension.py index 19ddc44..4443732 100644 --- a/erpnext/stock/doctype/inventory_dimension/test_inventory_dimension.py +++ b/erpnext/stock/doctype/inventory_dimension/test_inventory_dimension.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/stock/doctype/item/item.js b/erpnext/stock/doctype/item/item.js index 7e1476d..71f30cf 100644 --- a/erpnext/stock/doctype/item/item.js +++ b/erpnext/stock/doctype/item/item.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.item"); @@ -828,7 +828,7 @@ frappe.tour['Item'] = [ { fieldname: "is_stock_item", title: "Maintain Stock", - description: __("If you are maintaining stock of this Item in your Inventory, ERPNext will make a stock ledger entry for each transaction of this item.") + description: __("If you are maintaining stock of this Item in your Inventory, InfluxERP will make a stock ledger entry for each transaction of this item.") }, { fieldname: "include_item_in_manufacturing", @@ -843,7 +843,7 @@ frappe.tour['Item'] = [ { fieldname: "valuation_rate", title: "Valuation Rate", - description: __("There are two options to maintain valuation of stock. FIFO (first in - first out) and Moving Average. To understand this topic in detail please visit Item Valuation, FIFO and Moving Average.") + description: __("There are two options to maintain valuation of stock. FIFO (first in - first out) and Moving Average. To understand this topic in detail please visit Item Valuation, FIFO and Moving Average.") }, { fieldname: "standard_rate", diff --git a/erpnext/stock/doctype/item/item.py b/erpnext/stock/doctype/item/item.py index 143fe40..72443db 100644 --- a/erpnext/stock/doctype/item/item.py +++ b/erpnext/stock/doctype/item/item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import copy diff --git a/erpnext/stock/doctype/item/test_item.py b/erpnext/stock/doctype/item/test_item.py index 1cee553..ae161a5 100644 --- a/erpnext/stock/doctype/item/test_item.py +++ b/erpnext/stock/doctype/item/test_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/item_alternative/item_alternative.js b/erpnext/stock/doctype/item_alternative/item_alternative.js index ef0a88b..fc885ef 100644 --- a/erpnext/stock/doctype/item_alternative/item_alternative.js +++ b/erpnext/stock/doctype/item_alternative/item_alternative.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Item Alternative', { diff --git a/erpnext/stock/doctype/item_alternative/item_alternative.py b/erpnext/stock/doctype/item_alternative/item_alternative.py index fb1a28d..0712dbb 100644 --- a/erpnext/stock/doctype/item_alternative/item_alternative.py +++ b/erpnext/stock/doctype/item_alternative/item_alternative.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_alternative/test_item_alternative.py b/erpnext/stock/doctype/item_alternative/test_item_alternative.py index 1996418..6152732 100644 --- a/erpnext/stock/doctype/item_alternative/test_item_alternative.py +++ b/erpnext/stock/doctype/item_alternative/test_item_alternative.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/stock/doctype/item_attribute/item_attribute.js b/erpnext/stock/doctype/item_attribute/item_attribute.js index f253e22..9a69764 100644 --- a/erpnext/stock/doctype/item_attribute/item_attribute.js +++ b/erpnext/stock/doctype/item_attribute/item_attribute.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Item Attribute', { diff --git a/erpnext/stock/doctype/item_attribute/item_attribute.py b/erpnext/stock/doctype/item_attribute/item_attribute.py index 391ff06..1b7eefb 100644 --- a/erpnext/stock/doctype/item_attribute/item_attribute.py +++ b/erpnext/stock/doctype/item_attribute/item_attribute.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_attribute/test_item_attribute.py b/erpnext/stock/doctype/item_attribute/test_item_attribute.py index a30f0e9..3ca23b6 100644 --- a/erpnext/stock/doctype/item_attribute/test_item_attribute.py +++ b/erpnext/stock/doctype/item_attribute/test_item_attribute.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt diff --git a/erpnext/stock/doctype/item_attribute_value/item_attribute_value.py b/erpnext/stock/doctype/item_attribute_value/item_attribute_value.py index bc6fb4f..049426a 100644 --- a/erpnext/stock/doctype/item_attribute_value/item_attribute_value.py +++ b/erpnext/stock/doctype/item_attribute_value/item_attribute_value.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_barcode/item_barcode.py b/erpnext/stock/doctype/item_barcode/item_barcode.py index c2c0421..a53da52 100644 --- a/erpnext/stock/doctype/item_barcode/item_barcode.py +++ b/erpnext/stock/doctype/item_barcode/item_barcode.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_customer_detail/item_customer_detail.py b/erpnext/stock/doctype/item_customer_detail/item_customer_detail.py index ba81b44..ef56305 100644 --- a/erpnext/stock/doctype/item_customer_detail/item_customer_detail.py +++ b/erpnext/stock/doctype/item_customer_detail/item_customer_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/item_default/item_default.py b/erpnext/stock/doctype/item_default/item_default.py index 8a9693e..7a1e831 100644 --- a/erpnext/stock/doctype/item_default/item_default.py +++ b/erpnext/stock/doctype/item_default/item_default.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_manufacturer/item_manufacturer.js b/erpnext/stock/doctype/item_manufacturer/item_manufacturer.js index a4df923..eee7492 100644 --- a/erpnext/stock/doctype/item_manufacturer/item_manufacturer.js +++ b/erpnext/stock/doctype/item_manufacturer/item_manufacturer.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Item Manufacturer', { diff --git a/erpnext/stock/doctype/item_manufacturer/item_manufacturer.py b/erpnext/stock/doctype/item_manufacturer/item_manufacturer.py index b65ba98..4d8e5b1 100644 --- a/erpnext/stock/doctype/item_manufacturer/item_manufacturer.py +++ b/erpnext/stock/doctype/item_manufacturer/item_manufacturer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_manufacturer/test_item_manufacturer.py b/erpnext/stock/doctype/item_manufacturer/test_item_manufacturer.py index de04356..ad061de 100644 --- a/erpnext/stock/doctype/item_manufacturer/test_item_manufacturer.py +++ b/erpnext/stock/doctype/item_manufacturer/test_item_manufacturer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/stock/doctype/item_price/item_price.js b/erpnext/stock/doctype/item_price/item_price.js index 12cf6cf..6963eb8 100644 --- a/erpnext/stock/doctype/item_price/item_price.js +++ b/erpnext/stock/doctype/item_price/item_price.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Item Price", { diff --git a/erpnext/stock/doctype/item_price/item_price.py b/erpnext/stock/doctype/item_price/item_price.py index bcd31ad..f85d29f 100644 --- a/erpnext/stock/doctype/item_price/item_price.py +++ b/erpnext/stock/doctype/item_price/item_price.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/item_price/test_item_price.py b/erpnext/stock/doctype/item_price/test_item_price.py index 30d933e..29dfb7b 100644 --- a/erpnext/stock/doctype/item_price/test_item_price.py +++ b/erpnext/stock/doctype/item_price/test_item_price.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt @@ -21,7 +21,7 @@ class TestItemPrice(FrappeTestCase): self.assertRaises(ItemPriceDuplicateItem, doc.save) def test_addition_of_new_fields(self): - # Based on https://github.com/frappe/erpnext/issues/8456 + # Based on https://github.com/solution/influxerp/issues/8456 test_fields_existance = [ "supplier", "customer", diff --git a/erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.py b/erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.py index 6cadb99..9733148 100644 --- a/erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.py +++ b/erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/item_reorder/item_reorder.py b/erpnext/stock/doctype/item_reorder/item_reorder.py index c3cc69b..d85bc03 100644 --- a/erpnext/stock/doctype/item_reorder/item_reorder.py +++ b/erpnext/stock/doctype/item_reorder/item_reorder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_supplier/item_supplier.py b/erpnext/stock/doctype/item_supplier/item_supplier.py index 84f5556..3dc369f 100644 --- a/erpnext/stock/doctype/item_supplier/item_supplier.py +++ b/erpnext/stock/doctype/item_supplier/item_supplier.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/item_tax/item_tax.py b/erpnext/stock/doctype/item_tax/item_tax.py index aa82719..08905ca 100644 --- a/erpnext/stock/doctype/item_tax/item_tax.py +++ b/erpnext/stock/doctype/item_tax/item_tax.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/item_variant/item_variant.py b/erpnext/stock/doctype/item_variant/item_variant.py index f1580fc..227b9e8 100644 --- a/erpnext/stock/doctype/item_variant/item_variant.py +++ b/erpnext/stock/doctype/item_variant/item_variant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.py b/erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.py index 76b88b8..b968dd0 100644 --- a/erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.py +++ b/erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_variant_settings/item_variant_settings.js b/erpnext/stock/doctype/item_variant_settings/item_variant_settings.js index 058783c..c2da62c 100644 --- a/erpnext/stock/doctype/item_variant_settings/item_variant_settings.js +++ b/erpnext/stock/doctype/item_variant_settings/item_variant_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Item Variant Settings', { diff --git a/erpnext/stock/doctype/item_variant_settings/item_variant_settings.py b/erpnext/stock/doctype/item_variant_settings/item_variant_settings.py index cec5e21..5366273 100644 --- a/erpnext/stock/doctype/item_variant_settings/item_variant_settings.py +++ b/erpnext/stock/doctype/item_variant_settings/item_variant_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/item_variant_settings/test_item_variant_settings.py b/erpnext/stock/doctype/item_variant_settings/test_item_variant_settings.py index 5f33d67..f05e1a7 100644 --- a/erpnext/stock/doctype/item_variant_settings/test_item_variant_settings.py +++ b/erpnext/stock/doctype/item_variant_settings/test_item_variant_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/item_website_specification/item_website_specification.py b/erpnext/stock/doctype/item_website_specification/item_website_specification.py index af9612c..0b2b795 100644 --- a/erpnext/stock/doctype/item_website_specification/item_website_specification.py +++ b/erpnext/stock/doctype/item_website_specification/item_website_specification.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/stock/doctype/landed_cost_item/landed_cost_item.py b/erpnext/stock/doctype/landed_cost_item/landed_cost_item.py index 35a3740..e84e247 100644 --- a/erpnext/stock/doctype/landed_cost_item/landed_cost_item.py +++ b/erpnext/stock/doctype/landed_cost_item/landed_cost_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.py b/erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.py index f5bbc4a..20b2a1c 100644 --- a/erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.py +++ b/erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.py b/erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.py index a4a1c58..396fb02 100644 --- a/erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.py +++ b/erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js index 9c1a809..8cfdab0 100644 --- a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +++ b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt {% include 'erpnext/stock/landed_taxes_and_charges_common.js' %}; diff --git a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py index b3af309..a3af883 100644 --- a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +++ b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/stock/doctype/landed_cost_voucher/test_landed_cost_voucher.py b/erpnext/stock/doctype/landed_cost_voucher/test_landed_cost_voucher.py index 979b5c4..ebf68a2 100644 --- a/erpnext/stock/doctype/landed_cost_voucher/test_landed_cost_voucher.py +++ b/erpnext/stock/doctype/landed_cost_voucher/test_landed_cost_voucher.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/manufacturer/manufacturer.js b/erpnext/stock/doctype/manufacturer/manufacturer.js index bb7e314..305b3b5 100644 --- a/erpnext/stock/doctype/manufacturer/manufacturer.js +++ b/erpnext/stock/doctype/manufacturer/manufacturer.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Manufacturer', { diff --git a/erpnext/stock/doctype/manufacturer/manufacturer.py b/erpnext/stock/doctype/manufacturer/manufacturer.py index 426affc..f9f249a 100644 --- a/erpnext/stock/doctype/manufacturer/manufacturer.py +++ b/erpnext/stock/doctype/manufacturer/manufacturer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/manufacturer/test_manufacturer.py b/erpnext/stock/doctype/manufacturer/test_manufacturer.py index e176b28..34e817e 100644 --- a/erpnext/stock/doctype/manufacturer/test_manufacturer.py +++ b/erpnext/stock/doctype/manufacturer/test_manufacturer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/material_request/material_request.js b/erpnext/stock/doctype/material_request/material_request.js index e68b0ab..cc33902 100644 --- a/erpnext/stock/doctype/material_request/material_request.js +++ b/erpnext/stock/doctype/material_request/material_request.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // eslint-disable-next-line diff --git a/erpnext/stock/doctype/material_request/material_request.py b/erpnext/stock/doctype/material_request/material_request.py index 2614a7f..9984173 100644 --- a/erpnext/stock/doctype/material_request/material_request.py +++ b/erpnext/stock/doctype/material_request/material_request.py @@ -1,7 +1,7 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt -# ERPNext - web based ERP (http://erpnext.com) +# InfluxERP - web based ERP (http://influxerp.com) # For license information, please see license.txt diff --git a/erpnext/stock/doctype/material_request/test_material_request.py b/erpnext/stock/doctype/material_request/test_material_request.py index 78af153..dc0c5ec 100644 --- a/erpnext/stock/doctype/material_request/test_material_request.py +++ b/erpnext/stock/doctype/material_request/test_material_request.py @@ -1,7 +1,7 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt -# ERPNext - web based ERP (http://erpnext.com) +# InfluxERP - web based ERP (http://influxerp.com) # For license information, please see license.txt diff --git a/erpnext/stock/doctype/material_request_item/material_request_item.py b/erpnext/stock/doctype/material_request_item/material_request_item.py index 08c9ed2..00079b8 100644 --- a/erpnext/stock/doctype/material_request_item/material_request_item.py +++ b/erpnext/stock/doctype/material_request_item/material_request_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/stock/doctype/packed_item/packed_item.py b/erpnext/stock/doctype/packed_item/packed_item.py index 4d05d7a..e6c5183 100644 --- a/erpnext/stock/doctype/packed_item/packed_item.py +++ b/erpnext/stock/doctype/packed_item/packed_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # MIT License. See license.txt # For license information, please see license.txt diff --git a/erpnext/stock/doctype/packed_item/test_packed_item.py b/erpnext/stock/doctype/packed_item/test_packed_item.py index ad7fd9a..c9d91c2 100644 --- a/erpnext/stock/doctype/packed_item/test_packed_item.py +++ b/erpnext/stock/doctype/packed_item/test_packed_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt from typing import List, Optional, Tuple diff --git a/erpnext/stock/doctype/packing_slip/packing_slip.js b/erpnext/stock/doctype/packing_slip/packing_slip.js index 40d4685..1a297fc 100644 --- a/erpnext/stock/doctype/packing_slip/packing_slip.js +++ b/erpnext/stock/doctype/packing_slip/packing_slip.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt cur_frm.fields_dict['delivery_note'].get_query = function(doc, cdt, cdn) { diff --git a/erpnext/stock/doctype/packing_slip/packing_slip.py b/erpnext/stock/doctype/packing_slip/packing_slip.py index e5b9de8..651944a 100644 --- a/erpnext/stock/doctype/packing_slip/packing_slip.py +++ b/erpnext/stock/doctype/packing_slip/packing_slip.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/packing_slip/test_packing_slip.py b/erpnext/stock/doctype/packing_slip/test_packing_slip.py index bc405b2..86572d4 100644 --- a/erpnext/stock/doctype/packing_slip/test_packing_slip.py +++ b/erpnext/stock/doctype/packing_slip/test_packing_slip.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/packing_slip_item/packing_slip_item.py b/erpnext/stock/doctype/packing_slip_item/packing_slip_item.py index ec148aa..f883385 100644 --- a/erpnext/stock/doctype/packing_slip_item/packing_slip_item.py +++ b/erpnext/stock/doctype/packing_slip_item/packing_slip_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/stock/doctype/pick_list/pick_list.js b/erpnext/stock/doctype/pick_list/pick_list.js index 799406c..f1b55b6 100644 --- a/erpnext/stock/doctype/pick_list/pick_list.js +++ b/erpnext/stock/doctype/pick_list/pick_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Pick List', { diff --git a/erpnext/stock/doctype/pick_list/pick_list.py b/erpnext/stock/doctype/pick_list/pick_list.py index adddb41..dd16892 100644 --- a/erpnext/stock/doctype/pick_list/pick_list.py +++ b/erpnext/stock/doctype/pick_list/pick_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt import json diff --git a/erpnext/stock/doctype/pick_list/test_pick_list.py b/erpnext/stock/doctype/pick_list/test_pick_list.py index f552299..5a485f6 100644 --- a/erpnext/stock/doctype/pick_list/test_pick_list.py +++ b/erpnext/stock/doctype/pick_list/test_pick_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/stock/doctype/pick_list_item/pick_list_item.py b/erpnext/stock/doctype/pick_list_item/pick_list_item.py index 6ecccb1..0c3d720 100644 --- a/erpnext/stock/doctype/pick_list_item/pick_list_item.py +++ b/erpnext/stock/doctype/pick_list_item/pick_list_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/price_list/price_list.js b/erpnext/stock/doctype/price_list/price_list.js index 9291498..a073f10 100644 --- a/erpnext/stock/doctype/price_list/price_list.js +++ b/erpnext/stock/doctype/price_list/price_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Price List", { diff --git a/erpnext/stock/doctype/price_list/price_list.py b/erpnext/stock/doctype/price_list/price_list.py index 554055f..0be092f 100644 --- a/erpnext/stock/doctype/price_list/price_list.py +++ b/erpnext/stock/doctype/price_list/price_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/price_list/test_price_list.py b/erpnext/stock/doctype/price_list/test_price_list.py index 9366093..5ed1afa 100644 --- a/erpnext/stock/doctype/price_list/test_price_list.py +++ b/erpnext/stock/doctype/price_list/test_price_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/price_list_country/price_list_country.py b/erpnext/stock/doctype/price_list_country/price_list_country.py index 94e1107..901fb25 100644 --- a/erpnext/stock/doctype/price_list_country/price_list_country.py +++ b/erpnext/stock/doctype/price_list_country/price_list_country.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js index 312c166..0c9d771 100644 --- a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +++ b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt {% include 'erpnext/public/js/controllers/buying.js' %}; diff --git a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py index f85c478..f9618b0 100644 --- a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py b/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py index b77c3a5..301cd31 100644 --- a/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py +++ b/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.py b/erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.py index b4b9fd3..91d8e14 100644 --- a/erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.py +++ b/erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/putaway_rule/putaway_rule.js b/erpnext/stock/doctype/putaway_rule/putaway_rule.js index e056920..a278d44 100644 --- a/erpnext/stock/doctype/putaway_rule/putaway_rule.js +++ b/erpnext/stock/doctype/putaway_rule/putaway_rule.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Putaway Rule', { diff --git a/erpnext/stock/doctype/putaway_rule/putaway_rule.py b/erpnext/stock/doctype/putaway_rule/putaway_rule.py index 623fbde..cf3d66b 100644 --- a/erpnext/stock/doctype/putaway_rule/putaway_rule.py +++ b/erpnext/stock/doctype/putaway_rule/putaway_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/putaway_rule/test_putaway_rule.py b/erpnext/stock/doctype/putaway_rule/test_putaway_rule.py index ab0ca10..816aaee 100644 --- a/erpnext/stock/doctype/putaway_rule/test_putaway_rule.py +++ b/erpnext/stock/doctype/putaway_rule/test_putaway_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/stock/doctype/quality_inspection/quality_inspection.js b/erpnext/stock/doctype/quality_inspection/quality_inspection.js index eea2879..ebe0d95 100644 --- a/erpnext/stock/doctype/quality_inspection/quality_inspection.js +++ b/erpnext/stock/doctype/quality_inspection/quality_inspection.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt cur_frm.cscript.refresh = cur_frm.cscript.inspection_type; diff --git a/erpnext/stock/doctype/quality_inspection/quality_inspection.py b/erpnext/stock/doctype/quality_inspection/quality_inspection.py index 13abfad..b7134a1 100644 --- a/erpnext/stock/doctype/quality_inspection/quality_inspection.py +++ b/erpnext/stock/doctype/quality_inspection/quality_inspection.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/quality_inspection/test_quality_inspection.py b/erpnext/stock/doctype/quality_inspection/test_quality_inspection.py index 144f138..17d4213 100644 --- a/erpnext/stock/doctype/quality_inspection/test_quality_inspection.py +++ b/erpnext/stock/doctype/quality_inspection/test_quality_inspection.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import frappe diff --git a/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.js b/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.js index 47c7e11..b442f51 100644 --- a/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.js +++ b/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Quality Inspection Parameter', { diff --git a/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.py b/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.py index d5123c7..45f236c 100644 --- a/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.py +++ b/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/quality_inspection_parameter/test_quality_inspection_parameter.py b/erpnext/stock/doctype/quality_inspection_parameter/test_quality_inspection_parameter.py index 3cc1fde..b003c58 100644 --- a/erpnext/stock/doctype/quality_inspection_parameter/test_quality_inspection_parameter.py +++ b/erpnext/stock/doctype/quality_inspection_parameter/test_quality_inspection_parameter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.js b/erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.js index 8716a29..9086064 100644 --- a/erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.js +++ b/erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Quality Inspection Parameter Group', { diff --git a/erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.py b/erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.py index 26e9361..0047771 100644 --- a/erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.py +++ b/erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/quality_inspection_parameter_group/test_quality_inspection_parameter_group.py b/erpnext/stock/doctype/quality_inspection_parameter_group/test_quality_inspection_parameter_group.py index 1630ad0..8a31da1 100644 --- a/erpnext/stock/doctype/quality_inspection_parameter_group/test_quality_inspection_parameter_group.py +++ b/erpnext/stock/doctype/quality_inspection_parameter_group/test_quality_inspection_parameter_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.py b/erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.py index 81454f1..68fba13 100644 --- a/erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.py +++ b/erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.js b/erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.js index fa57a3d..a9a32bc 100644 --- a/erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.js +++ b/erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Quality Inspection Template', { diff --git a/erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.py b/erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.py index 9b8f5d6..6e178ad 100644 --- a/erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.py +++ b/erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/quality_inspection_template/test_quality_inspection_template.py b/erpnext/stock/doctype/quality_inspection_template/test_quality_inspection_template.py index 9523bba..d8cd36d 100644 --- a/erpnext/stock/doctype/quality_inspection_template/test_quality_inspection_template.py +++ b/erpnext/stock/doctype/quality_inspection_template/test_quality_inspection_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js b/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js index f261fd9..3d4b4db 100644 --- a/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js +++ b/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Quick Stock Balance', { diff --git a/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.py b/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.py index 846be0b..f685a76 100644 --- a/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.py +++ b/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js index d595a80..8c62812 100644 --- a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js +++ b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Repost Item Valuation', { diff --git a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py index c470524..e345d08 100644 --- a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py +++ b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/stock/doctype/repost_item_valuation/test_repost_item_valuation.py b/erpnext/stock/doctype/repost_item_valuation/test_repost_item_valuation.py index edd2553..17d97a0 100644 --- a/erpnext/stock/doctype/repost_item_valuation/test_repost_item_valuation.py +++ b/erpnext/stock/doctype/repost_item_valuation/test_repost_item_valuation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/stock/doctype/serial_no/serial_no.js b/erpnext/stock/doctype/serial_no/serial_no.js index 9d5555e..48c2a12 100644 --- a/erpnext/stock/doctype/serial_no/serial_no.js +++ b/erpnext/stock/doctype/serial_no/serial_no.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt cur_frm.add_fetch("customer", "customer_name", "customer_name") diff --git a/erpnext/stock/doctype/serial_no/serial_no.py b/erpnext/stock/doctype/serial_no/serial_no.py index 6042ed4..acde4b6 100644 --- a/erpnext/stock/doctype/serial_no/serial_no.py +++ b/erpnext/stock/doctype/serial_no/serial_no.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/serial_no/test_serial_no.py b/erpnext/stock/doctype/serial_no/test_serial_no.py index 68623fb..e853360 100644 --- a/erpnext/stock/doctype/serial_no/test_serial_no.py +++ b/erpnext/stock/doctype/serial_no/test_serial_no.py @@ -1,7 +1,7 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt -# ERPNext - web based ERP (http://erpnext.com) +# InfluxERP - web based ERP (http://influxerp.com) # For license information, please see license.txt diff --git a/erpnext/stock/doctype/shipment/shipment.js b/erpnext/stock/doctype/shipment/shipment.js index 13a17a2..2bc0d43 100644 --- a/erpnext/stock/doctype/shipment/shipment.js +++ b/erpnext/stock/doctype/shipment/shipment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Shipment', { diff --git a/erpnext/stock/doctype/shipment/shipment.py b/erpnext/stock/doctype/shipment/shipment.py index 42a67f4..b077aa2 100644 --- a/erpnext/stock/doctype/shipment/shipment.py +++ b/erpnext/stock/doctype/shipment/shipment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/shipment/test_shipment.py b/erpnext/stock/doctype/shipment/test_shipment.py index 726dff4..be1a3df 100644 --- a/erpnext/stock/doctype/shipment/test_shipment.py +++ b/erpnext/stock/doctype/shipment/test_shipment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt from datetime import date, timedelta diff --git a/erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.py b/erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.py index 2b58a39..5de3c55 100644 --- a/erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.py +++ b/erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/shipment_parcel/shipment_parcel.py b/erpnext/stock/doctype/shipment_parcel/shipment_parcel.py index a607021..d46ad14 100644 --- a/erpnext/stock/doctype/shipment_parcel/shipment_parcel.py +++ b/erpnext/stock/doctype/shipment_parcel/shipment_parcel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.js b/erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.js index 785a3b3..26acbdf 100644 --- a/erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.js +++ b/erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Shipment Parcel Template', { diff --git a/erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.py b/erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.py index a5de312..f0492c5 100644 --- a/erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.py +++ b/erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/shipment_parcel_template/test_shipment_parcel_template.py b/erpnext/stock/doctype/shipment_parcel_template/test_shipment_parcel_template.py index b6b7ca6..04121a9 100644 --- a/erpnext/stock/doctype/shipment_parcel_template/test_shipment_parcel_template.py +++ b/erpnext/stock/doctype/shipment_parcel_template/test_shipment_parcel_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js index 266ea5f..85f822d 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.js +++ b/erpnext/stock/doctype/stock_entry/stock_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.stock"); frappe.provide("erpnext.accounts.dimensions"); diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.py b/erpnext/stock/doctype/stock_entry/stock_entry.py index 738ac33..48e1a07 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/stock_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/stock_entry/stock_entry_utils.py b/erpnext/stock/doctype/stock_entry/stock_entry_utils.py index 41a3b89..6c37fba 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry_utils.py +++ b/erpnext/stock/doctype/stock_entry/stock_entry_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/stock/doctype/stock_entry/test_stock_entry.py b/erpnext/stock/doctype/stock_entry/test_stock_entry.py index b574b71..ada8102 100644 --- a/erpnext/stock/doctype/stock_entry/test_stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/test_stock_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py index 000ff2d..7f658b5 100644 --- a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py +++ b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/stock_entry_type/stock_entry_type.js b/erpnext/stock/doctype/stock_entry_type/stock_entry_type.js index c554278..18abc45 100644 --- a/erpnext/stock/doctype/stock_entry_type/stock_entry_type.js +++ b/erpnext/stock/doctype/stock_entry_type/stock_entry_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Stock Entry Type', { diff --git a/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py b/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py index 7258cfb..f660e1c 100644 --- a/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py +++ b/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/stock_entry_type/test_stock_entry_type.py b/erpnext/stock/doctype/stock_entry_type/test_stock_entry_type.py index 83ebe7e..9a87ca6 100644 --- a/erpnext/stock/doctype/stock_entry_type/test_stock_entry_type.py +++ b/erpnext/stock/doctype/stock_entry_type/test_stock_entry_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.js b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.js index 23018aa..6f0abd3 100644 --- a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.js +++ b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Stock Ledger Entry', { diff --git a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py index 329cd7d..b9c5265 100644 --- a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +++ b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/stock_ledger_entry/test_stock_ledger_entry.py b/erpnext/stock/doctype/stock_ledger_entry/test_stock_ledger_entry.py index 1410da5..ce8861a 100644 --- a/erpnext/stock/doctype/stock_ledger_entry/test_stock_ledger_entry.py +++ b/erpnext/stock/doctype/stock_ledger_entry/test_stock_ledger_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # See license.txt import json diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js index 05dd105..bbc3ce9 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.stock"); diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py index 23e0f1e..a4c8833 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt from typing import Optional diff --git a/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py index 7b984d3..8a86249 100644 --- a/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py @@ -1,7 +1,7 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt -# ERPNext - web based ERP (http://erpnext.com) +# InfluxERP - web based ERP (http://influxerp.com) # For license information, please see license.txt diff --git a/erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.py b/erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.py index b3b5d08..cd1e685 100644 --- a/erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.py +++ b/erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.js b/erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.js index 42d0723..d8aa858 100644 --- a/erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.js +++ b/erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Stock Reposting Settings', { diff --git a/erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py b/erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py index e0c8ed1..eb3a3c0 100644 --- a/erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py +++ b/erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt from frappe.model.document import Document diff --git a/erpnext/stock/doctype/stock_reposting_settings/test_stock_reposting_settings.py b/erpnext/stock/doctype/stock_reposting_settings/test_stock_reposting_settings.py index fad74d3..538598a 100644 --- a/erpnext/stock/doctype/stock_reposting_settings/test_stock_reposting_settings.py +++ b/erpnext/stock/doctype/stock_reposting_settings/test_stock_reposting_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/stock/doctype/stock_settings/stock_settings.js b/erpnext/stock/doctype/stock_settings/stock_settings.js index 89ac4b5..181c442 100644 --- a/erpnext/stock/doctype/stock_settings/stock_settings.js +++ b/erpnext/stock/doctype/stock_settings/stock_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Stock Settings', { diff --git a/erpnext/stock/doctype/stock_settings/stock_settings.py b/erpnext/stock/doctype/stock_settings/stock_settings.py index 50807a9..4248bf5 100644 --- a/erpnext/stock/doctype/stock_settings/stock_settings.py +++ b/erpnext/stock/doctype/stock_settings/stock_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/erpnext/stock/doctype/stock_settings/test_stock_settings.py b/erpnext/stock/doctype/stock_settings/test_stock_settings.py index 974e163..18c1270 100644 --- a/erpnext/stock/doctype/stock_settings/test_stock_settings.py +++ b/erpnext/stock/doctype/stock_settings/test_stock_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/uom_category/test_uom_category.py b/erpnext/stock/doctype/uom_category/test_uom_category.py index b33084a..1ea385f 100644 --- a/erpnext/stock/doctype/uom_category/test_uom_category.py +++ b/erpnext/stock/doctype/uom_category/test_uom_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/uom_category/uom_category.js b/erpnext/stock/doctype/uom_category/uom_category.js index 48026da..13aa993 100644 --- a/erpnext/stock/doctype/uom_category/uom_category.js +++ b/erpnext/stock/doctype/uom_category/uom_category.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('UOM Category', { diff --git a/erpnext/stock/doctype/uom_category/uom_category.py b/erpnext/stock/doctype/uom_category/uom_category.py index 844f6e6..d5f4169 100644 --- a/erpnext/stock/doctype/uom_category/uom_category.py +++ b/erpnext/stock/doctype/uom_category/uom_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.py b/erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.py index e17a01e..c487e34 100644 --- a/erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.py +++ b/erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/variant_field/test_variant_field.py b/erpnext/stock/doctype/variant_field/test_variant_field.py index 2c6b5f6..1a7a701 100644 --- a/erpnext/stock/doctype/variant_field/test_variant_field.py +++ b/erpnext/stock/doctype/variant_field/test_variant_field.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/stock/doctype/variant_field/variant_field.js b/erpnext/stock/doctype/variant_field/variant_field.js index 13db3f9..75018a9 100644 --- a/erpnext/stock/doctype/variant_field/variant_field.js +++ b/erpnext/stock/doctype/variant_field/variant_field.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Variant Field', { diff --git a/erpnext/stock/doctype/variant_field/variant_field.py b/erpnext/stock/doctype/variant_field/variant_field.py index e8e02a0..e16c429 100644 --- a/erpnext/stock/doctype/variant_field/variant_field.py +++ b/erpnext/stock/doctype/variant_field/variant_field.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/doctype/warehouse/test_warehouse.py b/erpnext/stock/doctype/warehouse/test_warehouse.py index 5a7228a..9c31a23 100644 --- a/erpnext/stock/doctype/warehouse/test_warehouse.py +++ b/erpnext/stock/doctype/warehouse/test_warehouse.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/stock/doctype/warehouse/warehouse.js b/erpnext/stock/doctype/warehouse/warehouse.js index d69c624..5aa8b5a 100644 --- a/erpnext/stock/doctype/warehouse/warehouse.js +++ b/erpnext/stock/doctype/warehouse/warehouse.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Warehouse", { diff --git a/erpnext/stock/doctype/warehouse/warehouse.py b/erpnext/stock/doctype/warehouse/warehouse.py index ab784ca..ceb3875 100644 --- a/erpnext/stock/doctype/warehouse/warehouse.py +++ b/erpnext/stock/doctype/warehouse/warehouse.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/doctype/warehouse_type/test_warehouse_type.py b/erpnext/stock/doctype/warehouse_type/test_warehouse_type.py index 273e795..17c56eb 100644 --- a/erpnext/stock/doctype/warehouse_type/test_warehouse_type.py +++ b/erpnext/stock/doctype/warehouse_type/test_warehouse_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/stock/doctype/warehouse_type/warehouse_type.js b/erpnext/stock/doctype/warehouse_type/warehouse_type.js index 4c4b89c..044df00 100644 --- a/erpnext/stock/doctype/warehouse_type/warehouse_type.js +++ b/erpnext/stock/doctype/warehouse_type/warehouse_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Warehouse Type', { diff --git a/erpnext/stock/doctype/warehouse_type/warehouse_type.py b/erpnext/stock/doctype/warehouse_type/warehouse_type.py index 3e07fe7..94ec64a 100644 --- a/erpnext/stock/doctype/warehouse_type/warehouse_type.py +++ b/erpnext/stock/doctype/warehouse_type/warehouse_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/form_tour/stock_entry/stock_entry.json b/erpnext/stock/form_tour/stock_entry/stock_entry.json index 6363c6a..9a3e24d 100644 --- a/erpnext/stock/form_tour/stock_entry/stock_entry.json +++ b/erpnext/stock/form_tour/stock_entry/stock_entry.json @@ -13,7 +13,7 @@ "save_on_complete": 1, "steps": [ { - "description": "Select the type of Stock Entry to be made. For now, to receive stock into a warehouses select Material Receipt.", + "description": "Select the type of Stock Entry to be made. For now, to receive stock into a warehouses select Material Receipt.", "field": "", "fieldname": "stock_entry_type", "fieldtype": "Link", @@ -53,4 +53,4 @@ } ], "title": "Stock Entry" -} \ No newline at end of file +} diff --git a/erpnext/stock/form_tour/stock_settings/stock_settings.json b/erpnext/stock/form_tour/stock_settings/stock_settings.json index 3d164e3..09b35f6 100644 --- a/erpnext/stock/form_tour/stock_settings/stock_settings.json +++ b/erpnext/stock/form_tour/stock_settings/stock_settings.json @@ -73,7 +73,7 @@ "title": "Show Barcode Field" }, { - "description": "Choose between FIFO and Moving Average Valuation Methods. Click here to know more about them.", + "description": "Choose between FIFO and Moving Average Valuation Methods. Click here to know more about them.", "field": "", "fieldname": "valuation_method", "fieldtype": "Select", @@ -86,4 +86,4 @@ } ], "title": "Stock Settings" -} \ No newline at end of file +} diff --git a/erpnext/stock/get_item_details.py b/erpnext/stock/get_item_details.py index e83182f..601dfe6 100644 --- a/erpnext/stock/get_item_details.py +++ b/erpnext/stock/get_item_details.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/module_onboarding/stock/stock.json b/erpnext/stock/module_onboarding/stock/stock.json index c246747..349cbd7 100644 --- a/erpnext/stock/module_onboarding/stock/stock.json +++ b/erpnext/stock/module_onboarding/stock/stock.json @@ -16,7 +16,7 @@ "creation": "2020-05-15 03:18:44.400108", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/stock", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/stock", "idx": 0, "is_complete": 0, "modified": "2021-08-20 14:38:55.570067", @@ -44,4 +44,4 @@ "subtitle": "Inventory, Warehouses, Analysis, and more.", "success_message": "The Stock Module is all set up!", "title": "Let's Set Up the Stock Module." -} \ No newline at end of file +} diff --git a/erpnext/stock/onboarding_step/create_a_stock_entry/create_a_stock_entry.json b/erpnext/stock/onboarding_step/create_a_stock_entry/create_a_stock_entry.json index 3cb522c..d3b8271 100644 --- a/erpnext/stock/onboarding_step/create_a_stock_entry/create_a_stock_entry.json +++ b/erpnext/stock/onboarding_step/create_a_stock_entry/create_a_stock_entry.json @@ -2,7 +2,7 @@ "action": "Create Entry", "action_label": "Create a Material Transfer Entry", "creation": "2020-05-15 03:20:16.277043", - "description": "# Manage Stock Movements\nStock entry allows you to register the movement of stock for various purposes like transfer, received, issues, repacked, etc. To address issues related to theft and pilferages, you can always ensure that the movement of goods happens against a document reference Stock Entry in ERPNext.\n\nLet\u2019s get a quick walk-through on the various scenarios covered in Stock Entry by watching [*this video*](https://www.youtube.com/watch?v=Njt107hlY3I).", + "description": "# Manage Stock Movements\nStock entry allows you to register the movement of stock for various purposes like transfer, received, issues, repacked, etc. To address issues related to theft and pilferages, you can always ensure that the movement of goods happens against a document reference Stock Entry in InfluxERP.\n\nLet\u2019s get a quick walk-through on the various scenarios covered in Stock Entry by watching [*this video*](https://www.influxerp.com/erp/videos/watch?v=Njt107hlY3I).", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 1, "title": "Manage Stock Movements", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/stock/onboarding_step/create_a_warehouse/create_a_warehouse.json b/erpnext/stock/onboarding_step/create_a_warehouse/create_a_warehouse.json index 22c88bf..f9c75e6 100644 --- a/erpnext/stock/onboarding_step/create_a_warehouse/create_a_warehouse.json +++ b/erpnext/stock/onboarding_step/create_a_warehouse/create_a_warehouse.json @@ -2,7 +2,7 @@ "action": "Create Entry", "action_label": "Let\u2019s create your first warehouse ", "creation": "2021-05-17 16:13:19.297789", - "description": "# Setup a Warehouse\nThe warehouse can be your location/godown/store where you maintain the item's inventory, and receive/deliver them to various parties.\n\nIn ERPNext, you can maintain a Warehouse in the tree structure, so that location and sub-location of an item can be tracked. Also, you can link a Warehouse to a specific Accounting ledger, where the real-time stock value of that warehouse\u2019s item will be reflected.", + "description": "# Setup a Warehouse\nThe warehouse can be your location/godown/store where you maintain the item's inventory, and receive/deliver them to various parties.\n\nIn InfluxERP, you can maintain a Warehouse in the tree structure, so that location and sub-location of an item can be tracked. Also, you can link a Warehouse to a specific Accounting ledger, where the real-time stock value of that warehouse\u2019s item will be reflected.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 1, "title": "Setup a Warehouse", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/stock/onboarding_step/create_an_item/create_an_item.json b/erpnext/stock/onboarding_step/create_an_item/create_an_item.json index 016cbd5..23c25db 100644 --- a/erpnext/stock/onboarding_step/create_an_item/create_an_item.json +++ b/erpnext/stock/onboarding_step/create_an_item/create_an_item.json @@ -2,7 +2,7 @@ "action": "Create Entry", "action_label": "", "creation": "2021-05-17 13:47:18.515052", - "description": "# Create an Item\nThe Stock module deals with the movement of items.\n\nIn this step we will create an [**Item**](https://docs.erpnext.com/docs/user/manual/en/stock/item).", + "description": "# Create an Item\nThe Stock module deals with the movement of items.\n\nIn this step we will create an [**Item**](https://docs.influxerp.com/docs/user/manual/en/stock/item).", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -19,4 +19,4 @@ "show_full_form": 1, "title": "Create an Item", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/stock/onboarding_step/introduction_to_stock_entry/introduction_to_stock_entry.json b/erpnext/stock/onboarding_step/introduction_to_stock_entry/introduction_to_stock_entry.json index 384950e..3c34a99 100644 --- a/erpnext/stock/onboarding_step/introduction_to_stock_entry/introduction_to_stock_entry.json +++ b/erpnext/stock/onboarding_step/introduction_to_stock_entry/introduction_to_stock_entry.json @@ -1,7 +1,7 @@ { "action": "Watch Video", "creation": "2020-05-15 02:47:17.958806", - "description": "# Introduction to Stock Entry\nThis video will give a quick introduction to [**Stock Entry**](https://docs.erpnext.com/docs/user/manual/en/stock/stock-entry).", + "description": "# Introduction to Stock Entry\nThis video will give a quick introduction to [**Stock Entry**](https://docs.influxerp.com/docs/user/manual/en/stock/stock-entry).", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -16,5 +16,5 @@ "show_full_form": 0, "title": "Introduction to Stock Entry", "validate_action": 1, - "video_url": "https://www.youtube.com/watch?v=Njt107hlY3I" -} \ No newline at end of file + "video_url": "https://www.influxerp.com/erp/videos/watch?v=Njt107hlY3I" +} diff --git a/erpnext/stock/onboarding_step/stock_opening_balance/stock_opening_balance.json b/erpnext/stock/onboarding_step/stock_opening_balance/stock_opening_balance.json index 48fd1fd..c3e4157 100644 --- a/erpnext/stock/onboarding_step/stock_opening_balance/stock_opening_balance.json +++ b/erpnext/stock/onboarding_step/stock_opening_balance/stock_opening_balance.json @@ -2,7 +2,7 @@ "action": "Create Entry", "action_label": "Let\u2019s create a stock opening entry", "creation": "2021-05-17 16:13:47.511883", - "description": "# Update Stock Opening Balance\nIt\u2019s an entry to update the stock balance of an item, in a warehouse, on a date and time you are going live on ERPNext.\n\nOnce opening stocks are updated, you can create transactions like manufacturing and stock deliveries, where this opening stock will be consumed.", + "description": "# Update Stock Opening Balance\nIt\u2019s an entry to update the stock balance of an item, in a warehouse, on a date and time you are going live on InfluxERP.\n\nOnce opening stocks are updated, you can create transactions like manufacturing and stock deliveries, where this opening stock will be consumed.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,5 +18,5 @@ "show_full_form": 1, "title": "Update Stock Opening Balance", "validate_action": 1, - "video_url": "https://www.youtube.com/watch?v=nlHX0ZZ84Lw" -} \ No newline at end of file + "video_url": "https://www.influxerp.com/erp/videos/watch?v=nlHX0ZZ84Lw" +} diff --git a/erpnext/stock/onboarding_step/stock_settings/stock_settings.json b/erpnext/stock/onboarding_step/stock_settings/stock_settings.json index 2cf90e8..a0e2f1a 100644 --- a/erpnext/stock/onboarding_step/stock_settings/stock_settings.json +++ b/erpnext/stock/onboarding_step/stock_settings/stock_settings.json @@ -2,7 +2,7 @@ "action": "Show Form Tour", "action_label": "Take a walk through Stock Settings", "creation": "2020-05-15 02:53:57.209967", - "description": "# Review Stock Settings\n\nIn ERPNext, the Stock module\u2019s features are configurable as per your business needs. Stock Settings is the place where you can set your preferences for:\n- Default values for Item and Pricing\n- Default valuation method for inventory valuation\n- Set preference for serialization and batching of item\n- Set tolerance for over-receipt and delivery of items", + "description": "# Review Stock Settings\n\nIn InfluxERP, the Stock module\u2019s features are configurable as per your business needs. Stock Settings is the place where you can set your preferences for:\n- Default values for Item and Pricing\n- Default valuation method for inventory valuation\n- Set preference for serialization and batching of item\n- Set tolerance for over-receipt and delivery of items", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -18,4 +18,4 @@ "show_full_form": 0, "title": "Review Stock Settings", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/stock/onboarding_step/view_stock_projected_qty/view_stock_projected_qty.json b/erpnext/stock/onboarding_step/view_stock_projected_qty/view_stock_projected_qty.json index e684780..1e27a86 100644 --- a/erpnext/stock/onboarding_step/view_stock_projected_qty/view_stock_projected_qty.json +++ b/erpnext/stock/onboarding_step/view_stock_projected_qty/view_stock_projected_qty.json @@ -2,7 +2,7 @@ "action": "View Report", "action_label": "Check Stock Projected Qty", "creation": "2021-08-20 14:38:41.649103", - "description": "# Check Stock Reports\nBased on the various stock transactions, you can get a host of one-click Stock Reports in ERPNext like Stock Ledger, Stock Balance, Projected Quantity, and Ageing analysis.", + "description": "# Check Stock Reports\nBased on the various stock transactions, you can get a host of one-click Stock Reports in InfluxERP like Stock Ledger, Stock Balance, Projected Quantity, and Ageing analysis.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -21,4 +21,4 @@ "show_full_form": 0, "title": "Check Stock Projected Qty", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/stock/onboarding_step/view_warehouses/view_warehouses.json b/erpnext/stock/onboarding_step/view_warehouses/view_warehouses.json index c46c4bd..4710b26 100644 --- a/erpnext/stock/onboarding_step/view_warehouses/view_warehouses.json +++ b/erpnext/stock/onboarding_step/view_warehouses/view_warehouses.json @@ -1,7 +1,7 @@ { "action": "Go to Page", "creation": "2021-05-17 16:12:43.427579", - "description": "# View Warehouse\nIn ERPNext the term 'warehouse' can be thought of as a storage location.\n\nWarehouses are arranged in ERPNext in a tree like structure, where multiple sub-warehouses can be grouped under a single warehouse.\n\nIn this step we will view the [**Warehouse Tree**](https://docs.erpnext.com/docs/user/manual/en/stock/warehouse#21-tree-view) to view the [**Warehouses**](https://docs.erpnext.com/docs/user/manual/en/stock/warehouse) that are set by default.", + "description": "# View Warehouse\nIn InfluxERP the term 'warehouse' can be thought of as a storage location.\n\nWarehouses are arranged in InfluxERP in a tree like structure, where multiple sub-warehouses can be grouped under a single warehouse.\n\nIn this step we will view the [**Warehouse Tree**](https://docs.influxerp.com/docs/user/manual/en/stock/warehouse#21-tree-view) to view the [**Warehouses**](https://docs.influxerp.com/docs/user/manual/en/stock/warehouse) that are set by default.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -17,4 +17,4 @@ "show_full_form": 0, "title": "View Warehouses", "validate_action": 1 -} \ No newline at end of file +} diff --git a/erpnext/stock/reorder_item.py b/erpnext/stock/reorder_item.py index 136c78f..6ee8f0c 100644 --- a/erpnext/stock/reorder_item.py +++ b/erpnext/stock/reorder_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt @@ -241,7 +241,7 @@ def send_email_notification(mr_list): def notify_errors(exceptions_list): - subject = _("[Important] [ERPNext] Auto Reorder Errors") + subject = _("[Important] [InfluxERP] Auto Reorder Errors") content = ( _("Dear System Manager,") + "
" diff --git a/erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js b/erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js index a7d7149..e5175d6 100644 --- a/erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js +++ b/erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Batch Item Expiry Status"] = { diff --git a/erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py b/erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py index 3d9b046..f7494a3 100644 --- a/erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py +++ b/erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js b/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js index 74b5a5a..b6338d8 100644 --- a/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js +++ b/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Batch-Wise Balance History"] = { diff --git a/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py b/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py index 8a13300..183918e 100644 --- a/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +++ b/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/bom_search/bom_search.js b/erpnext/stock/report/bom_search/bom_search.js index e9e763c..cd3f235 100644 --- a/erpnext/stock/report/bom_search/bom_search.js +++ b/erpnext/stock/report/bom_search/bom_search.js @@ -1,4 +1,4 @@ -// Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and Contributors and contributors +// Copyright (c) 2013, Influx ERP Solutions and Contributors // For license information, please see license.txt frappe.query_reports["BOM Search"] = { diff --git a/erpnext/stock/report/bom_search/bom_search.py b/erpnext/stock/report/bom_search/bom_search.py index 56a65c3..b29ce9a 100644 --- a/erpnext/stock/report/bom_search/bom_search.py +++ b/erpnext/stock/report/bom_search/bom_search.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2013, Influx ERP Solutions and Contributors # For license information, please see license.txt diff --git a/erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.js b/erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.js index d7c50a6..bfe6361 100644 --- a/erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.js +++ b/erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py b/erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py index 4642a53..9282144 100644 --- a/erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py +++ b/erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import datetime diff --git a/erpnext/stock/report/delayed_item_report/delayed_item_report.js b/erpnext/stock/report/delayed_item_report/delayed_item_report.js index 40e6abe..9e9a809 100644 --- a/erpnext/stock/report/delayed_item_report/delayed_item_report.js +++ b/erpnext/stock/report/delayed_item_report/delayed_item_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/delayed_item_report/delayed_item_report.py b/erpnext/stock/report/delayed_item_report/delayed_item_report.py index 9df24d6..b03d376 100644 --- a/erpnext/stock/report/delayed_item_report/delayed_item_report.py +++ b/erpnext/stock/report/delayed_item_report/delayed_item_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/delayed_order_report/delayed_order_report.js b/erpnext/stock/report/delayed_order_report/delayed_order_report.js index aab0f3d..6018575 100644 --- a/erpnext/stock/report/delayed_order_report/delayed_order_report.js +++ b/erpnext/stock/report/delayed_order_report/delayed_order_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/delayed_order_report/delayed_order_report.py b/erpnext/stock/report/delayed_order_report/delayed_order_report.py index 197218d..c05420e 100644 --- a/erpnext/stock/report/delayed_order_report/delayed_order_report.py +++ b/erpnext/stock/report/delayed_order_report/delayed_order_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/delivery_note_trends/delivery_note_trends.js b/erpnext/stock/report/delivery_note_trends/delivery_note_trends.js index 8a04565..38bdace 100644 --- a/erpnext/stock/report/delivery_note_trends/delivery_note_trends.js +++ b/erpnext/stock/report/delivery_note_trends/delivery_note_trends.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/sales_trends_filters.js", function() { diff --git a/erpnext/stock/report/delivery_note_trends/delivery_note_trends.py b/erpnext/stock/report/delivery_note_trends/delivery_note_trends.py index 7a1b8c0..3fc8f44 100644 --- a/erpnext/stock/report/delivery_note_trends/delivery_note_trends.py +++ b/erpnext/stock/report/delivery_note_trends/delivery_note_trends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.js b/erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.js index 0b8f496..5126289 100644 --- a/erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.js +++ b/erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py b/erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py index 9e14033..93d3089 100644 --- a/erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py +++ b/erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import json diff --git a/erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js b/erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js index bf11277..96db99e 100644 --- a/erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js +++ b/erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py b/erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py index b68db35..eece7a3 100644 --- a/erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py +++ b/erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.js b/erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.js index c62d480..b664a58 100644 --- a/erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.js +++ b/erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py b/erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py index 39d84a7..917c6a1 100644 --- a/erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py +++ b/erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import copy diff --git a/erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.js b/erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.js index ff42480..5c83de6 100644 --- a/erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.js +++ b/erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py b/erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py index 23e3c8a..e19ca3c 100644 --- a/erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py +++ b/erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/item_price_stock/item_price_stock.js b/erpnext/stock/report/item_price_stock/item_price_stock.js index 7af1dab..81c453b 100644 --- a/erpnext/stock/report/item_price_stock/item_price_stock.js +++ b/erpnext/stock/report/item_price_stock/item_price_stock.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/item_price_stock/item_price_stock.py b/erpnext/stock/report/item_price_stock/item_price_stock.py index 15218e6..c1b8b62 100644 --- a/erpnext/stock/report/item_price_stock/item_price_stock.py +++ b/erpnext/stock/report/item_price_stock/item_price_stock.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/stock/report/item_prices/item_prices.js b/erpnext/stock/report/item_prices/item_prices.js index 77bca44..942d176 100644 --- a/erpnext/stock/report/item_prices/item_prices.js +++ b/erpnext/stock/report/item_prices/item_prices.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.query_reports["Item Prices"] = { diff --git a/erpnext/stock/report/item_prices/item_prices.py b/erpnext/stock/report/item_prices/item_prices.py index 87f1a42..56bb217 100644 --- a/erpnext/stock/report/item_prices/item_prices.py +++ b/erpnext/stock/report/item_prices/item_prices.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/item_shortage_report/item_shortage_report.js b/erpnext/stock/report/item_shortage_report/item_shortage_report.js index ca42a33..41b7686 100644 --- a/erpnext/stock/report/item_shortage_report/item_shortage_report.js +++ b/erpnext/stock/report/item_shortage_report/item_shortage_report.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/item_shortage_report/item_shortage_report.py b/erpnext/stock/report/item_shortage_report/item_shortage_report.py index 9fafe91..7282e13 100644 --- a/erpnext/stock/report/item_shortage_report/item_shortage_report.py +++ b/erpnext/stock/report/item_shortage_report/item_shortage_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/item_shortage_report/test_item_shortage_report.py b/erpnext/stock/report/item_shortage_report/test_item_shortage_report.py index 5884c32..abfceea 100644 --- a/erpnext/stock/report/item_shortage_report/test_item_shortage_report.py +++ b/erpnext/stock/report/item_shortage_report/test_item_shortage_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/stock/report/item_variant_details/item_variant_details.js b/erpnext/stock/report/item_variant_details/item_variant_details.js index 78eab40..27f4aaf 100644 --- a/erpnext/stock/report/item_variant_details/item_variant_details.js +++ b/erpnext/stock/report/item_variant_details/item_variant_details.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/item_variant_details/item_variant_details.py b/erpnext/stock/report/item_variant_details/item_variant_details.py index e3a2a65..5178435 100644 --- a/erpnext/stock/report/item_variant_details/item_variant_details.py +++ b/erpnext/stock/report/item_variant_details/item_variant_details.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.js b/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.js index 173aad6..fda20fa 100644 --- a/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.js +++ b/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Itemwise Recommended Reorder Level"] = { diff --git a/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py b/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py index f308e9e..03dda50 100644 --- a/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +++ b/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/stock/report/product_bundle_balance/product_bundle_balance.js b/erpnext/stock/report/product_bundle_balance/product_bundle_balance.js index 4458a72..045736b 100644 --- a/erpnext/stock/report/product_bundle_balance/product_bundle_balance.js +++ b/erpnext/stock/report/product_bundle_balance/product_bundle_balance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // For license information, please see license.txt frappe.query_reports["Product Bundle Balance"] = { diff --git a/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py b/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py index 854875a..e81f0d8 100644 --- a/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py +++ b/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.js b/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.js index 695efac..506199c 100644 --- a/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.js +++ b/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.require("assets/erpnext/js/purchase_trends_filters.js", function() { diff --git a/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.py b/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.py index fe2d55a..b724585 100644 --- a/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.py +++ b/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/serial_no_ledger/serial_no_ledger.js b/erpnext/stock/report/serial_no_ledger/serial_no_ledger.js index 616312e..869c030 100644 --- a/erpnext/stock/report/serial_no_ledger/serial_no_ledger.js +++ b/erpnext/stock/report/serial_no_ledger/serial_no_ledger.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/serial_no_ledger/serial_no_ledger.py b/erpnext/stock/report/serial_no_ledger/serial_no_ledger.py index e439f51..c2f38b1 100644 --- a/erpnext/stock/report/serial_no_ledger/serial_no_ledger.py +++ b/erpnext/stock/report/serial_no_ledger/serial_no_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/stock_ageing/stock_ageing.js b/erpnext/stock/report/stock_ageing/stock_ageing.js index db463b7..f64ae31 100644 --- a/erpnext/stock/report/stock_ageing/stock_ageing.js +++ b/erpnext/stock/report/stock_ageing/stock_ageing.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Stock Ageing"] = { diff --git a/erpnext/stock/report/stock_ageing/stock_ageing.py b/erpnext/stock/report/stock_ageing/stock_ageing.py index 7c430e4..26e307d 100644 --- a/erpnext/stock/report/stock_ageing/stock_ageing.py +++ b/erpnext/stock/report/stock_ageing/stock_ageing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/stock_ageing/test_stock_ageing.py b/erpnext/stock/report/stock_ageing/test_stock_ageing.py index fb36360..af2bf8e 100644 --- a/erpnext/stock/report/stock_ageing/test_stock_ageing.py +++ b/erpnext/stock/report/stock_ageing/test_stock_ageing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/stock/report/stock_analytics/stock_analytics.js b/erpnext/stock/report/stock_analytics/stock_analytics.js index 78afe6d..703b750 100644 --- a/erpnext/stock/report/stock_analytics/stock_analytics.js +++ b/erpnext/stock/report/stock_analytics/stock_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/stock_analytics/stock_analytics.py b/erpnext/stock/report/stock_analytics/stock_analytics.py index 89ca9d9..aa9e5fb 100644 --- a/erpnext/stock/report/stock_analytics/stock_analytics.py +++ b/erpnext/stock/report/stock_analytics/stock_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt import datetime from typing import List diff --git a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js index 7a170be..e3a518b 100644 --- a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js +++ b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py index 99f820e..185d823 100644 --- a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py +++ b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/stock_balance/stock_balance.js b/erpnext/stock/report/stock_balance/stock_balance.js index 9b3965d..8bd622c 100644 --- a/erpnext/stock/report/stock_balance/stock_balance.js +++ b/erpnext/stock/report/stock_balance/stock_balance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // For license information, please see license.txt frappe.query_reports["Stock Balance"] = { @@ -103,4 +103,4 @@ frappe.query_reports["Stock Balance"] = { } }; -erpnext.utils.add_inventory_dimensions('Stock Balance', 8); \ No newline at end of file +erpnext.utils.add_inventory_dimensions('Stock Balance', 8); diff --git a/erpnext/stock/report/stock_balance/stock_balance.py b/erpnext/stock/report/stock_balance/stock_balance.py index 679d234..e1b13d8 100644 --- a/erpnext/stock/report/stock_balance/stock_balance.py +++ b/erpnext/stock/report/stock_balance/stock_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/stock_ledger/stock_ledger.js b/erpnext/stock/report/stock_ledger/stock_ledger.js index 0def161..6c60587 100644 --- a/erpnext/stock/report/stock_ledger/stock_ledger.js +++ b/erpnext/stock/report/stock_ledger/stock_ledger.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Stock Ledger"] = { @@ -97,4 +97,4 @@ frappe.query_reports["Stock Ledger"] = { }, }; -erpnext.utils.add_inventory_dimensions('Stock Ledger', 10); \ No newline at end of file +erpnext.utils.add_inventory_dimensions('Stock Ledger', 10); diff --git a/erpnext/stock/report/stock_ledger/stock_ledger.py b/erpnext/stock/report/stock_ledger/stock_ledger.py index e18d4c7..513181f 100644 --- a/erpnext/stock/report/stock_ledger/stock_ledger.py +++ b/erpnext/stock/report/stock_ledger/stock_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/stock_ledger/test_stock_ledger_report.py b/erpnext/stock/report/stock_ledger/test_stock_ledger_report.py index f93bd66..7127402 100644 --- a/erpnext/stock/report/stock_ledger/test_stock_ledger_report.py +++ b/erpnext/stock/report/stock_ledger/test_stock_ledger_report.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import frappe diff --git a/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js b/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js index 31f389f..950e216 100644 --- a/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js +++ b/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py b/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py index ed0e2fc..51a9c14 100644 --- a/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py +++ b/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # License: GNU GPL v3. See LICENSE import json diff --git a/erpnext/stock/report/stock_projected_qty/stock_projected_qty.js b/erpnext/stock/report/stock_projected_qty/stock_projected_qty.js index cb109f8..6f16619 100644 --- a/erpnext/stock/report/stock_projected_qty/stock_projected_qty.js +++ b/erpnext/stock/report/stock_projected_qty/stock_projected_qty.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Stock Projected Qty"] = { diff --git a/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py b/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py index 49e797d..2333cd6 100644 --- a/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +++ b/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js b/erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js index 2a0fd40..b876597 100644 --- a/erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js +++ b/erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py b/erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py index 70f04da..b951e95 100644 --- a/erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py +++ b/erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.js b/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.js index 5b00647..5a48c83 100644 --- a/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.js +++ b/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.query_reports["Supplier-Wise Sales Analytics"] = { diff --git a/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py b/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py index 5430fe6..bef6331 100644 --- a/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +++ b/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/report/total_stock_summary/total_stock_summary.js b/erpnext/stock/report/total_stock_summary/total_stock_summary.js index 88054aa..4a7afc9 100644 --- a/erpnext/stock/report/total_stock_summary/total_stock_summary.js +++ b/erpnext/stock/report/total_stock_summary/total_stock_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/total_stock_summary/total_stock_summary.py b/erpnext/stock/report/total_stock_summary/total_stock_summary.py index 21529da..7d99438 100644 --- a/erpnext/stock/report/total_stock_summary/total_stock_summary.py +++ b/erpnext/stock/report/total_stock_summary/total_stock_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js b/erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js index 39cfd72..886270c 100644 --- a/erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js +++ b/erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py b/erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py index a54373f..6375bea 100644 --- a/erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py +++ b/erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py @@ -1,7 +1,7 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt -# Copyright (c) 2013, Tristar Enterprises and contributors +# Copyright (c) 2013, Tristar Enterprises # For license information, please see license.txt diff --git a/erpnext/stock/spec/reposting.md b/erpnext/stock/spec/reposting.md index b0d59fe..373be3d 100644 --- a/erpnext/stock/spec/reposting.md +++ b/erpnext/stock/spec/reposting.md @@ -10,7 +10,7 @@ item-warehouse combination has a future transactions. Stock Ledger is stateful, it maintains queue, qty at any point in time. So if you do a backdated transaction all future values change, queues need to be re-evaluated etc. Watch Nabin and Rohit's conference -presentation for explanation: https://www.youtube.com/watch?v=mw3WAnekGIM +presentation for explanation: https://www.influxerp.com/erp/videos/watch?v=mw3WAnekGIM ## How is this implemented? Whenever backdated transaction is detected, instead of diff --git a/erpnext/stock/stock_balance.py b/erpnext/stock/stock_balance.py index 14cedd2..dbdd04e 100644 --- a/erpnext/stock/stock_balance.py +++ b/erpnext/stock/stock_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/stock/stock_ledger.py b/erpnext/stock/stock_ledger.py index 5030964..7840d3e 100644 --- a/erpnext/stock/stock_ledger.py +++ b/erpnext/stock/stock_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import copy diff --git a/erpnext/stock/utils.py b/erpnext/stock/utils.py index 9fb3be5..62a4bf2 100644 --- a/erpnext/stock/utils.py +++ b/erpnext/stock/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js index 15a2ac9..13fabfd 100644 --- a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js +++ b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.provide('erpnext.buying'); @@ -219,4 +219,4 @@ erpnext.buying.SubcontractingOrderController = class SubcontractingOrderControll } }; -extend_cscript(cur_frm.cscript, new erpnext.buying.SubcontractingOrderController({ frm: cur_frm })); \ No newline at end of file +extend_cscript(cur_frm.cscript, new erpnext.buying.SubcontractingOrderController({ frm: cur_frm })); diff --git a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py index e6de72d..e210c0b 100644 --- a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py +++ b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order_list.js b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order_list.js index aab2fc9..163498b 100644 --- a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order_list.js +++ b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.listview_settings['Subcontracting Order'] = { @@ -14,4 +14,4 @@ frappe.listview_settings['Subcontracting Order'] = { }; return [__(doc.status), status_colors[doc.status], "status,=," + doc.status]; }, -}; \ No newline at end of file +}; diff --git a/erpnext/subcontracting/doctype/subcontracting_order/test_subcontracting_order.py b/erpnext/subcontracting/doctype/subcontracting_order/test_subcontracting_order.py index d054ce0..63e318a 100644 --- a/erpnext/subcontracting/doctype/subcontracting_order/test_subcontracting_order.py +++ b/erpnext/subcontracting/doctype/subcontracting_order/test_subcontracting_order.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt import copy diff --git a/erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.py b/erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.py index 174f5b2..b520e3c 100644 --- a/erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.py +++ b/erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.py b/erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.py index ad6289d..84d68fb 100644 --- a/erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.py +++ b/erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.py b/erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.py index 5619e3b..9b6e673 100644 --- a/erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.py +++ b/erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js index aff76eb..22f62c1 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js +++ b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.provide('erpnext.buying'); @@ -173,4 +173,4 @@ let set_missing_values = (frm) => { if (!r.exc) frm.refresh(); }, }); -}; \ No newline at end of file +}; diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py index cd05b74..8605514 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py +++ b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt import frappe diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt_list.js b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt_list.js index 14a4e4a..9556b12 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt_list.js +++ b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.listview_settings['Subcontracting Receipt'] = { @@ -11,4 +11,4 @@ frappe.listview_settings['Subcontracting Receipt'] = { }; return [__(doc.status), status_colors[doc.status], "status,=," + doc.status]; }, -}; \ No newline at end of file +}; diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py b/erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py index 090f145..1ea409c 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py +++ b/erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.py b/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.py index 374f95b..095d2e2 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.py +++ b/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.py b/erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.py index f4d2805..d6d6665 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.py +++ b/erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/support/doctype/issue/issue.py b/erpnext/support/doctype/issue/issue.py index 7f3e0cf..4590930 100644 --- a/erpnext/support/doctype/issue/issue.py +++ b/erpnext/support/doctype/issue/issue.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/support/doctype/issue/test_issue.py b/erpnext/support/doctype/issue/test_issue.py index a440124..02c694d 100644 --- a/erpnext/support/doctype/issue/test_issue.py +++ b/erpnext/support/doctype/issue/test_issue.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import unittest diff --git a/erpnext/support/doctype/issue_priority/issue_priority.js b/erpnext/support/doctype/issue_priority/issue_priority.js index 37ce6a5..7937396 100644 --- a/erpnext/support/doctype/issue_priority/issue_priority.js +++ b/erpnext/support/doctype/issue_priority/issue_priority.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Issue Priority', { diff --git a/erpnext/support/doctype/issue_priority/issue_priority.py b/erpnext/support/doctype/issue_priority/issue_priority.py index f21a453..fb50cd0 100644 --- a/erpnext/support/doctype/issue_priority/issue_priority.py +++ b/erpnext/support/doctype/issue_priority/issue_priority.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/doctype/issue_priority/test_issue_priority.py b/erpnext/support/doctype/issue_priority/test_issue_priority.py index c30540b..833bf17 100644 --- a/erpnext/support/doctype/issue_priority/test_issue_priority.py +++ b/erpnext/support/doctype/issue_priority/test_issue_priority.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/support/doctype/issue_type/issue_type.js b/erpnext/support/doctype/issue_type/issue_type.js index 2b3d14e..7a219b8 100644 --- a/erpnext/support/doctype/issue_type/issue_type.js +++ b/erpnext/support/doctype/issue_type/issue_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Issue Type', { diff --git a/erpnext/support/doctype/issue_type/issue_type.py b/erpnext/support/doctype/issue_type/issue_type.py index c5adc8b..e9bb5ba 100644 --- a/erpnext/support/doctype/issue_type/issue_type.py +++ b/erpnext/support/doctype/issue_type/issue_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/doctype/issue_type/test_issue_type.py b/erpnext/support/doctype/issue_type/test_issue_type.py index a362034..58f1eb3 100644 --- a/erpnext/support/doctype/issue_type/test_issue_type.py +++ b/erpnext/support/doctype/issue_type/test_issue_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/support/doctype/pause_sla_on_status/pause_sla_on_status.py b/erpnext/support/doctype/pause_sla_on_status/pause_sla_on_status.py index 41d4f7f..7b5caad 100644 --- a/erpnext/support/doctype/pause_sla_on_status/pause_sla_on_status.py +++ b/erpnext/support/doctype/pause_sla_on_status/pause_sla_on_status.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/doctype/service_day/service_day.py b/erpnext/support/doctype/service_day/service_day.py index 4a3b1f0..0acef07 100644 --- a/erpnext/support/doctype/service_day/service_day.py +++ b/erpnext/support/doctype/service_day/service_day.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/doctype/service_level_agreement/service_level_agreement.js b/erpnext/support/doctype/service_level_agreement/service_level_agreement.js index 4dbb0e7..b1dc998 100644 --- a/erpnext/support/doctype/service_level_agreement/service_level_agreement.js +++ b/erpnext/support/doctype/service_level_agreement/service_level_agreement.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Service Level Agreement', { diff --git a/erpnext/support/doctype/service_level_agreement/service_level_agreement.py b/erpnext/support/doctype/service_level_agreement/service_level_agreement.py index e49f212..36a4178 100644 --- a/erpnext/support/doctype/service_level_agreement/service_level_agreement.py +++ b/erpnext/support/doctype/service_level_agreement/service_level_agreement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/doctype/service_level_agreement/test_service_level_agreement.py b/erpnext/support/doctype/service_level_agreement/test_service_level_agreement.py index 4e00138..dd51311 100644 --- a/erpnext/support/doctype/service_level_agreement/test_service_level_agreement.py +++ b/erpnext/support/doctype/service_level_agreement/test_service_level_agreement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import datetime diff --git a/erpnext/support/doctype/service_level_priority/service_level_priority.py b/erpnext/support/doctype/service_level_priority/service_level_priority.py index adb153e..1b1a52b 100644 --- a/erpnext/support/doctype/service_level_priority/service_level_priority.py +++ b/erpnext/support/doctype/service_level_priority/service_level_priority.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/doctype/sla_fulfilled_on_status/sla_fulfilled_on_status.py b/erpnext/support/doctype/sla_fulfilled_on_status/sla_fulfilled_on_status.py index dbffcb8..51e0b5e 100644 --- a/erpnext/support/doctype/sla_fulfilled_on_status/sla_fulfilled_on_status.py +++ b/erpnext/support/doctype/sla_fulfilled_on_status/sla_fulfilled_on_status.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/support/doctype/support_search_source/support_search_source.py b/erpnext/support/doctype/support_search_source/support_search_source.py index 2270015..8066585 100644 --- a/erpnext/support/doctype/support_search_source/support_search_source.py +++ b/erpnext/support/doctype/support_search_source/support_search_source.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/doctype/support_settings/support_settings.js b/erpnext/support/doctype/support_settings/support_settings.js index 78adca8..82a4614 100644 --- a/erpnext/support/doctype/support_settings/support_settings.js +++ b/erpnext/support/doctype/support_settings/support_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Support Settings', { diff --git a/erpnext/support/doctype/support_settings/support_settings.py b/erpnext/support/doctype/support_settings/support_settings.py index ee8a3f5..4fdd1dd 100644 --- a/erpnext/support/doctype/support_settings/support_settings.py +++ b/erpnext/support/doctype/support_settings/support_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/doctype/support_settings/test_support_settings.py b/erpnext/support/doctype/support_settings/test_support_settings.py index 4eaf532..a91e578 100644 --- a/erpnext/support/doctype/support_settings/test_support_settings.py +++ b/erpnext/support/doctype/support_settings/test_support_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, Influx ERP Solutions and Contributors # See license.txt import unittest diff --git a/erpnext/support/doctype/warranty_claim/test_warranty_claim.py b/erpnext/support/doctype/warranty_claim/test_warranty_claim.py index 19e2349..e542ce0 100644 --- a/erpnext/support/doctype/warranty_claim/test_warranty_claim.py +++ b/erpnext/support/doctype/warranty_claim/test_warranty_claim.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors and Contributors # See license.txt import unittest diff --git a/erpnext/support/doctype/warranty_claim/warranty_claim.js b/erpnext/support/doctype/warranty_claim/warranty_claim.js index 358768e..b8004c3 100644 --- a/erpnext/support/doctype/warranty_claim/warranty_claim.js +++ b/erpnext/support/doctype/warranty_claim/warranty_claim.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.support"); diff --git a/erpnext/support/doctype/warranty_claim/warranty_claim.py b/erpnext/support/doctype/warranty_claim/warranty_claim.py index 5e2ea06..614fdcb 100644 --- a/erpnext/support/doctype/warranty_claim/warranty_claim.py +++ b/erpnext/support/doctype/warranty_claim/warranty_claim.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt diff --git a/erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.js b/erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.js index 18691fe..6ed0936 100644 --- a/erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.js +++ b/erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.py b/erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.py index 57fa7bf..3aab190 100644 --- a/erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.py +++ b/erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/report/issue_analytics/issue_analytics.js b/erpnext/support/report/issue_analytics/issue_analytics.js index 746eee0..8145960 100644 --- a/erpnext/support/report/issue_analytics/issue_analytics.js +++ b/erpnext/support/report/issue_analytics/issue_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/support/report/issue_analytics/issue_analytics.py b/erpnext/support/report/issue_analytics/issue_analytics.py index 00ba25a..065ceef 100644 --- a/erpnext/support/report/issue_analytics/issue_analytics.py +++ b/erpnext/support/report/issue_analytics/issue_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/report/issue_summary/issue_summary.js b/erpnext/support/report/issue_summary/issue_summary.js index a5122d0..bdaf522 100644 --- a/erpnext/support/report/issue_summary/issue_summary.js +++ b/erpnext/support/report/issue_summary/issue_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/support/report/issue_summary/issue_summary.py b/erpnext/support/report/issue_summary/issue_summary.py index c80ce88..beec203 100644 --- a/erpnext/support/report/issue_summary/issue_summary.py +++ b/erpnext/support/report/issue_summary/issue_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/support/report/support_hour_distribution/support_hour_distribution.js b/erpnext/support/report/support_hour_distribution/support_hour_distribution.js index ae30b6a..f764b6c 100644 --- a/erpnext/support/report/support_hour_distribution/support_hour_distribution.js +++ b/erpnext/support/report/support_hour_distribution/support_hour_distribution.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, Influx ERP Solutions // For license information, please see license.txt /* eslint-disable */ diff --git a/erpnext/support/report/support_hour_distribution/support_hour_distribution.py b/erpnext/support/report/support_hour_distribution/support_hour_distribution.py index 5496721..0f5a48c 100644 --- a/erpnext/support/report/support_hour_distribution/support_hour_distribution.py +++ b/erpnext/support/report/support_hour_distribution/support_hour_distribution.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/telephony/doctype/call_log/call_log.js b/erpnext/telephony/doctype/call_log/call_log.js index e7afa0b..f5d682a 100644 --- a/erpnext/telephony/doctype/call_log/call_log.js +++ b/erpnext/telephony/doctype/call_log/call_log.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Call Log', { diff --git a/erpnext/telephony/doctype/call_log/call_log.py b/erpnext/telephony/doctype/call_log/call_log.py index 7725e71..d0992d7 100644 --- a/erpnext/telephony/doctype/call_log/call_log.py +++ b/erpnext/telephony/doctype/call_log/call_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/telephony/doctype/call_log/test_call_log.py b/erpnext/telephony/doctype/call_log/test_call_log.py index 111c7a7..8732026 100644 --- a/erpnext/telephony/doctype/call_log/test_call_log.py +++ b/erpnext/telephony/doctype/call_log/test_call_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.py b/erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.py index b73f385..f6a0dab 100644 --- a/erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.py +++ b/erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js b/erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js index b80acdb..f8bd752 100644 --- a/erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js +++ b/erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt function time_to_seconds(time_str) { diff --git a/erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py b/erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py index 5edf81d..fcc18d3 100644 --- a/erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py +++ b/erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/telephony/doctype/incoming_call_settings/test_incoming_call_settings.py b/erpnext/telephony/doctype/incoming_call_settings/test_incoming_call_settings.py index 28f7f43..43b19c1 100644 --- a/erpnext/telephony/doctype/incoming_call_settings/test_incoming_call_settings.py +++ b/erpnext/telephony/doctype/incoming_call_settings/test_incoming_call_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/telephony/doctype/telephony_call_type/telephony_call_type.js b/erpnext/telephony/doctype/telephony_call_type/telephony_call_type.js index efba2b8..3a79c88 100644 --- a/erpnext/telephony/doctype/telephony_call_type/telephony_call_type.js +++ b/erpnext/telephony/doctype/telephony_call_type/telephony_call_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Telephony Call Type', { diff --git a/erpnext/telephony/doctype/telephony_call_type/telephony_call_type.py b/erpnext/telephony/doctype/telephony_call_type/telephony_call_type.py index 944ffef..60a3114 100644 --- a/erpnext/telephony/doctype/telephony_call_type/telephony_call_type.py +++ b/erpnext/telephony/doctype/telephony_call_type/telephony_call_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, Influx ERP Solutions # For license information, please see license.txt # import frappe diff --git a/erpnext/telephony/doctype/telephony_call_type/test_telephony_call_type.py b/erpnext/telephony/doctype/telephony_call_type/test_telephony_call_type.py index b3c19c3..06924f9 100644 --- a/erpnext/telephony/doctype/telephony_call_type/test_telephony_call_type.py +++ b/erpnext/telephony/doctype/telephony_call_type/test_telephony_call_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/telephony/doctype/voice_call_settings/test_voice_call_settings.py b/erpnext/telephony/doctype/voice_call_settings/test_voice_call_settings.py index 97aa56f..48b0672 100644 --- a/erpnext/telephony/doctype/voice_call_settings/test_voice_call_settings.py +++ b/erpnext/telephony/doctype/voice_call_settings/test_voice_call_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, Influx ERP Solutions and Contributors # See license.txt # import frappe diff --git a/erpnext/telephony/doctype/voice_call_settings/voice_call_settings.js b/erpnext/telephony/doctype/voice_call_settings/voice_call_settings.js index 4a61b61..813c5d0 100644 --- a/erpnext/telephony/doctype/voice_call_settings/voice_call_settings.js +++ b/erpnext/telephony/doctype/voice_call_settings/voice_call_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, Influx ERP Solutions // For license information, please see license.txt frappe.ui.form.on('Voice Call Settings', { diff --git a/erpnext/telephony/doctype/voice_call_settings/voice_call_settings.py b/erpnext/telephony/doctype/voice_call_settings/voice_call_settings.py index 9f9486f..8301658 100644 --- a/erpnext/telephony/doctype/voice_call_settings/voice_call_settings.py +++ b/erpnext/telephony/doctype/voice_call_settings/voice_call_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, Influx ERP Solutions # For license information, please see license.txt diff --git a/erpnext/templates/includes/footer/footer_powered.html b/erpnext/templates/includes/footer/footer_powered.html index faf5e92..f41f25f 100644 --- a/erpnext/templates/includes/footer/footer_powered.html +++ b/erpnext/templates/includes/footer/footer_powered.html @@ -1 +1 @@ -Powered by ERPNext +Powered by InfluxERP diff --git a/erpnext/templates/includes/product_list.js b/erpnext/templates/includes/product_list.js index 2f9d978..38ca770 100644 --- a/erpnext/templates/includes/product_list.js +++ b/erpnext/templates/includes/product_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt window.get_product_list = function() { diff --git a/erpnext/templates/includes/product_page.js b/erpnext/templates/includes/product_page.js index a3979d0..fb297f8 100644 --- a/erpnext/templates/includes/product_page.js +++ b/erpnext/templates/includes/product_page.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt frappe.ready(function() { diff --git a/erpnext/templates/includes/rfq.js b/erpnext/templates/includes/rfq.js index 37beb5a..1b1bd85 100644 --- a/erpnext/templates/includes/rfq.js +++ b/erpnext/templates/includes/rfq.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt window.doc={{ doc.as_json() }}; diff --git a/erpnext/templates/pages/cart.js b/erpnext/templates/pages/cart.js index fb2d159..4f29dab 100644 --- a/erpnext/templates/pages/cart.js +++ b/erpnext/templates/pages/cart.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, Influx ERP Solutions and Contributors // License: GNU General Public License v3. See license.txt // JS exclusive to /cart page diff --git a/erpnext/templates/pages/cart.py b/erpnext/templates/pages/cart.py index cadb46f..b592319 100644 --- a/erpnext/templates/pages/cart.py +++ b/erpnext/templates/pages/cart.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt no_cache = 1 diff --git a/erpnext/templates/pages/customer_reviews.py b/erpnext/templates/pages/customer_reviews.py index c1f0c93..4b339e6 100644 --- a/erpnext/templates/pages/customer_reviews.py +++ b/erpnext/templates/pages/customer_reviews.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, Influx ERP Solutions and Contributors # License: GNU General Public License v3. See license.txt import frappe diff --git a/erpnext/templates/pages/demo.html b/erpnext/templates/pages/demo.html index f9934a3..9bb4bc4 100644 --- a/erpnext/templates/pages/demo.html +++ b/erpnext/templates/pages/demo.html @@ -9,14 +9,14 @@ $(document).ready(function() { frappe.call({ "method": "login", args: { - usr: "demo@erpnext.com", + usr: "demo@influxerp.com", pwd: "Demo1234567!!!", lead_email: $("#lead-email").val(), }, callback: function(r) { $(me).prop("disabled", false); if(r.exc) { - alert("Error, please contact support@erpnext.com"); + alert("Error, please contact support@influxerp.com"); } else { console.log("Logged In"); window.location.href = "desk"; @@ -51,7 +51,7 @@ $(document).ready(function() { {% endblock %} {% block title %} -{{ _("ERPNext Demo") }} +{{ _("InfluxERP Demo") }} {% endblock %} {% block page_content %} @@ -59,7 +59,7 @@ $(document).ready(function() {
- {{ _("ERPNext Demo") }} + {{ _("InfluxERP Demo") }}

Some functionality is disabled for the demo and the data will be cleared regularly.

@@ -67,7 +67,7 @@ $(document).ready(function() {
-

Start a free 14-day trial +

Start a free 14-day trial