diff --git a/product_to_invoice/README.rst b/product_to_invoice/README.rst new file mode 100644 index 000000000..bfe532af0 --- /dev/null +++ b/product_to_invoice/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Add Multiple Products To Invoice/Bill +===================================== +Easily add multiple products to a customer invoice or vendor bill directly from product kanban, list and from views. + +Configuration +============= +No additional configuration is needed to use this module. + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V17) Mufeeda Shirin + (V16) Jumana Jabin MP + 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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/product_to_invoice/__init__.py b/product_to_invoice/__init__.py new file mode 100644 index 000000000..3dce8ad89 --- /dev/null +++ b/product_to_invoice/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# 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 +from . import wizard diff --git a/product_to_invoice/__manifest__.py b/product_to_invoice/__manifest__.py new file mode 100644 index 000000000..7a4567be7 --- /dev/null +++ b/product_to_invoice/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# 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': 'Add Multiple Products To Invoice/Bill', + 'version': '17.0.1.0.0', + 'category': 'Accounting', + 'summary': 'Easily add multiple products to a invoice/bill directly from ' + 'the product views', + 'description': """This module allow you to add multiple products to the + corresponding invoice/bill. You can see all products in kanban, list and + form view.You can also view the recent invoice/bill history of the + selected product along with the option to update the quantity, + Change price, Add Multiple Products""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'account'], + 'data': [ + 'security/ir.model.access.csv', + 'views/account_move_views.xml', + 'views/product_product_views.xml', + 'wizard/invoice_product_details_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False +} diff --git a/product_to_invoice/doc/RELEASE_NOTES.md b/product_to_invoice/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..452303dd3 --- /dev/null +++ b/product_to_invoice/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 08.01.2024 +#### Version 17.0.1.0.0 +##### ADD +- Initial commit for Add Multiple Products To Invoice/Bill diff --git a/product_to_invoice/models/__init__.py b/product_to_invoice/models/__init__.py new file mode 100644 index 000000000..b56d10088 --- /dev/null +++ b/product_to_invoice/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# 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 account_move +from . import product_product diff --git a/product_to_invoice/models/account_move.py b/product_to_invoice/models/account_move.py new file mode 100644 index 000000000..8d548e562 --- /dev/null +++ b/product_to_invoice/models/account_move.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# 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 models + + +class AccountMove(models.Model): + """Inherits the account_move model to add custom functionality.""" + _inherit = 'account.move' + + def action_add_product(self): + """Action method to open the product_product view and add products + to the invoice.""" + self.ensure_one() + return { + 'name': 'Product Variants', + 'type': 'ir.actions.act_window', + 'res_model': 'product.product', + 'view_mode': 'kanban,list,form', + 'target': 'current', + 'context': {'add_to_invoice': True}, + } diff --git a/product_to_invoice/models/product_product.py b/product_to_invoice/models/product_product.py new file mode 100644 index 000000000..217162815 --- /dev/null +++ b/product_to_invoice/models/product_product.py @@ -0,0 +1,117 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# 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 ProductProduct(models.Model): + """This class extends the 'product.product' model in Odoo and adds + additional functionalities related to invoice handling.""" + _inherit = 'product.product' + + @api.depends_context('add_to_invoice') + def _compute_add_to_invoice(self): + """Compute the 'add_to_invoice' field based on the context. + The 'add_to_invoice' field is set to True when the context + variable 'add_to_invoice' is present and has a truthy value. + Otherwise, it is set to False.""" + for record in self: + record.add_to_invoice = bool(self.env.context.get('add_to_invoice') + ) + + add_to_invoice = fields.Boolean( + string='Add to Invoice', + compute='_compute_add_to_invoice', + help='Whether to show the "Add to Invoice" button in the tree view.') + + def _get_invoice_taxes(self, move_id, account_id): + """Get invoice taxes based on move type and account.""" + self.ensure_one() + tax_ids = self.taxes_id.filtered( + lambda tax: tax.company_id == move_id.company_id) if \ + move_id.move_type == 'out_invoice' else \ + self.supplier_taxes_id.filtered( + lambda tax: tax.company_id == move_id.company_id) if \ + move_id.move_type == 'in_invoice' else \ + account_id.tax_ids + if not tax_ids: + tax_ids = move_id.company_id.account_sale_tax_id if \ + move_id.move_type == 'out_invoice' else \ + move_id.company_id.account_purchase_tax_id if \ + move_id.move_type == 'in_invoice' else \ + self.env['account.tax'] + if self.company_id and tax_ids: + tax_ids = tax_ids.filtered(lambda tax: tax.company_id == + self.company_id) + return tax_ids + + def _get_invoice_account(self, move_id): + """Return the income/expense account of the selected product.""" + self.ensure_one() + self = self.with_company(move_id.journal_id.company_id) + accounts = self.product_tmpl_id.get_product_accounts \ + (fiscal_pos=move_id.fiscal_position_id) + return accounts['income'] if move_id.move_type == 'out_invoice' \ + else accounts['expense'] + + def action_add_to_invoice(self): + """Add the product to the invoice. + This method is triggered when the "Add to Invoice" button is clicked. + It creates an invoice line and adds it to the invoice.""" + invoice_id = self.env['account.move']. \ + browse(self._context.get('active_id')) + account_id = self._get_invoice_account(invoice_id) + tax_ids = self._get_invoice_taxes(invoice_id, account_id) + invoice_line_vals = { + 'product_id': self.id, + 'product_uom_id': self.uom_id.id, + 'quantity': 1, + 'price_unit': self.lst_price if invoice_id.move_type == + 'out_invoice' + else self.standard_price, + 'account_id': account_id.id, + 'tax_ids': [(fields.Command.set(tax_ids.ids))] + } + invoice_id.write({ + 'invoice_line_ids': [(fields.Command.create(invoice_line_vals))] + }) + + def action_change_qty(self): + """Open the product details wizard. + This method is triggered when the "Change Qty" button is clicked. + It opens a wizard to modify the quantity and other details of + the product. """ + invoice_id = self.env['account.move'] \ + .browse(self._context.get('active_id')) + return { + 'name': 'Product Details', + 'type': 'ir.actions.act_window', + 'res_model': 'invoice.product.details', + 'view_mode': 'form', + 'target': 'new', + 'context': { + 'default_account_move_id': invoice_id.id, + 'default_product_id': self.id, + 'default_price_unit': self.lst_price if invoice_id.move_type + == 'out_invoice' + else self.standard_price, + }, + } diff --git a/product_to_invoice/security/ir.model.access.csv b/product_to_invoice/security/ir.model.access.csv new file mode 100644 index 000000000..ad0610476 --- /dev/null +++ b/product_to_invoice/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_invoice_product_details,access.invoice.product.details,model_invoice_product_details,base.group_user,1,1,1,1 +access_product_invoice_history,access.product.invoice.history,model_product_invoice_history,base.group_user,1,1,1,1 diff --git a/product_to_invoice/static/description/assets/icons/check.png b/product_to_invoice/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/check.png differ diff --git a/product_to_invoice/static/description/assets/icons/chevron.png b/product_to_invoice/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/chevron.png differ diff --git a/product_to_invoice/static/description/assets/icons/cogs.png b/product_to_invoice/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/cogs.png differ diff --git a/product_to_invoice/static/description/assets/icons/consultation.png b/product_to_invoice/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/consultation.png differ diff --git a/product_to_invoice/static/description/assets/icons/ecom-black.png b/product_to_invoice/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/ecom-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/education-black.png b/product_to_invoice/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/education-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/hotel-black.png b/product_to_invoice/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/hotel-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/license.png b/product_to_invoice/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/license.png differ diff --git a/product_to_invoice/static/description/assets/icons/lifebuoy.png b/product_to_invoice/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/lifebuoy.png differ diff --git a/product_to_invoice/static/description/assets/icons/manufacturing-black.png b/product_to_invoice/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/pos-black.png b/product_to_invoice/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/pos-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/puzzle.png b/product_to_invoice/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/puzzle.png differ diff --git a/product_to_invoice/static/description/assets/icons/restaurant-black.png b/product_to_invoice/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/restaurant-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/service-black.png b/product_to_invoice/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/service-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/trading-black.png b/product_to_invoice/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/trading-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/training.png b/product_to_invoice/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/training.png differ diff --git a/product_to_invoice/static/description/assets/icons/update.png b/product_to_invoice/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/update.png differ diff --git a/product_to_invoice/static/description/assets/icons/user.png b/product_to_invoice/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/user.png differ diff --git a/product_to_invoice/static/description/assets/icons/wrench.png b/product_to_invoice/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/wrench.png differ diff --git a/product_to_invoice/static/description/assets/misc/Cybrosys R.png b/product_to_invoice/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/Cybrosys R.png differ diff --git a/product_to_invoice/static/description/assets/misc/categories.png b/product_to_invoice/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/categories.png differ diff --git a/product_to_invoice/static/description/assets/misc/check-box.png b/product_to_invoice/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/check-box.png differ diff --git a/product_to_invoice/static/description/assets/misc/compass.png b/product_to_invoice/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/compass.png differ diff --git a/product_to_invoice/static/description/assets/misc/corporate.png b/product_to_invoice/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/corporate.png differ diff --git a/product_to_invoice/static/description/assets/misc/customer-support.png b/product_to_invoice/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/customer-support.png differ diff --git a/product_to_invoice/static/description/assets/misc/cybrosys-logo.png b/product_to_invoice/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/cybrosys-logo.png differ diff --git a/product_to_invoice/static/description/assets/misc/features.png b/product_to_invoice/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/features.png differ diff --git a/product_to_invoice/static/description/assets/misc/logo.png b/product_to_invoice/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/logo.png differ diff --git a/product_to_invoice/static/description/assets/misc/pictures.png b/product_to_invoice/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/pictures.png differ diff --git a/product_to_invoice/static/description/assets/misc/pie-chart.png b/product_to_invoice/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/pie-chart.png differ diff --git a/product_to_invoice/static/description/assets/misc/right-arrow.png b/product_to_invoice/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/right-arrow.png differ diff --git a/product_to_invoice/static/description/assets/misc/star.png b/product_to_invoice/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/star.png differ diff --git a/product_to_invoice/static/description/assets/misc/support.png b/product_to_invoice/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/support.png differ diff --git a/product_to_invoice/static/description/assets/misc/whatsapp.png b/product_to_invoice/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/product_to_invoice/static/description/assets/misc/whatsapp.png differ diff --git a/product_to_invoice/static/description/assets/modules/1.png b/product_to_invoice/static/description/assets/modules/1.png new file mode 100644 index 000000000..d324f5993 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/1.png differ diff --git a/product_to_invoice/static/description/assets/modules/2.png b/product_to_invoice/static/description/assets/modules/2.png new file mode 100644 index 000000000..0dea4f332 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/2.png differ diff --git a/product_to_invoice/static/description/assets/modules/3.jpg b/product_to_invoice/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..5ae24843e Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/3.jpg differ diff --git a/product_to_invoice/static/description/assets/modules/4.jpg b/product_to_invoice/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..115e1eee1 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/4.jpg differ diff --git a/product_to_invoice/static/description/assets/modules/5.jpg b/product_to_invoice/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..08bbafeb6 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/5.jpg differ diff --git a/product_to_invoice/static/description/assets/modules/6.png b/product_to_invoice/static/description/assets/modules/6.png new file mode 100644 index 000000000..a5299d338 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/6.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/hero.gif b/product_to_invoice/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..0d8dfbd61 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/hero.gif differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png new file mode 100644 index 000000000..0c9dd68ca Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png new file mode 100644 index 000000000..1bb1ab8d0 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png new file mode 100644 index 000000000..37d5018c8 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png new file mode 100644 index 000000000..98749a3ae Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png new file mode 100644 index 000000000..fffe73980 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png new file mode 100644 index 000000000..2ceb7d299 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png new file mode 100644 index 000000000..b4b7db98d Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png differ diff --git a/product_to_invoice/static/description/banner.jpg b/product_to_invoice/static/description/banner.jpg new file mode 100644 index 000000000..3f6a08970 Binary files /dev/null and b/product_to_invoice/static/description/banner.jpg differ diff --git a/product_to_invoice/static/description/icon.png b/product_to_invoice/static/description/icon.png new file mode 100644 index 000000000..d30ab021a Binary files /dev/null and b/product_to_invoice/static/description/icon.png differ diff --git a/product_to_invoice/static/description/index.html b/product_to_invoice/static/description/index.html new file mode 100644 index 000000000..ee68c7543 --- /dev/null +++ b/product_to_invoice/static/description/index.html @@ -0,0 +1,761 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Add Multiple Products To Invoice/Bill

