Browse Source

[CHG] Licence Changed

pull/134/merge
Ajmalcybrosys 6 years ago
parent
commit
301ff2dab4
  1. 6
      access_restriction_by_ip/__init__.py
  2. 8
      access_restriction_by_ip/__manifest__.py
  3. 6
      access_restriction_by_ip/controllers/__init__.py
  4. 6
      access_restriction_by_ip/controllers/main.py
  5. 6
      access_restriction_by_ip/models/__init__.py
  6. 6
      access_restriction_by_ip/models/allowed_ips.py
  7. 22
      hr_contract_types/__manifest__.py
  8. 1
      hr_payroll_account_community/__init__.py
  9. 29
      hr_payroll_account_community/__manifest__.py
  10. 1
      hr_payroll_account_community/models/__init__.py
  11. 1
      hr_payroll_account_community/models/hr_payroll_account.py
  12. 1
      hr_payroll_account_community/tests/__init__.py
  13. 1
      hr_payroll_account_community/tests/test_hr_payroll_account.py
  14. 1
      hr_payroll_account_community/wizard/__init__.py
  15. 1
      hr_payroll_account_community/wizard/hr_payroll_payslips_by_employees.py
  16. 1
      hr_payroll_community/__init__.py
  17. 30
      hr_payroll_community/__manifest__.py
  18. 1
      hr_payroll_community/models/__init__.py
  19. 1
      hr_payroll_community/models/hr_contract.py
  20. 1
      hr_payroll_community/models/hr_employee.py
  21. 1
      hr_payroll_community/models/hr_payslip.py
  22. 1
      hr_payroll_community/models/hr_salary_rule.py
  23. 1
      hr_payroll_community/models/res_config_settings.py
  24. 2
      hr_payroll_community/report/__init__.py
  25. 2
      hr_payroll_community/report/report_contribution_register.py
  26. 1
      hr_payroll_community/report/report_payslip_details.py
  27. 1
      hr_payroll_community/tests/__init__.py
  28. 1
      hr_payroll_community/tests/common.py
  29. 1
      hr_payroll_community/tests/test_payslip_flow.py
  30. 1
      hr_payroll_community/wizard/__init__.py
  31. 1
      hr_payroll_community/wizard/hr_payroll_contribution_register_report.py
  32. 1
      hr_payroll_community/wizard/hr_payroll_payslips_by_employees.py
  33. 4
      login_user_detail/__manifest__.py
  34. 6
      project_task_timer/__init__.py
  35. 8
      project_task_timer/__manifest__.py
  36. 6
      project_task_timer/models/__init__.py
  37. 6
      project_task_timer/models/project_task_timer.py

6
access_restriction_by_ip/__init__.py

