diff --git a/pantry_payroll/README.rst b/pantry_payroll/README.rst new file mode 100755 index 000000000..bb111f127 --- /dev/null +++ b/pantry_payroll/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: LGPL-3 + +Payroll Management In Pantry +============================ +This module allow us to manage payroll in pantry. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +======= +General Public License, version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developer : (V17) Bhagyadev KP, + (V18) Nivedhya 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/pantry_payroll/__init__.py b/pantry_payroll/__init__.py new file mode 100755 index 000000000..097bdb395 --- /dev/null +++ b/pantry_payroll/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/pantry_payroll/__manifest__.py b/pantry_payroll/__manifest__.py new file mode 100755 index 000000000..1b5d151b6 --- /dev/null +++ b/pantry_payroll/__manifest__.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Payroll Management In Pantry', + 'version': '18.0.1.0.0', + 'category': 'Human Resources', + 'summary': """Efficiently oversee payroll operations by factoring in + pantry expenditures through seamless deductions""", + 'description': """This app will allow us to Manage Payroll of Pantry. + While creating Employee Payslip ,Salary Rule will be Added to that + Employee. The Amount of Product will Deduct from Salary.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "http://www.cybrosys.com", + 'depends': ['sale_management', 'hr_payroll_community'], + 'data': [ + 'security/pantry_payroll_security.xml', + 'security/ir.model.access.csv', + 'data/salary_rule_data.xml', + 'data/ir_sequence_data.xml', + 'views/product_product_views.xml', + 'views/product_template_views.xml', + 'views/pantry_order_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} + diff --git a/pantry_payroll/data/ir_sequence_data.xml b/pantry_payroll/data/ir_sequence_data.xml new file mode 100755 index 000000000..ff31ceadd --- /dev/null +++ b/pantry_payroll/data/ir_sequence_data.xml @@ -0,0 +1,15 @@ + + + + + + Pantry Order sequence + pantry.order + TRUE + PAO/ + 1 + 1 + 4 + + + diff --git a/pantry_payroll/data/salary_rule_data.xml b/pantry_payroll/data/salary_rule_data.xml new file mode 100755 index 000000000..09690a44d --- /dev/null +++ b/pantry_payroll/data/salary_rule_data.xml @@ -0,0 +1,48 @@ + + + + + + PR + Pantry + + code + result = inputs.PR and - (inputs.PR.amount) + + + + + + PR + Pantry + + + + + BASE + Base for new structures + + + + + ME + Marketing Executive + + + + + + MEGG + Marketing Executive for Gilles Gravie + + + + + + diff --git a/pantry_payroll/doc/RELEASE_NOTES.md b/pantry_payroll/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..c0fbdb9fb --- /dev/null +++ b/pantry_payroll/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 27.12.2024 +#### Version 18.0.1.0.0 +#### ADD +- Initial Commit for Payroll Management In Pantry diff --git a/pantry_payroll/models/__init__.py b/pantry_payroll/models/__init__.py new file mode 100755 index 000000000..831525461 --- /dev/null +++ b/pantry_payroll/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import hr_payslip +from . import pantry_order +from . import product_product +from . import product_template diff --git a/pantry_payroll/models/hr_payslip.py b/pantry_payroll/models/hr_payslip.py new file mode 100755 index 000000000..66365d571 --- /dev/null +++ b/pantry_payroll/models/hr_payslip.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, models + + +class HrPayslip(models.Model): + """Class for HR Payslip""" + _inherit = 'hr.payslip' + + @api.model + def get_inputs(self, contracts, date_from, date_to): + """This function calculates the additional inputs + for the employee payslip.""" + res = super(HrPayslip, self).get_inputs(contracts, date_from, date_to) + amount_employee = 0 + employee_id = self.env['hr.contract'].browse( + contracts.id).employee_id + pantry_lines = self.env['pantry.order'].search([ + ('partner_id', '=', employee_id.user_id.partner_id.id) + ]) + for adv_obj in pantry_lines: + if self.date_from <= adv_obj.date_order.date() <= self.date_to: + amount_employee += adv_obj.amount_total + for result in res: + result['amount'] = amount_employee + return res diff --git a/pantry_payroll/models/pantry_order.py b/pantry_payroll/models/pantry_order.py new file mode 100644 index 000000000..f764d39fe --- /dev/null +++ b/pantry_payroll/models/pantry_order.py @@ -0,0 +1,93 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class PantryOrder(models.Model): + """A class that represents a new model pantry order""" + _name = 'pantry.order' + _description = 'Pantry Order' + _inherit = ['mail.thread', 'mail.activity.mixin'] + + name = fields.Char(string='Order Sequence', readonly=True, + help='Sequence of the order') + partner_id = fields.Many2one('res.partner', string='Order User', + readonly=True, + default=lambda self: self.env.user.partner_id, + help='The user who is ordering') + state = fields.Selection(string='Status', required=True, selection=[ + ('draft', 'Draft'), ('confirmed', 'Confirmed')], default='draft', + help='The current status of the order') + date_order = fields.Datetime(string='Order Date', + default=fields.Datetime.now, readonly=True, + help='The date order') + order_line_ids = fields.One2many('pantry.order.line', + 'pantry_order_id', + string='Order Line', help="Order lines") + amount_total = fields.Float(string='Total', compute='_compute_amount_total', + help='The total amount of the order') + + @api.model + def create(self, vals): + """Sequence for the order""" + if vals.get('name', 'New') == 'New': + vals['name'] = self.env['ir.sequence'].next_by_code( + 'pantry.order') or 'New' + res = super(PantryOrder, self).create(vals) + return res + + @api.depends('order_line_ids') + def _compute_amount_total(self): + """Calculates the amount_total""" + for rec in self: + rec.amount_total = sum( + rec.mapped('order_line_ids').mapped('subtotal')) + + def action_confirm_pantry_order(self): + """Change the state to confirmed""" + self.state = 'confirmed' + + +class PantryOrderLine(models.Model): + """A class that represents a new model pantry order line""" + _name = 'pantry.order.line' + _description = 'Pantry Order Line' + + pantry_order_id = fields.Many2one('pantry.order', string='Pantry Order', + required=True, + help='The corresponding pantry order') + product_id = fields.Many2one('product.product', string='Product', + required=True, + domain=[('pantry_product', '=', True)], + help='The product to order') + quantity = fields.Float(string='Quantity', + help='The quantity of the product') + unit_price = fields.Float(string='Unit Price', + help='The unit price of the product') + subtotal = fields.Float(string='Subtotal', compute='_compute_subtotal', + help='The subtotal of the order line') + + @api.depends('quantity') + def _compute_subtotal(self): + """Calculates the subtotal""" + for rec in self: + rec.subtotal = rec.quantity * rec.unit_price diff --git a/pantry_payroll/models/product_product.py b/pantry_payroll/models/product_product.py new file mode 100755 index 000000000..f2ea2d743 --- /dev/null +++ b/pantry_payroll/models/product_product.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ProductProduct(models.Model): + """Class for adding quantity button on product kanban view.""" + _inherit = "product.product" + + quantity = fields.Integer(string="Quantity", help="Quantity of the product", default=1) + + def action_quantity_decrement(self): + """Function for increment the quantity of product""" + if self.quantity > 1: + self.quantity -= 1 + + def action_quantity_increment(self): + """Function for decrement the quantity of product""" + self.quantity += 1 + + def action_buy_pantry(self): + """Make a quotation while purchasing a product from the pantry.""" + quotation = self.env['pantry.order'].search( + [('partner_id', '=', self.env.user.partner_id.id), + ('state', '=', 'draft')]) + val_list = { + 'product_id': self.id, + 'unit_price': self.lst_price, + 'quantity': self.quantity, + } + if quotation: + val_list['pantry_order_id'] = quotation[0].id + product = quotation.order_line_ids.filtered( + lambda sol: sol.product_id == self) + if product: + product[0].quantity += self.quantity + else: + quotation.write( + {'order_line_ids': [fields.Command.create(val_list)]}) + else: + quotation = self.env['pantry.order'].create([{ + 'partner_id': self.env.user.partner_id.id, + 'order_line_ids': [fields.Command.create(val_list)] + }]) + self.quantity = 1 + return { + 'type': 'ir.actions.act_window', + 'res_model': 'pantry.order', + 'res_id': quotation.id, + 'view_mode': 'form', + 'target': 'current', + 'views': [[False, "form"]], + } diff --git a/pantry_payroll/models/product_template.py b/pantry_payroll/models/product_template.py new file mode 100755 index 000000000..f418f899a --- /dev/null +++ b/pantry_payroll/models/product_template.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ProductTemplate(models.Model): + """A class that represents already existing model product template""" + _inherit = 'product.template' + + pantry_product = fields.Boolean(string="Pantry Product", + help='Is this a pantry product or not') diff --git a/pantry_payroll/security/ir.model.access.csv b/pantry_payroll/security/ir.model.access.csv new file mode 100755 index 000000000..00b2aea7c --- /dev/null +++ b/pantry_payroll/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_pantry_order_user,access.pantry.order.user,model_pantry_order,base.group_user,1,1,1,0 +access_pantry_order_admin,access.pantry.order.admin,model_pantry_order,pantry_payroll.group_pantry_admin,1,1,1,1 +access_pantry_order_line_user,access.pantry.order.line.user,model_pantry_order_line,base.group_user,1,1,1,1 diff --git a/pantry_payroll/security/pantry_payroll_security.xml b/pantry_payroll/security/pantry_payroll_security.xml new file mode 100755 index 000000000..ee4682de0 --- /dev/null +++ b/pantry_payroll/security/pantry_payroll_security.xml @@ -0,0 +1,25 @@ + + + + + + Pantry Admin + + + + Pantry admin rule + + [] + + + + + Pantry user rule + + [('partner_id','=',user.partner_id.id)] + + + + diff --git a/pantry_payroll/static/description/assets/cybro-icon.png b/pantry_payroll/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/pantry_payroll/static/description/assets/cybro-icon.png differ diff --git a/pantry_payroll/static/description/assets/cybro-odoo.png b/pantry_payroll/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/pantry_payroll/static/description/assets/cybro-odoo.png differ diff --git a/pantry_payroll/static/description/assets/h2.png b/pantry_payroll/static/description/assets/h2.png new file mode 100755 index 000000000..0bfc4707d Binary files /dev/null and b/pantry_payroll/static/description/assets/h2.png differ diff --git a/pantry_payroll/static/description/assets/icons/arrows-repeat.svg b/pantry_payroll/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/banner-1.png b/pantry_payroll/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/banner-1.png differ diff --git a/pantry_payroll/static/description/assets/icons/banner-2.svg b/pantry_payroll/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/banner-bg.png b/pantry_payroll/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/banner-bg.png differ diff --git a/pantry_payroll/static/description/assets/icons/banner-bg.svg b/pantry_payroll/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/banner-call.svg b/pantry_payroll/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/pantry_payroll/static/description/assets/icons/banner-mail.svg b/pantry_payroll/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/pantry_payroll/static/description/assets/icons/banner-pattern.svg b/pantry_payroll/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/banner-promo.svg b/pantry_payroll/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/brand-pair.svg b/pantry_payroll/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/check.png b/pantry_payroll/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/check.png differ diff --git a/pantry_payroll/static/description/assets/icons/chevron.png b/pantry_payroll/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/chevron.png differ diff --git a/pantry_payroll/static/description/assets/icons/close-icon.svg b/pantry_payroll/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/pantry_payroll/static/description/assets/icons/cogs.png b/pantry_payroll/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/cogs.png differ diff --git a/pantry_payroll/static/description/assets/icons/collabarate-icon.svg b/pantry_payroll/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/pantry_payroll/static/description/assets/icons/consultation.png b/pantry_payroll/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/consultation.png differ diff --git a/pantry_payroll/static/description/assets/icons/cybro-logo.png b/pantry_payroll/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/cybro-logo.png differ diff --git a/pantry_payroll/static/description/assets/icons/down.svg b/pantry_payroll/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/pantry_payroll/static/description/assets/icons/ecom-black.png b/pantry_payroll/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/ecom-black.png differ diff --git a/pantry_payroll/static/description/assets/icons/education-black.png b/pantry_payroll/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/education-black.png differ diff --git a/pantry_payroll/static/description/assets/icons/faq.png b/pantry_payroll/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/faq.png differ diff --git a/pantry_payroll/static/description/assets/icons/feature-icon.svg b/pantry_payroll/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/feature.png b/pantry_payroll/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/feature.png differ diff --git a/pantry_payroll/static/description/assets/icons/gear.svg b/pantry_payroll/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/hero.gif b/pantry_payroll/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..48f8cd84f Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/hero.gif differ diff --git a/pantry_payroll/static/description/assets/icons/hire-odoo.svg b/pantry_payroll/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/hotel-black.png b/pantry_payroll/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/hotel-black.png differ diff --git a/pantry_payroll/static/description/assets/icons/license.png b/pantry_payroll/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/license.png differ diff --git a/pantry_payroll/static/description/assets/icons/life-ring-icon.svg b/pantry_payroll/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/lifebuoy.png b/pantry_payroll/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/lifebuoy.png differ diff --git a/pantry_payroll/static/description/assets/icons/mail.svg b/pantry_payroll/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/pantry_payroll/static/description/assets/icons/manufacturing-black.png b/pantry_payroll/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/manufacturing-black.png differ diff --git a/pantry_payroll/static/description/assets/icons/notes.png b/pantry_payroll/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/notes.png differ diff --git a/pantry_payroll/static/description/assets/icons/notification icon.svg b/pantry_payroll/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/odoo-consultancy.svg b/pantry_payroll/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/pantry_payroll/static/description/assets/icons/odoo-licencing.svg b/pantry_payroll/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/pantry_payroll/static/description/assets/icons/odoo-logo.png b/pantry_payroll/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/odoo-logo.png differ diff --git a/pantry_payroll/static/description/assets/icons/patter.svg b/pantry_payroll/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/pattern1.png b/pantry_payroll/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/pattern1.png differ diff --git a/pantry_payroll/static/description/assets/icons/pos-black.png b/pantry_payroll/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/pos-black.png differ diff --git a/pantry_payroll/static/description/assets/icons/puzzle-piece-icon.svg b/pantry_payroll/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/puzzle.png b/pantry_payroll/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/puzzle.png differ diff --git a/pantry_payroll/static/description/assets/icons/replace-icon.svg b/pantry_payroll/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/restaurant-black.png b/pantry_payroll/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/restaurant-black.png differ diff --git a/pantry_payroll/static/description/assets/icons/screenshot-main.png b/pantry_payroll/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/screenshot-main.png differ diff --git a/pantry_payroll/static/description/assets/icons/screenshot.png b/pantry_payroll/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/screenshot.png differ diff --git a/pantry_payroll/static/description/assets/icons/service-black.png b/pantry_payroll/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/service-black.png differ diff --git a/pantry_payroll/static/description/assets/icons/skype-fill.svg b/pantry_payroll/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/skype.png b/pantry_payroll/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/skype.png differ diff --git a/pantry_payroll/static/description/assets/icons/skype.svg b/pantry_payroll/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/pantry_payroll/static/description/assets/icons/star-1.svg b/pantry_payroll/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/star-2.svg b/pantry_payroll/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/support.png b/pantry_payroll/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/support.png differ diff --git a/pantry_payroll/static/description/assets/icons/test-1 - Copy.png b/pantry_payroll/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/test-1 - Copy.png differ diff --git a/pantry_payroll/static/description/assets/icons/test-1.png b/pantry_payroll/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/test-1.png differ diff --git a/pantry_payroll/static/description/assets/icons/test-2.png b/pantry_payroll/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/test-2.png differ diff --git a/pantry_payroll/static/description/assets/icons/trading-black.png b/pantry_payroll/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/trading-black.png differ diff --git a/pantry_payroll/static/description/assets/icons/training.png b/pantry_payroll/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/training.png differ diff --git a/pantry_payroll/static/description/assets/icons/translate.svg b/pantry_payroll/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/update.png b/pantry_payroll/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/update.png differ diff --git a/pantry_payroll/static/description/assets/icons/user.png b/pantry_payroll/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/user.png differ diff --git a/pantry_payroll/static/description/assets/icons/video.png b/pantry_payroll/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/video.png differ diff --git a/pantry_payroll/static/description/assets/icons/whatsapp.png b/pantry_payroll/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/whatsapp.png differ diff --git a/pantry_payroll/static/description/assets/icons/wrench-icon.svg b/pantry_payroll/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/pantry_payroll/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/pantry_payroll/static/description/assets/icons/wrench.png b/pantry_payroll/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/pantry_payroll/static/description/assets/icons/wrench.png differ diff --git a/pantry_payroll/static/description/assets/modules/b03.png b/pantry_payroll/static/description/assets/modules/b03.png new file mode 100644 index 000000000..05239cada Binary files /dev/null and b/pantry_payroll/static/description/assets/modules/b03.png differ diff --git a/pantry_payroll/static/description/assets/modules/b1.png b/pantry_payroll/static/description/assets/modules/b1.png new file mode 100644 index 000000000..82f8c6260 Binary files /dev/null and b/pantry_payroll/static/description/assets/modules/b1.png differ diff --git a/pantry_payroll/static/description/assets/modules/b2.png b/pantry_payroll/static/description/assets/modules/b2.png new file mode 100644 index 000000000..5d7ca7c19 Binary files /dev/null and b/pantry_payroll/static/description/assets/modules/b2.png differ diff --git a/pantry_payroll/static/description/assets/modules/b4.png b/pantry_payroll/static/description/assets/modules/b4.png new file mode 100644 index 000000000..b7f57430d Binary files /dev/null and b/pantry_payroll/static/description/assets/modules/b4.png differ diff --git a/pantry_payroll/static/description/assets/modules/b5.png b/pantry_payroll/static/description/assets/modules/b5.png new file mode 100644 index 000000000..817ba4bb3 Binary files /dev/null and b/pantry_payroll/static/description/assets/modules/b5.png differ diff --git a/pantry_payroll/static/description/assets/modules/b6.png b/pantry_payroll/static/description/assets/modules/b6.png new file mode 100644 index 000000000..54b45eadf Binary files /dev/null and b/pantry_payroll/static/description/assets/modules/b6.png differ diff --git a/pantry_payroll/static/description/assets/screenshots/screenshot1.png b/pantry_payroll/static/description/assets/screenshots/screenshot1.png new file mode 100644 index 000000000..2730bde5c Binary files /dev/null and b/pantry_payroll/static/description/assets/screenshots/screenshot1.png differ diff --git a/pantry_payroll/static/description/assets/screenshots/screenshot2.png b/pantry_payroll/static/description/assets/screenshots/screenshot2.png new file mode 100644 index 000000000..53162ea94 Binary files /dev/null and b/pantry_payroll/static/description/assets/screenshots/screenshot2.png differ diff --git a/pantry_payroll/static/description/assets/screenshots/screenshot3.png b/pantry_payroll/static/description/assets/screenshots/screenshot3.png new file mode 100644 index 000000000..cdc2f8771 Binary files /dev/null and b/pantry_payroll/static/description/assets/screenshots/screenshot3.png differ diff --git a/pantry_payroll/static/description/assets/screenshots/screenshot4.png b/pantry_payroll/static/description/assets/screenshots/screenshot4.png new file mode 100644 index 000000000..710630912 Binary files /dev/null and b/pantry_payroll/static/description/assets/screenshots/screenshot4.png differ diff --git a/pantry_payroll/static/description/assets/screenshots/screenshot5.png b/pantry_payroll/static/description/assets/screenshots/screenshot5.png new file mode 100644 index 000000000..f1a0219a5 Binary files /dev/null and b/pantry_payroll/static/description/assets/screenshots/screenshot5.png differ diff --git a/pantry_payroll/static/description/assets/screenshots/screenshot6.png b/pantry_payroll/static/description/assets/screenshots/screenshot6.png new file mode 100644 index 000000000..259df34b8 Binary files /dev/null and b/pantry_payroll/static/description/assets/screenshots/screenshot6.png differ diff --git a/pantry_payroll/static/description/assets/screenshots/screenshot7.png b/pantry_payroll/static/description/assets/screenshots/screenshot7.png new file mode 100644 index 000000000..b34eae594 Binary files /dev/null and b/pantry_payroll/static/description/assets/screenshots/screenshot7.png differ diff --git a/pantry_payroll/static/description/assets/screenshots/screenshot8.png b/pantry_payroll/static/description/assets/screenshots/screenshot8.png new file mode 100644 index 000000000..2daf8a09b Binary files /dev/null and b/pantry_payroll/static/description/assets/screenshots/screenshot8.png differ diff --git a/pantry_payroll/static/description/assets/y18.jpg b/pantry_payroll/static/description/assets/y18.jpg new file mode 100755 index 000000000..eea1714f2 Binary files /dev/null and b/pantry_payroll/static/description/assets/y18.jpg differ diff --git a/pantry_payroll/static/description/banner.jpg b/pantry_payroll/static/description/banner.jpg new file mode 100644 index 000000000..2be75b888 Binary files /dev/null and b/pantry_payroll/static/description/banner.jpg differ diff --git a/pantry_payroll/static/description/icon.png b/pantry_payroll/static/description/icon.png new file mode 100644 index 000000000..6badc3d91 Binary files /dev/null and b/pantry_payroll/static/description/icon.png differ diff --git a/pantry_payroll/static/description/index.html b/pantry_payroll/static/description/index.html new file mode 100644 index 000000000..ae61734ca --- /dev/null +++ b/pantry_payroll/static/description/index.html @@ -0,0 +1,1105 @@ + + + + + + Payroll Management In Pantry + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+
+ +
+
+
+
+

