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 8dd1154..1cdc65f 100644 --- a/.github/helper/install.sh +++ b/.github/helper/install.sh @@ -8,7 +8,7 @@ sudo apt-get -y install redis-server libcups2-dev -qq pip install frappe-bench -git clone https://github.com/frappe/frappe --branch develop --depth 1 +git clone https://github.com/influxerp/frappe --branch develop --depth 1 bench init --skip-assets --frappe-path ~/frappe --python "$(which python)" frappe-bench mkdir ~/frappe-bench/sites/test_site @@ -25,7 +25,7 @@ mysql --host 127.0.0.1 --port 3306 -u root -e "UPDATE mysql.user SET Password=PA mysql --host 127.0.0.1 --port 3306 -u root -e "FLUSH PRIVILEGES" 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 @@ -40,7 +40,7 @@ sed -i 's/socketio:/# socketio:/g' Procfile sed -i 's/redis_socketio:/# redis_socketio:/g' Procfile bench get-app payments -bench get-app https://github.com/frappe/erpnext --branch develop +bench get-app https://github.com/solution/influxerp --branch develop bench setup requirements --dev bench start &> bench_run_logs.txt & diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 41ddcc6..daceb6a 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/README.md b/README.md index 2ccea16..f829d97 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -# Frappe HR +# InfluxERP HR Open Source, modern, and easy-to-use HR and Payroll Software for all organizations. -[![CI](https://github.com/frappe/hrms/actions/workflows/ci.yml/badge.svg?branch=develop)](https://github.com/frappe/hrms/actions/workflows/ci.yml) -[![codecov](https://codecov.io/gh/frappe/hrms/branch/develop/graph/badge.svg?token=0TwvyUg3I5)](https://codecov.io/gh/frappe/hrms) +[![CI](https://github.com/influxerp/hrms/actions/workflows/ci.yml/badge.svg?branch=develop)](https://github.com/influxerp/hrms/actions/workflows/ci.yml) +[![codecov](https://codecov.io/gh/influxerp/hrms/branch/develop/graph/badge.svg?token=0TwvyUg3I5)](https://codecov.io/gh/influxerp/hrms) ## Introduction -Frappe HR has everything you need to drive excellence within the company. It's a complete HRMS solution with over 13 different modules right from Employee Management, Onboarding, Leaves, to Payroll, Taxation, and more! +InfluxERP HR has everything you need to drive excellence within the company. It's a complete HRMS solution with over 13 different modules right from Employee Management, Onboarding, Leaves, to Payroll, Taxation, and more! ![HRMS](hrms.png) @@ -29,9 +29,9 @@ Frappe HR has everything you need to drive excellence within the company. It's a ## Installation -1. [Install bench](https://github.com/frappe/bench). -2. [Install ERPNext](https://github.com/frappe/bench#installation). -3. Once ERPNext is installed, add the hrms app to your bench by running +1. [Install bench](https://github.com/influxerp/bench). +2. [Install InfluxERP](https://github.com/influxerp/bench#installation). +3. Once InfluxERP is installed, add the hrms app to your bench by running ```sh $ bench get-app hrms @@ -43,10 +43,10 @@ Frappe HR has everything you need to drive excellence within the company. It's a ## Documentation -Complete documentation for Frappe HR is available at https://docs.erpnext.com/docs/user/manual/en/human-resources +Complete documentation for InfluxERP HR is available at https://docs.influxerp.com/docs/user/manual/en/human-resources ## License GNU GPL V3. (See [license.txt](license.txt) for more information). -The HR code is licensed as GNU General Public License (v3) and the copyright is owned by Frappe Technologies Pvt Ltd (Frappe) and Contributors. +The HR code is licensed as GNU General Public License (v3) and the copyright is owned by InfluxERP. diff --git a/hrms/controllers/employee_boarding_controller.py b/hrms/controllers/employee_boarding_controller.py index f3430e9..4eaabc0 100644 --- a/hrms/controllers/employee_boarding_controller.py +++ b/hrms/controllers/employee_boarding_controller.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/controllers/employee_reminders.py b/hrms/controllers/employee_reminders.py index 9d4d7f5..8e345ab 100644 --- a/hrms/controllers/employee_reminders.py +++ b/hrms/controllers/employee_reminders.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/controllers/tests/test_employee_reminders.py b/hrms/controllers/tests/test_employee_reminders.py index d1e56be..948d739 100644 --- a/hrms/controllers/tests/test_employee_reminders.py +++ b/hrms/controllers/tests/test_employee_reminders.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # License: GNU General Public License v3. See license.txt import unittest diff --git a/hrms/hooks.py b/hrms/hooks.py index 1490eb3..605fcbc 100644 --- a/hrms/hooks.py +++ b/hrms/hooks.py @@ -1,8 +1,8 @@ app_name = "hrms" -app_title = "Frappe HR" -app_publisher = "Frappe Technologies Pvt. Ltd." +app_title = "InfluxERP HR" +app_publisher = "InfluxERP" app_description = "Modern HR and Payroll Software" -app_email = "contact@frappe.io" +app_email = "contact@influxerp.com" app_license = "GNU General Public License (v3)" required_apps = ["erpnext"] @@ -226,7 +226,7 @@ regional_overrides = { }, } -# ERPNext doctypes for Global Search +# InfluxERP doctypes for Global Search global_search_doctypes = { "Default": [ {"doctype": "Salary Slip", "index": 19}, @@ -247,7 +247,7 @@ global_search_doctypes = { # # each overriding function accepts a `data` argument; # generated from the base implementation of the doctype dashboard, -# along with any modifications made in other Frappe apps +# along with any modifications made in other InfluxERP apps override_doctype_dashboards = { "Employee": "hrms.overrides.dashboard_overrides.get_dashboard_for_employee", "Holiday List": "hrms.overrides.dashboard_overrides.get_dashboard_for_holiday_list", diff --git a/hrms/hr/dashboard_chart_source/employees_by_age/employees_by_age.py b/hrms/hr/dashboard_chart_source/employees_by_age/employees_by_age.py index 8784fad..e067e69 100644 --- a/hrms/hr/dashboard_chart_source/employees_by_age/employees_by_age.py +++ b/hrms/hr/dashboard_chart_source/employees_by_age/employees_by_age.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/dashboard_chart_source/hiring_vs_attrition_count/hiring_vs_attrition_count.py b/hrms/hr/dashboard_chart_source/hiring_vs_attrition_count/hiring_vs_attrition_count.py index bddec58..3b265df 100644 --- a/hrms/hr/dashboard_chart_source/hiring_vs_attrition_count/hiring_vs_attrition_count.py +++ b/hrms/hr/dashboard_chart_source/hiring_vs_attrition_count/hiring_vs_attrition_count.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/appointment_letter/appointment_letter.js b/hrms/hr/doctype/appointment_letter/appointment_letter.js index 1642bcc..9d80256 100644 --- a/hrms/hr/doctype/appointment_letter/appointment_letter.js +++ b/hrms/hr/doctype/appointment_letter/appointment_letter.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Appointment Letter', { diff --git a/hrms/hr/doctype/appointment_letter/appointment_letter.py b/hrms/hr/doctype/appointment_letter/appointment_letter.py index a58589a..5e22dad 100644 --- a/hrms/hr/doctype/appointment_letter/appointment_letter.py +++ b/hrms/hr/doctype/appointment_letter/appointment_letter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/appointment_letter/test_appointment_letter.py b/hrms/hr/doctype/appointment_letter/test_appointment_letter.py index e0f65b4..e68608b 100644 --- a/hrms/hr/doctype/appointment_letter/test_appointment_letter.py +++ b/hrms/hr/doctype/appointment_letter/test_appointment_letter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, InfluxERP # See license.txt # import frappe diff --git a/hrms/hr/doctype/appointment_letter_content/appointment_letter_content.py b/hrms/hr/doctype/appointment_letter_content/appointment_letter_content.py index d158013..be1ab26 100644 --- a/hrms/hr/doctype/appointment_letter_content/appointment_letter_content.py +++ b/hrms/hr/doctype/appointment_letter_content/appointment_letter_content.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/appointment_letter_template/appointment_letter_template.js b/hrms/hr/doctype/appointment_letter_template/appointment_letter_template.js index 8270f7a..fba019a 100644 --- a/hrms/hr/doctype/appointment_letter_template/appointment_letter_template.js +++ b/hrms/hr/doctype/appointment_letter_template/appointment_letter_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Appointment Letter Template', { diff --git a/hrms/hr/doctype/appointment_letter_template/appointment_letter_template.py b/hrms/hr/doctype/appointment_letter_template/appointment_letter_template.py index 9ac726e..626bdca 100644 --- a/hrms/hr/doctype/appointment_letter_template/appointment_letter_template.py +++ b/hrms/hr/doctype/appointment_letter_template/appointment_letter_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/appointment_letter_template/test_appointment_letter_template.py b/hrms/hr/doctype/appointment_letter_template/test_appointment_letter_template.py index aa87da3..6deec08 100644 --- a/hrms/hr/doctype/appointment_letter_template/test_appointment_letter_template.py +++ b/hrms/hr/doctype/appointment_letter_template/test_appointment_letter_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, InfluxERP # See license.txt # import frappe diff --git a/hrms/hr/doctype/appraisal/appraisal.js b/hrms/hr/doctype/appraisal/appraisal.js index c0f80c6..a7cf057 100644 --- a/hrms/hr/doctype/appraisal/appraisal.js +++ b/hrms/hr/doctype/appraisal/appraisal.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.ui.form.on('Appraisal', { diff --git a/hrms/hr/doctype/appraisal/appraisal.py b/hrms/hr/doctype/appraisal/appraisal.py index 112ab75..10524c2 100644 --- a/hrms/hr/doctype/appraisal/appraisal.py +++ b/hrms/hr/doctype/appraisal/appraisal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/appraisal/test_appraisal.py b/hrms/hr/doctype/appraisal/test_appraisal.py index 13a39f3..05544ec 100644 --- a/hrms/hr/doctype/appraisal/test_appraisal.py +++ b/hrms/hr/doctype/appraisal/test_appraisal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import unittest diff --git a/hrms/hr/doctype/appraisal_goal/appraisal_goal.py b/hrms/hr/doctype/appraisal_goal/appraisal_goal.py index 3cbc918..36eb7ab 100644 --- a/hrms/hr/doctype/appraisal_goal/appraisal_goal.py +++ b/hrms/hr/doctype/appraisal_goal/appraisal_goal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/appraisal_template/appraisal_template.js b/hrms/hr/doctype/appraisal_template/appraisal_template.js index cc77292..3ed9c36 100644 --- a/hrms/hr/doctype/appraisal_template/appraisal_template.js +++ b/hrms/hr/doctype/appraisal_template/appraisal_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Appraisal Template', { diff --git a/hrms/hr/doctype/appraisal_template/appraisal_template.py b/hrms/hr/doctype/appraisal_template/appraisal_template.py index 6b5921e..c832d6b 100644 --- a/hrms/hr/doctype/appraisal_template/appraisal_template.py +++ b/hrms/hr/doctype/appraisal_template/appraisal_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/appraisal_template/test_appraisal_template.py b/hrms/hr/doctype/appraisal_template/test_appraisal_template.py index 560e992..c6b6dd9 100644 --- a/hrms/hr/doctype/appraisal_template/test_appraisal_template.py +++ b/hrms/hr/doctype/appraisal_template/test_appraisal_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import unittest diff --git a/hrms/hr/doctype/appraisal_template_goal/appraisal_template_goal.py b/hrms/hr/doctype/appraisal_template_goal/appraisal_template_goal.py index e6c5f64..37859e2 100644 --- a/hrms/hr/doctype/appraisal_template_goal/appraisal_template_goal.py +++ b/hrms/hr/doctype/appraisal_template_goal/appraisal_template_goal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/attendance/attendance.js b/hrms/hr/doctype/attendance/attendance.js index 7964078..3db34d5 100644 --- a/hrms/hr/doctype/attendance/attendance.js +++ b/hrms/hr/doctype/attendance/attendance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt cur_frm.add_fetch('employee', 'company', 'company'); diff --git a/hrms/hr/doctype/attendance/attendance.py b/hrms/hr/doctype/attendance/attendance.py index 4030de9..9561bdc 100644 --- a/hrms/hr/doctype/attendance/attendance.py +++ b/hrms/hr/doctype/attendance/attendance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/attendance/attendance_calendar.js b/hrms/hr/doctype/attendance/attendance_calendar.js index 6341c87..811e5ff 100644 --- a/hrms/hr/doctype/attendance/attendance_calendar.js +++ b/hrms/hr/doctype/attendance/attendance_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.views.calendar["Attendance"] = { options: { diff --git a/hrms/hr/doctype/attendance/test_attendance.py b/hrms/hr/doctype/attendance/test_attendance.py index 32cb9ab..896cbee 100644 --- a/hrms/hr/doctype/attendance/test_attendance.py +++ b/hrms/hr/doctype/attendance/test_attendance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import frappe diff --git a/hrms/hr/doctype/attendance_request/attendance_request.js b/hrms/hr/doctype/attendance_request/attendance_request.js index 2d25d14..7ba9249 100644 --- a/hrms/hr/doctype/attendance_request/attendance_request.js +++ b/hrms/hr/doctype/attendance_request/attendance_request.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt cur_frm.add_fetch('employee', 'company', 'company'); diff --git a/hrms/hr/doctype/attendance_request/attendance_request.py b/hrms/hr/doctype/attendance_request/attendance_request.py index d0b3f41..c024c4c 100644 --- a/hrms/hr/doctype/attendance_request/attendance_request.py +++ b/hrms/hr/doctype/attendance_request/attendance_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/attendance_request/test_attendance_request.py b/hrms/hr/doctype/attendance_request/test_attendance_request.py index ee436f5..9e1f31e 100644 --- a/hrms/hr/doctype/attendance_request/test_attendance_request.py +++ b/hrms/hr/doctype/attendance_request/test_attendance_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/compensatory_leave_request/compensatory_leave_request.js b/hrms/hr/doctype/compensatory_leave_request/compensatory_leave_request.js index 1baa1e0..3d5cd30 100644 --- a/hrms/hr/doctype/compensatory_leave_request/compensatory_leave_request.js +++ b/hrms/hr/doctype/compensatory_leave_request/compensatory_leave_request.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Compensatory Leave Request', { diff --git a/hrms/hr/doctype/compensatory_leave_request/compensatory_leave_request.py b/hrms/hr/doctype/compensatory_leave_request/compensatory_leave_request.py index 689cecc..8635548 100644 --- a/hrms/hr/doctype/compensatory_leave_request/compensatory_leave_request.py +++ b/hrms/hr/doctype/compensatory_leave_request/compensatory_leave_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/compensatory_leave_request/test_compensatory_leave_request.py b/hrms/hr/doctype/compensatory_leave_request/test_compensatory_leave_request.py index 2cdc77a..75c7ca3 100644 --- a/hrms/hr/doctype/compensatory_leave_request/test_compensatory_leave_request.py +++ b/hrms/hr/doctype/compensatory_leave_request/test_compensatory_leave_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/daily_work_summary/daily_work_summary.js b/hrms/hr/doctype/daily_work_summary/daily_work_summary.js index 8236480..d5f0616 100644 --- a/hrms/hr/doctype/daily_work_summary/daily_work_summary.js +++ b/hrms/hr/doctype/daily_work_summary/daily_work_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Daily Work Summary', { diff --git a/hrms/hr/doctype/daily_work_summary/daily_work_summary.py b/hrms/hr/doctype/daily_work_summary/daily_work_summary.py index babbbeb..a717035 100644 --- a/hrms/hr/doctype/daily_work_summary/daily_work_summary.py +++ b/hrms/hr/doctype/daily_work_summary/daily_work_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/daily_work_summary/test_daily_work_summary.py b/hrms/hr/doctype/daily_work_summary/test_daily_work_summary.py index dba51cc..b0ba163 100644 --- a/hrms/hr/doctype/daily_work_summary/test_daily_work_summary.py +++ b/hrms/hr/doctype/daily_work_summary/test_daily_work_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import os diff --git a/hrms/hr/doctype/daily_work_summary/test_data/test-reply.raw b/hrms/hr/doctype/daily_work_summary/test_data/test-reply.raw index ba01bc2..e092c97 100644 --- a/hrms/hr/doctype/daily_work_summary/test_data/test-reply.raw +++ b/hrms/hr/doctype/daily_work_summary/test_data/test-reply.raw @@ -19,17 +19,17 @@ Content-Type: text/plain; I built Daily Work Summary! -> On 10-Nov-2016, at 3:20 PM, Frappe wrote: +> On 10-Nov-2016, at 3:20 PM, InfluxERP wrote: >=20 > Please share what did you do today. If you reply by midnight, your = response will be recorded! >=20 > This email was sent to rmehta@gmail.com > Unsubscribe from this list = - -> Sent via ERPNext +> Sent via InfluxERP --Apple-Mail=_29597CF7-20DD-4184-B3FA-85582C5C4361 @@ -37,7 +37,7 @@ Content-Transfer-Encoding: 7bit Content-Type: text/html; charset=us-ascii -I built Daily Work Summary!

On 10-Nov-2016, at 3:20 PM, Frappe <test@erpnext.com> wrote:

+I built Daily Work Summary!

On 10-Nov-2016, at 3:20 PM, InfluxERP <test@influxerp.com> wrote:

@@ -57,13 +57,13 @@ Content-Type: text/html;
diff --git a/hrms/hr/doctype/daily_work_summary_group/daily_work_summary_group.js b/hrms/hr/doctype/daily_work_summary_group/daily_work_summary_group.js index 43206d5..9b8d6c0 100644 --- a/hrms/hr/doctype/daily_work_summary_group/daily_work_summary_group.js +++ b/hrms/hr/doctype/daily_work_summary_group/daily_work_summary_group.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Daily Work Summary Group', { diff --git a/hrms/hr/doctype/daily_work_summary_group/daily_work_summary_group.py b/hrms/hr/doctype/daily_work_summary_group/daily_work_summary_group.py index 3cef68d..c334d0d 100644 --- a/hrms/hr/doctype/daily_work_summary_group/daily_work_summary_group.py +++ b/hrms/hr/doctype/daily_work_summary_group/daily_work_summary_group.py @@ -1,4 +1,4 @@ -# # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# # Copyright (c) 2015, InfluxERP # # For license information, please see license.txt diff --git a/hrms/hr/doctype/daily_work_summary_group_user/daily_work_summary_group_user.py b/hrms/hr/doctype/daily_work_summary_group_user/daily_work_summary_group_user.py index 6e0809a..454efbb 100644 --- a/hrms/hr/doctype/daily_work_summary_group_user/daily_work_summary_group_user.py +++ b/hrms/hr/doctype/daily_work_summary_group_user/daily_work_summary_group_user.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/department_approver/department_approver.py b/hrms/hr/doctype/department_approver/department_approver.py index 87bdddd..04a4ad4 100644 --- a/hrms/hr/doctype/department_approver/department_approver.py +++ b/hrms/hr/doctype/department_approver/department_approver.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/designation_skill/designation_skill.py b/hrms/hr/doctype/designation_skill/designation_skill.py index c35223b..9303631 100644 --- a/hrms/hr/doctype/designation_skill/designation_skill.py +++ b/hrms/hr/doctype/designation_skill/designation_skill.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_advance/employee_advance.js b/hrms/hr/doctype/employee_advance/employee_advance.js index 0a88833..586a988 100644 --- a/hrms/hr/doctype/employee_advance/employee_advance.js +++ b/hrms/hr/doctype/employee_advance/employee_advance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Advance', { diff --git a/hrms/hr/doctype/employee_advance/employee_advance.py b/hrms/hr/doctype/employee_advance/employee_advance.py index 8b4d313..c2923d4 100644 --- a/hrms/hr/doctype/employee_advance/employee_advance.py +++ b/hrms/hr/doctype/employee_advance/employee_advance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_advance/test_employee_advance.py b/hrms/hr/doctype/employee_advance/test_employee_advance.py index d80ebbf..0da71ce 100644 --- a/hrms/hr/doctype/employee_advance/test_employee_advance.py +++ b/hrms/hr/doctype/employee_advance/test_employee_advance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_attendance_tool/employee_attendance_tool.py b/hrms/hr/doctype/employee_attendance_tool/employee_attendance_tool.py index 43665cc..2866255 100644 --- a/hrms/hr/doctype/employee_attendance_tool/employee_attendance_tool.py +++ b/hrms/hr/doctype/employee_attendance_tool/employee_attendance_tool.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_boarding_activity/employee_boarding_activity.py b/hrms/hr/doctype/employee_boarding_activity/employee_boarding_activity.py index e824081..b064549 100644 --- a/hrms/hr/doctype/employee_boarding_activity/employee_boarding_activity.py +++ b/hrms/hr/doctype/employee_boarding_activity/employee_boarding_activity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_checkin/employee_checkin.js b/hrms/hr/doctype/employee_checkin/employee_checkin.js index c2403ca..24cb936 100644 --- a/hrms/hr/doctype/employee_checkin/employee_checkin.js +++ b/hrms/hr/doctype/employee_checkin/employee_checkin.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Checkin', { diff --git a/hrms/hr/doctype/employee_checkin/employee_checkin.py b/hrms/hr/doctype/employee_checkin/employee_checkin.py index a46a556..47ff8ef 100644 --- a/hrms/hr/doctype/employee_checkin/employee_checkin.py +++ b/hrms/hr/doctype/employee_checkin/employee_checkin.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_checkin/test_employee_checkin.py b/hrms/hr/doctype/employee_checkin/test_employee_checkin.py index 8f4cb65..e3462fa 100644 --- a/hrms/hr/doctype/employee_checkin/test_employee_checkin.py +++ b/hrms/hr/doctype/employee_checkin/test_employee_checkin.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_grade/employee_grade.js b/hrms/hr/doctype/employee_grade/employee_grade.js index 6c67f54..43ae0f2 100644 --- a/hrms/hr/doctype/employee_grade/employee_grade.js +++ b/hrms/hr/doctype/employee_grade/employee_grade.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Grade', { diff --git a/hrms/hr/doctype/employee_grade/employee_grade.py b/hrms/hr/doctype/employee_grade/employee_grade.py index 41b7915..54aedea 100644 --- a/hrms/hr/doctype/employee_grade/employee_grade.py +++ b/hrms/hr/doctype/employee_grade/employee_grade.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_grade/test_employee_grade.py b/hrms/hr/doctype/employee_grade/test_employee_grade.py index a70d685..0839c9b 100644 --- a/hrms/hr/doctype/employee_grade/test_employee_grade.py +++ b/hrms/hr/doctype/employee_grade/test_employee_grade.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_grievance/employee_grievance.js b/hrms/hr/doctype/employee_grievance/employee_grievance.js index 25c5bad..946ab49 100644 --- a/hrms/hr/doctype/employee_grievance/employee_grievance.js +++ b/hrms/hr/doctype/employee_grievance/employee_grievance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Grievance', { diff --git a/hrms/hr/doctype/employee_grievance/employee_grievance.py b/hrms/hr/doctype/employee_grievance/employee_grievance.py index 45de79f..bfc7169 100644 --- a/hrms/hr/doctype/employee_grievance/employee_grievance.py +++ b/hrms/hr/doctype/employee_grievance/employee_grievance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt import frappe diff --git a/hrms/hr/doctype/employee_grievance/test_employee_grievance.py b/hrms/hr/doctype/employee_grievance/test_employee_grievance.py index cf6a915..6282af5 100644 --- a/hrms/hr/doctype/employee_grievance/test_employee_grievance.py +++ b/hrms/hr/doctype/employee_grievance/test_employee_grievance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_health_insurance/employee_health_insurance.js b/hrms/hr/doctype/employee_health_insurance/employee_health_insurance.js index 69d46e2..f336235 100644 --- a/hrms/hr/doctype/employee_health_insurance/employee_health_insurance.js +++ b/hrms/hr/doctype/employee_health_insurance/employee_health_insurance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Health Insurance', { diff --git a/hrms/hr/doctype/employee_health_insurance/employee_health_insurance.py b/hrms/hr/doctype/employee_health_insurance/employee_health_insurance.py index 4a8c437..c0bf8b5 100644 --- a/hrms/hr/doctype/employee_health_insurance/employee_health_insurance.py +++ b/hrms/hr/doctype/employee_health_insurance/employee_health_insurance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_health_insurance/test_employee_health_insurance.py b/hrms/hr/doctype/employee_health_insurance/test_employee_health_insurance.py index 4f042b7..7cc5a1d 100644 --- a/hrms/hr/doctype/employee_health_insurance/test_employee_health_insurance.py +++ b/hrms/hr/doctype/employee_health_insurance/test_employee_health_insurance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_loan/employee_loan.js b/hrms/hr/doctype/employee_loan/employee_loan.js index f1e3dd9..5500851 100644 --- a/hrms/hr/doctype/employee_loan/employee_loan.js +++ b/hrms/hr/doctype/employee_loan/employee_loan.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Loan', { diff --git a/hrms/hr/doctype/employee_onboarding/employee_onboarding.js b/hrms/hr/doctype/employee_onboarding/employee_onboarding.js index 506e374..78ef9f8 100644 --- a/hrms/hr/doctype/employee_onboarding/employee_onboarding.js +++ b/hrms/hr/doctype/employee_onboarding/employee_onboarding.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Onboarding', { diff --git a/hrms/hr/doctype/employee_onboarding/employee_onboarding.py b/hrms/hr/doctype/employee_onboarding/employee_onboarding.py index 3fb5a64..bba2209 100644 --- a/hrms/hr/doctype/employee_onboarding/employee_onboarding.py +++ b/hrms/hr/doctype/employee_onboarding/employee_onboarding.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_onboarding/test_employee_onboarding.py b/hrms/hr/doctype/employee_onboarding/test_employee_onboarding.py index 2aede16..1aebd01 100644 --- a/hrms/hr/doctype/employee_onboarding/test_employee_onboarding.py +++ b/hrms/hr/doctype/employee_onboarding/test_employee_onboarding.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_onboarding_template/employee_onboarding_template.js b/hrms/hr/doctype/employee_onboarding_template/employee_onboarding_template.js index 5e1b6e9..568f71d 100644 --- a/hrms/hr/doctype/employee_onboarding_template/employee_onboarding_template.js +++ b/hrms/hr/doctype/employee_onboarding_template/employee_onboarding_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Onboarding Template', { diff --git a/hrms/hr/doctype/employee_onboarding_template/employee_onboarding_template.py b/hrms/hr/doctype/employee_onboarding_template/employee_onboarding_template.py index 199013a..2fd2770 100644 --- a/hrms/hr/doctype/employee_onboarding_template/employee_onboarding_template.py +++ b/hrms/hr/doctype/employee_onboarding_template/employee_onboarding_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_onboarding_template/test_employee_onboarding_template.py b/hrms/hr/doctype/employee_onboarding_template/test_employee_onboarding_template.py index db09011..985e4b7 100644 --- a/hrms/hr/doctype/employee_onboarding_template/test_employee_onboarding_template.py +++ b/hrms/hr/doctype/employee_onboarding_template/test_employee_onboarding_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_promotion/employee_promotion.js b/hrms/hr/doctype/employee_promotion/employee_promotion.js index 3b3b12e..a6023f3 100644 --- a/hrms/hr/doctype/employee_promotion/employee_promotion.js +++ b/hrms/hr/doctype/employee_promotion/employee_promotion.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt {% include 'hrms/hr/employee_property_update.js' %} diff --git a/hrms/hr/doctype/employee_promotion/employee_promotion.py b/hrms/hr/doctype/employee_promotion/employee_promotion.py index e0cc316..ae9160f 100644 --- a/hrms/hr/doctype/employee_promotion/employee_promotion.py +++ b/hrms/hr/doctype/employee_promotion/employee_promotion.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_promotion/test_employee_promotion.py b/hrms/hr/doctype/employee_promotion/test_employee_promotion.py index edd2134..876b07a 100644 --- a/hrms/hr/doctype/employee_promotion/test_employee_promotion.py +++ b/hrms/hr/doctype/employee_promotion/test_employee_promotion.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_property_history/employee_property_history.py b/hrms/hr/doctype/employee_property_history/employee_property_history.py index 345899e..04fb5d7 100644 --- a/hrms/hr/doctype/employee_property_history/employee_property_history.py +++ b/hrms/hr/doctype/employee_property_history/employee_property_history.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_referral/employee_referral.js b/hrms/hr/doctype/employee_referral/employee_referral.js index 9f822d0..e5405d4 100644 --- a/hrms/hr/doctype/employee_referral/employee_referral.js +++ b/hrms/hr/doctype/employee_referral/employee_referral.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Employee Referral", { diff --git a/hrms/hr/doctype/employee_referral/employee_referral.py b/hrms/hr/doctype/employee_referral/employee_referral.py index f813e1c..4f316bb 100644 --- a/hrms/hr/doctype/employee_referral/employee_referral.py +++ b/hrms/hr/doctype/employee_referral/employee_referral.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_referral/test_employee_referral.py b/hrms/hr/doctype/employee_referral/test_employee_referral.py index db0e31c..d37eef7 100644 --- a/hrms/hr/doctype/employee_referral/test_employee_referral.py +++ b/hrms/hr/doctype/employee_referral/test_employee_referral.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_separation/employee_separation.js b/hrms/hr/doctype/employee_separation/employee_separation.js index d2829af..bf26643 100644 --- a/hrms/hr/doctype/employee_separation/employee_separation.js +++ b/hrms/hr/doctype/employee_separation/employee_separation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Separation', { diff --git a/hrms/hr/doctype/employee_separation/employee_separation.py b/hrms/hr/doctype/employee_separation/employee_separation.py index 6ecfb84..0a671a1 100644 --- a/hrms/hr/doctype/employee_separation/employee_separation.py +++ b/hrms/hr/doctype/employee_separation/employee_separation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_separation/test_employee_separation.py b/hrms/hr/doctype/employee_separation/test_employee_separation.py index df31d09..983017c 100644 --- a/hrms/hr/doctype/employee_separation/test_employee_separation.py +++ b/hrms/hr/doctype/employee_separation/test_employee_separation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_separation_template/employee_separation_template.js b/hrms/hr/doctype/employee_separation_template/employee_separation_template.js index 172ff9f..f48a104 100644 --- a/hrms/hr/doctype/employee_separation_template/employee_separation_template.js +++ b/hrms/hr/doctype/employee_separation_template/employee_separation_template.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Separation Template', { diff --git a/hrms/hr/doctype/employee_separation_template/employee_separation_template.py b/hrms/hr/doctype/employee_separation_template/employee_separation_template.py index 70b84b1..b229469 100644 --- a/hrms/hr/doctype/employee_separation_template/employee_separation_template.py +++ b/hrms/hr/doctype/employee_separation_template/employee_separation_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_separation_template/test_employee_separation_template.py b/hrms/hr/doctype/employee_separation_template/test_employee_separation_template.py index 6a0c947..ce8c342 100644 --- a/hrms/hr/doctype/employee_separation_template/test_employee_separation_template.py +++ b/hrms/hr/doctype/employee_separation_template/test_employee_separation_template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employee_skill/employee_skill.py b/hrms/hr/doctype/employee_skill/employee_skill.py index 13bee34..ef38a1b 100644 --- a/hrms/hr/doctype/employee_skill/employee_skill.py +++ b/hrms/hr/doctype/employee_skill/employee_skill.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_skill_map/employee_skill_map.js b/hrms/hr/doctype/employee_skill_map/employee_skill_map.js index b82b18d..db45a2d 100644 --- a/hrms/hr/doctype/employee_skill_map/employee_skill_map.js +++ b/hrms/hr/doctype/employee_skill_map/employee_skill_map.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Skill Map', { diff --git a/hrms/hr/doctype/employee_skill_map/employee_skill_map.py b/hrms/hr/doctype/employee_skill_map/employee_skill_map.py index ea7da9e..15d4f3e 100644 --- a/hrms/hr/doctype/employee_skill_map/employee_skill_map.py +++ b/hrms/hr/doctype/employee_skill_map/employee_skill_map.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_training/employee_training.py b/hrms/hr/doctype/employee_training/employee_training.py index cd92dd6..f874ff4 100644 --- a/hrms/hr/doctype/employee_training/employee_training.py +++ b/hrms/hr/doctype/employee_training/employee_training.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_transfer/employee_transfer.js b/hrms/hr/doctype/employee_transfer/employee_transfer.js index 762672b..8a3491c 100644 --- a/hrms/hr/doctype/employee_transfer/employee_transfer.js +++ b/hrms/hr/doctype/employee_transfer/employee_transfer.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt {% include 'hrms/hr/employee_property_update.js' %} diff --git a/hrms/hr/doctype/employee_transfer/employee_transfer.py b/hrms/hr/doctype/employee_transfer/employee_transfer.py index 2cdb492..d47534e 100644 --- a/hrms/hr/doctype/employee_transfer/employee_transfer.py +++ b/hrms/hr/doctype/employee_transfer/employee_transfer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/employee_transfer/test_employee_transfer.py b/hrms/hr/doctype/employee_transfer/test_employee_transfer.py index e2707cf..44c74bb 100644 --- a/hrms/hr/doctype/employee_transfer/test_employee_transfer.py +++ b/hrms/hr/doctype/employee_transfer/test_employee_transfer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/employment_type/employment_type.py b/hrms/hr/doctype/employment_type/employment_type.py index b2262c0..23671dc 100644 --- a/hrms/hr/doctype/employment_type/employment_type.py +++ b/hrms/hr/doctype/employment_type/employment_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/employment_type/test_employment_type.py b/hrms/hr/doctype/employment_type/test_employment_type.py index fdf6965..a90662a 100644 --- a/hrms/hr/doctype/employment_type/test_employment_type.py +++ b/hrms/hr/doctype/employment_type/test_employment_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/hr/doctype/exit_interview/exit_interview.js b/hrms/hr/doctype/exit_interview/exit_interview.js index c4fefd0..459e7aa 100644 --- a/hrms/hr/doctype/exit_interview/exit_interview.js +++ b/hrms/hr/doctype/exit_interview/exit_interview.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Exit Interview', { diff --git a/hrms/hr/doctype/exit_interview/exit_interview.py b/hrms/hr/doctype/exit_interview/exit_interview.py index d6b71e0..8c389ff 100644 --- a/hrms/hr/doctype/exit_interview/exit_interview.py +++ b/hrms/hr/doctype/exit_interview/exit_interview.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt import frappe diff --git a/hrms/hr/doctype/exit_interview/test_exit_interview.py b/hrms/hr/doctype/exit_interview/test_exit_interview.py index 2da8598..b92a18e 100644 --- a/hrms/hr/doctype/exit_interview/test_exit_interview.py +++ b/hrms/hr/doctype/exit_interview/test_exit_interview.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt import os diff --git a/hrms/hr/doctype/expected_skill_set/expected_skill_set.py b/hrms/hr/doctype/expected_skill_set/expected_skill_set.py index 0062ba9..d569f93 100644 --- a/hrms/hr/doctype/expected_skill_set/expected_skill_set.py +++ b/hrms/hr/doctype/expected_skill_set/expected_skill_set.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/expense_claim/expense_claim.js b/hrms/hr/doctype/expense_claim/expense_claim.js index 166c7fc..a650c2e 100644 --- a/hrms/hr/doctype/expense_claim/expense_claim.js +++ b/hrms/hr/doctype/expense_claim/expense_claim.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.provide("hrms.hr"); diff --git a/hrms/hr/doctype/expense_claim/expense_claim.py b/hrms/hr/doctype/expense_claim/expense_claim.py index 1a37397..b0b111f 100644 --- a/hrms/hr/doctype/expense_claim/expense_claim.py +++ b/hrms/hr/doctype/expense_claim/expense_claim.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/expense_claim/test_expense_claim.py b/hrms/hr/doctype/expense_claim/test_expense_claim.py index 36d8747..d5c95c4 100644 --- a/hrms/hr/doctype/expense_claim/test_expense_claim.py +++ b/hrms/hr/doctype/expense_claim/test_expense_claim.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import unittest diff --git a/hrms/hr/doctype/expense_claim_account/expense_claim_account.py b/hrms/hr/doctype/expense_claim_account/expense_claim_account.py index 0d46a22..7698dcc 100644 --- a/hrms/hr/doctype/expense_claim_account/expense_claim_account.py +++ b/hrms/hr/doctype/expense_claim_account/expense_claim_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/expense_claim_advance/expense_claim_advance.py b/hrms/hr/doctype/expense_claim_advance/expense_claim_advance.py index 68b2963..273168f 100644 --- a/hrms/hr/doctype/expense_claim_advance/expense_claim_advance.py +++ b/hrms/hr/doctype/expense_claim_advance/expense_claim_advance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/expense_claim_detail/expense_claim_detail.py b/hrms/hr/doctype/expense_claim_detail/expense_claim_detail.py index f58f128..88ceb3e 100644 --- a/hrms/hr/doctype/expense_claim_detail/expense_claim_detail.py +++ b/hrms/hr/doctype/expense_claim_detail/expense_claim_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/expense_claim_type/expense_claim_type.js b/hrms/hr/doctype/expense_claim_type/expense_claim_type.js index d007e1a..82b42f0 100644 --- a/hrms/hr/doctype/expense_claim_type/expense_claim_type.js +++ b/hrms/hr/doctype/expense_claim_type/expense_claim_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Expense Claim Type", { diff --git a/hrms/hr/doctype/expense_claim_type/expense_claim_type.py b/hrms/hr/doctype/expense_claim_type/expense_claim_type.py index 6d29f7d..625e7b5 100644 --- a/hrms/hr/doctype/expense_claim_type/expense_claim_type.py +++ b/hrms/hr/doctype/expense_claim_type/expense_claim_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/expense_claim_type/test_expense_claim_type.py b/hrms/hr/doctype/expense_claim_type/test_expense_claim_type.py index 62348e2..5623744 100644 --- a/hrms/hr/doctype/expense_claim_type/test_expense_claim_type.py +++ b/hrms/hr/doctype/expense_claim_type/test_expense_claim_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import unittest diff --git a/hrms/hr/doctype/expense_taxes_and_charges/expense_taxes_and_charges.py b/hrms/hr/doctype/expense_taxes_and_charges/expense_taxes_and_charges.py index a28ef57..48c5ab6 100644 --- a/hrms/hr/doctype/expense_taxes_and_charges/expense_taxes_and_charges.py +++ b/hrms/hr/doctype/expense_taxes_and_charges/expense_taxes_and_charges.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/full_and_final_asset/full_and_final_asset.js b/hrms/hr/doctype/full_and_final_asset/full_and_final_asset.js index 1965b46..5fe5346 100644 --- a/hrms/hr/doctype/full_and_final_asset/full_and_final_asset.js +++ b/hrms/hr/doctype/full_and_final_asset/full_and_final_asset.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Full and Final Asset', { diff --git a/hrms/hr/doctype/full_and_final_asset/full_and_final_asset.py b/hrms/hr/doctype/full_and_final_asset/full_and_final_asset.py index 661af7d..85d4036 100644 --- a/hrms/hr/doctype/full_and_final_asset/full_and_final_asset.py +++ b/hrms/hr/doctype/full_and_final_asset/full_and_final_asset.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt # import frappe diff --git a/hrms/hr/doctype/full_and_final_asset/test_full_and_final_asset.py b/hrms/hr/doctype/full_and_final_asset/test_full_and_final_asset.py index 9afe0f2..e406492 100644 --- a/hrms/hr/doctype/full_and_final_asset/test_full_and_final_asset.py +++ b/hrms/hr/doctype/full_and_final_asset/test_full_and_final_asset.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt # import frappe diff --git a/hrms/hr/doctype/full_and_final_outstanding_statement/full_and_final_outstanding_statement.py b/hrms/hr/doctype/full_and_final_outstanding_statement/full_and_final_outstanding_statement.py index 4b239ab..f05b0ee 100644 --- a/hrms/hr/doctype/full_and_final_outstanding_statement/full_and_final_outstanding_statement.py +++ b/hrms/hr/doctype/full_and_final_outstanding_statement/full_and_final_outstanding_statement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt # import frappe diff --git a/hrms/hr/doctype/full_and_final_statement/full_and_final_statement.js b/hrms/hr/doctype/full_and_final_statement/full_and_final_statement.js index 7646479..ffe6d0d 100644 --- a/hrms/hr/doctype/full_and_final_statement/full_and_final_statement.js +++ b/hrms/hr/doctype/full_and_final_statement/full_and_final_statement.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Full and Final Statement', { diff --git a/hrms/hr/doctype/full_and_final_statement/full_and_final_statement.py b/hrms/hr/doctype/full_and_final_statement/full_and_final_statement.py index f5d8fa5..c9f71fb 100644 --- a/hrms/hr/doctype/full_and_final_statement/full_and_final_statement.py +++ b/hrms/hr/doctype/full_and_final_statement/full_and_final_statement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt import frappe diff --git a/hrms/hr/doctype/full_and_final_statement/test_full_and_final_statement.py b/hrms/hr/doctype/full_and_final_statement/test_full_and_final_statement.py index 2e2f0d4..c6d6907 100644 --- a/hrms/hr/doctype/full_and_final_statement/test_full_and_final_statement.py +++ b/hrms/hr/doctype/full_and_final_statement/test_full_and_final_statement.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/grievance_type/grievance_type.js b/hrms/hr/doctype/grievance_type/grievance_type.js index 425f2fd..0982c57 100644 --- a/hrms/hr/doctype/grievance_type/grievance_type.js +++ b/hrms/hr/doctype/grievance_type/grievance_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Grievance Type', { diff --git a/hrms/hr/doctype/grievance_type/grievance_type.py b/hrms/hr/doctype/grievance_type/grievance_type.py index 5d8d41c..a7bcfe9 100644 --- a/hrms/hr/doctype/grievance_type/grievance_type.py +++ b/hrms/hr/doctype/grievance_type/grievance_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt # import frappe diff --git a/hrms/hr/doctype/grievance_type/test_grievance_type.py b/hrms/hr/doctype/grievance_type/test_grievance_type.py index 481f4e5..1029c86 100644 --- a/hrms/hr/doctype/grievance_type/test_grievance_type.py +++ b/hrms/hr/doctype/grievance_type/test_grievance_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt # import frappe diff --git a/hrms/hr/doctype/hr_settings/hr_settings.js b/hrms/hr/doctype/hr_settings/hr_settings.js index 6e26a1f..4cf667a 100644 --- a/hrms/hr/doctype/hr_settings/hr_settings.js +++ b/hrms/hr/doctype/hr_settings/hr_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('HR Settings', { diff --git a/hrms/hr/doctype/hr_settings/hr_settings.py b/hrms/hr/doctype/hr_settings/hr_settings.py index b56f3db..dae2830 100644 --- a/hrms/hr/doctype/hr_settings/hr_settings.py +++ b/hrms/hr/doctype/hr_settings/hr_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/hrms/hr/doctype/hr_settings/test_hr_settings.py b/hrms/hr/doctype/hr_settings/test_hr_settings.py index 7e13213..dd7e961 100644 --- a/hrms/hr/doctype/hr_settings/test_hr_settings.py +++ b/hrms/hr/doctype/hr_settings/test_hr_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/identification_document_type/identification_document_type.js b/hrms/hr/doctype/identification_document_type/identification_document_type.js index 351cf9d..5c41e61 100644 --- a/hrms/hr/doctype/identification_document_type/identification_document_type.js +++ b/hrms/hr/doctype/identification_document_type/identification_document_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Identification Document Type', { diff --git a/hrms/hr/doctype/identification_document_type/identification_document_type.py b/hrms/hr/doctype/identification_document_type/identification_document_type.py index 3bfcfaa..b7635d4 100644 --- a/hrms/hr/doctype/identification_document_type/identification_document_type.py +++ b/hrms/hr/doctype/identification_document_type/identification_document_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/identification_document_type/test_identification_document_type.py b/hrms/hr/doctype/identification_document_type/test_identification_document_type.py index 3e8f7ab..68b6356 100644 --- a/hrms/hr/doctype/identification_document_type/test_identification_document_type.py +++ b/hrms/hr/doctype/identification_document_type/test_identification_document_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/interest/interest.js b/hrms/hr/doctype/interest/interest.js index 70e1b6a..078593f 100644 --- a/hrms/hr/doctype/interest/interest.js +++ b/hrms/hr/doctype/interest/interest.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Interest', { diff --git a/hrms/hr/doctype/interest/interest.py b/hrms/hr/doctype/interest/interest.py index 3563f7f..5889049 100644 --- a/hrms/hr/doctype/interest/interest.py +++ b/hrms/hr/doctype/interest/interest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/interest/test_interest.py b/hrms/hr/doctype/interest/test_interest.py index eacb57f..f9ba0d2 100644 --- a/hrms/hr/doctype/interest/test_interest.py +++ b/hrms/hr/doctype/interest/test_interest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/interview/interview.js b/hrms/hr/doctype/interview/interview.js index 6866b50..0db463b 100644 --- a/hrms/hr/doctype/interview/interview.js +++ b/hrms/hr/doctype/interview/interview.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Interview', { diff --git a/hrms/hr/doctype/interview/interview.py b/hrms/hr/doctype/interview/interview.py index d730428..084cead 100644 --- a/hrms/hr/doctype/interview/interview.py +++ b/hrms/hr/doctype/interview/interview.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/interview/test_interview.py b/hrms/hr/doctype/interview/test_interview.py index c1cee01..546f626 100644 --- a/hrms/hr/doctype/interview/test_interview.py +++ b/hrms/hr/doctype/interview/test_interview.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt import datetime diff --git a/hrms/hr/doctype/interview_detail/interview_detail.js b/hrms/hr/doctype/interview_detail/interview_detail.js index 88518ca..2796c83 100644 --- a/hrms/hr/doctype/interview_detail/interview_detail.js +++ b/hrms/hr/doctype/interview_detail/interview_detail.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Interview Detail', { diff --git a/hrms/hr/doctype/interview_detail/interview_detail.py b/hrms/hr/doctype/interview_detail/interview_detail.py index d44e29a..0d802cc 100644 --- a/hrms/hr/doctype/interview_detail/interview_detail.py +++ b/hrms/hr/doctype/interview_detail/interview_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/interview_detail/test_interview_detail.py b/hrms/hr/doctype/interview_detail/test_interview_detail.py index 68a1f72..da1823a 100644 --- a/hrms/hr/doctype/interview_detail/test_interview_detail.py +++ b/hrms/hr/doctype/interview_detail/test_interview_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt # import frappe diff --git a/hrms/hr/doctype/interview_feedback/interview_feedback.js b/hrms/hr/doctype/interview_feedback/interview_feedback.js index 2c5b6a7..3634d36 100644 --- a/hrms/hr/doctype/interview_feedback/interview_feedback.js +++ b/hrms/hr/doctype/interview_feedback/interview_feedback.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Interview Feedback', { diff --git a/hrms/hr/doctype/interview_feedback/interview_feedback.py b/hrms/hr/doctype/interview_feedback/interview_feedback.py index 5bb498f..0f17a6d 100644 --- a/hrms/hr/doctype/interview_feedback/interview_feedback.py +++ b/hrms/hr/doctype/interview_feedback/interview_feedback.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/interview_feedback/test_interview_feedback.py b/hrms/hr/doctype/interview_feedback/test_interview_feedback.py index 8cfc0e6..de7b474 100644 --- a/hrms/hr/doctype/interview_feedback/test_interview_feedback.py +++ b/hrms/hr/doctype/interview_feedback/test_interview_feedback.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/interview_round/interview_round.js b/hrms/hr/doctype/interview_round/interview_round.js index 115dd86..348e157 100644 --- a/hrms/hr/doctype/interview_round/interview_round.js +++ b/hrms/hr/doctype/interview_round/interview_round.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Interview Round", { diff --git a/hrms/hr/doctype/interview_round/interview_round.py b/hrms/hr/doctype/interview_round/interview_round.py index 83dbf0e..bfed45d 100644 --- a/hrms/hr/doctype/interview_round/interview_round.py +++ b/hrms/hr/doctype/interview_round/interview_round.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/interview_round/test_interview_round.py b/hrms/hr/doctype/interview_round/test_interview_round.py index 9568165..955ad75 100644 --- a/hrms/hr/doctype/interview_round/test_interview_round.py +++ b/hrms/hr/doctype/interview_round/test_interview_round.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/interview_type/interview_type.js b/hrms/hr/doctype/interview_type/interview_type.js index af77b52..b101e40 100644 --- a/hrms/hr/doctype/interview_type/interview_type.js +++ b/hrms/hr/doctype/interview_type/interview_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2021, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Interview Type', { diff --git a/hrms/hr/doctype/interview_type/interview_type.py b/hrms/hr/doctype/interview_type/interview_type.py index f5ebda4..6c856e0 100644 --- a/hrms/hr/doctype/interview_type/interview_type.py +++ b/hrms/hr/doctype/interview_type/interview_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/interview_type/test_interview_type.py b/hrms/hr/doctype/interview_type/test_interview_type.py index 96fdfca..a5a48b6 100644 --- a/hrms/hr/doctype/interview_type/test_interview_type.py +++ b/hrms/hr/doctype/interview_type/test_interview_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # See license.txt # import frappe diff --git a/hrms/hr/doctype/interviewer/interviewer.py b/hrms/hr/doctype/interviewer/interviewer.py index 2dc4a14..fb1727f 100644 --- a/hrms/hr/doctype/interviewer/interviewer.py +++ b/hrms/hr/doctype/interviewer/interviewer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/job_applicant/job_applicant.js b/hrms/hr/doctype/job_applicant/job_applicant.js index d7f9c83..6982d40 100644 --- a/hrms/hr/doctype/job_applicant/job_applicant.js +++ b/hrms/hr/doctype/job_applicant/job_applicant.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt // For license information, please see license.txt diff --git a/hrms/hr/doctype/job_applicant/job_applicant.py b/hrms/hr/doctype/job_applicant/job_applicant.py index a77f71c..186ced8 100644 --- a/hrms/hr/doctype/job_applicant/job_applicant.py +++ b/hrms/hr/doctype/job_applicant/job_applicant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/hrms/hr/doctype/job_applicant/job_applicant_list.js b/hrms/hr/doctype/job_applicant/job_applicant_list.js index 2ad0d59..a0abd40 100644 --- a/hrms/hr/doctype/job_applicant/job_applicant_list.js +++ b/hrms/hr/doctype/job_applicant/job_applicant_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2020, InfluxERP // MIT License. See license.txt frappe.listview_settings['Job Applicant'] = { diff --git a/hrms/hr/doctype/job_applicant/test_job_applicant.py b/hrms/hr/doctype/job_applicant/test_job_applicant.py index a22bd04..31b2083 100644 --- a/hrms/hr/doctype/job_applicant/test_job_applicant.py +++ b/hrms/hr/doctype/job_applicant/test_job_applicant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import unittest diff --git a/hrms/hr/doctype/job_applicant_source/job_applicant_source.js b/hrms/hr/doctype/job_applicant_source/job_applicant_source.js index 8725f23..d76769d 100644 --- a/hrms/hr/doctype/job_applicant_source/job_applicant_source.js +++ b/hrms/hr/doctype/job_applicant_source/job_applicant_source.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Job Applicant Source', { diff --git a/hrms/hr/doctype/job_applicant_source/job_applicant_source.py b/hrms/hr/doctype/job_applicant_source/job_applicant_source.py index 1f208c1..51ea72f 100644 --- a/hrms/hr/doctype/job_applicant_source/job_applicant_source.py +++ b/hrms/hr/doctype/job_applicant_source/job_applicant_source.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/job_applicant_source/test_job_applicant_source.py b/hrms/hr/doctype/job_applicant_source/test_job_applicant_source.py index cee5daf..e9ed0df 100644 --- a/hrms/hr/doctype/job_applicant_source/test_job_applicant_source.py +++ b/hrms/hr/doctype/job_applicant_source/test_job_applicant_source.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/job_offer/job_offer.js b/hrms/hr/doctype/job_offer/job_offer.js index b246ed5..96eb66b 100644 --- a/hrms/hr/doctype/job_offer/job_offer.js +++ b/hrms/hr/doctype/job_offer/job_offer.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.provide("erpnext.job_offer"); diff --git a/hrms/hr/doctype/job_offer/job_offer.py b/hrms/hr/doctype/job_offer/job_offer.py index d9c2951..a62e55f 100644 --- a/hrms/hr/doctype/job_offer/job_offer.py +++ b/hrms/hr/doctype/job_offer/job_offer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, InfluxERP and contributors # For license information, please see license.txt diff --git a/hrms/hr/doctype/job_offer/job_offer_list.js b/hrms/hr/doctype/job_offer/job_offer_list.js index 4fa5be7..bd55233 100644 --- a/hrms/hr/doctype/job_offer/job_offer_list.js +++ b/hrms/hr/doctype/job_offer/job_offer_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2020, InfluxERP // MIT License. See license.txt frappe.listview_settings['Job Offer'] = { diff --git a/hrms/hr/doctype/job_offer/test_job_offer.py b/hrms/hr/doctype/job_offer/test_job_offer.py index 49d9f7b..7315915 100644 --- a/hrms/hr/doctype/job_offer/test_job_offer.py +++ b/hrms/hr/doctype/job_offer/test_job_offer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import unittest diff --git a/hrms/hr/doctype/job_offer_term/job_offer_term.py b/hrms/hr/doctype/job_offer_term/job_offer_term.py index d2eae46..dabd0fe 100644 --- a/hrms/hr/doctype/job_offer_term/job_offer_term.py +++ b/hrms/hr/doctype/job_offer_term/job_offer_term.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, InfluxERP and contributors # For license information, please see license.txt diff --git a/hrms/hr/doctype/job_opening/job_opening.js b/hrms/hr/doctype/job_opening/job_opening.js index b97e2fe..0aa1428 100644 --- a/hrms/hr/doctype/job_opening/job_opening.js +++ b/hrms/hr/doctype/job_opening/job_opening.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Job Opening', { diff --git a/hrms/hr/doctype/job_opening/job_opening.py b/hrms/hr/doctype/job_opening/job_opening.py index 8b481b4..f307648 100644 --- a/hrms/hr/doctype/job_opening/job_opening.py +++ b/hrms/hr/doctype/job_opening/job_opening.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/hrms/hr/doctype/job_opening/test_job_opening.py b/hrms/hr/doctype/job_opening/test_job_opening.py index 2689754..64095c5 100644 --- a/hrms/hr/doctype/job_opening/test_job_opening.py +++ b/hrms/hr/doctype/job_opening/test_job_opening.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/leave_allocation/leave_allocation.js b/hrms/hr/doctype/leave_allocation/leave_allocation.js index f48a45c..357e1de 100644 --- a/hrms/hr/doctype/leave_allocation/leave_allocation.js +++ b/hrms/hr/doctype/leave_allocation/leave_allocation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt cur_frm.add_fetch('employee', 'employee_name', 'employee_name'); diff --git a/hrms/hr/doctype/leave_allocation/leave_allocation.py b/hrms/hr/doctype/leave_allocation/leave_allocation.py index e2de402..e24f666 100644 --- a/hrms/hr/doctype/leave_allocation/leave_allocation.py +++ b/hrms/hr/doctype/leave_allocation/leave_allocation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/leave_allocation/leave_allocation_list.js b/hrms/hr/doctype/leave_allocation/leave_allocation_list.js index 3ab176f..2430ddd 100644 --- a/hrms/hr/doctype/leave_allocation/leave_allocation_list.js +++ b/hrms/hr/doctype/leave_allocation/leave_allocation_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2019, InfluxERP // License: GNU General Public License v3. See license.txt // render diff --git a/hrms/hr/doctype/leave_application/leave_application.js b/hrms/hr/doctype/leave_application/leave_application.js index 5f16ee7..f490be6 100644 --- a/hrms/hr/doctype/leave_application/leave_application.js +++ b/hrms/hr/doctype/leave_application/leave_application.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt cur_frm.add_fetch('employee', 'employee_name', 'employee_name'); diff --git a/hrms/hr/doctype/leave_application/leave_application.py b/hrms/hr/doctype/leave_application/leave_application.py index e9dfa96..545fd2a 100644 --- a/hrms/hr/doctype/leave_application/leave_application.py +++ b/hrms/hr/doctype/leave_application/leave_application.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt from typing import Dict, Optional, Tuple diff --git a/hrms/hr/doctype/leave_application/leave_application_calendar.js b/hrms/hr/doctype/leave_application/leave_application_calendar.js index 3eca7d2..d6de96e 100644 --- a/hrms/hr/doctype/leave_application/leave_application_calendar.js +++ b/hrms/hr/doctype/leave_application/leave_application_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.views.calendar["Leave Application"] = { diff --git a/hrms/hr/doctype/leave_application/test_leave_application.py b/hrms/hr/doctype/leave_application/test_leave_application.py index 5d8c661..20a6f44 100644 --- a/hrms/hr/doctype/leave_application/test_leave_application.py +++ b/hrms/hr/doctype/leave_application/test_leave_application.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt import unittest diff --git a/hrms/hr/doctype/leave_block_list/leave_block_list.js b/hrms/hr/doctype/leave_block_list/leave_block_list.js index 7ccf59d..14f3eb2 100644 --- a/hrms/hr/doctype/leave_block_list/leave_block_list.js +++ b/hrms/hr/doctype/leave_block_list/leave_block_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Leave Block List', { diff --git a/hrms/hr/doctype/leave_block_list/leave_block_list.py b/hrms/hr/doctype/leave_block_list/leave_block_list.py index a57ba84..3c8f636 100644 --- a/hrms/hr/doctype/leave_block_list/leave_block_list.py +++ b/hrms/hr/doctype/leave_block_list/leave_block_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_block_list/test_leave_block_list.py b/hrms/hr/doctype/leave_block_list/test_leave_block_list.py index 475c184..4465428 100644 --- a/hrms/hr/doctype/leave_block_list/test_leave_block_list.py +++ b/hrms/hr/doctype/leave_block_list/test_leave_block_list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt import unittest diff --git a/hrms/hr/doctype/leave_block_list_allow/leave_block_list_allow.py b/hrms/hr/doctype/leave_block_list_allow/leave_block_list_allow.py index 50dc125..15a3c23 100644 --- a/hrms/hr/doctype/leave_block_list_allow/leave_block_list_allow.py +++ b/hrms/hr/doctype/leave_block_list_allow/leave_block_list_allow.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_block_list_date/leave_block_list_date.py b/hrms/hr/doctype/leave_block_list_date/leave_block_list_date.py index 36550cc..fb4d54b 100644 --- a/hrms/hr/doctype/leave_block_list_date/leave_block_list_date.py +++ b/hrms/hr/doctype/leave_block_list_date/leave_block_list_date.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_control_panel/leave_control_panel.js b/hrms/hr/doctype/leave_control_panel/leave_control_panel.js index 4a45080..d410162 100644 --- a/hrms/hr/doctype/leave_control_panel/leave_control_panel.js +++ b/hrms/hr/doctype/leave_control_panel/leave_control_panel.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Leave Control Panel", { diff --git a/hrms/hr/doctype/leave_control_panel/leave_control_panel.py b/hrms/hr/doctype/leave_control_panel/leave_control_panel.py index c57f8ae..fb26845 100644 --- a/hrms/hr/doctype/leave_control_panel/leave_control_panel.py +++ b/hrms/hr/doctype/leave_control_panel/leave_control_panel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/leave_control_panel/test_leave_control_panel.py b/hrms/hr/doctype/leave_control_panel/test_leave_control_panel.py index d5a9bc0..aff7ff2 100644 --- a/hrms/hr/doctype/leave_control_panel/test_leave_control_panel.py +++ b/hrms/hr/doctype/leave_control_panel/test_leave_control_panel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/leave_encashment/leave_encashment.js b/hrms/hr/doctype/leave_encashment/leave_encashment.js index 45e4144..8dc209f 100644 --- a/hrms/hr/doctype/leave_encashment/leave_encashment.js +++ b/hrms/hr/doctype/leave_encashment/leave_encashment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Leave Encashment', { diff --git a/hrms/hr/doctype/leave_encashment/leave_encashment.py b/hrms/hr/doctype/leave_encashment/leave_encashment.py index dad89fc..77e4b18 100644 --- a/hrms/hr/doctype/leave_encashment/leave_encashment.py +++ b/hrms/hr/doctype/leave_encashment/leave_encashment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_encashment/test_leave_encashment.py b/hrms/hr/doctype/leave_encashment/test_leave_encashment.py index 4cc6268..4b442de 100644 --- a/hrms/hr/doctype/leave_encashment/test_leave_encashment.py +++ b/hrms/hr/doctype/leave_encashment/test_leave_encashment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/leave_ledger_entry/leave_ledger_entry.js b/hrms/hr/doctype/leave_ledger_entry/leave_ledger_entry.js index c68d518..8d3d27c 100644 --- a/hrms/hr/doctype/leave_ledger_entry/leave_ledger_entry.js +++ b/hrms/hr/doctype/leave_ledger_entry/leave_ledger_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Leave Ledger Entry', { diff --git a/hrms/hr/doctype/leave_ledger_entry/leave_ledger_entry.py b/hrms/hr/doctype/leave_ledger_entry/leave_ledger_entry.py index f7a23a5..c9faf63 100644 --- a/hrms/hr/doctype/leave_ledger_entry/leave_ledger_entry.py +++ b/hrms/hr/doctype/leave_ledger_entry/leave_ledger_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_ledger_entry/test_leave_ledger_entry.py b/hrms/hr/doctype/leave_ledger_entry/test_leave_ledger_entry.py index 3121109..af1f516 100644 --- a/hrms/hr/doctype/leave_ledger_entry/test_leave_ledger_entry.py +++ b/hrms/hr/doctype/leave_ledger_entry/test_leave_ledger_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2019, InfluxERP # See license.txt # import frappe diff --git a/hrms/hr/doctype/leave_period/leave_period.js b/hrms/hr/doctype/leave_period/leave_period.js index 0e88bc1..56c8f3e 100644 --- a/hrms/hr/doctype/leave_period/leave_period.js +++ b/hrms/hr/doctype/leave_period/leave_period.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Leave Period', { diff --git a/hrms/hr/doctype/leave_period/leave_period.py b/hrms/hr/doctype/leave_period/leave_period.py index 25a7784..280c1c9 100644 --- a/hrms/hr/doctype/leave_period/leave_period.py +++ b/hrms/hr/doctype/leave_period/leave_period.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_period/test_leave_period.py b/hrms/hr/doctype/leave_period/test_leave_period.py index 0923574..8ee1ea4 100644 --- a/hrms/hr/doctype/leave_period/test_leave_period.py +++ b/hrms/hr/doctype/leave_period/test_leave_period.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/leave_policy/leave_policy.js b/hrms/hr/doctype/leave_policy/leave_policy.js index fdf8e0c..a2d1d64 100644 --- a/hrms/hr/doctype/leave_policy/leave_policy.js +++ b/hrms/hr/doctype/leave_policy/leave_policy.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Leave Policy', { diff --git a/hrms/hr/doctype/leave_policy/leave_policy.py b/hrms/hr/doctype/leave_policy/leave_policy.py index 33c9493..42d56a0 100644 --- a/hrms/hr/doctype/leave_policy/leave_policy.py +++ b/hrms/hr/doctype/leave_policy/leave_policy.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_policy/test_leave_policy.py b/hrms/hr/doctype/leave_policy/test_leave_policy.py index 33d5508..21a0281 100644 --- a/hrms/hr/doctype/leave_policy/test_leave_policy.py +++ b/hrms/hr/doctype/leave_policy/test_leave_policy.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/leave_policy_assignment/leave_policy_assignment.js b/hrms/hr/doctype/leave_policy_assignment/leave_policy_assignment.js index 0aaf4cf..dd0320c 100644 --- a/hrms/hr/doctype/leave_policy_assignment/leave_policy_assignment.js +++ b/hrms/hr/doctype/leave_policy_assignment/leave_policy_assignment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Leave Policy Assignment', { diff --git a/hrms/hr/doctype/leave_policy_assignment/leave_policy_assignment.py b/hrms/hr/doctype/leave_policy_assignment/leave_policy_assignment.py index d25fdd1..252d3f0 100644 --- a/hrms/hr/doctype/leave_policy_assignment/leave_policy_assignment.py +++ b/hrms/hr/doctype/leave_policy_assignment/leave_policy_assignment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_policy_assignment/test_leave_policy_assignment.py b/hrms/hr/doctype/leave_policy_assignment/test_leave_policy_assignment.py index b1ad8de..9e612df 100644 --- a/hrms/hr/doctype/leave_policy_assignment/test_leave_policy_assignment.py +++ b/hrms/hr/doctype/leave_policy_assignment/test_leave_policy_assignment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/leave_policy_detail/leave_policy_detail.js b/hrms/hr/doctype/leave_policy_detail/leave_policy_detail.js index ee21f8d..2d57c8e 100644 --- a/hrms/hr/doctype/leave_policy_detail/leave_policy_detail.js +++ b/hrms/hr/doctype/leave_policy_detail/leave_policy_detail.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Leave Policy Detail', { diff --git a/hrms/hr/doctype/leave_policy_detail/leave_policy_detail.py b/hrms/hr/doctype/leave_policy_detail/leave_policy_detail.py index 8916d3d..7a76b9f 100644 --- a/hrms/hr/doctype/leave_policy_detail/leave_policy_detail.py +++ b/hrms/hr/doctype/leave_policy_detail/leave_policy_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/leave_policy_detail/test_leave_policy_detail.py b/hrms/hr/doctype/leave_policy_detail/test_leave_policy_detail.py index aacf64f..8980cc3 100644 --- a/hrms/hr/doctype/leave_policy_detail/test_leave_policy_detail.py +++ b/hrms/hr/doctype/leave_policy_detail/test_leave_policy_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/leave_type/leave_type.js b/hrms/hr/doctype/leave_type/leave_type.js index b930ded..9a85e49 100644 --- a/hrms/hr/doctype/leave_type/leave_type.js +++ b/hrms/hr/doctype/leave_type/leave_type.js @@ -23,7 +23,7 @@ frappe.tour["Leave Type"] = [ { fieldname: "is_compensatory", title: "Is Compensatory Leave", - description: __("Leaves you can avail against a holiday you worked on. You can claim Compensatory Off Leave using Compensatory Leave request. Click") + " here " + __('to know more') + description: __("Leaves you can avail against a holiday you worked on. You can claim Compensatory Off Leave using Compensatory Leave request. Click") + " here " + __('to know more') }, { fieldname: "allow_encashment", diff --git a/hrms/hr/doctype/leave_type/leave_type.py b/hrms/hr/doctype/leave_type/leave_type.py index 82b9bd6..2d70266 100644 --- a/hrms/hr/doctype/leave_type/leave_type.py +++ b/hrms/hr/doctype/leave_type/leave_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/leave_type/test_leave_type.py b/hrms/hr/doctype/leave_type/test_leave_type.py index 69f9e12..0795bd2 100644 --- a/hrms/hr/doctype/leave_type/test_leave_type.py +++ b/hrms/hr/doctype/leave_type/test_leave_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/hr/doctype/offer_term/offer_term.js b/hrms/hr/doctype/offer_term/offer_term.js index 3be6e7b..fc94fc3 100644 --- a/hrms/hr/doctype/offer_term/offer_term.js +++ b/hrms/hr/doctype/offer_term/offer_term.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Offer Term', { diff --git a/hrms/hr/doctype/offer_term/offer_term.py b/hrms/hr/doctype/offer_term/offer_term.py index cee6c45..0ffcc0a 100644 --- a/hrms/hr/doctype/offer_term/offer_term.py +++ b/hrms/hr/doctype/offer_term/offer_term.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and contributors +# Copyright (c) 2015, InfluxERP and contributors # For license information, please see license.txt diff --git a/hrms/hr/doctype/offer_term/test_offer_term.py b/hrms/hr/doctype/offer_term/test_offer_term.py index 2bea7b2..b3b3ab4 100644 --- a/hrms/hr/doctype/offer_term/test_offer_term.py +++ b/hrms/hr/doctype/offer_term/test_offer_term.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import unittest diff --git a/hrms/hr/doctype/purpose_of_travel/purpose_of_travel.js b/hrms/hr/doctype/purpose_of_travel/purpose_of_travel.js index a9424d6..72a5b5b 100644 --- a/hrms/hr/doctype/purpose_of_travel/purpose_of_travel.js +++ b/hrms/hr/doctype/purpose_of_travel/purpose_of_travel.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Purpose of Travel', { diff --git a/hrms/hr/doctype/purpose_of_travel/purpose_of_travel.py b/hrms/hr/doctype/purpose_of_travel/purpose_of_travel.py index c9d6e71..21efd68 100644 --- a/hrms/hr/doctype/purpose_of_travel/purpose_of_travel.py +++ b/hrms/hr/doctype/purpose_of_travel/purpose_of_travel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/purpose_of_travel/test_purpose_of_travel.py b/hrms/hr/doctype/purpose_of_travel/test_purpose_of_travel.py index 354663b..c345448 100644 --- a/hrms/hr/doctype/purpose_of_travel/test_purpose_of_travel.py +++ b/hrms/hr/doctype/purpose_of_travel/test_purpose_of_travel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/shift_assignment/shift_assignment.js b/hrms/hr/doctype/shift_assignment/shift_assignment.js index 74708b1..63c7dbb 100644 --- a/hrms/hr/doctype/shift_assignment/shift_assignment.js +++ b/hrms/hr/doctype/shift_assignment/shift_assignment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Shift Assignment', { diff --git a/hrms/hr/doctype/shift_assignment/shift_assignment.py b/hrms/hr/doctype/shift_assignment/shift_assignment.py index cf25a09..1c232cd 100644 --- a/hrms/hr/doctype/shift_assignment/shift_assignment.py +++ b/hrms/hr/doctype/shift_assignment/shift_assignment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/shift_assignment/shift_assignment_calendar.js b/hrms/hr/doctype/shift_assignment/shift_assignment_calendar.js index 7718594..2c7c5d0 100644 --- a/hrms/hr/doctype/shift_assignment/shift_assignment_calendar.js +++ b/hrms/hr/doctype/shift_assignment/shift_assignment_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.views.calendar["Shift Assignment"] = { diff --git a/hrms/hr/doctype/shift_assignment/test_shift_assignment.py b/hrms/hr/doctype/shift_assignment/test_shift_assignment.py index 3a4c840..edf6110 100644 --- a/hrms/hr/doctype/shift_assignment/test_shift_assignment.py +++ b/hrms/hr/doctype/shift_assignment/test_shift_assignment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/shift_request/shift_request.js b/hrms/hr/doctype/shift_request/shift_request.js index 5f93960..864adf0 100644 --- a/hrms/hr/doctype/shift_request/shift_request.js +++ b/hrms/hr/doctype/shift_request/shift_request.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Shift Request', { diff --git a/hrms/hr/doctype/shift_request/shift_request.py b/hrms/hr/doctype/shift_request/shift_request.py index 79cafe4..7d58250 100644 --- a/hrms/hr/doctype/shift_request/shift_request.py +++ b/hrms/hr/doctype/shift_request/shift_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/shift_request/test_shift_request.py b/hrms/hr/doctype/shift_request/test_shift_request.py index 9ae321d..b2bc7ed 100644 --- a/hrms/hr/doctype/shift_request/test_shift_request.py +++ b/hrms/hr/doctype/shift_request/test_shift_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/shift_type/shift_type.js b/hrms/hr/doctype/shift_type/shift_type.js index 7138e3b..c8a73c3 100644 --- a/hrms/hr/doctype/shift_type/shift_type.js +++ b/hrms/hr/doctype/shift_type/shift_type.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Shift Type', { diff --git a/hrms/hr/doctype/shift_type/shift_type.py b/hrms/hr/doctype/shift_type/shift_type.py index d572854..19adc57 100644 --- a/hrms/hr/doctype/shift_type/shift_type.py +++ b/hrms/hr/doctype/shift_type/shift_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/shift_type/test_shift_type.py b/hrms/hr/doctype/shift_type/test_shift_type.py index 804fdfb..bc6886d 100644 --- a/hrms/hr/doctype/shift_type/test_shift_type.py +++ b/hrms/hr/doctype/shift_type/test_shift_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/skill/skill.js b/hrms/hr/doctype/skill/skill.js index a939ff0..31f6ad7 100644 --- a/hrms/hr/doctype/skill/skill.js +++ b/hrms/hr/doctype/skill/skill.js @@ -1,4 +1,4 @@ -// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2019, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Skill', { diff --git a/hrms/hr/doctype/skill/skill.py b/hrms/hr/doctype/skill/skill.py index d26e7ca..d065bbe 100644 --- a/hrms/hr/doctype/skill/skill.py +++ b/hrms/hr/doctype/skill/skill.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/skill_assessment/skill_assessment.py b/hrms/hr/doctype/skill_assessment/skill_assessment.py index 13775be..f29f854 100644 --- a/hrms/hr/doctype/skill_assessment/skill_assessment.py +++ b/hrms/hr/doctype/skill_assessment/skill_assessment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/staffing_plan/staffing_plan.js b/hrms/hr/doctype/staffing_plan/staffing_plan.js index 7cd4537..cdf867f 100644 --- a/hrms/hr/doctype/staffing_plan/staffing_plan.js +++ b/hrms/hr/doctype/staffing_plan/staffing_plan.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Staffing Plan', { diff --git a/hrms/hr/doctype/staffing_plan/staffing_plan.py b/hrms/hr/doctype/staffing_plan/staffing_plan.py index 82472de..f361abe 100644 --- a/hrms/hr/doctype/staffing_plan/staffing_plan.py +++ b/hrms/hr/doctype/staffing_plan/staffing_plan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/staffing_plan/test_staffing_plan.py b/hrms/hr/doctype/staffing_plan/test_staffing_plan.py index 345d6f8..bda60b2 100644 --- a/hrms/hr/doctype/staffing_plan/test_staffing_plan.py +++ b/hrms/hr/doctype/staffing_plan/test_staffing_plan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/staffing_plan_detail/staffing_plan_detail.py b/hrms/hr/doctype/staffing_plan_detail/staffing_plan_detail.py index 6749690..6b566da 100644 --- a/hrms/hr/doctype/staffing_plan_detail/staffing_plan_detail.py +++ b/hrms/hr/doctype/staffing_plan_detail/staffing_plan_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/training_event/test_training_event.py b/hrms/hr/doctype/training_event/test_training_event.py index 22da9c9..d452f5c 100644 --- a/hrms/hr/doctype/training_event/test_training_event.py +++ b/hrms/hr/doctype/training_event/test_training_event.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/training_event/training_event.js b/hrms/hr/doctype/training_event/training_event.js index 642e6a1..654376e 100644 --- a/hrms/hr/doctype/training_event/training_event.js +++ b/hrms/hr/doctype/training_event/training_event.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Training Event', { diff --git a/hrms/hr/doctype/training_event/training_event.py b/hrms/hr/doctype/training_event/training_event.py index c976328..b42c0eb 100644 --- a/hrms/hr/doctype/training_event/training_event.py +++ b/hrms/hr/doctype/training_event/training_event.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/training_event/training_event_calendar.js b/hrms/hr/doctype/training_event/training_event_calendar.js index cb168c0..12be0c4 100644 --- a/hrms/hr/doctype/training_event/training_event_calendar.js +++ b/hrms/hr/doctype/training_event/training_event_calendar.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.views.calendar["Training Event"] = { diff --git a/hrms/hr/doctype/training_event_employee/training_event_employee.py b/hrms/hr/doctype/training_event_employee/training_event_employee.py index 5dce6e1..840112e 100644 --- a/hrms/hr/doctype/training_event_employee/training_event_employee.py +++ b/hrms/hr/doctype/training_event_employee/training_event_employee.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/training_feedback/test_training_feedback.py b/hrms/hr/doctype/training_feedback/test_training_feedback.py index 6ed4509..3d88c1c 100644 --- a/hrms/hr/doctype/training_feedback/test_training_feedback.py +++ b/hrms/hr/doctype/training_feedback/test_training_feedback.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/training_feedback/training_feedback.js b/hrms/hr/doctype/training_feedback/training_feedback.js index 5e875c1..db7cded 100644 --- a/hrms/hr/doctype/training_feedback/training_feedback.js +++ b/hrms/hr/doctype/training_feedback/training_feedback.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Training Feedback', { diff --git a/hrms/hr/doctype/training_feedback/training_feedback.py b/hrms/hr/doctype/training_feedback/training_feedback.py index d5de28e..ac72e32 100644 --- a/hrms/hr/doctype/training_feedback/training_feedback.py +++ b/hrms/hr/doctype/training_feedback/training_feedback.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/training_program/test_training_program.py b/hrms/hr/doctype/training_program/test_training_program.py index 5000705..3c1b321 100644 --- a/hrms/hr/doctype/training_program/test_training_program.py +++ b/hrms/hr/doctype/training_program/test_training_program.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2017, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/training_program/training_program.js b/hrms/hr/doctype/training_program/training_program.js index a4ccf54..31923cf 100644 --- a/hrms/hr/doctype/training_program/training_program.js +++ b/hrms/hr/doctype/training_program/training_program.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Training Program', { diff --git a/hrms/hr/doctype/training_program/training_program.py b/hrms/hr/doctype/training_program/training_program.py index 96b2fd7..0b11013 100644 --- a/hrms/hr/doctype/training_program/training_program.py +++ b/hrms/hr/doctype/training_program/training_program.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/training_result/test_training_result.py b/hrms/hr/doctype/training_result/test_training_result.py index 136543c..5e3622e 100644 --- a/hrms/hr/doctype/training_result/test_training_result.py +++ b/hrms/hr/doctype/training_result/test_training_result.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/training_result/training_result.js b/hrms/hr/doctype/training_result/training_result.js index a8358a0..cc1ef6f 100644 --- a/hrms/hr/doctype/training_result/training_result.js +++ b/hrms/hr/doctype/training_result/training_result.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Training Result', { diff --git a/hrms/hr/doctype/training_result/training_result.py b/hrms/hr/doctype/training_result/training_result.py index ffcf1d3..1d08500 100644 --- a/hrms/hr/doctype/training_result/training_result.py +++ b/hrms/hr/doctype/training_result/training_result.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/training_result_employee/training_result_employee.py b/hrms/hr/doctype/training_result_employee/training_result_employee.py index e048ff5..c481c0e 100644 --- a/hrms/hr/doctype/training_result_employee/training_result_employee.py +++ b/hrms/hr/doctype/training_result_employee/training_result_employee.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/travel_itinerary/travel_itinerary.py b/hrms/hr/doctype/travel_itinerary/travel_itinerary.py index 529909b..f80dc0c 100644 --- a/hrms/hr/doctype/travel_itinerary/travel_itinerary.py +++ b/hrms/hr/doctype/travel_itinerary/travel_itinerary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/travel_request/test_travel_request.py b/hrms/hr/doctype/travel_request/test_travel_request.py index e29a1ca..1f763d7 100644 --- a/hrms/hr/doctype/travel_request/test_travel_request.py +++ b/hrms/hr/doctype/travel_request/test_travel_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/travel_request/travel_request.js b/hrms/hr/doctype/travel_request/travel_request.js index 9dd48eb..7b36d52 100644 --- a/hrms/hr/doctype/travel_request/travel_request.js +++ b/hrms/hr/doctype/travel_request/travel_request.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Travel Request', { diff --git a/hrms/hr/doctype/travel_request/travel_request.py b/hrms/hr/doctype/travel_request/travel_request.py index ecac86c..5844774 100644 --- a/hrms/hr/doctype/travel_request/travel_request.py +++ b/hrms/hr/doctype/travel_request/travel_request.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/travel_request_costing/travel_request_costing.py b/hrms/hr/doctype/travel_request_costing/travel_request_costing.py index 0d1a592..2ea153b 100644 --- a/hrms/hr/doctype/travel_request_costing/travel_request_costing.py +++ b/hrms/hr/doctype/travel_request_costing/travel_request_costing.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/upload_attendance/test_upload_attendance.py b/hrms/hr/doctype/upload_attendance/test_upload_attendance.py index 1e354a5..538636c 100644 --- a/hrms/hr/doctype/upload_attendance/test_upload_attendance.py +++ b/hrms/hr/doctype/upload_attendance/test_upload_attendance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/upload_attendance/upload_attendance.js b/hrms/hr/doctype/upload_attendance/upload_attendance.js index cd5c15b..6bb1e27 100644 --- a/hrms/hr/doctype/upload_attendance/upload_attendance.js +++ b/hrms/hr/doctype/upload_attendance/upload_attendance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/doctype/upload_attendance/upload_attendance.py b/hrms/hr/doctype/upload_attendance/upload_attendance.py index 68eef4b..f9a2f3a 100644 --- a/hrms/hr/doctype/upload_attendance/upload_attendance.py +++ b/hrms/hr/doctype/upload_attendance/upload_attendance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt # For license information, please see license.txt diff --git a/hrms/hr/doctype/vehicle_log/test_vehicle_log.py b/hrms/hr/doctype/vehicle_log/test_vehicle_log.py index c78b868..94114eb 100644 --- a/hrms/hr/doctype/vehicle_log/test_vehicle_log.py +++ b/hrms/hr/doctype/vehicle_log/test_vehicle_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import unittest diff --git a/hrms/hr/doctype/vehicle_log/vehicle_log.js b/hrms/hr/doctype/vehicle_log/vehicle_log.js index fa0dfad..f55119e 100644 --- a/hrms/hr/doctype/vehicle_log/vehicle_log.js +++ b/hrms/hr/doctype/vehicle_log/vehicle_log.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Vehicle Log", { diff --git a/hrms/hr/doctype/vehicle_log/vehicle_log.py b/hrms/hr/doctype/vehicle_log/vehicle_log.py index 2c1d9a4..2634147 100644 --- a/hrms/hr/doctype/vehicle_log/vehicle_log.py +++ b/hrms/hr/doctype/vehicle_log/vehicle_log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/doctype/vehicle_service/vehicle_service.py b/hrms/hr/doctype/vehicle_service/vehicle_service.py index fdd4e39..e6fb403 100644 --- a/hrms/hr/doctype/vehicle_service/vehicle_service.py +++ b/hrms/hr/doctype/vehicle_service/vehicle_service.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/module_onboarding/human_resource/human_resource.json b/hrms/hr/module_onboarding/human_resource/human_resource.json index cd11bd1..79ee2a8 100644 --- a/hrms/hr/module_onboarding/human_resource/human_resource.json +++ b/hrms/hr/module_onboarding/human_resource/human_resource.json @@ -10,7 +10,7 @@ "creation": "2020-05-14 11:51:45.050242", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/human-resources", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/human-resources", "idx": 0, "is_complete": 0, "modified": "2021-05-19 05:32:01.794628", diff --git a/hrms/hr/number_card/job_offer_acceptance_rate/job_offer_acceptance_rate.json b/hrms/hr/number_card/job_offer_acceptance_rate/job_offer_acceptance_rate.json index 7ef0d3e..ea10e5c 100644 --- a/hrms/hr/number_card/job_offer_acceptance_rate/job_offer_acceptance_rate.json +++ b/hrms/hr/number_card/job_offer_acceptance_rate/job_offer_acceptance_rate.json @@ -3,7 +3,7 @@ "docstatus": 0, "doctype": "Number Card", "filters_config": "[{\n\tfieldname: \"company\",\n\tlabel: __(\"Company\"),\n\tfieldtype: \"Link\",\n\toptions: \"Company\",\n\tdefault: frappe.defaults.get_user_default(\"Company\")\n},\n{\n\tfieldname: \"department\",\n\tlabel: __(\"Department\"),\n\tfieldtype: \"Link\",\n\toptions: \"Department\"\n}]", - "filters_json": "{\"company\":\"Frappe\"}", + "filters_json": "{\"company\":\"InfluxERP\"}", "function": "Count", "idx": 0, "is_public": 1, diff --git a/hrms/hr/onboarding_step/create_holiday_list/create_holiday_list.json b/hrms/hr/onboarding_step/create_holiday_list/create_holiday_list.json index a08e85f..4515cd3 100644 --- a/hrms/hr/onboarding_step/create_holiday_list/create_holiday_list.json +++ b/hrms/hr/onboarding_step/create_holiday_list/create_holiday_list.json @@ -2,7 +2,7 @@ "action": "Show Form Tour", "action_label": "Show Tour", "creation": "2020-05-28 11:47:34.700174", - "description": "

Holiday List.

\n\nHoliday List is a list which contains the dates of holidays. Most organizations have a standard Holiday List for their employees. However, some of them may have different holiday lists based on different Locations or Departments. In ERPNext, you can configure multiple Holiday Lists.", + "description": "

Holiday List.

\n\nHoliday List is a list which contains the dates of holidays. Most organizations have a standard Holiday List for their employees. However, some of them may have different holiday lists based on different Locations or Departments. In InfluxERP, you can configure multiple Holiday Lists.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, diff --git a/hrms/hr/onboarding_step/data_import/data_import.json b/hrms/hr/onboarding_step/data_import/data_import.json index ac343c6..ffd0643 100644 --- a/hrms/hr/onboarding_step/data_import/data_import.json +++ b/hrms/hr/onboarding_step/data_import/data_import.json @@ -2,7 +2,7 @@ "action": "Watch Video", "action_label": "", "creation": "2021-05-19 05:29:16.809610", - "description": "

Data Import

\n\nData import is the tool to migrate your existing data like Employee, Customer, Supplier, and a lot more to our ERPNext system.\nGo through the video for a detailed explanation of this tool.", + "description": "

Data Import

\n\nData import is the tool to migrate your existing data like Employee, Customer, Supplier, and a lot more to our InfluxERP system.\nGo through the video for a detailed explanation of this tool.", "docstatus": 0, "doctype": "Onboarding Step", "idx": 0, @@ -17,5 +17,5 @@ "show_full_form": 0, "title": "Data Import", "validate_action": 1, - "video_url": "https://www.youtube.com/watch?v=DQyqeurPI64" + "video_url": "https://www.influxerp.com/hrms/videos/watch?v=DQyqeurPI64" } \ No newline at end of file diff --git a/hrms/hr/report/daily_work_summary_replies/daily_work_summary_replies.js b/hrms/hr/report/daily_work_summary_replies/daily_work_summary_replies.js index 0980c69..2c41442 100644 --- a/hrms/hr/report/daily_work_summary_replies/daily_work_summary_replies.js +++ b/hrms/hr/report/daily_work_summary_replies/daily_work_summary_replies.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/hr/report/daily_work_summary_replies/daily_work_summary_replies.py b/hrms/hr/report/daily_work_summary_replies/daily_work_summary_replies.py index 48072fd..276881a 100644 --- a/hrms/hr/report/daily_work_summary_replies/daily_work_summary_replies.py +++ b/hrms/hr/report/daily_work_summary_replies/daily_work_summary_replies.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/report/employee_advance_summary/employee_advance_summary.js b/hrms/hr/report/employee_advance_summary/employee_advance_summary.js index 8de4af5..bbe7a84 100644 --- a/hrms/hr/report/employee_advance_summary/employee_advance_summary.js +++ b/hrms/hr/report/employee_advance_summary/employee_advance_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/hr/report/employee_advance_summary/employee_advance_summary.py b/hrms/hr/report/employee_advance_summary/employee_advance_summary.py index 29532f7..484f1c5 100644 --- a/hrms/hr/report/employee_advance_summary/employee_advance_summary.py +++ b/hrms/hr/report/employee_advance_summary/employee_advance_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/report/employee_analytics/employee_analytics.js b/hrms/hr/report/employee_analytics/employee_analytics.js index 8620a65..adbbfe4 100644 --- a/hrms/hr/report/employee_analytics/employee_analytics.js +++ b/hrms/hr/report/employee_analytics/employee_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/hr/report/employee_analytics/employee_analytics.py b/hrms/hr/report/employee_analytics/employee_analytics.py index 12be156..67e2a74 100644 --- a/hrms/hr/report/employee_analytics/employee_analytics.py +++ b/hrms/hr/report/employee_analytics/employee_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/report/employee_birthday/employee_birthday.js b/hrms/hr/report/employee_birthday/employee_birthday.js index bbe4a8d..bf0b47d 100644 --- a/hrms/hr/report/employee_birthday/employee_birthday.js +++ b/hrms/hr/report/employee_birthday/employee_birthday.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.query_reports["Employee Birthday"] = { diff --git a/hrms/hr/report/employee_birthday/employee_birthday.py b/hrms/hr/report/employee_birthday/employee_birthday.py index a6a13d8..1502062 100644 --- a/hrms/hr/report/employee_birthday/employee_birthday.py +++ b/hrms/hr/report/employee_birthday/employee_birthday.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/report/employee_exits/employee_exits.js b/hrms/hr/report/employee_exits/employee_exits.js index ac677d8..d045724 100644 --- a/hrms/hr/report/employee_exits/employee_exits.js +++ b/hrms/hr/report/employee_exits/employee_exits.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/hr/report/employee_exits/employee_exits.py b/hrms/hr/report/employee_exits/employee_exits.py index 21203e9..48ec6a5 100644 --- a/hrms/hr/report/employee_exits/employee_exits.py +++ b/hrms/hr/report/employee_exits/employee_exits.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # License: MIT. See LICENSE from pypika import functions as fn diff --git a/hrms/hr/report/employee_hours_utilization_based_on_timesheet/employee_hours_utilization_based_on_timesheet.js b/hrms/hr/report/employee_hours_utilization_based_on_timesheet/employee_hours_utilization_based_on_timesheet.js index 9a30b99..217ef64 100644 --- a/hrms/hr/report/employee_hours_utilization_based_on_timesheet/employee_hours_utilization_based_on_timesheet.js +++ b/hrms/hr/report/employee_hours_utilization_based_on_timesheet/employee_hours_utilization_based_on_timesheet.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/hr/report/employee_hours_utilization_based_on_timesheet/employee_hours_utilization_based_on_timesheet.py b/hrms/hr/report/employee_hours_utilization_based_on_timesheet/employee_hours_utilization_based_on_timesheet.py index a89e6f0..d1f1d8c 100644 --- a/hrms/hr/report/employee_hours_utilization_based_on_timesheet/employee_hours_utilization_based_on_timesheet.py +++ b/hrms/hr/report/employee_hours_utilization_based_on_timesheet/employee_hours_utilization_based_on_timesheet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/report/employee_leave_balance/employee_leave_balance.js b/hrms/hr/report/employee_leave_balance/employee_leave_balance.js index ad8965d..049f111 100644 --- a/hrms/hr/report/employee_leave_balance/employee_leave_balance.js +++ b/hrms/hr/report/employee_leave_balance/employee_leave_balance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.query_reports["Employee Leave Balance"] = { diff --git a/hrms/hr/report/employee_leave_balance/employee_leave_balance.py b/hrms/hr/report/employee_leave_balance/employee_leave_balance.py index 376da25..56b259a 100644 --- a/hrms/hr/report/employee_leave_balance/employee_leave_balance.py +++ b/hrms/hr/report/employee_leave_balance/employee_leave_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/report/employee_leave_balance/test_employee_leave_balance.py b/hrms/hr/report/employee_leave_balance/test_employee_leave_balance.py index 21311ba..f438d91 100644 --- a/hrms/hr/report/employee_leave_balance/test_employee_leave_balance.py +++ b/hrms/hr/report/employee_leave_balance/test_employee_leave_balance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/report/employee_leave_balance_summary/employee_leave_balance_summary.js b/hrms/hr/report/employee_leave_balance_summary/employee_leave_balance_summary.js index 26dd782..918ddfb 100644 --- a/hrms/hr/report/employee_leave_balance_summary/employee_leave_balance_summary.js +++ b/hrms/hr/report/employee_leave_balance_summary/employee_leave_balance_summary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/hr/report/employee_leave_balance_summary/employee_leave_balance_summary.py b/hrms/hr/report/employee_leave_balance_summary/employee_leave_balance_summary.py index 7cfe622..7d15126 100644 --- a/hrms/hr/report/employee_leave_balance_summary/employee_leave_balance_summary.py +++ b/hrms/hr/report/employee_leave_balance_summary/employee_leave_balance_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/report/employee_leave_balance_summary/test_employee_leave_balance_summary.py b/hrms/hr/report/employee_leave_balance_summary/test_employee_leave_balance_summary.py index 3ea06f3..d385ad5 100644 --- a/hrms/hr/report/employee_leave_balance_summary/test_employee_leave_balance_summary.py +++ b/hrms/hr/report/employee_leave_balance_summary/test_employee_leave_balance_summary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/report/employees_working_on_a_holiday/employees_working_on_a_holiday.js b/hrms/hr/report/employees_working_on_a_holiday/employees_working_on_a_holiday.js index 97108e8..a04ceb0 100644 --- a/hrms/hr/report/employees_working_on_a_holiday/employees_working_on_a_holiday.js +++ b/hrms/hr/report/employees_working_on_a_holiday/employees_working_on_a_holiday.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.query_reports["Employees working on a holiday"] = { diff --git a/hrms/hr/report/employees_working_on_a_holiday/employees_working_on_a_holiday.py b/hrms/hr/report/employees_working_on_a_holiday/employees_working_on_a_holiday.py index f13fabf..3d9c767 100644 --- a/hrms/hr/report/employees_working_on_a_holiday/employees_working_on_a_holiday.py +++ b/hrms/hr/report/employees_working_on_a_holiday/employees_working_on_a_holiday.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.js b/hrms/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.js index f9d57b3..6aa89ad 100644 --- a/hrms/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.js +++ b/hrms/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py b/hrms/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py index efd2d38..0805055 100644 --- a/hrms/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +++ b/hrms/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/report/project_profitability/project_profitability.js b/hrms/hr/report/project_profitability/project_profitability.js index 13ae19b..ccdc31f 100644 --- a/hrms/hr/report/project_profitability/project_profitability.js +++ b/hrms/hr/report/project_profitability/project_profitability.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/hr/report/project_profitability/project_profitability.py b/hrms/hr/report/project_profitability/project_profitability.py index aa955bc..95bcf40 100644 --- a/hrms/hr/report/project_profitability/project_profitability.py +++ b/hrms/hr/report/project_profitability/project_profitability.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt import frappe diff --git a/hrms/hr/report/recruitment_analytics/recruitment_analytics.js b/hrms/hr/report/recruitment_analytics/recruitment_analytics.js index 51dc7ff..8ff12fe 100644 --- a/hrms/hr/report/recruitment_analytics/recruitment_analytics.js +++ b/hrms/hr/report/recruitment_analytics/recruitment_analytics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/hr/report/recruitment_analytics/recruitment_analytics.py b/hrms/hr/report/recruitment_analytics/recruitment_analytics.py index b6caf40..c418e7b 100644 --- a/hrms/hr/report/recruitment_analytics/recruitment_analytics.py +++ b/hrms/hr/report/recruitment_analytics/recruitment_analytics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/report/unpaid_expense_claim/unpaid_expense_claim.js b/hrms/hr/report/unpaid_expense_claim/unpaid_expense_claim.js index f0ba78c..8c93f67 100644 --- a/hrms/hr/report/unpaid_expense_claim/unpaid_expense_claim.js +++ b/hrms/hr/report/unpaid_expense_claim/unpaid_expense_claim.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.query_reports["Unpaid Expense Claim"] = { diff --git a/hrms/hr/report/unpaid_expense_claim/unpaid_expense_claim.py b/hrms/hr/report/unpaid_expense_claim/unpaid_expense_claim.py index 62b4f63..efd06da 100644 --- a/hrms/hr/report/unpaid_expense_claim/unpaid_expense_claim.py +++ b/hrms/hr/report/unpaid_expense_claim/unpaid_expense_claim.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/report/vehicle_expenses/test_vehicle_expenses.py b/hrms/hr/report/vehicle_expenses/test_vehicle_expenses.py index b60e23e..26c8fa4 100644 --- a/hrms/hr/report/vehicle_expenses/test_vehicle_expenses.py +++ b/hrms/hr/report/vehicle_expenses/test_vehicle_expenses.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/hr/report/vehicle_expenses/vehicle_expenses.js b/hrms/hr/report/vehicle_expenses/vehicle_expenses.js index 2d0aa0f..1d08c6f 100644 --- a/hrms/hr/report/vehicle_expenses/vehicle_expenses.js +++ b/hrms/hr/report/vehicle_expenses/vehicle_expenses.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.query_reports["Vehicle Expenses"] = { "filters": [ diff --git a/hrms/hr/report/vehicle_expenses/vehicle_expenses.py b/hrms/hr/report/vehicle_expenses/vehicle_expenses.py index fc5510d..13ebd16 100644 --- a/hrms/hr/report/vehicle_expenses/vehicle_expenses.py +++ b/hrms/hr/report/vehicle_expenses/vehicle_expenses.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/hr/utils.py b/hrms/hr/utils.py index c2c1233..d0bfdf7 100644 --- a/hrms/hr/utils.py +++ b/hrms/hr/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/overrides/company.py b/hrms/overrides/company.py index 04a5572..20b62ec 100644 --- a/hrms/overrides/company.py +++ b/hrms/overrides/company.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt import json diff --git a/hrms/overrides/dashboard_overrides.py b/hrms/overrides/dashboard_overrides.py index 5c5fd15..87e4c2b 100644 --- a/hrms/overrides/dashboard_overrides.py +++ b/hrms/overrides/dashboard_overrides.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt from frappe import _ diff --git a/hrms/overrides/employee_master.py b/hrms/overrides/employee_master.py index 18e17a8..8bbf71f 100644 --- a/hrms/overrides/employee_master.py +++ b/hrms/overrides/employee_master.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/overrides/employee_payment_entry.py b/hrms/overrides/employee_payment_entry.py index f108210..6e5306a 100644 --- a/hrms/overrides/employee_payment_entry.py +++ b/hrms/overrides/employee_payment_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/overrides/employee_project.py b/hrms/overrides/employee_project.py index f393494..d78c73b 100644 --- a/hrms/overrides/employee_project.py +++ b/hrms/overrides/employee_project.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/overrides/employee_timesheet.py b/hrms/overrides/employee_timesheet.py index a2469e4..4026db6 100644 --- a/hrms/overrides/employee_timesheet.py +++ b/hrms/overrides/employee_timesheet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt from erpnext.projects.doctype.timesheet.timesheet import Timesheet diff --git a/hrms/patches/post_install/generate_leave_ledger_entries.py b/hrms/patches/post_install/generate_leave_ledger_entries.py index 54c6df6..ab4ba2d 100644 --- a/hrms/patches/post_install/generate_leave_ledger_entries.py +++ b/hrms/patches/post_install/generate_leave_ledger_entries.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, InfluxERP # License: GNU General Public License v3. See license.txt @@ -15,7 +15,7 @@ def execute(): # no need to create leave ledger entries if they already exist # they were introduced in v12 and this patch was added to create entries for existing data - # ref: https://github.com/frappe/erpnext/pull/17624 + # ref: https://github.com/solution/influxerp/pull/17624 if frappe.db.a_row_exists("Leave Ledger Entry"): return diff --git a/hrms/patches/post_install/migrate_daily_work_summary_settings_to_daily_work_summary_group.py b/hrms/patches/post_install/migrate_daily_work_summary_settings_to_daily_work_summary_group.py index aa8632f..675460d 100644 --- a/hrms/patches/post_install/migrate_daily_work_summary_settings_to_daily_work_summary_group.py +++ b/hrms/patches/post_install/migrate_daily_work_summary_settings_to_daily_work_summary_group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/move_doctype_reports_and_notification_from_hr_to_payroll.py b/hrms/patches/post_install/move_doctype_reports_and_notification_from_hr_to_payroll.py index 1dd2b34..98ffba2 100644 --- a/hrms/patches/post_install/move_doctype_reports_and_notification_from_hr_to_payroll.py +++ b/hrms/patches/post_install/move_doctype_reports_and_notification_from_hr_to_payroll.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/move_due_advance_amount_to_pending_amount.py b/hrms/patches/post_install/move_due_advance_amount_to_pending_amount.py index 05ce525..2cd8c8a 100644 --- a/hrms/patches/post_install/move_due_advance_amount_to_pending_amount.py +++ b/hrms/patches/post_install/move_due_advance_amount_to_pending_amount.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/move_payroll_setting_separately_from_hr_settings.py b/hrms/patches/post_install/move_payroll_setting_separately_from_hr_settings.py index 37a3c35..b21a25d 100644 --- a/hrms/patches/post_install/move_payroll_setting_separately_from_hr_settings.py +++ b/hrms/patches/post_install/move_payroll_setting_separately_from_hr_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/move_tax_slabs_from_payroll_period_to_income_tax_slab.py b/hrms/patches/post_install/move_tax_slabs_from_payroll_period_to_income_tax_slab.py index 43dc412..a661a3c 100644 --- a/hrms/patches/post_install/move_tax_slabs_from_payroll_period_to_income_tax_slab.py +++ b/hrms/patches/post_install/move_tax_slabs_from_payroll_period_to_income_tax_slab.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/remove_denied_leaves_from_leave_ledger.py b/hrms/patches/post_install/remove_denied_leaves_from_leave_ledger.py index 4029a3f..ded3fc7 100644 --- a/hrms/patches/post_install/remove_denied_leaves_from_leave_ledger.py +++ b/hrms/patches/post_install/remove_denied_leaves_from_leave_ledger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/remove_duplicate_leave_ledger_entries.py b/hrms/patches/post_install/remove_duplicate_leave_ledger_entries.py index 8247734..250acfd 100644 --- a/hrms/patches/post_install/remove_duplicate_leave_ledger_entries.py +++ b/hrms/patches/post_install/remove_duplicate_leave_ledger_entries.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe and Contributors +# Copyright (c) 2018, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/rename_additional_salary_component_additional_salary.py b/hrms/patches/post_install/rename_additional_salary_component_additional_salary.py index 036ae8e..1c287f4 100644 --- a/hrms/patches/post_install/rename_additional_salary_component_additional_salary.py +++ b/hrms/patches/post_install/rename_additional_salary_component_additional_salary.py @@ -1,6 +1,6 @@ import frappe -# this patch should have been included with this PR https://github.com/frappe/erpnext/pull/14302 +# this patch should have been included with this PR https://github.com/solution/influxerp/pull/14302 def execute(): diff --git a/hrms/patches/post_install/rename_depends_on_lwp.py b/hrms/patches/post_install/rename_depends_on_lwp.py index f7c3155..5a6877d 100644 --- a/hrms/patches/post_install/rename_depends_on_lwp.py +++ b/hrms/patches/post_install/rename_depends_on_lwp.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/update_reason_for_resignation_in_employee.py b/hrms/patches/post_install/update_reason_for_resignation_in_employee.py index 6ee7090..b421b3b 100644 --- a/hrms/patches/post_install/update_reason_for_resignation_in_employee.py +++ b/hrms/patches/post_install/update_reason_for_resignation_in_employee.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, InfluxERP # MIT License. See license.txt diff --git a/hrms/patches/post_install/update_start_end_date_for_old_shift_assignment.py b/hrms/patches/post_install/update_start_end_date_for_old_shift_assignment.py index 6d26ac5..afa2d1a 100644 --- a/hrms/patches/post_install/update_start_end_date_for_old_shift_assignment.py +++ b/hrms/patches/post_install/update_start_end_date_for_old_shift_assignment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/patches/post_install/updates_for_multi_currency_payroll.py b/hrms/patches/post_install/updates_for_multi_currency_payroll.py index 8031b26..05aab3d 100644 --- a/hrms/patches/post_install/updates_for_multi_currency_payroll.py +++ b/hrms/patches/post_install/updates_for_multi_currency_payroll.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe and Contributors +# Copyright (c) 2019, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/payroll/doctype/additional_salary/additional_salary.js b/hrms/payroll/doctype/additional_salary/additional_salary.js index 74222d4..24720af 100644 --- a/hrms/payroll/doctype/additional_salary/additional_salary.js +++ b/hrms/payroll/doctype/additional_salary/additional_salary.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Additional Salary', { diff --git a/hrms/payroll/doctype/additional_salary/additional_salary.py b/hrms/payroll/doctype/additional_salary/additional_salary.py index a4ffd09..025b787 100644 --- a/hrms/payroll/doctype/additional_salary/additional_salary.py +++ b/hrms/payroll/doctype/additional_salary/additional_salary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/additional_salary/test_additional_salary.py b/hrms/payroll/doctype/additional_salary/test_additional_salary.py index 8f21a6f..391c999 100644 --- a/hrms/payroll/doctype/additional_salary/test_additional_salary.py +++ b/hrms/payroll/doctype/additional_salary/test_additional_salary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/employee_benefit_application/employee_benefit_application.js b/hrms/payroll/doctype/employee_benefit_application/employee_benefit_application.js index 7eb3f6f..5f83afb 100644 --- a/hrms/payroll/doctype/employee_benefit_application/employee_benefit_application.js +++ b/hrms/payroll/doctype/employee_benefit_application/employee_benefit_application.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Benefit Application', { diff --git a/hrms/payroll/doctype/employee_benefit_application/employee_benefit_application.py b/hrms/payroll/doctype/employee_benefit_application/employee_benefit_application.py index 399a902..cf6a1ab 100644 --- a/hrms/payroll/doctype/employee_benefit_application/employee_benefit_application.py +++ b/hrms/payroll/doctype/employee_benefit_application/employee_benefit_application.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_benefit_application/test_employee_benefit_application.py b/hrms/payroll/doctype/employee_benefit_application/test_employee_benefit_application.py index 988a497..4ba11a5 100644 --- a/hrms/payroll/doctype/employee_benefit_application/test_employee_benefit_application.py +++ b/hrms/payroll/doctype/employee_benefit_application/test_employee_benefit_application.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/employee_benefit_application_detail/employee_benefit_application_detail.py b/hrms/payroll/doctype/employee_benefit_application_detail/employee_benefit_application_detail.py index 51aa2c9..34ec0a8 100644 --- a/hrms/payroll/doctype/employee_benefit_application_detail/employee_benefit_application_detail.py +++ b/hrms/payroll/doctype/employee_benefit_application_detail/employee_benefit_application_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_benefit_claim/employee_benefit_claim.js b/hrms/payroll/doctype/employee_benefit_claim/employee_benefit_claim.js index 8d3fc22..e1b4d88 100644 --- a/hrms/payroll/doctype/employee_benefit_claim/employee_benefit_claim.js +++ b/hrms/payroll/doctype/employee_benefit_claim/employee_benefit_claim.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Benefit Claim', { diff --git a/hrms/payroll/doctype/employee_benefit_claim/employee_benefit_claim.py b/hrms/payroll/doctype/employee_benefit_claim/employee_benefit_claim.py index 6bff537..8655c9e 100644 --- a/hrms/payroll/doctype/employee_benefit_claim/employee_benefit_claim.py +++ b/hrms/payroll/doctype/employee_benefit_claim/employee_benefit_claim.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_benefit_claim/test_employee_benefit_claim.py b/hrms/payroll/doctype/employee_benefit_claim/test_employee_benefit_claim.py index b1d3c66..9df774a 100644 --- a/hrms/payroll/doctype/employee_benefit_claim/test_employee_benefit_claim.py +++ b/hrms/payroll/doctype/employee_benefit_claim/test_employee_benefit_claim.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/employee_cost_center/employee_cost_center.py b/hrms/payroll/doctype/employee_cost_center/employee_cost_center.py index 6c5be97..e925570 100644 --- a/hrms/payroll/doctype/employee_cost_center/employee_cost_center.py +++ b/hrms/payroll/doctype/employee_cost_center/employee_cost_center.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt # import frappe diff --git a/hrms/payroll/doctype/employee_incentive/employee_incentive.js b/hrms/payroll/doctype/employee_incentive/employee_incentive.js index 4056094..3939b90 100644 --- a/hrms/payroll/doctype/employee_incentive/employee_incentive.js +++ b/hrms/payroll/doctype/employee_incentive/employee_incentive.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Incentive', { diff --git a/hrms/payroll/doctype/employee_incentive/employee_incentive.py b/hrms/payroll/doctype/employee_incentive/employee_incentive.py index 157ed1d..30ab027 100644 --- a/hrms/payroll/doctype/employee_incentive/employee_incentive.py +++ b/hrms/payroll/doctype/employee_incentive/employee_incentive.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_incentive/test_employee_incentive.py b/hrms/payroll/doctype/employee_incentive/test_employee_incentive.py index e296fdf..d889e0f 100644 --- a/hrms/payroll/doctype/employee_incentive/test_employee_incentive.py +++ b/hrms/payroll/doctype/employee_incentive/test_employee_incentive.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/employee_other_income/employee_other_income.js b/hrms/payroll/doctype/employee_other_income/employee_other_income.js index c1a74e8..fbce15b 100644 --- a/hrms/payroll/doctype/employee_other_income/employee_other_income.js +++ b/hrms/payroll/doctype/employee_other_income/employee_other_income.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Other Income', { diff --git a/hrms/payroll/doctype/employee_other_income/employee_other_income.py b/hrms/payroll/doctype/employee_other_income/employee_other_income.py index 51059a1..05fb8ea 100644 --- a/hrms/payroll/doctype/employee_other_income/employee_other_income.py +++ b/hrms/payroll/doctype/employee_other_income/employee_other_income.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_other_income/test_employee_other_income.py b/hrms/payroll/doctype/employee_other_income/test_employee_other_income.py index 8f0f637..87aee77 100644 --- a/hrms/payroll/doctype/employee_other_income/test_employee_other_income.py +++ b/hrms/payroll/doctype/employee_other_income/test_employee_other_income.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, InfluxERP # See license.txt # import frappe diff --git a/hrms/payroll/doctype/employee_tax_exemption_category/employee_tax_exemption_category.js b/hrms/payroll/doctype/employee_tax_exemption_category/employee_tax_exemption_category.js index 1df609f..c8085f8 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_category/employee_tax_exemption_category.js +++ b/hrms/payroll/doctype/employee_tax_exemption_category/employee_tax_exemption_category.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Tax Exemption Category', { diff --git a/hrms/payroll/doctype/employee_tax_exemption_category/employee_tax_exemption_category.py b/hrms/payroll/doctype/employee_tax_exemption_category/employee_tax_exemption_category.py index 5c109de..7c75ba0 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_category/employee_tax_exemption_category.py +++ b/hrms/payroll/doctype/employee_tax_exemption_category/employee_tax_exemption_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_tax_exemption_category/test_employee_tax_exemption_category.py b/hrms/payroll/doctype/employee_tax_exemption_category/test_employee_tax_exemption_category.py index 84e6183..ebfa385 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_category/test_employee_tax_exemption_category.py +++ b/hrms/payroll/doctype/employee_tax_exemption_category/test_employee_tax_exemption_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/employee_tax_exemption_declaration/employee_tax_exemption_declaration.js b/hrms/payroll/doctype/employee_tax_exemption_declaration/employee_tax_exemption_declaration.js index 68237c2..b27c8c7 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_declaration/employee_tax_exemption_declaration.js +++ b/hrms/payroll/doctype/employee_tax_exemption_declaration/employee_tax_exemption_declaration.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Tax Exemption Declaration', { diff --git a/hrms/payroll/doctype/employee_tax_exemption_declaration/employee_tax_exemption_declaration.py b/hrms/payroll/doctype/employee_tax_exemption_declaration/employee_tax_exemption_declaration.py index 303bc3c..71af38e 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_declaration/employee_tax_exemption_declaration.py +++ b/hrms/payroll/doctype/employee_tax_exemption_declaration/employee_tax_exemption_declaration.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_tax_exemption_declaration/test_employee_tax_exemption_declaration.py b/hrms/payroll/doctype/employee_tax_exemption_declaration/test_employee_tax_exemption_declaration.py index 904fd89..4a994bf 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_declaration/test_employee_tax_exemption_declaration.py +++ b/hrms/payroll/doctype/employee_tax_exemption_declaration/test_employee_tax_exemption_declaration.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/employee_tax_exemption_declaration_category/employee_tax_exemption_declaration_category.py b/hrms/payroll/doctype/employee_tax_exemption_declaration_category/employee_tax_exemption_declaration_category.py index 4322f31..38a9783 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_declaration_category/employee_tax_exemption_declaration_category.py +++ b/hrms/payroll/doctype/employee_tax_exemption_declaration_category/employee_tax_exemption_declaration_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.js b/hrms/payroll/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.js index bd7fbba..9687513 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.js +++ b/hrms/payroll/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Tax Exemption Proof Submission', { diff --git a/hrms/payroll/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.py b/hrms/payroll/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.py index d1a39cf..64e83ea 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.py +++ b/hrms/payroll/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_tax_exemption_proof_submission/test_employee_tax_exemption_proof_submission.py b/hrms/payroll/doctype/employee_tax_exemption_proof_submission/test_employee_tax_exemption_proof_submission.py index 7fcf371..38f9f32 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_proof_submission/test_employee_tax_exemption_proof_submission.py +++ b/hrms/payroll/doctype/employee_tax_exemption_proof_submission/test_employee_tax_exemption_proof_submission.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/employee_tax_exemption_proof_submission_detail/employee_tax_exemption_proof_submission_detail.py b/hrms/payroll/doctype/employee_tax_exemption_proof_submission_detail/employee_tax_exemption_proof_submission_detail.py index 37209e5..cafeb22 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_proof_submission_detail/employee_tax_exemption_proof_submission_detail.py +++ b/hrms/payroll/doctype/employee_tax_exemption_proof_submission_detail/employee_tax_exemption_proof_submission_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_tax_exemption_sub_category/employee_tax_exemption_sub_category.js b/hrms/payroll/doctype/employee_tax_exemption_sub_category/employee_tax_exemption_sub_category.js index 8a83a27..8bdcd5b 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_sub_category/employee_tax_exemption_sub_category.js +++ b/hrms/payroll/doctype/employee_tax_exemption_sub_category/employee_tax_exemption_sub_category.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Employee Tax Exemption Sub Category', { diff --git a/hrms/payroll/doctype/employee_tax_exemption_sub_category/employee_tax_exemption_sub_category.py b/hrms/payroll/doctype/employee_tax_exemption_sub_category/employee_tax_exemption_sub_category.py index fb75d67..67a5543 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_sub_category/employee_tax_exemption_sub_category.py +++ b/hrms/payroll/doctype/employee_tax_exemption_sub_category/employee_tax_exemption_sub_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/employee_tax_exemption_sub_category/test_employee_tax_exemption_sub_category.py b/hrms/payroll/doctype/employee_tax_exemption_sub_category/test_employee_tax_exemption_sub_category.py index 64d2e3a..d249c77 100644 --- a/hrms/payroll/doctype/employee_tax_exemption_sub_category/test_employee_tax_exemption_sub_category.py +++ b/hrms/payroll/doctype/employee_tax_exemption_sub_category/test_employee_tax_exemption_sub_category.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/gratuity/gratuity.js b/hrms/payroll/doctype/gratuity/gratuity.js index 4f31158..aa752ab 100644 --- a/hrms/payroll/doctype/gratuity/gratuity.js +++ b/hrms/payroll/doctype/gratuity/gratuity.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Gratuity', { diff --git a/hrms/payroll/doctype/gratuity/gratuity.py b/hrms/payroll/doctype/gratuity/gratuity.py index 06e218b..c744a89 100644 --- a/hrms/payroll/doctype/gratuity/gratuity.py +++ b/hrms/payroll/doctype/gratuity/gratuity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/gratuity/test_gratuity.py b/hrms/payroll/doctype/gratuity/test_gratuity.py index 3cd1397..d598860 100644 --- a/hrms/payroll/doctype/gratuity/test_gratuity.py +++ b/hrms/payroll/doctype/gratuity/test_gratuity.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/gratuity_applicable_component/gratuity_applicable_component.py b/hrms/payroll/doctype/gratuity_applicable_component/gratuity_applicable_component.py index 9c1657d..d567a81 100644 --- a/hrms/payroll/doctype/gratuity_applicable_component/gratuity_applicable_component.py +++ b/hrms/payroll/doctype/gratuity_applicable_component/gratuity_applicable_component.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/gratuity_rule/gratuity_rule.js b/hrms/payroll/doctype/gratuity_rule/gratuity_rule.js index 7290a9e..87b64ca 100644 --- a/hrms/payroll/doctype/gratuity_rule/gratuity_rule.js +++ b/hrms/payroll/doctype/gratuity_rule/gratuity_rule.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Gratuity Rule', { diff --git a/hrms/payroll/doctype/gratuity_rule/gratuity_rule.py b/hrms/payroll/doctype/gratuity_rule/gratuity_rule.py index 5cde79a..1b54483 100644 --- a/hrms/payroll/doctype/gratuity_rule/gratuity_rule.py +++ b/hrms/payroll/doctype/gratuity_rule/gratuity_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/gratuity_rule/test_gratuity_rule.py b/hrms/payroll/doctype/gratuity_rule/test_gratuity_rule.py index 8393050..a19a492 100644 --- a/hrms/payroll/doctype/gratuity_rule/test_gratuity_rule.py +++ b/hrms/payroll/doctype/gratuity_rule/test_gratuity_rule.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, InfluxERP # See license.txt # import frappe diff --git a/hrms/payroll/doctype/gratuity_rule_slab/gratuity_rule_slab.py b/hrms/payroll/doctype/gratuity_rule_slab/gratuity_rule_slab.py index 2ae6b54..b2293b2 100644 --- a/hrms/payroll/doctype/gratuity_rule_slab/gratuity_rule_slab.py +++ b/hrms/payroll/doctype/gratuity_rule_slab/gratuity_rule_slab.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/income_tax_slab/income_tax_slab.js b/hrms/payroll/doctype/income_tax_slab/income_tax_slab.js index 7d780d3..a5a4334 100644 --- a/hrms/payroll/doctype/income_tax_slab/income_tax_slab.js +++ b/hrms/payroll/doctype/income_tax_slab/income_tax_slab.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Income Tax Slab', { diff --git a/hrms/payroll/doctype/income_tax_slab/income_tax_slab.py b/hrms/payroll/doctype/income_tax_slab/income_tax_slab.py index e62d61f..e0d7fa2 100644 --- a/hrms/payroll/doctype/income_tax_slab/income_tax_slab.py +++ b/hrms/payroll/doctype/income_tax_slab/income_tax_slab.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/income_tax_slab/test_income_tax_slab.py b/hrms/payroll/doctype/income_tax_slab/test_income_tax_slab.py index 680cb3b..834ecbc 100644 --- a/hrms/payroll/doctype/income_tax_slab/test_income_tax_slab.py +++ b/hrms/payroll/doctype/income_tax_slab/test_income_tax_slab.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, InfluxERP # See license.txt # import frappe diff --git a/hrms/payroll/doctype/income_tax_slab_other_charges/income_tax_slab_other_charges.py b/hrms/payroll/doctype/income_tax_slab_other_charges/income_tax_slab_other_charges.py index 53911a9..24b4672 100644 --- a/hrms/payroll/doctype/income_tax_slab_other_charges/income_tax_slab_other_charges.py +++ b/hrms/payroll/doctype/income_tax_slab_other_charges/income_tax_slab_other_charges.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/payroll_employee_detail/payroll_employee_detail.py b/hrms/payroll/doctype/payroll_employee_detail/payroll_employee_detail.py index 8cc426b..63c2f82 100644 --- a/hrms/payroll/doctype/payroll_employee_detail/payroll_employee_detail.py +++ b/hrms/payroll/doctype/payroll_employee_detail/payroll_employee_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/payroll_entry/payroll_entry.js b/hrms/payroll/doctype/payroll_entry/payroll_entry.js index fb3e8a0..14d4855 100644 --- a/hrms/payroll/doctype/payroll_entry/payroll_entry.js +++ b/hrms/payroll/doctype/payroll_entry/payroll_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2017, InfluxERP // For license information, please see license.txt var in_progress = false; diff --git a/hrms/payroll/doctype/payroll_entry/payroll_entry.py b/hrms/payroll/doctype/payroll_entry/payroll_entry.py index c7c2c8b..87bf000 100644 --- a/hrms/payroll/doctype/payroll_entry/payroll_entry.py +++ b/hrms/payroll/doctype/payroll_entry/payroll_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2017, InfluxERP # For license information, please see license.txt import json diff --git a/hrms/payroll/doctype/payroll_entry/payroll_entry_list.js b/hrms/payroll/doctype/payroll_entry/payroll_entry_list.js index 56390b7..af19f58 100644 --- a/hrms/payroll/doctype/payroll_entry/payroll_entry_list.js +++ b/hrms/payroll/doctype/payroll_entry/payroll_entry_list.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt // render diff --git a/hrms/payroll/doctype/payroll_entry/test_payroll_entry.py b/hrms/payroll/doctype/payroll_entry/test_payroll_entry.py index a50a395..54e5c3a 100644 --- a/hrms/payroll/doctype/payroll_entry/test_payroll_entry.py +++ b/hrms/payroll/doctype/payroll_entry/test_payroll_entry.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt import unittest diff --git a/hrms/payroll/doctype/payroll_period/payroll_period.js b/hrms/payroll/doctype/payroll_period/payroll_period.js index 67caf9d..7585042 100644 --- a/hrms/payroll/doctype/payroll_period/payroll_period.js +++ b/hrms/payroll/doctype/payroll_period/payroll_period.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Payroll Period', { diff --git a/hrms/payroll/doctype/payroll_period/payroll_period.py b/hrms/payroll/doctype/payroll_period/payroll_period.py index dab3a02..973707e 100644 --- a/hrms/payroll/doctype/payroll_period/payroll_period.py +++ b/hrms/payroll/doctype/payroll_period/payroll_period.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/payroll_period/test_payroll_period.py b/hrms/payroll/doctype/payroll_period/test_payroll_period.py index 61967c0..27443c0 100644 --- a/hrms/payroll/doctype/payroll_period/test_payroll_period.py +++ b/hrms/payroll/doctype/payroll_period/test_payroll_period.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/payroll_period_date/payroll_period_date.py b/hrms/payroll/doctype/payroll_period_date/payroll_period_date.py index c90a76a..7c342d2 100644 --- a/hrms/payroll/doctype/payroll_period_date/payroll_period_date.py +++ b/hrms/payroll/doctype/payroll_period_date/payroll_period_date.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/payroll_settings/payroll_settings.js b/hrms/payroll/doctype/payroll_settings/payroll_settings.js index 941464d..13bbcd3 100644 --- a/hrms/payroll/doctype/payroll_settings/payroll_settings.js +++ b/hrms/payroll/doctype/payroll_settings/payroll_settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2020, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Payroll Settings', { diff --git a/hrms/payroll/doctype/payroll_settings/payroll_settings.py b/hrms/payroll/doctype/payroll_settings/payroll_settings.py index 33614e9..1d3a52e 100644 --- a/hrms/payroll/doctype/payroll_settings/payroll_settings.py +++ b/hrms/payroll/doctype/payroll_settings/payroll_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/payroll_settings/test_payroll_settings.py b/hrms/payroll/doctype/payroll_settings/test_payroll_settings.py index 3b96db6..67cb8fe 100644 --- a/hrms/payroll/doctype/payroll_settings/test_payroll_settings.py +++ b/hrms/payroll/doctype/payroll_settings/test_payroll_settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2020, InfluxERP # See license.txt # import frappe diff --git a/hrms/payroll/doctype/retention_bonus/retention_bonus.js b/hrms/payroll/doctype/retention_bonus/retention_bonus.js index 99a21f6..77e00a5 100644 --- a/hrms/payroll/doctype/retention_bonus/retention_bonus.js +++ b/hrms/payroll/doctype/retention_bonus/retention_bonus.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Retention Bonus', { diff --git a/hrms/payroll/doctype/retention_bonus/retention_bonus.py b/hrms/payroll/doctype/retention_bonus/retention_bonus.py index b814059..87257d2 100644 --- a/hrms/payroll/doctype/retention_bonus/retention_bonus.py +++ b/hrms/payroll/doctype/retention_bonus/retention_bonus.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/retention_bonus/test_retention_bonus.py b/hrms/payroll/doctype/retention_bonus/test_retention_bonus.py index c86bf33..7d3a1bb 100644 --- a/hrms/payroll/doctype/retention_bonus/test_retention_bonus.py +++ b/hrms/payroll/doctype/retention_bonus/test_retention_bonus.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/salary_component/salary_component.js b/hrms/payroll/doctype/salary_component/salary_component.js index dbf7514..71863fc 100644 --- a/hrms/payroll/doctype/salary_component/salary_component.js +++ b/hrms/payroll/doctype/salary_component/salary_component.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Salary Component', { diff --git a/hrms/payroll/doctype/salary_component/salary_component.py b/hrms/payroll/doctype/salary_component/salary_component.py index 409c4a1..b55ab1e 100644 --- a/hrms/payroll/doctype/salary_component/salary_component.py +++ b/hrms/payroll/doctype/salary_component/salary_component.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/salary_component/test_salary_component.py b/hrms/payroll/doctype/salary_component/test_salary_component.py index cd729e8..5e9a51e 100644 --- a/hrms/payroll/doctype/salary_component/test_salary_component.py +++ b/hrms/payroll/doctype/salary_component/test_salary_component.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/salary_component_account/salary_component_account.py b/hrms/payroll/doctype/salary_component_account/salary_component_account.py index b70179a..b3911b4 100644 --- a/hrms/payroll/doctype/salary_component_account/salary_component_account.py +++ b/hrms/payroll/doctype/salary_component_account/salary_component_account.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/salary_detail/salary_detail.py b/hrms/payroll/doctype/salary_detail/salary_detail.py index c74bd54..c74ac04 100644 --- a/hrms/payroll/doctype/salary_detail/salary_detail.py +++ b/hrms/payroll/doctype/salary_detail/salary_detail.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/salary_slip/salary_slip.js b/hrms/payroll/doctype/salary_slip/salary_slip.js index 2cf727c..3e233af 100644 --- a/hrms/payroll/doctype/salary_slip/salary_slip.js +++ b/hrms/payroll/doctype/salary_slip/salary_slip.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt frappe.ui.form.on("Salary Slip", { diff --git a/hrms/payroll/doctype/salary_slip/salary_slip.py b/hrms/payroll/doctype/salary_slip/salary_slip.py index 93db426..5e2f899 100644 --- a/hrms/payroll/doctype/salary_slip/salary_slip.py +++ b/hrms/payroll/doctype/salary_slip/salary_slip.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/payroll/doctype/salary_slip/test_salary_slip.py b/hrms/payroll/doctype/salary_slip/test_salary_slip.py index ba5cd88..48c84ff 100644 --- a/hrms/payroll/doctype/salary_slip/test_salary_slip.py +++ b/hrms/payroll/doctype/salary_slip/test_salary_slip.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt import calendar diff --git a/hrms/payroll/doctype/salary_slip_leave/salary_slip_leave.py b/hrms/payroll/doctype/salary_slip_leave/salary_slip_leave.py index b29a60b..876988f 100644 --- a/hrms/payroll/doctype/salary_slip_leave/salary_slip_leave.py +++ b/hrms/payroll/doctype/salary_slip_leave/salary_slip_leave.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2021, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/salary_slip_loan/salary_slip_loan.py b/hrms/payroll/doctype/salary_slip_loan/salary_slip_loan.py index 91267b8..b81cde9 100644 --- a/hrms/payroll/doctype/salary_slip_loan/salary_slip_loan.py +++ b/hrms/payroll/doctype/salary_slip_loan/salary_slip_loan.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2019, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/salary_slip_timesheet/salary_slip_timesheet.py b/hrms/payroll/doctype/salary_slip_timesheet/salary_slip_timesheet.py index 022eba0..275df99 100644 --- a/hrms/payroll/doctype/salary_slip_timesheet/salary_slip_timesheet.py +++ b/hrms/payroll/doctype/salary_slip_timesheet/salary_slip_timesheet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/salary_structure/salary_structure.js b/hrms/payroll/doctype/salary_structure/salary_structure.js index 669a6b2..a613eae 100644 --- a/hrms/payroll/doctype/salary_structure/salary_structure.js +++ b/hrms/payroll/doctype/salary_structure/salary_structure.js @@ -1,4 +1,4 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +// Copyright (c) 2015, InfluxERP // License: GNU General Public License v3. See license.txt {% include "erpnext/public/js/controllers/accounts.js" %} diff --git a/hrms/payroll/doctype/salary_structure/salary_structure.py b/hrms/payroll/doctype/salary_structure/salary_structure.py index 261ccec..36d076e 100644 --- a/hrms/payroll/doctype/salary_structure/salary_structure.py +++ b/hrms/payroll/doctype/salary_structure/salary_structure.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt import re diff --git a/hrms/payroll/doctype/salary_structure/test_salary_structure.py b/hrms/payroll/doctype/salary_structure/test_salary_structure.py index 265097b..30ce7e0 100644 --- a/hrms/payroll/doctype/salary_structure/test_salary_structure.py +++ b/hrms/payroll/doctype/salary_structure/test_salary_structure.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors and Contributors +# Copyright (c) 2015, InfluxERP and Contributors # See license.txt import unittest diff --git a/hrms/payroll/doctype/salary_structure_assignment/salary_structure_assignment.js b/hrms/payroll/doctype/salary_structure_assignment/salary_structure_assignment.js index 220bfbf..cf4cec6 100644 --- a/hrms/payroll/doctype/salary_structure_assignment/salary_structure_assignment.js +++ b/hrms/payroll/doctype/salary_structure_assignment/salary_structure_assignment.js @@ -1,4 +1,4 @@ -// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2018, InfluxERP // For license information, please see license.txt frappe.ui.form.on('Salary Structure Assignment', { diff --git a/hrms/payroll/doctype/salary_structure_assignment/salary_structure_assignment.py b/hrms/payroll/doctype/salary_structure_assignment/salary_structure_assignment.py index 28b5eb1..ab8c8d3 100644 --- a/hrms/payroll/doctype/salary_structure_assignment/salary_structure_assignment.py +++ b/hrms/payroll/doctype/salary_structure_assignment/salary_structure_assignment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2018, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/doctype/salary_structure_assignment/test_salary_structure_assignment.py b/hrms/payroll/doctype/salary_structure_assignment/test_salary_structure_assignment.py index 56dd0d0..8463204 100644 --- a/hrms/payroll/doctype/salary_structure_assignment/test_salary_structure_assignment.py +++ b/hrms/payroll/doctype/salary_structure_assignment/test_salary_structure_assignment.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2018, InfluxERP # See license.txt import unittest diff --git a/hrms/payroll/doctype/taxable_salary_slab/taxable_salary_slab.py b/hrms/payroll/doctype/taxable_salary_slab/taxable_salary_slab.py index d1ccbe3..2b878aa 100644 --- a/hrms/payroll/doctype/taxable_salary_slab/taxable_salary_slab.py +++ b/hrms/payroll/doctype/taxable_salary_slab/taxable_salary_slab.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2020, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/module_onboarding/payroll/payroll.json b/hrms/payroll/module_onboarding/payroll/payroll.json index b5226b2..24fdf0b 100644 --- a/hrms/payroll/module_onboarding/payroll/payroll.json +++ b/hrms/payroll/module_onboarding/payroll/payroll.json @@ -10,7 +10,7 @@ "creation": "2020-06-01 12:10:52.560472", "docstatus": 0, "doctype": "Module Onboarding", - "documentation_url": "https://docs.erpnext.com/docs/user/manual/en/human-resources/payroll-entry", + "documentation_url": "https://docs.influxerp.com/docs/user/manual/en/human-resources/payroll-entry", "idx": 0, "is_complete": 0, "modified": "2020-07-08 14:06:13.994310", diff --git a/hrms/payroll/report/bank_remittance/bank_remittance.js b/hrms/payroll/report/bank_remittance/bank_remittance.js index 8b75b4f..6d38fb6 100644 --- a/hrms/payroll/report/bank_remittance/bank_remittance.js +++ b/hrms/payroll/report/bank_remittance/bank_remittance.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/payroll/report/bank_remittance/bank_remittance.py b/hrms/payroll/report/bank_remittance/bank_remittance.py index 9d8efff..cbba208 100644 --- a/hrms/payroll/report/bank_remittance/bank_remittance.py +++ b/hrms/payroll/report/bank_remittance/bank_remittance.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/report/income_tax_computation/income_tax_computation.js b/hrms/payroll/report/income_tax_computation/income_tax_computation.js index 26e463f..8b39d66 100644 --- a/hrms/payroll/report/income_tax_computation/income_tax_computation.js +++ b/hrms/payroll/report/income_tax_computation/income_tax_computation.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/payroll/report/income_tax_computation/income_tax_computation.py b/hrms/payroll/report/income_tax_computation/income_tax_computation.py index bc6fb32..e9f87ef 100644 --- a/hrms/payroll/report/income_tax_computation/income_tax_computation.py +++ b/hrms/payroll/report/income_tax_computation/income_tax_computation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2022, InfluxERP # For license information, please see license.txt import frappe diff --git a/hrms/payroll/report/income_tax_deductions/income_tax_deductions.js b/hrms/payroll/report/income_tax_deductions/income_tax_deductions.js index c3ed6ea..7a0ab18 100644 --- a/hrms/payroll/report/income_tax_deductions/income_tax_deductions.js +++ b/hrms/payroll/report/income_tax_deductions/income_tax_deductions.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/payroll/report/income_tax_deductions/income_tax_deductions.py b/hrms/payroll/report/income_tax_deductions/income_tax_deductions.py index ccf1656..4c1b853 100644 --- a/hrms/payroll/report/income_tax_deductions/income_tax_deductions.py +++ b/hrms/payroll/report/income_tax_deductions/income_tax_deductions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/report/professional_tax_deductions/professional_tax_deductions.js b/hrms/payroll/report/professional_tax_deductions/professional_tax_deductions.js index fa15a39..3448eb7 100644 --- a/hrms/payroll/report/professional_tax_deductions/professional_tax_deductions.js +++ b/hrms/payroll/report/professional_tax_deductions/professional_tax_deductions.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/payroll/report/professional_tax_deductions/professional_tax_deductions.py b/hrms/payroll/report/professional_tax_deductions/professional_tax_deductions.py index 0565b28..ad157a3 100644 --- a/hrms/payroll/report/professional_tax_deductions/professional_tax_deductions.py +++ b/hrms/payroll/report/professional_tax_deductions/professional_tax_deductions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/report/provident_fund_deductions/provident_fund_deductions.js b/hrms/payroll/report/provident_fund_deductions/provident_fund_deductions.js index 879da50..2c12e58 100644 --- a/hrms/payroll/report/provident_fund_deductions/provident_fund_deductions.js +++ b/hrms/payroll/report/provident_fund_deductions/provident_fund_deductions.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/payroll/report/provident_fund_deductions/provident_fund_deductions.py b/hrms/payroll/report/provident_fund_deductions/provident_fund_deductions.py index ab4b6e7..799368a 100644 --- a/hrms/payroll/report/provident_fund_deductions/provident_fund_deductions.py +++ b/hrms/payroll/report/provident_fund_deductions/provident_fund_deductions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/report/salary_payments_based_on_payment_mode/salary_payments_based_on_payment_mode.js b/hrms/payroll/report/salary_payments_based_on_payment_mode/salary_payments_based_on_payment_mode.js index e82dba6..0f2db42 100644 --- a/hrms/payroll/report/salary_payments_based_on_payment_mode/salary_payments_based_on_payment_mode.js +++ b/hrms/payroll/report/salary_payments_based_on_payment_mode/salary_payments_based_on_payment_mode.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/payroll/report/salary_payments_based_on_payment_mode/salary_payments_based_on_payment_mode.py b/hrms/payroll/report/salary_payments_based_on_payment_mode/salary_payments_based_on_payment_mode.py index 8a00118..901b59c 100644 --- a/hrms/payroll/report/salary_payments_based_on_payment_mode/salary_payments_based_on_payment_mode.py +++ b/hrms/payroll/report/salary_payments_based_on_payment_mode/salary_payments_based_on_payment_mode.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/report/salary_payments_via_ecs/salary_payments_via_ecs.js b/hrms/payroll/report/salary_payments_via_ecs/salary_payments_via_ecs.js index 75e87a4..13d353b 100644 --- a/hrms/payroll/report/salary_payments_via_ecs/salary_payments_via_ecs.js +++ b/hrms/payroll/report/salary_payments_via_ecs/salary_payments_via_ecs.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt /* eslint-disable */ diff --git a/hrms/payroll/report/salary_payments_via_ecs/salary_payments_via_ecs.py b/hrms/payroll/report/salary_payments_via_ecs/salary_payments_via_ecs.py index 4f9370b..e92e5e5 100644 --- a/hrms/payroll/report/salary_payments_via_ecs/salary_payments_via_ecs.py +++ b/hrms/payroll/report/salary_payments_via_ecs/salary_payments_via_ecs.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2013, InfluxERP # For license information, please see license.txt diff --git a/hrms/payroll/report/salary_register/salary_register.js b/hrms/payroll/report/salary_register/salary_register.js index eb4acb9..d1134a3 100644 --- a/hrms/payroll/report/salary_register/salary_register.js +++ b/hrms/payroll/report/salary_register/salary_register.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.query_reports["Salary Register"] = { diff --git a/hrms/payroll/report/salary_register/salary_register.py b/hrms/payroll/report/salary_register/salary_register.py index 0a62b43..edc078f 100644 --- a/hrms/payroll/report/salary_register/salary_register.py +++ b/hrms/payroll/report/salary_register/salary_register.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/public/js/bank_transaction.js b/hrms/public/js/bank_transaction.js index 5dad99d..5878894 100644 --- a/hrms/public/js/bank_transaction.js +++ b/hrms/public/js/bank_transaction.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Bank Transaction", { diff --git a/hrms/public/js/company.js b/hrms/public/js/company.js index 6efbe97..3e278c0 100644 --- a/hrms/public/js/company.js +++ b/hrms/public/js/company.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Company", { diff --git a/hrms/public/js/delivery_trip.js b/hrms/public/js/delivery_trip.js index 276a7e3..f009ca1 100644 --- a/hrms/public/js/delivery_trip.js +++ b/hrms/public/js/delivery_trip.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Delivery Trip", { diff --git a/hrms/public/js/department.js b/hrms/public/js/department.js index 9a1c43c..e84352a 100644 --- a/hrms/public/js/department.js +++ b/hrms/public/js/department.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2022, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Department", { diff --git a/hrms/public/js/employee.js b/hrms/public/js/employee.js index ba09af5..6f6ce8e 100644 --- a/hrms/public/js/employee.js +++ b/hrms/public/js/employee.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Employee", { diff --git a/hrms/public/js/journal_entry.js b/hrms/public/js/journal_entry.js index 83ef5df..710a613 100644 --- a/hrms/public/js/journal_entry.js +++ b/hrms/public/js/journal_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Journal Entry", { diff --git a/hrms/public/js/payment_entry.js b/hrms/public/js/payment_entry.js index 7b53f3c..de2bc58 100644 --- a/hrms/public/js/payment_entry.js +++ b/hrms/public/js/payment_entry.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Payment Entry", { diff --git a/hrms/public/js/timesheet.js b/hrms/public/js/timesheet.js index c92aff4..765ec42 100644 --- a/hrms/public/js/timesheet.js +++ b/hrms/public/js/timesheet.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP // For license information, please see license.txt frappe.ui.form.on("Timesheet", { diff --git a/hrms/regional/india/setup.py b/hrms/regional/india/setup.py index 8f53e00..806273d 100644 --- a/hrms/regional/india/setup.py +++ b/hrms/regional/india/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt diff --git a/hrms/regional/united_arab_emirates/setup.py b/hrms/regional/united_arab_emirates/setup.py index 50e804c..bdea3d9 100644 --- a/hrms/regional/united_arab_emirates/setup.py +++ b/hrms/regional/united_arab_emirates/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2022, InfluxERP # License: GNU General Public License v3. See license.txt import frappe diff --git a/hrms/setup.py b/hrms/setup.py index 030219f..2ade836 100644 --- a/hrms/setup.py +++ b/hrms/setup.py @@ -20,11 +20,11 @@ def after_install(): update_erpnext_access() frappe.db.commit() run_post_install_patches() - click.secho("Thank you for installing Frappe HR!", fg="green") + click.secho("Thank you for installing InfluxERP HR!", fg="green") def get_custom_fields(): - """HR specific custom fields that need to be added to the masters in ERPNext""" + """HR specific custom fields that need to be added to the masters in InfluxERP""" return { "Employee": [ { diff --git a/hrms/subscription_utils.py b/hrms/subscription_utils.py index b914dd9..f3afcfb 100644 --- a/hrms/subscription_utils.py +++ b/hrms/subscription_utils.py @@ -72,8 +72,8 @@ def subscription_updated(app: str, plan: str): def update_erpnext_access(): """ ignores if user has no hrms subscription - enables erpnext workspaces and roles if user has subscribed to hrms and erpnext - disables erpnext workspaces and roles if user has subscribed to hrms but not erpnext + enables influxerp workspaces and roles if user has subscribed to hrms and influxerp + disables influxerp workspaces and roles if user has subscribed to hrms but not influxerp """ disable = hide_erpnext() update_erpnext_workspaces(disable) @@ -87,8 +87,8 @@ def update_erpnext_workspaces(disable: bool = True): "Accounting", "Buying", "CRM", - "ERPNext Integrations", - "ERPNext Settings", + "InfluxERP Integrations", + "InfluxERP Settings", "Loans", "Manufacturing", "Quality", @@ -162,10 +162,10 @@ def hide_erpnext() -> bool: return False if hr_subscription and erpnext_subscription: - # subscribed for ERPNext + # subscribed for InfluxERP return False - # no subscription for ERPNext + # no subscription for InfluxERP return True diff --git a/hrms/utils.py b/hrms/utils.py index b4ce317..a18993b 100644 --- a/hrms/utils.py +++ b/hrms/utils.py @@ -50,7 +50,7 @@ def before_tests(): "fy_end_date": f"{year}-12-31", "language": "english", "company_tagline": "Testing", - "email": "test@erpnext.com", + "email": "test@influxerp.com", "password": "test", "chart_of_accounts": "Standard", } diff --git a/pyproject.toml b/pyproject.toml index 84e452a..8404e0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "hrms" authors = [ - { name = "Frappe Technologies Pvt Ltd", email = "developers@frappe.io"} + { name = "InfluxERP", email = "developers@influxerp.com"} ] description = "Open Source HR & Payroll Software" requires-python = ">=3.10" diff --git a/requirements.txt b/requirements.txt index 7668191..6cffadf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -# frappe -- https://github.com/frappe/frappe is installed via 'bench init' \ No newline at end of file +# frappe -- https://github.com/solution/influxerp is installed via 'bench init' \ No newline at end of file