@ -5,14 +5,14 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Niyas Raphy(<https://www.cybrosys.com>) # Author: Niyas Raphy(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################

8
access_restriction_by_ip/__manifest__.py

@ -5,14 +5,14 @@
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Niyas Raphy(<https://www.cybrosys.com>) # Author: Niyas Raphy(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################
@ -26,7 +26,7 @@
'website': 'https://www.cybrosys.com', 'website': 'https://www.cybrosys.com',
'category': 'Tools', 'category': 'Tools',
'depends': ['base', 'mail'], 'depends': ['base', 'mail'],
'license': 'LGPL-3', 'license': 'AGPL-3',
'data': [ 'data': [
'security/ir.model.access.csv', 'security/ir.model.access.csv',
'views/allowed_ips_view.xml', 'views/allowed_ips_view.xml',

6
access_restriction_by_ip/controllers/__init__.py

@ -5,14 +5,14 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Niyas Raphy(<https://www.cybrosys.com>) # Author: Niyas Raphy(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################

6
access_restriction_by_ip/controllers/main.py

@ -5,15 +5,15 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Niyas Raphy(<https://www.cybrosys.com>) # Author: Niyas Raphy(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################

6
access_restriction_by_ip/models/__init__.py

@ -5,15 +5,15 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Niyas Raphy(<https://www.cybrosys.com>) # Author: Niyas Raphy(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################

6
access_restriction_by_ip/models/allowed_ips.py

@ -5,15 +5,15 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Niyas Raphy(<https://www.cybrosys.com>) # Author: Niyas Raphy(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################

22
hr_contract_types/__manifest__.py

@ -1,25 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
###################################################################################
# A part of OpenHRMS Project <https://www.openhrms.com>
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
# Author: Tintuk Tomin (<https://www.cybrosys.com>)
#
# This program is free software: you can modify
# it under the terms of the GNU Affero General Public License (AGPL) as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
###################################################################################
{ {
'name': 'Employee Contracts Types', 'name': 'Employee Contracts Types',
@ -41,4 +20,5 @@
'installable': True, 'installable': True,
'auto_install': False, 'auto_install': False,
'application': False, 'application': False,
'license': 'AGPL-3',
} }

1
hr_payroll_account_community/__init__.py

@ -1,5 +1,4 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models from . import models
from . import wizard from . import wizard

29
hr_payroll_account_community/__manifest__.py

@ -1,29 +1,8 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
###################################################################################
# A part of OpenHRMS Project <https://www.openhrms.com>
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
# Author: Tintuk Tomin (<https://www.cybrosys.com>)
#
# This program is free software: you can modify
# it under the terms of the GNU Affero General Public License (AGPL) as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
###################################################################################
{ {
'name': 'Payroll Accounting', 'name': 'Payroll Accounting',
'category': 'Human Resources', 'category': 'Generic Modules/Human Resources',
'description': """ 'description': """
Generic Payroll system Integrated with Accounting. Generic Payroll system Integrated with Accounting.
================================================== ==================================================
@ -32,9 +11,13 @@ Generic Payroll system Integrated with Accounting.
* Payment Encoding * Payment Encoding
* Company Contribution Management * Company Contribution Management
""", """,
'version': '13.0.1.0.0',
'author': 'Cybrosys Techno Solutions', 'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'website': 'https://www.cybrosys.com',
'depends': ['hr_payroll_community', 'account'], 'depends': ['hr_payroll_community', 'account'],
'data': ['views/hr_payroll_account_views.xml'], 'data': ['views/hr_payroll_account_views.xml'],
# 'demo': ['data/hr_payroll_account_community_demo.xml'],
'test': ['../account/test/account_minimal_test.xml'], 'test': ['../account/test/account_minimal_test.xml'],
'license': 'AGPL-3',
} }

1
hr_payroll_account_community/models/__init__.py

@ -1,4 +1,3 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import hr_payroll_account from . import hr_payroll_account

1
hr_payroll_account_community/models/hr_payroll_account.py

@ -1,5 +1,4 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models, _ from odoo import api, fields, models, _
from odoo.exceptions import UserError from odoo.exceptions import UserError

1
hr_payroll_account_community/tests/__init__.py

@ -1,4 +1,3 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import test_hr_payroll_account_community from . import test_hr_payroll_account_community

1
hr_payroll_account_community/tests/test_hr_payroll_account.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import time import time

1
hr_payroll_account_community/wizard/__init__.py

@ -1,4 +1,3 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import hr_payroll_payslips_by_employees from . import hr_payroll_payslips_by_employees

1
hr_payroll_account_community/wizard/hr_payroll_payslips_by_employees.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models from odoo import api, models

1
hr_payroll_community/__init__.py

@ -1,5 +1,4 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models from . import models
from . import report from . import report

30
hr_payroll_community/__manifest__.py

@ -1,37 +1,18 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
###################################################################################
# A part of OpenHRMS Project <https://www.openhrms.com>
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
# Author: Tintuk Tomin (<https://www.cybrosys.com>)
#
# This program is free software: you can modify
# it under the terms of the GNU Affero General Public License (AGPL) as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
###################################################################################
{ {
'name': 'Payroll', 'name': 'Payroll',
'category': 'Human Resources', 'category': 'Generic Modules/Human Resources',
'sequence': 38, 'version': '13.0.1.0.0',
'author': 'Cybrosys Techno Solutions', 'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'website': 'https://www.cybrosys.com',
'summary': 'Manage your employee payroll records', 'summary': 'Manage your employee payroll records',
'description': "", 'description': "",
'depends': [ 'depends': [
'hr_contract', 'hr_contract',
'hr_holidays', 'hr_holidays',
'decimal_precision',
'hr_contract_types', 'hr_contract_types',
], ],
'data': [ 'data': [
@ -51,5 +32,6 @@
'views/report_payslip_templates.xml', 'views/report_payslip_templates.xml',
'views/report_payslipdetails_templates.xml', 'views/report_payslipdetails_templates.xml',
], ],
'license': 'AGPL-3',
# 'demo': ['data/hr_payroll_demo.xml'], # 'demo': ['data/hr_payroll_demo.xml'],
} }

1
hr_payroll_community/models/__init__.py

@ -1,5 +1,4 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import hr_contract from . import hr_contract
from . import hr_employee from . import hr_employee

1
hr_payroll_community/models/hr_contract.py

@ -1,5 +1,4 @@
# -*- coding:utf-8 -*- # -*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models from odoo import api, fields, models

1
hr_payroll_community/models/hr_employee.py

@ -1,5 +1,4 @@
# -*- coding:utf-8 -*- # -*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models from odoo import api, fields, models

1
hr_payroll_community/models/hr_payslip.py

@ -1,5 +1,4 @@
# -*- coding:utf-8 -*- # -*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import babel import babel
from collections import defaultdict from collections import defaultdict

1
hr_payroll_community/models/hr_salary_rule.py

@ -1,5 +1,4 @@
# -*- coding:utf-8 -*- # -*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models, _ from odoo import api, fields, models, _
from odoo.exceptions import UserError, ValidationError from odoo.exceptions import UserError, ValidationError

1
hr_payroll_community/models/res_config_settings.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models from odoo import fields, models

2
hr_payroll_community/report/__init__.py

@ -1,6 +1,4 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import report_payslip_details from . import report_payslip_details
from . import report_contribution_register from . import report_contribution_register

2
hr_payroll_community/report/report_contribution_register.py

@ -1,7 +1,5 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from datetime import datetime from datetime import datetime
from dateutil.relativedelta import relativedelta from dateutil.relativedelta import relativedelta

1
hr_payroll_community/report/report_payslip_details.py

@ -1,5 +1,4 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models from odoo import api, models

1
hr_payroll_community/tests/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import test_payslip_flow from . import test_payslip_flow

1
hr_payroll_community/tests/common.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from datetime import datetime, timedelta from datetime import datetime, timedelta

1
hr_payroll_community/tests/test_payslip_flow.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import os import os

1
hr_payroll_community/wizard/__init__.py

@ -1,5 +1,4 @@
#-*- coding:utf-8 -*- #-*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import hr_payroll_payslips_by_employees from . import hr_payroll_payslips_by_employees
from . import hr_payroll_contribution_register_report from . import hr_payroll_contribution_register_report

1
hr_payroll_community/wizard/hr_payroll_contribution_register_report.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from datetime import datetime from datetime import datetime
from dateutil import relativedelta from dateutil import relativedelta

1
hr_payroll_community/wizard/hr_payroll_payslips_by_employees.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models, _ from odoo import api, fields, models, _
from odoo.exceptions import UserError from odoo.exceptions import UserError

4
login_user_detail/__manifest__.py

@ -22,7 +22,7 @@
{ {
'name': "User Log Details", 'name': "User Log Details",
'version': '13.0.1.0.1', 'version': '13.0.1.0.0',
'summary': """Login User Details & IP Address""", 'summary': """Login User Details & IP Address""",
'description': """This module records login information of user""", 'description': """This module records login information of user""",
'author': "Cybrosys Techno Solutions ", 'author': "Cybrosys Techno Solutions ",
@ -31,7 +31,7 @@
'website': "https://www.cybrosys.com", 'website': "https://www.cybrosys.com",
'category': 'Tools', 'category': 'Tools',
'depends': ['base'], 'depends': ['base'],
'license': 'LGPL-3', 'license': 'AGPL-3',
'data': [ 'data': [
'security/ir.model.access.csv', 'security/ir.model.access.csv',
'views/login_user_views.xml'], 'views/login_user_views.xml'],

6
project_task_timer/__init__.py

@ -5,15 +5,15 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
# Author: Jesni Banu(<http://www.cybrosys.com>) # Author: Jesni Banu(<http://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################

8
project_task_timer/__manifest__.py

@ -5,21 +5,21 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
# Author: Jesni Banu(<http://www.cybrosys.com>) # Author: Jesni Banu(<http://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################
{ {
'name': 'Project Task Timer', 'name': 'Project Task Timer',
'version': '13.0.0.1.0', 'version': '13.0.1.0.0',
'summary': """Task Timer With Start & Stop""", 'summary': """Task Timer With Start & Stop""",
'description': """"This module helps you to track time sheet in project automatically.""", 'description': """"This module helps you to track time sheet in project automatically.""",
'category': 'Project', 'category': 'Project',

6
project_task_timer/models/__init__.py

@ -5,15 +5,15 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
# Author: Jesni Banu(<http://www.cybrosys.com>) # Author: Jesni Banu(<http://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################

6
project_task_timer/models/project_task_timer.py

@ -5,15 +5,15 @@
# Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>). # Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
# Author: Jesni Banu(<http://www.cybrosys.com>) # Author: Jesni Banu(<http://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER # you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # GNU LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# #
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # GENERAL PUBLIC LICENSE (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################

Loading…
Cancel
Save