+ Manage The Payroll By Deducting The Pantry Order. +

+

Payroll Management In Pantry +

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

Key + Highlights

+
+
+
+
+ +
+
+ Pantry Admin User Group. +
+

+

+
+
+
+
+
+ +
+
+ Buy Products From Pantry. +
+

+ +

+
+
+
+
+
+ +
+
+ Pantry Order Will Be Automatically + Created. +
+

+ +

+
+
+
+
+
+ +
+
+ Automatically Deduct The Pantry Order + Amount From Payslip. +
+

+ +

+
+
+
+
+ +
+
+
+ Payroll Management In Pantry. +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Pantry Admin + + user group. +

+
+
+

+ Go to settings > Users. Only the administrator with the 'Pantry Admin' user group + will be able to see all the pantry orders. +

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

+ Enable 'Pantry Product' option + + in products. +

+
+
+

+ When creating a new pantry product, you have to enable 'Pantry Product' option +

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

+ Pantry + + products. +

+
+
+

+ Go to Employees-->Pantry-->Products to see the pantry products +

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

+ Increment or decrement the quantity and + + buy the product. +

+
+
+

+ You can increment or decrement the quantity and buy the product +

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

+ Clicking Buy Now button will take you to the + + pantry order. +

+
+
+

+ Clicking Buy Now button will take you to the pantry order. You can confirm the order. You can also go to + the orders through Employees-->Pantry-->Pantry Order. +

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

