diff --git a/manufacturing_timesheet/README.rst b/manufacturing_timesheet/README.rst new file mode 100644 index 000000000..3459902f2 --- /dev/null +++ b/manufacturing_timesheet/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Manufacturing (MRP) Timesheet +============================= +This module will help you to create timesheet for manufacturing orders according to the work order time tracking. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer : (V15) Mohammed Irfan T ,Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/manufacturing_timesheet/__init__.py b/manufacturing_timesheet/__init__.py new file mode 100644 index 000000000..f88dcb87b --- /dev/null +++ b/manufacturing_timesheet/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import models diff --git a/manufacturing_timesheet/__manifest__.py b/manufacturing_timesheet/__manifest__.py new file mode 100644 index 000000000..b1e8c00cc --- /dev/null +++ b/manufacturing_timesheet/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +{ + 'name': 'Manufacturing (MRP) Timesheet', + 'version': '15.0.1.0.0', + 'category': 'Manufacturing,Project', + 'summary': 'This module will help to implementing a timesheet for ' + 'manufacturing orders ', + 'description': """ This module will help you to create timesheet for + manufacturing orders according to the work order time tracking.Separate + Project and tasks will be created for managing manufacturing orders""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['mrp', 'hr_timesheet', 'project'], + 'data': [ + 'views/account_analytic_line_views.xml', + 'views/mrp_production_views.xml', + 'views/project_project_views.xml', + 'views/mrp_workorder_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/manufacturing_timesheet/doc/RELEASE_NOTES.md b/manufacturing_timesheet/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..6c721c567 --- /dev/null +++ b/manufacturing_timesheet/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 16.10.2023 +#### Version 15.0.1.0.0 +#### ADD +-Initial Commit for Manufacturing (MRP) Timesheet. diff --git a/manufacturing_timesheet/models/__init__.py b/manufacturing_timesheet/models/__init__.py new file mode 100644 index 000000000..f02b03f74 --- /dev/null +++ b/manufacturing_timesheet/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import account_analytic_line +from . import mrp_workorder +from . import project_project diff --git a/manufacturing_timesheet/models/account_analytic_line.py b/manufacturing_timesheet/models/account_analytic_line.py new file mode 100644 index 000000000..2e4c220f7 --- /dev/null +++ b/manufacturing_timesheet/models/account_analytic_line.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import fields, models + + +class AccountAnalyticLine(models.Model): + """Inherited model account_analytic_line to add a new field related + to manufacturing timesheet.""" + _inherit = 'account.analytic.line' + + is_manufacturing = fields.Boolean(string='Is Manufacturing', + invisible=True, + help='This boolean will help to ' + 'recognise the timesheet related to' + ' manufacturing.') diff --git a/manufacturing_timesheet/models/mrp_workorder.py b/manufacturing_timesheet/models/mrp_workorder.py new file mode 100644 index 000000000..0d89f48b3 --- /dev/null +++ b/manufacturing_timesheet/models/mrp_workorder.py @@ -0,0 +1,147 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from datetime import datetime +from odoo import fields, models + + +class MrpWorkorder(models.Model): + """Inherited model mrp_workorder to add field and functions related to + manufacturing timesheet. + Methods: + button_start(self): + Supering the function of start button to start the time of + timesheet. + button_pending(self): + Supering the function of pause button to set timesheet in + progress state. + button_finish(self): + Supering the function of done button to calculate total + time in timesheet.""" + _inherit = 'mrp.workorder' + + employee_id = fields.Many2one('hr.employee', string='Employee', + required=True, + help='Employee in work order', store=True) + + def button_start(self): + """ Supering the function of start button to start the timer + of timesheet. + Boolean: Returns true""" + res = super(MrpWorkorder, self).button_start() + project = self.env['project.project'].search( + [('name', '=', ("MO: {}".format(self.production_id.name)))]) + if project: + task_id = project.task_ids.search([('name', '=', ( + "{} in {} for {} on {}".format( + self.name, self.workcenter_id.name, + self.product_id.display_name, + str(self.date_planned_start))))]) + if not task_id: + task_id = self.env['project.task'].create({ + 'name': ("{} in {} for {} on {}".format( + self.name, self.workcenter_id.name, + self.product_id.display_name, str( + self.date_planned_start))), + 'project_id': project.id, + 'date_assign': self.date_planned_start, + 'date_deadline': self.date_planned_finished, + 'planned_hours': self.duration_expected, + }) + self.env['account.analytic.line'].create({ + 'task_id': task_id.id, + 'date': datetime.today(), + 'name': ("{} in {} for {}".format( + self.name, self.workcenter_id.name, + self.product_id.display_name)), + 'employee_id': self.employee_id.id, + 'is_manufacturing': True + }) + else: + project_id = self.env['project.project'].create( + {'name': ("MO: {}".format(self.production_id.name)), + 'is_manufacturing': True}) + task_id = project_id.task_ids.search([('name', '=', ( + "{} in {} for {} on {}".format( + self.name, self.workcenter_id.name, + self.product_id.display_name, + str(self.date_planned_start))))]) + if not task_id: + task_id = self.env['project.task'].create({ + 'name': ("{} in {} for {} on {}".format( + self.name, self.workcenter_id.name, + self.product_id.display_name, str( + self.date_planned_start))), + 'project_id': project_id.id, + 'date_assign': self.date_planned_start, + 'date_deadline': self.date_planned_finished, + 'planned_hours': self.duration_expected, + }) + self.env['account.analytic.line'].create({ + 'task_id': task_id.id, + 'date': datetime.today(), + 'name': ("{} in {} for {}".format( + self.name, self.workcenter_id.name, + self.product_id.display_name)), + 'employee_id': self.employee_id.id, + 'is_manufacturing': True + }) + return res + + def button_pending(self): + """ Supering the function of pause button to set timesheet in + progress state. + Boolean: Returns true""" + res = super(MrpWorkorder, self).button_pending() + project = self.env['project.project'].search( + [('name', '=', ("MO: {}".format(self.production_id.name)))]) + task_id = project.task_ids.search([('name', '=', ( + "{} in {} for {} on {}".format(self.name, self.workcenter_id.name, + self.product_id.display_name, + str(self.date_planned_start))))]) + task_id.write({ + 'planned_hours': self.duration_expected + }) + timesheet = task_id.mapped('timesheet_ids') + [rec.write({ + 'unit_amount': self.duration, + }) for rec in timesheet] + return res + + def button_finish(self): + """ Supering the function of done button to calculate total time in + timesheet. + Boolean: Returns true""" + res = super(MrpWorkorder, self).button_finish() + project = self.env['project.project'].search( + [('name', '=', ("MO: {}".format(self.production_id.name)))]) + task_id = project.task_ids.search([('name', '=', ( + "{} in {} for {} on {}".format(self.name, self.workcenter_id.name, + self.product_id.display_name, + str(self.date_planned_start))))]) + task_id.write({ + 'planned_hours': self.duration_expected + }) + timesheet = task_id.mapped('timesheet_ids') + [rec.write({ + 'unit_amount': self.duration, + }) for rec in timesheet] + return res diff --git a/manufacturing_timesheet/models/project_project.py b/manufacturing_timesheet/models/project_project.py new file mode 100644 index 000000000..18a68da01 --- /dev/null +++ b/manufacturing_timesheet/models/project_project.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import fields, models + + +class ProjectProject(models.Model): + """Inherited model project_project to add a new field related to + manufacturing timesheet""" + _inherit = 'project.project' + + is_manufacturing = fields.Boolean(string='Is Manufacturing', + help='This boolean will help to ' + 'recognise the projects related to ' + 'manufacturing.') diff --git a/manufacturing_timesheet/static/description/assets/icons/check.png b/manufacturing_timesheet/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/check.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/chevron.png b/manufacturing_timesheet/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/chevron.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/cogs.png b/manufacturing_timesheet/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/cogs.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/consultation.png b/manufacturing_timesheet/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/consultation.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/ecom-black.png b/manufacturing_timesheet/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/ecom-black.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/education-black.png b/manufacturing_timesheet/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/education-black.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/hotel-black.png b/manufacturing_timesheet/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/hotel-black.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/license.png b/manufacturing_timesheet/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/license.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/lifebuoy.png b/manufacturing_timesheet/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/lifebuoy.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/manufacturing-black.png b/manufacturing_timesheet/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/manufacturing-black.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/pos-black.png b/manufacturing_timesheet/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/pos-black.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/puzzle.png b/manufacturing_timesheet/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/puzzle.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/restaurant-black.png b/manufacturing_timesheet/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/restaurant-black.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/service-black.png b/manufacturing_timesheet/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/service-black.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/trading-black.png b/manufacturing_timesheet/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/trading-black.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/training.png b/manufacturing_timesheet/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/training.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/update.png b/manufacturing_timesheet/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/update.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/user.png b/manufacturing_timesheet/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/user.png differ diff --git a/manufacturing_timesheet/static/description/assets/icons/wrench.png b/manufacturing_timesheet/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/icons/wrench.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/categories.png b/manufacturing_timesheet/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/categories.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/check-box.png b/manufacturing_timesheet/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/check-box.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/compass.png b/manufacturing_timesheet/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/compass.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/corporate.png b/manufacturing_timesheet/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/corporate.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/customer-support.png b/manufacturing_timesheet/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/customer-support.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/cybrosys-logo.png b/manufacturing_timesheet/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/cybrosys-logo.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/features.png b/manufacturing_timesheet/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/features.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/logo.png b/manufacturing_timesheet/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/logo.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/pictures.png b/manufacturing_timesheet/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/pictures.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/pie-chart.png b/manufacturing_timesheet/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/pie-chart.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/right-arrow.png b/manufacturing_timesheet/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/right-arrow.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/star.png b/manufacturing_timesheet/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/star.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/support.png b/manufacturing_timesheet/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/support.png differ diff --git a/manufacturing_timesheet/static/description/assets/misc/whatsapp.png b/manufacturing_timesheet/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/misc/whatsapp.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/cancel_mrp_order.png b/manufacturing_timesheet/static/description/assets/modules/cancel_mrp_order.png new file mode 100644 index 000000000..eb7ebcdff Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/cancel_mrp_order.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/manufacturing_report.png b/manufacturing_timesheet/static/description/assets/modules/manufacturing_report.png new file mode 100644 index 000000000..bea96ebc8 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/manufacturing_report.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/project_task_timer.png b/manufacturing_timesheet/static/description/assets/modules/project_task_timer.png new file mode 100644 index 000000000..8eb268300 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/project_task_timer.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/serial_no_from_mo.png b/manufacturing_timesheet/static/description/assets/modules/serial_no_from_mo.png new file mode 100644 index 000000000..25507105a Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/serial_no_from_mo.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/simple_order.png b/manufacturing_timesheet/static/description/assets/modules/simple_order.png new file mode 100644 index 000000000..c000dae7a Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/simple_order.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/task_checklist.png b/manufacturing_timesheet/static/description/assets/modules/task_checklist.png new file mode 100644 index 000000000..a371728b3 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/task_checklist.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/1.png b/manufacturing_timesheet/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..f19ba68e9 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/1.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/10.png b/manufacturing_timesheet/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..72eea3f47 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/10.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/11.png b/manufacturing_timesheet/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..a536ce40b Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/11.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/12.png b/manufacturing_timesheet/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..4ccc1da97 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/12.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/2.png b/manufacturing_timesheet/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..f219e5fcb Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/2.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/3.png b/manufacturing_timesheet/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..849d64edb Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/3.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/4.png b/manufacturing_timesheet/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..a82065f86 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/4.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/5.png b/manufacturing_timesheet/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..8219794f3 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/5.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/6.png b/manufacturing_timesheet/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..97e9d9067 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/6.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/7.png b/manufacturing_timesheet/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..5cca3eb72 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/7.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/8.png b/manufacturing_timesheet/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..a5bffb53d Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/8.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/9.png b/manufacturing_timesheet/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..a779ec8ec Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/9.png differ diff --git a/manufacturing_timesheet/static/description/assets/screenshots/hero.gif b/manufacturing_timesheet/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..0eefa2599 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/screenshots/hero.gif differ diff --git a/manufacturing_timesheet/static/description/banner.png b/manufacturing_timesheet/static/description/banner.png new file mode 100644 index 000000000..b23e3d477 Binary files /dev/null and b/manufacturing_timesheet/static/description/banner.png differ diff --git a/manufacturing_timesheet/static/description/icon.png b/manufacturing_timesheet/static/description/icon.png new file mode 100644 index 000000000..099d1b808 Binary files /dev/null and b/manufacturing_timesheet/static/description/icon.png differ diff --git a/manufacturing_timesheet/static/description/index.html b/manufacturing_timesheet/static/description/index.html new file mode 100644 index 000000000..2ae5f8c06 --- /dev/null +++ b/manufacturing_timesheet/static/description/index.html @@ -0,0 +1,643 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Manufacturing (MRP) Timesheet

+

+ Add Timesheet For Manufacturing.

+ + +
+
+
+
+ +
+
+ +
+

+ Explore This + Module

+
+ + + +
+
+ +
+

+ Overview +

+
+
+
+ This module will help you to create timesheet for manufacturing orders + according to the work order time tracking.Separate Project and tasks + will be created for managing manufacturing orders. +
+
+ + +
+
+ +
+

+ Features +

+
+
+
+
+ + Timesheets for manufacturing. +
+
+ + Can choose employee from work order itself. +
+
+ + Using project and tasks makes it more easy. +
+
+ + A project will be created in the name of Manufacturing Order , and task will be created in the name of work order. The time tracking of the work order will be added as timesheet. +
+
+
+
+
+ + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Enable Work Orders in the configuration settings of + Manufacturing to view work orders tab. +

+ +
+
+

+ If enabled, the Work order tab will be added. And there will be + an option to choose the Employee for the corresponding work + order. +

+ +
+
+

+ If you click on the Start button of work order,a project and + task will be created to the corresponding manufacturing order + and work order. There will a boolean field inside the project + to identify it as manufacturing order. +

+ + + +
+
+

+ Inside the task,you can see the timesheet created in the + name of employee that selected in the work order. +

+ +
+
+

+ If you click on the Pause button of work order, the tracked + time will be added to corresponding timesheet,and it will show + the current progress. +

+ + +
+
+

+ If you click on the Done button of work order, the tracked time + will be added to corresponding timesheet. +

+ + +
+
+

+ There will be separate menu for the Timesheet that related to + the manufacturing orders. +

+ + +
+
+
+ + +
+
+ +
+

+ Related + Products +

+
+
+
+ +
+
+ + +
+
+ +
+

+ Our Services +

+
+
+
+
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + +
+
+ +
+

+ Our + Industries +

+
+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/manufacturing_timesheet/views/account_analytic_line_views.xml b/manufacturing_timesheet/views/account_analytic_line_views.xml new file mode 100644 index 000000000..c44d64d99 --- /dev/null +++ b/manufacturing_timesheet/views/account_analytic_line_views.xml @@ -0,0 +1,53 @@ + + + + + account.analytic.line.view.tree.inherit.manufacturing.timesheet + account.analytic.line + + + + + + + + + + account.analytic.line.view.tree.inherit.manufacturing.timesheet + account.analytic.line + + + + + + + + + + Timesheet + ir.actions.act_window + account.analytic.line + tree + {'create': False} + [('is_manufacturing','=',True)] + + +

+ No Timesheet +

+
+
+ + +
diff --git a/manufacturing_timesheet/views/mrp_production_views.xml b/manufacturing_timesheet/views/mrp_production_views.xml new file mode 100644 index 000000000..35b88f723 --- /dev/null +++ b/manufacturing_timesheet/views/mrp_production_views.xml @@ -0,0 +1,78 @@ + + + + + mrp.production.view.form.inherit.manufacturing.timesheet + mrp.production + + + + + + + + + + + + + + + + + + + + + + + + + + + + +