diff --git a/manufacturing_timesheet/README.rst b/manufacturing_timesheet/README.rst new file mode 100644 index 000000000..40c124377 --- /dev/null +++ b/manufacturing_timesheet/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://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. + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.odoo.com/documentation/16.0/legal/licenses.html) + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer : (V16) Amaya Aravind @ Cybrosys + +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..405176705 --- /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: Cybrosys Technologies(). +# +# 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..ef4d21b23 --- /dev/null +++ b/manufacturing_timesheet/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies(). +# +# 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': '16.0.1.0.0', + 'category': 'Manufacturing,Project', + 'summary': 'Timesheet for manufacturing.', + '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': ['base', 'mrp', 'hr_timesheet', 'hr', 'project'], + 'data': [ + 'views/mrp_production_views.xml', + 'views/account_analytic_line_views.xml', + 'views/project_project_views.xml', + 'views/mrp_workorder_views.xml', + 'views/mrp_timesheet_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..c0705427e --- /dev/null +++ b/manufacturing_timesheet/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 25.05.2023 +#### Version 16.0.1.0.0 +#### ADD +Initial Commit for Manufacturing (MRP) Timesheet. \ No newline at end of file diff --git a/manufacturing_timesheet/models/__init__.py b/manufacturing_timesheet/models/__init__.py new file mode 100644 index 000000000..ce2016cf6 --- /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: Cybrosys Technologies() +# +# 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..8265d5071 --- /dev/null +++ b/manufacturing_timesheet/models/account_analytic_line.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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..11256df37 --- /dev/null +++ b/manufacturing_timesheet/models/mrp_workorder.py @@ -0,0 +1,161 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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', + readonly=False, 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') + for rec in timesheet: + rec.write({ + 'unit_amount': self.duration, + }) + 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') + for rec in timesheet: + rec.write({ + 'unit_amount': self.duration, + }) + return res diff --git a/manufacturing_timesheet/models/project_project.py b/manufacturing_timesheet/models/project_project.py new file mode 100644 index 000000000..ea66fb128 --- /dev/null +++ b/manufacturing_timesheet/models/project_project.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Technologies() +# +# 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/1.png b/manufacturing_timesheet/static/description/assets/modules/1.png new file mode 100644 index 000000000..ba1058c42 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/1.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/2.png b/manufacturing_timesheet/static/description/assets/modules/2.png new file mode 100644 index 000000000..6949185dd Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/2.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/3.png b/manufacturing_timesheet/static/description/assets/modules/3.png new file mode 100644 index 000000000..4e506f79b Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/3.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/4.png b/manufacturing_timesheet/static/description/assets/modules/4.png new file mode 100644 index 000000000..e78427938 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/4.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/5.png b/manufacturing_timesheet/static/description/assets/modules/5.png new file mode 100755 index 000000000..272ec20f9 Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/5.png differ diff --git a/manufacturing_timesheet/static/description/assets/modules/6.png b/manufacturing_timesheet/static/description/assets/modules/6.png new file mode 100644 index 000000000..7d5c3154f Binary files /dev/null and b/manufacturing_timesheet/static/description/assets/modules/6.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..74b8f2616 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..0be7db8e4 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..61e96b3fd 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..e25d651cf 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..ff324ba84 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..3b3da6803 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..a0c07d736 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..2d875bef8 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..18d3c55d4 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..56bab740e 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..5bf716224 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..c6df75dc5 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..22cd15ce4 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..0bfce1e0a 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..075d9b29f 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..2784d6631 --- /dev/null +++ b/manufacturing_timesheet/static/description/index.html @@ -0,0 +1,688 @@ +
+ +
+ +
+
+ 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 of 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..16d9767bf --- /dev/null +++ b/manufacturing_timesheet/views/account_analytic_line_views.xml @@ -0,0 +1,30 @@ + + + + + account.analytic.line.view.tree.inherit.manufacturing.timesheet + account.analytic.line + + + + + + + + + + + account.analytic.line.view.tree.inherit.manufacturing.timesheet + account.analytic.line + + + + + + + + \ No newline at end of file diff --git a/manufacturing_timesheet/views/mrp_production_views.xml b/manufacturing_timesheet/views/mrp_production_views.xml new file mode 100644 index 000000000..35f56f308 --- /dev/null +++ b/manufacturing_timesheet/views/mrp_production_views.xml @@ -0,0 +1,78 @@ + + + + + mrp.production.view.form.inherit.manufacturing.timesheet + mrp.production + + + + + + + + + + + + + + + + + + + + + + + + + + + + +