+ Create an + + employee payslip. +

+
+
+

+ You can go and create an employee payslip. Choose the employee, period and the + contract. You need to ensure that,a salary structure is selected inside the + contract. Then you can click on the 'COMPUTE SHEET' and salary will be computed. +

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

+ Computed payslips can be seen in the + + Smart button. +

+
+
+

+ After confirming, all the computed payslips can be seen in the smart button and also + in the salary computation tab. +

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

+ Clicking the payslip + + Smart button. +

+
+
+

+ Clicking on the payslip smart button you can see the pantry amount is deducted from + the employee's salary. +

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

+ Buy Products From Pantry.

+
+ +
+
+
+
+
+
+ +
+

+ Pantry Order Will Be Automatically Created.

+
+
+
+
+
+
+
+ +
+

+ Pantry Admin User Group.

+
+
+
+
+
+
+
+ +
+

+ Automatically Deduct The Pantry Order Amount From Payslip.

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

+ The Pantry Payroll App + is a tool designed to + manage the payroll of + pantry items. It helps + in integrating the cost + of pantry items consumed + by employees into their + payslips, ensuring accurate + deductions from their salaries. +

+
+
+ +
+ +
+

+ When creating an employee + payslip, the app allows + you to add a salary rule + for pantry deductions. + The amount corresponding + to the pantry products + consumed by the employee + will be automatically + deducted from their salary. +

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