+

+ Add Multiple Products To Customer Invoice Or Vendor Bill +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Add Products in Customer Invoice and Vendor Bill

+
+
+
+
+
+
+ +
+
+

+ Displays Products in Multiple Views

+
+
+
+
+
+
+ +
+
+

+ Displays Recent Invoice and Bill History

+
+
+
+
+
+
+ +
+
+

+ Provision to Add Product Details

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

+ Smart Button in Customer Invoice to add Products.

+
+
+
+
+
+
+ +
+
+

+ Smart Button in Vendor Bills to add Products. +

+
+
+
+
+
+
+ +
+
+

+ Add to Invoice/Bill and Update Quantity button in the Kanban view.

+
+
+
+
+
+
+ +
+
+

+ A list icon to add the product to the invoice/bill via changing price and quantity. + A wizard window will appear in the screen to change price and quantity

+
+
+
+
+
+
+ +
+
+

+ Press the button "Add to Invoice/Bill" to add the product directly to the invoice/bill. + Press the list icon to add the product to the invoice/bill + by changing price and quantity.

+
+
+
+
+
+
+ +
+
+

+ Where User Can Change Price and Quantity. + The wizard window also shows the previous invoice/bill history of the selected product.

+
+
+
+
+
+
+ +
+
+

+ Selected products will be inserted to the move lines of opened invoice/bill.

+
+
+
+
+
+
+
    +
  • + Easily Add Products from Invoice/bills. +
  • +
  • + Can Easily Configure the Product quantity and price. +
  • +
  • + Products Can Add to Invoice/Bills from Product Form. +
  • +
  • + Can See the Invoice/bill History of Selected Product from the Wizard. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:08th January 2024 +
+

+ Initial Commit for Product To Invoice.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/product_to_invoice/views/account_move_views.xml b/product_to_invoice/views/account_move_views.xml new file mode 100644 index 000000000..2ef395d96 --- /dev/null +++ b/product_to_invoice/views/account_move_views.xml @@ -0,0 +1,21 @@ + + + + + account.move.view.form.inherit.product.to.invoice + + account.move + + + + + + + + + + diff --git a/product_to_invoice/views/product_product_views.xml b/product_to_invoice/views/product_product_views.xml new file mode 100644 index 000000000..553bfa387 --- /dev/null +++ b/product_to_invoice/views/product_product_views.xml @@ -0,0 +1,72 @@ + + + + + + product.product.view.tree.inherit.product.to.invoice + + product.product + + + + +