+ Latest Release 18.0.1.0.0 +

+ + 09th December, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + diff --git a/pantry_payroll/views/pantry_order_views.xml b/pantry_payroll/views/pantry_order_views.xml new file mode 100755 index 000000000..9d809c925 --- /dev/null +++ b/pantry_payroll/views/pantry_order_views.xml @@ -0,0 +1,80 @@ + + + + + Pantry Order + ir.actions.act_window + pantry.order + list,form + +

+ Create a new pantry order +

+
+
+ + + + + pantry.order.view.list + pantry.order + + + + + + + + + + + + + pantry.order.view.form + pantry.order + +
+
+ +
+ +
+

+ +

+
+ + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
diff --git a/pantry_payroll/views/product_product_views.xml b/pantry_payroll/views/product_product_views.xml new file mode 100755 index 000000000..4172e80bf --- /dev/null +++ b/pantry_payroll/views/product_product_views.xml @@ -0,0 +1,125 @@ + + + + + Pantry Products + ir.actions.act_window + product.product + kanban + [('pantry_product','=',True)] + {'default_pantry_product': True} + +

+ Create a new pantry product +

+
+
+ + + + + + product.product.view.kanban.pantry.payroll + product.product + + + + + + + + +
+
+ Product +
+
+ + + + [ + ] + + +
+ +
+
    +
  • + Price: + + +
  • +
+
+ +
+
+ + + + + + + + kanban + + + + + + product.product.view.form.inherit.pantry.payroll + + product.product + + + + + + + + + + diff --git a/pantry_payroll/views/product_template_views.xml b/pantry_payroll/views/product_template_views.xml new file mode 100755 index 000000000..333d8c39f --- /dev/null +++ b/pantry_payroll/views/product_template_views.xml @@ -0,0 +1,17 @@ + + + + + product.template.view.form.inherit.pantry.payroll + product.template + + + + + + + + + +